X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Frunas.c;h=946ea3101ab92771ec8fd45009bd00bf37e8fe8b;hb=df6a8b0587ad921879f43cc45f74005016d27b93;hp=b4828ad608604935f3db7c7a3d7967c84fe2451a;hpb=2038dd6ce78bc856ece474626b7f039d19860bce;p=lttng-tools.git diff --git a/src/common/runas.c b/src/common/runas.c index b4828ad60..946ea3101 100644 --- a/src/common/runas.c +++ b/src/common/runas.c @@ -28,7 +28,7 @@ #include #include #include -#include +#include #include #include @@ -171,7 +171,7 @@ run_as_fct run_as_enum_to_fct(enum run_as_cmd cmd) case RUN_AS_MKDIR_RECURSIVE: return _mkdir_recursive; default: - ERR("Unknown command %d", (int) cmd) + ERR("Unknown command %d", (int) cmd); return NULL; } } @@ -466,6 +466,7 @@ int run_as_mkdir_recursive(const char *path, mode_t mode, uid_t uid, gid_t gid) { struct run_as_data data; + memset(&data, 0, sizeof(data)); DBG3("mkdir() recursive %s with mode %d for uid %d and gid %d", path, (int) mode, (int) uid, (int) gid); strncpy(data.u.mkdir.path, path, PATH_MAX - 1); @@ -479,6 +480,7 @@ int run_as_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid) { struct run_as_data data; + memset(&data, 0, sizeof(data)); DBG3("mkdir() %s with mode %d for uid %d and gid %d", path, (int) mode, (int) uid, (int) gid); strncpy(data.u.mkdir.path, path, PATH_MAX - 1); @@ -487,15 +489,12 @@ int run_as_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid) return run_as(RUN_AS_MKDIR, &data, uid, gid); } -/* - * Note: open_run_as is currently not working. We'd need to pass the fd - * opened in the child to the parent. - */ LTTNG_HIDDEN int run_as_open(const char *path, int flags, mode_t mode, uid_t uid, gid_t gid) { struct run_as_data data; + memset(&data, 0, sizeof(data)); DBG3("open() %s with flags %X mode %d for uid %d and gid %d", path, flags, (int) mode, (int) uid, (int) gid); strncpy(data.u.open.path, path, PATH_MAX - 1); @@ -510,6 +509,7 @@ int run_as_unlink(const char *path, uid_t uid, gid_t gid) { struct run_as_data data; + memset(&data, 0, sizeof(data)); DBG3("unlink() %s with for uid %d and gid %d", path, (int) uid, (int) gid); strncpy(data.u.unlink.path, path, PATH_MAX - 1); @@ -547,10 +547,10 @@ void worker_sighandler(int sig) const char *signame; /* - * The worker will its parent's signals since they are part of the same - * process group. However, in the case of SIGINT and SIGTERM, we want - * to give the worker a chance to teardown gracefully when its parent - * closes the command socket. + * The worker will inherit its parent's signals since they are part of + * the same process group. However, in the case of SIGINT and SIGTERM, + * we want to give the worker a chance to teardown gracefully when its + * parent closes the command socket. */ switch (sig) { case SIGINT: @@ -560,10 +560,14 @@ void worker_sighandler(int sig) signame = "SIGTERM"; break; default: - signame = "Unknown"; + signame = NULL; } - DBG("run_as worker received signal %s", signame); + if (signame) { + DBG("run_as worker received signal %s", signame); + } else { + DBG("run_as_worker received signal %d", sig); + } } static