Fix: double close of directory fd in runas worker
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 15 May 2019 15:37:55 +0000 (11:37 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 25 Jul 2019 19:45:26 +0000 (15:45 -0400)
commit87bbb85674277f43cb219223303c2e76f92c48dd
treeb00bf3cc29c419400e13c8f038012f062262133c
parent0c1b0f77482b0d1856fefabc42978b82b5dd267c
Fix: double close of directory fd in runas worker

The run-as worker implements its mkdirat and mkdirat_recursive commands
on top of the lttng_directory_handle interface. When a directory
handle is created from a directory file descriptor, it assumes the
ownership of this file descriptor and it will release it when
lttng_directory_handle_fini() is invoked.

The runas worker's post-command clean-up closes any file descriptor
received from its client. The command structure's `fd` is set to
`-1` in order to make the received file descriptor invalid and
prevent the double-close.

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/common/runas.c
This page took 0.025765 seconds and 5 git commands to generate.