2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
35 #include <common/lttng-kernel.h>
36 #include <common/common.h>
37 #include <common/utils.h>
38 #include <common/compat/getenv.h>
39 #include <common/compat/prctl.h>
40 #include <common/unix.h>
41 #include <common/defaults.h>
42 #include <common/lttng-elf.h>
44 #include <lttng/constant.h>
50 typedef int (*run_as_fct
)(struct run_as_data
*data
, struct run_as_ret
*ret_value
);
52 struct run_as_mkdir_data
{
57 struct run_as_open_data
{
63 struct run_as_unlink_data
{
67 struct run_as_rmdir_recursive_data
{
71 struct run_as_extract_elf_symbol_offset_data
{
72 char function
[LTTNG_SYMBOL_NAME_LEN
];
75 struct run_as_extract_sdt_probe_offsets_data
{
76 char probe_name
[LTTNG_SYMBOL_NAME_LEN
];
77 char provider_name
[LTTNG_SYMBOL_NAME_LEN
];
80 struct run_as_mkdir_ret
{
84 struct run_as_open_ret
{
88 struct run_as_unlink_ret
{
92 struct run_as_rmdir_recursive_ret
{
96 struct run_as_extract_elf_symbol_offset_ret
{
100 struct run_as_extract_sdt_probe_offsets_ret
{
102 uint64_t offsets
[LTTNG_KERNEL_MAX_UPROBE_NUM
];
109 RUN_AS_RMDIR_RECURSIVE
,
110 RUN_AS_MKDIR_RECURSIVE
,
111 RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
,
112 RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
,
119 struct run_as_mkdir_data mkdir
;
120 struct run_as_open_data open
;
121 struct run_as_unlink_data unlink
;
122 struct run_as_rmdir_recursive_data rmdir_recursive
;
123 struct run_as_extract_elf_symbol_offset_data extract_elf_symbol_offset
;
124 struct run_as_extract_sdt_probe_offsets_data extract_sdt_probe_offsets
;
131 * The run_as_ret structure holds the returned value and status of the command.
133 * The `u` union field holds the return value of the command; in most cases it
134 * represents the success or the failure of the command. In more complex
135 * commands, it holds a computed value.
137 * The _errno field is the errno recorded after the execution of the command.
139 * The _error fields is used the signify that return status of the command. For
140 * simple commands returning `int` the _error field will be the same as the
141 * ret_int field. In complex commands, it signify the success or failure of the
148 struct run_as_mkdir_ret mkdir
;
149 struct run_as_open_ret open
;
150 struct run_as_unlink_ret unlink
;
151 struct run_as_rmdir_recursive_ret rmdir_recursive
;
152 struct run_as_extract_elf_symbol_offset_ret extract_elf_symbol_offset
;
153 struct run_as_extract_sdt_probe_offsets_ret extract_sdt_probe_offsets
;
159 struct run_as_worker
{
160 pid_t pid
; /* Worker PID. */
165 /* Single global worker per process (for now). */
166 static struct run_as_worker
*global_worker
;
167 /* Lock protecting the worker. */
168 static pthread_mutex_t worker_lock
= PTHREAD_MUTEX_INITIALIZER
;
180 return !lttng_secure_getenv("LTTNG_DEBUG_NOCLONE");
185 int _utils_mkdir_recursive_unsafe(const char *path
, mode_t mode
);
188 * Create recursively directory using the FULL path.
191 int _mkdir_recursive(struct run_as_data
*data
, struct run_as_ret
*ret_value
)
196 path
= data
->u
.mkdir
.path
;
197 mode
= data
->u
.mkdir
.mode
;
199 /* Safe to call as we have transitioned to the requested uid/gid. */
200 ret_value
->u
.mkdir
.ret
= _utils_mkdir_recursive_unsafe(path
, mode
);
201 ret_value
->_errno
= errno
;
202 ret_value
->_error
= (ret_value
->u
.mkdir
.ret
) ? true : false;
203 return ret_value
->u
.mkdir
.ret
;
207 int _mkdir(struct run_as_data
*data
, struct run_as_ret
*ret_value
)
209 ret_value
->u
.mkdir
.ret
= mkdir(data
->u
.mkdir
.path
, data
->u
.mkdir
.mode
);
210 ret_value
->_errno
= errno
;
211 ret_value
->_error
= (ret_value
->u
.mkdir
.ret
) ? true : false;
212 return ret_value
->u
.mkdir
.ret
;
216 int _open(struct run_as_data
*data
, struct run_as_ret
*ret_value
)
218 ret_value
->u
.open
.ret
= open(data
->u
.open
.path
, data
->u
.open
.flags
, data
->u
.open
.mode
);
219 ret_value
->fd
= ret_value
->u
.open
.ret
;
220 ret_value
->_errno
= errno
;
221 ret_value
->_error
= (ret_value
->u
.open
.ret
) ? true : false;
222 return ret_value
->u
.open
.ret
;
226 int _unlink(struct run_as_data
*data
, struct run_as_ret
*ret_value
)
228 ret_value
->u
.unlink
.ret
= unlink(data
->u
.unlink
.path
);
229 ret_value
->_errno
= errno
;
230 ret_value
->_error
= (ret_value
->u
.unlink
.ret
) ? true : false;
231 return ret_value
->u
.unlink
.ret
;
235 int _rmdir_recursive(struct run_as_data
*data
, struct run_as_ret
*ret_value
)
237 ret_value
->u
.rmdir_recursive
.ret
= utils_recursive_rmdir(data
->u
.rmdir_recursive
.path
);
238 ret_value
->_errno
= errno
;
239 ret_value
->_error
= (ret_value
->u
.rmdir_recursive
.ret
) ? true : false;
240 return ret_value
->u
.rmdir_recursive
.ret
;
244 int _extract_elf_symbol_offset(struct run_as_data
*data
,
245 struct run_as_ret
*ret_value
)
248 ret_value
->_error
= false;
250 ret
= lttng_elf_get_symbol_offset(data
->fd
,
251 data
->u
.extract_elf_symbol_offset
.function
,
252 &ret_value
->u
.extract_elf_symbol_offset
.offset
);
254 DBG("Failed to extract ELF function offset");
255 ret_value
->_error
= true;
262 int _extract_sdt_probe_offsets(struct run_as_data
*data
,
263 struct run_as_ret
*ret_value
)
266 uint64_t *offsets
= NULL
;
269 ret_value
->_error
= false;
271 /* On success, this call allocates the offsets paramater. */
272 ret
= lttng_elf_get_sdt_probe_offsets(data
->fd
,
273 data
->u
.extract_sdt_probe_offsets
.provider_name
,
274 data
->u
.extract_sdt_probe_offsets
.probe_name
,
275 &offsets
, &num_offset
);
278 DBG("Failed to extract SDT probe offsets");
279 ret_value
->_error
= true;
283 if (num_offset
<= 0 || num_offset
> LTTNG_KERNEL_MAX_UPROBE_NUM
) {
284 DBG("Wrong number of probes.");
286 ret_value
->_error
= true;
290 /* Copy the content of the offsets array to the ret struct. */
291 memcpy(ret_value
->u
.extract_sdt_probe_offsets
.offsets
,
292 offsets
, num_offset
* sizeof(uint64_t));
294 ret_value
->u
.extract_sdt_probe_offsets
.num_offset
= num_offset
;
303 run_as_fct
run_as_enum_to_fct(enum run_as_cmd cmd
)
312 case RUN_AS_RMDIR_RECURSIVE
:
313 return _rmdir_recursive
;
314 case RUN_AS_MKDIR_RECURSIVE
:
315 return _mkdir_recursive
;
316 case RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
:
317 return _extract_elf_symbol_offset
;
318 case RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
:
319 return _extract_sdt_probe_offsets
;
321 ERR("Unknown command %d", (int) cmd
);
327 int do_send_fd(int sock
, int fd
)
332 ERR("Invalid file description");
336 len
= lttcomm_send_fds_unix_sock(sock
, &fd
, 1);
338 PERROR("lttcomm_send_fds_unix_sock");
345 int do_recv_fd(int sock
, int *fd
)
350 ERR("Invalid file description");
354 len
= lttcomm_recv_fds_unix_sock(sock
, fd
, 1);
358 } else if (len
< 0) {
359 PERROR("lttcomm_recv_fds_unix_sock");
366 int send_fd_to_worker(struct run_as_worker
*worker
, enum run_as_cmd cmd
, int fd
)
371 case RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
:
372 case RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
:
378 ret
= do_send_fd(worker
->sockpair
[0], fd
);
380 PERROR("do_send_fd");
388 int send_fd_to_master(struct run_as_worker
*worker
, enum run_as_cmd cmd
, int fd
)
390 int ret
= 0, ret_close
= 0;
399 ret
= do_send_fd(worker
->sockpair
[1], fd
);
401 PERROR("do_send_fd error");
405 ret_close
= close(fd
);
414 int recv_fd_from_worker(struct run_as_worker
*worker
, enum run_as_cmd cmd
, int *fd
)
425 ret
= do_recv_fd(worker
->sockpair
[0], fd
);
427 PERROR("do_recv_fd error");
435 int recv_fd_from_master(struct run_as_worker
*worker
, enum run_as_cmd cmd
, int *fd
)
440 case RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
:
441 case RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
:
447 ret
= do_recv_fd(worker
->sockpair
[1], fd
);
449 PERROR("do_recv_fd error");
457 int cleanup_received_fd(enum run_as_cmd cmd
, int fd
)
462 case RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
:
463 case RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
:
471 PERROR("close error");
479 * Return < 0 on error, 0 if OK, 1 on hangup.
482 int handle_one_cmd(struct run_as_worker
*worker
)
485 struct run_as_data data
;
486 ssize_t readlen
, writelen
;
487 struct run_as_ret sendret
;
491 memset(&sendret
, 0, sizeof(sendret
));
495 * Stage 1: Receive run_as_data struct from the master.
496 * The structure contains the command type and all the parameters needed for
499 readlen
= lttcomm_recv_unix_sock(worker
->sockpair
[1], &data
,
506 if (readlen
< sizeof(data
)) {
507 PERROR("lttcomm_recv_unix_sock error");
512 cmd
= run_as_enum_to_fct(data
.cmd
);
519 * Stage 2: Receive file descriptor from master.
520 * Some commands need a file descriptor as input so if it's needed we
521 * receive the fd using the Unix socket.
523 ret
= recv_fd_from_master(worker
, data
.cmd
, &data
.fd
);
525 PERROR("recv_fd_from_master error");
530 prev_euid
= getuid();
531 if (data
.gid
!= getegid()) {
532 ret
= setegid(data
.gid
);
534 sendret
._error
= true;
535 sendret
._errno
= errno
;
540 if (data
.uid
!= prev_euid
) {
541 ret
= seteuid(data
.uid
);
543 sendret
._error
= true;
544 sendret
._errno
= errno
;
551 * Also set umask to 0 for mkdir executable bit.
556 * Stage 3: Execute the command
558 ret
= (*cmd
)(&data
, &sendret
);
560 DBG("Execution of command returned an error");
564 ret
= cleanup_received_fd(data
.cmd
, data
.fd
);
566 ERR("Error cleaning up FD");
571 * Stage 4: Send run_as_ret structure to the master.
572 * This structure contain the return value of the command and the errno.
574 writelen
= lttcomm_send_unix_sock(worker
->sockpair
[1], &sendret
,
576 if (writelen
< sizeof(sendret
)) {
577 PERROR("lttcomm_send_unix_sock error");
583 * Stage 5: Send file descriptor to the master
584 * Some commands return a file descriptor so if it's needed we pass it back
585 * to the master using the Unix socket.
587 ret
= send_fd_to_master(worker
, data
.cmd
, sendret
.fd
);
589 DBG("Sending FD to master returned an error");
593 if (seteuid(prev_euid
) < 0) {
604 int run_as_worker(struct run_as_worker
*worker
)
608 struct run_as_ret sendret
;
609 size_t proc_orig_len
;
612 * Initialize worker. Set a different process cmdline.
614 proc_orig_len
= strlen(worker
->procname
);
615 memset(worker
->procname
, 0, proc_orig_len
);
616 strncpy(worker
->procname
, DEFAULT_RUN_AS_WORKER_NAME
, proc_orig_len
);
618 ret
= lttng_prctl(PR_SET_NAME
,
619 (unsigned long) DEFAULT_RUN_AS_WORKER_NAME
, 0, 0, 0);
620 if (ret
&& ret
!= -ENOSYS
) {
621 /* Don't fail as this is not essential. */
622 PERROR("prctl PR_SET_NAME");
625 memset(&sendret
, 0, sizeof(sendret
));
627 writelen
= lttcomm_send_unix_sock(worker
->sockpair
[1], &sendret
,
629 if (writelen
< sizeof(sendret
)) {
630 PERROR("lttcomm_send_unix_sock error");
636 ret
= handle_one_cmd(worker
);
640 } else if (ret
> 0) {
643 continue; /* Next command. */
652 int run_as_cmd(struct run_as_worker
*worker
,
654 struct run_as_data
*data
,
655 struct run_as_ret
*ret_value
,
656 uid_t uid
, gid_t gid
)
659 ssize_t readlen
, writelen
;
662 * If we are non-root, we can only deal with our own uid.
664 if (geteuid() != 0) {
665 if (uid
!= geteuid()) {
667 ret_value
->_errno
= EPERM
;
668 ERR("Client (%d)/Server (%d) UID mismatch (and sessiond is not root)",
669 (int) uid
, (int) geteuid());
679 * Stage 1: Send the run_as_data struct to the worker process
681 writelen
= lttcomm_send_unix_sock(worker
->sockpair
[0], data
,
683 if (writelen
< sizeof(*data
)) {
684 PERROR("Error writing message to run_as");
686 ret_value
->_errno
= EIO
;
691 * Stage 2: Send file descriptor to the worker process if needed
693 ret
= send_fd_to_worker(worker
, data
->cmd
, data
->fd
);
695 PERROR("do_send_fd error");
697 ret_value
->_errno
= EIO
;
702 * Stage 3: Wait for the execution of the command
706 * Stage 4: Receive the run_as_ret struct containing the return value and
709 readlen
= lttcomm_recv_unix_sock(worker
->sockpair
[0], ret_value
,
712 ERR("Run-as worker has hung-up during run_as_cmd");
714 ret_value
->_errno
= EIO
;
716 } else if (readlen
< sizeof(*ret_value
)) {
717 PERROR("Error reading response from run_as");
719 ret_value
->_errno
= errno
;
724 * Stage 5: Receive file descriptor if needed
726 ret
= recv_fd_from_worker(worker
, data
->cmd
, &ret_value
->fd
);
728 ERR("Error receiving fd");
730 ret_value
->_errno
= EIO
;
738 * This is for debugging ONLY and should not be considered secure.
741 int run_as_noworker(enum run_as_cmd cmd
,
742 struct run_as_data
*data
, struct run_as_ret
*ret_value
,
743 uid_t uid
, gid_t gid
)
745 int ret
, saved_errno
;
749 fct
= run_as_enum_to_fct(cmd
);
756 ret
= fct(data
, ret_value
);
757 saved_errno
= ret_value
->_errno
;
765 int run_as_restart_worker(struct run_as_worker
*worker
)
768 char *procname
= NULL
;
770 procname
= worker
->procname
;
772 /* Close socket to run_as worker process and clean up the zombie process */
773 run_as_destroy_worker();
775 /* Create a new run_as worker process*/
776 ret
= run_as_create_worker(procname
);
778 ERR("Restarting the worker process failed");
787 int run_as(enum run_as_cmd cmd
, struct run_as_data
*data
,
788 struct run_as_ret
*ret_value
, uid_t uid
, gid_t gid
)
790 int ret
, saved_errno
;
793 DBG("Using run_as worker");
794 pthread_mutex_lock(&worker_lock
);
795 assert(global_worker
);
797 ret
= run_as_cmd(global_worker
, cmd
, data
, ret_value
, uid
, gid
);
798 saved_errno
= ret_value
->_errno
;
800 pthread_mutex_unlock(&worker_lock
);
802 * If the worker thread crashed the errno is set to EIO. we log
803 * the error and start a new worker process.
805 if (ret
== -1 && saved_errno
== EIO
) {
806 DBG("Socket closed unexpectedly... "
807 "Restarting the worker process");
808 ret
= run_as_restart_worker(global_worker
);
811 ERR("Failed to restart worker process.");
816 DBG("Using run_as without worker");
817 ret
= run_as_noworker(cmd
, data
, ret_value
, uid
, gid
);
824 int run_as_mkdir_recursive(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
826 struct run_as_data data
;
827 struct run_as_ret ret
;
829 memset(&data
, 0, sizeof(data
));
830 memset(&ret
, 0, sizeof(ret
));
831 DBG3("mkdir() recursive %s with mode %d for uid %d and gid %d",
832 path
, (int) mode
, (int) uid
, (int) gid
);
833 strncpy(data
.u
.mkdir
.path
, path
, PATH_MAX
- 1);
834 data
.u
.mkdir
.path
[PATH_MAX
- 1] = '\0';
835 data
.u
.mkdir
.mode
= mode
;
837 run_as(RUN_AS_MKDIR_RECURSIVE
, &data
, &ret
, uid
, gid
);
839 return ret
.u
.mkdir
.ret
;
843 int run_as_mkdir(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
845 struct run_as_data data
;
846 struct run_as_ret ret
;
848 memset(&data
, 0, sizeof(data
));
849 memset(&ret
, 0, sizeof(ret
));
851 DBG3("mkdir() %s with mode %d for uid %d and gid %d",
852 path
, (int) mode
, (int) uid
, (int) gid
);
853 strncpy(data
.u
.mkdir
.path
, path
, PATH_MAX
- 1);
854 data
.u
.mkdir
.path
[PATH_MAX
- 1] = '\0';
855 data
.u
.mkdir
.mode
= mode
;
856 run_as(RUN_AS_MKDIR
, &data
, &ret
, uid
, gid
);
858 return ret
.u
.mkdir
.ret
;
862 int run_as_open(const char *path
, int flags
, mode_t mode
, uid_t uid
, gid_t gid
)
864 struct run_as_data data
;
865 struct run_as_ret ret
;
867 memset(&data
, 0, sizeof(data
));
868 memset(&ret
, 0, sizeof(ret
));
870 DBG3("open() %s with flags %X mode %d for uid %d and gid %d",
871 path
, flags
, (int) mode
, (int) uid
, (int) gid
);
872 strncpy(data
.u
.open
.path
, path
, PATH_MAX
- 1);
873 data
.u
.open
.path
[PATH_MAX
- 1] = '\0';
874 data
.u
.open
.flags
= flags
;
875 data
.u
.open
.mode
= mode
;
876 run_as(RUN_AS_OPEN
, &data
, &ret
, uid
, gid
);
878 ret
.u
.open
.ret
= ret
.fd
;
879 return ret
.u
.open
.ret
;
883 int run_as_unlink(const char *path
, uid_t uid
, gid_t gid
)
885 struct run_as_data data
;
886 struct run_as_ret ret
;
888 memset(&data
, 0, sizeof(data
));
889 memset(&ret
, 0, sizeof(ret
));
891 DBG3("unlink() %s with for uid %d and gid %d",
892 path
, (int) uid
, (int) gid
);
893 strncpy(data
.u
.unlink
.path
, path
, PATH_MAX
- 1);
894 data
.u
.unlink
.path
[PATH_MAX
- 1] = '\0';
895 run_as(RUN_AS_UNLINK
, &data
, &ret
, uid
, gid
);
897 return ret
.u
.unlink
.ret
;
901 int run_as_rmdir_recursive(const char *path
, uid_t uid
, gid_t gid
)
903 struct run_as_data data
;
904 struct run_as_ret ret
;
906 memset(&data
, 0, sizeof(data
));
907 memset(&ret
, 0, sizeof(ret
));
909 DBG3("rmdir_recursive() %s with for uid %d and gid %d",
910 path
, (int) uid
, (int) gid
);
911 strncpy(data
.u
.rmdir_recursive
.path
, path
, PATH_MAX
- 1);
912 data
.u
.rmdir_recursive
.path
[PATH_MAX
- 1] = '\0';
913 run_as(RUN_AS_RMDIR_RECURSIVE
, &data
, &ret
, uid
, gid
);
915 return ret
.u
.rmdir_recursive
.ret
;
919 int run_as_extract_elf_symbol_offset(int fd
, const char* function
,
920 uid_t uid
, gid_t gid
, uint64_t *offset
)
922 struct run_as_data data
;
923 struct run_as_ret ret
;
925 memset(&data
, 0, sizeof(data
));
926 memset(&ret
, 0, sizeof(ret
));
928 DBG3("extract_elf_symbol_offset() on fd=%d and function=%s "
929 "with for uid %d and gid %d", fd
, function
, (int) uid
, (int) gid
);
933 strncpy(data
.u
.extract_elf_symbol_offset
.function
, function
, LTTNG_SYMBOL_NAME_LEN
- 1);
935 data
.u
.extract_elf_symbol_offset
.function
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
937 run_as(RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET
, &data
, &ret
, uid
, gid
);
945 *offset
= ret
.u
.extract_elf_symbol_offset
.offset
;
950 int run_as_extract_sdt_probe_offsets(int fd
, const char* provider_name
,
951 const char* probe_name
, uid_t uid
, gid_t gid
,
952 uint64_t **offsets
, uint32_t *num_offset
)
954 struct run_as_data data
;
955 struct run_as_ret ret
;
957 memset(&data
, 0, sizeof(data
));
958 memset(&ret
, 0, sizeof(ret
));
960 DBG3("extract_sdt_probe_offsets() on fd=%d, probe_name=%s and "
961 "provider_name=%s with for uid %d and gid %d", fd
, probe_name
,
962 provider_name
, (int) uid
, (int) gid
);
966 strncpy(data
.u
.extract_sdt_probe_offsets
.probe_name
, probe_name
, LTTNG_SYMBOL_NAME_LEN
- 1);
967 strncpy(data
.u
.extract_sdt_probe_offsets
.provider_name
, provider_name
, LTTNG_SYMBOL_NAME_LEN
- 1);
969 data
.u
.extract_sdt_probe_offsets
.probe_name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
970 data
.u
.extract_sdt_probe_offsets
.provider_name
[LTTNG_SYMBOL_NAME_LEN
- 1] = '\0';
972 run_as(RUN_AS_EXTRACT_SDT_PROBE_OFFSETS
, &data
, &ret
, uid
, gid
);
980 *num_offset
= ret
.u
.extract_sdt_probe_offsets
.num_offset
;
982 *offsets
= zmalloc(*num_offset
* sizeof(uint64_t));
987 memcpy(*offsets
, ret
.u
.extract_sdt_probe_offsets
.offsets
, *num_offset
* sizeof(uint64_t));
992 int reset_sighandler(void)
996 DBG("Resetting run_as worker signal handlers to default");
997 for (sig
= 1; sig
<= 31; sig
++) {
998 (void) signal(sig
, SIG_DFL
);
1004 void worker_sighandler(int sig
)
1006 const char *signame
;
1009 * The worker will inherit its parent's signals since they are part of
1010 * the same process group. However, in the case of SIGINT and SIGTERM,
1011 * we want to give the worker a chance to teardown gracefully when its
1012 * parent closes the command socket.
1019 signame
= "SIGTERM";
1026 DBG("run_as worker received signal %s", signame
);
1028 DBG("run_as_worker received signal %d", sig
);
1033 int set_worker_sighandlers(void)
1037 struct sigaction sa
;
1039 if ((ret
= sigemptyset(&sigset
)) < 0) {
1040 PERROR("sigemptyset");
1044 sa
.sa_handler
= worker_sighandler
;
1045 sa
.sa_mask
= sigset
;
1047 if ((ret
= sigaction(SIGINT
, &sa
, NULL
)) < 0) {
1048 PERROR("sigaction SIGINT");
1052 if ((ret
= sigaction(SIGTERM
, &sa
, NULL
)) < 0) {
1053 PERROR("sigaction SIGTERM");
1057 DBG("run_as signal handler set for SIGTERM and SIGINT");
1063 int run_as_create_worker(char *procname
)
1068 struct run_as_ret recvret
;
1069 struct run_as_worker
*worker
;
1071 pthread_mutex_lock(&worker_lock
);
1072 assert(!global_worker
);
1075 * Don't initialize a worker, all run_as tasks will be performed
1076 * in the current process.
1081 worker
= zmalloc(sizeof(*worker
));
1086 worker
->procname
= procname
;
1087 /* Create unix socket. */
1088 if (lttcomm_create_anon_unix_socketpair(worker
->sockpair
) < 0) {
1099 } else if (pid
== 0) {
1104 set_worker_sighandlers();
1106 /* The child has no use for this lock. */
1107 pthread_mutex_unlock(&worker_lock
);
1108 /* Just close, no shutdown. */
1109 if (close(worker
->sockpair
[0])) {
1115 * Close all FDs aside from STDIN, STDOUT, STDERR and sockpair[1]
1116 * Sockpair[1] is used as a control channel with the master
1118 for (i
= 3; i
< sysconf(_SC_OPEN_MAX
); i
++) {
1119 if (i
!= worker
->sockpair
[1]) {
1124 worker
->sockpair
[0] = -1;
1125 ret
= run_as_worker(worker
);
1126 if (lttcomm_close_unix_sock(worker
->sockpair
[1])) {
1130 worker
->sockpair
[1] = -1;
1131 LOG(ret
? PRINT_ERR
: PRINT_DBG
, "run_as worker exiting (ret = %d)", ret
);
1132 exit(ret
? EXIT_FAILURE
: EXIT_SUCCESS
);
1136 /* Just close, no shutdown. */
1137 if (close(worker
->sockpair
[1])) {
1142 worker
->sockpair
[1] = -1;
1144 /* Wait for worker to become ready. */
1145 readlen
= lttcomm_recv_unix_sock(worker
->sockpair
[0],
1146 &recvret
, sizeof(recvret
));
1147 if (readlen
< sizeof(recvret
)) {
1148 ERR("readlen: %zd", readlen
);
1149 PERROR("Error reading response from run_as at creation");
1153 global_worker
= worker
;
1156 pthread_mutex_unlock(&worker_lock
);
1159 /* Error handling. */
1161 for (i
= 0; i
< 2; i
++) {
1162 if (worker
->sockpair
[i
] < 0) {
1165 if (lttcomm_close_unix_sock(worker
->sockpair
[i
])) {
1168 worker
->sockpair
[i
] = -1;
1172 pthread_mutex_unlock(&worker_lock
);
1177 void run_as_destroy_worker(void)
1179 struct run_as_worker
*worker
= global_worker
;
1181 DBG("Destroying run_as worker");
1182 pthread_mutex_lock(&worker_lock
);
1186 /* Close unix socket */
1187 DBG("Closing run_as worker socket");
1188 if (lttcomm_close_unix_sock(worker
->sockpair
[0])) {
1191 worker
->sockpair
[0] = -1;
1192 /* Wait for worker. */
1197 wait_ret
= waitpid(worker
->pid
, &status
, 0);
1199 if (errno
== EINTR
) {
1206 if (WIFEXITED(status
)) {
1207 LOG(WEXITSTATUS(status
) == 0 ? PRINT_DBG
: PRINT_ERR
,
1208 DEFAULT_RUN_AS_WORKER_NAME
" terminated with status code %d",
1209 WEXITSTATUS(status
));
1211 } else if (WIFSIGNALED(status
)) {
1212 ERR(DEFAULT_RUN_AS_WORKER_NAME
" was killed by signal %d",
1218 global_worker
= NULL
;
1220 pthread_mutex_unlock(&worker_lock
);