04aedc3e69a00b14a5ffa0d24798d51d0d0c602e
[lttng-tools.git] / src / common / runas.c
1 /*
2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * Copyright (C) 2019 Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0-only
7 *
8 */
9
10 #define _LGPL_SOURCE
11 #include <limits.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <sys/wait.h>
16 #include <sys/types.h>
17 #include <sys/stat.h>
18 #include <unistd.h>
19 #include <fcntl.h>
20 #include <sched.h>
21 #include <signal.h>
22 #include <assert.h>
23 #include <signal.h>
24
25 #include <common/bytecode/bytecode.h>
26 #include <common/lttng-kernel.h>
27 #include <common/common.h>
28 #include <common/utils.h>
29 #include <common/compat/errno.h>
30 #include <common/compat/getenv.h>
31 #include <common/compat/string.h>
32 #include <common/unix.h>
33 #include <common/defaults.h>
34 #include <common/lttng-elf.h>
35 #include <common/thread.h>
36
37 #include <lttng/constant.h>
38
39 #include <common/sessiond-comm/sessiond-comm.h>
40 #include <common/filter/filter-ast.h>
41
42 #include "runas.h"
43
44 struct run_as_data;
45 struct run_as_ret;
46 typedef int (*run_as_fct)(struct run_as_data *data, struct run_as_ret *ret_value);
47
48 enum run_as_cmd {
49 RUN_AS_MKDIR,
50 RUN_AS_MKDIRAT,
51 RUN_AS_MKDIR_RECURSIVE,
52 RUN_AS_MKDIRAT_RECURSIVE,
53 RUN_AS_OPEN,
54 RUN_AS_OPENAT,
55 RUN_AS_UNLINK,
56 RUN_AS_UNLINKAT,
57 RUN_AS_RMDIR,
58 RUN_AS_RMDIRAT,
59 RUN_AS_RMDIR_RECURSIVE,
60 RUN_AS_RMDIRAT_RECURSIVE,
61 RUN_AS_RENAME,
62 RUN_AS_RENAMEAT,
63 RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET,
64 RUN_AS_EXTRACT_SDT_PROBE_OFFSETS,
65 RUN_AS_GENERATE_FILTER_BYTECODE,
66 };
67
68 struct run_as_mkdir_data {
69 int dirfd;
70 char path[LTTNG_PATH_MAX];
71 mode_t mode;
72 } LTTNG_PACKED;
73
74 struct run_as_open_data {
75 int dirfd;
76 char path[LTTNG_PATH_MAX];
77 int flags;
78 mode_t mode;
79 } LTTNG_PACKED;
80
81 struct run_as_unlink_data {
82 int dirfd;
83 char path[LTTNG_PATH_MAX];
84 } LTTNG_PACKED;
85
86 struct run_as_rmdir_data {
87 int dirfd;
88 char path[LTTNG_PATH_MAX];
89 int flags; /* enum lttng_directory_handle_rmdir_recursive_flags. */
90 } LTTNG_PACKED;
91
92 struct run_as_extract_elf_symbol_offset_data {
93 int fd;
94 char function[LTTNG_SYMBOL_NAME_LEN];
95 } LTTNG_PACKED;
96
97 struct run_as_extract_sdt_probe_offsets_data {
98 int fd;
99 char probe_name[LTTNG_SYMBOL_NAME_LEN];
100 char provider_name[LTTNG_SYMBOL_NAME_LEN];
101 } LTTNG_PACKED;
102
103 struct run_as_generate_filter_bytecode_data {
104 char filter_expression[LTTNG_FILTER_MAX_LEN];
105 } LTTNG_PACKED;
106
107 struct run_as_rename_data {
108 /*
109 * [0] = old_dirfd
110 * [1] = new_dirfd
111 */
112 int dirfds[2];
113 char old_path[LTTNG_PATH_MAX];
114 char new_path[LTTNG_PATH_MAX];
115 } LTTNG_PACKED;
116
117 struct run_as_open_ret {
118 int fd;
119 } LTTNG_PACKED;
120
121 struct run_as_extract_elf_symbol_offset_ret {
122 uint64_t offset;
123 } LTTNG_PACKED;
124
125 struct run_as_extract_sdt_probe_offsets_ret {
126 uint32_t num_offset;
127 uint64_t offsets[LTTNG_KERNEL_ABI_MAX_UPROBE_NUM];
128 } LTTNG_PACKED;
129
130 struct run_as_generate_filter_bytecode_ret {
131 /* A lttng_bytecode_filter struct with 'dynamic' payload. */
132 char bytecode[LTTNG_FILTER_MAX_LEN];
133 } LTTNG_PACKED;
134
135 struct run_as_data {
136 enum run_as_cmd cmd;
137 union {
138 struct run_as_mkdir_data mkdir;
139 struct run_as_open_data open;
140 struct run_as_unlink_data unlink;
141 struct run_as_rmdir_data rmdir;
142 struct run_as_rename_data rename;
143 struct run_as_extract_elf_symbol_offset_data extract_elf_symbol_offset;
144 struct run_as_extract_sdt_probe_offsets_data extract_sdt_probe_offsets;
145 struct run_as_generate_filter_bytecode_data generate_filter_bytecode;
146 } u;
147 uid_t uid;
148 gid_t gid;
149 } LTTNG_PACKED;
150
151 /*
152 * The run_as_ret structure holds the returned value and status of the command.
153 *
154 * The `u` union field holds the return value of the command; in most cases it
155 * represents the success or the failure of the command. In more complex
156 * commands, it holds a computed value.
157 *
158 * The _errno field is the errno recorded after the execution of the command.
159 *
160 * The _error fields is used the signify that return status of the command. For
161 * simple commands returning `int` the _error field will be the same as the
162 * ret_int field. In complex commands, it signify the success or failure of the
163 * command.
164 *
165 */
166 struct run_as_ret {
167 union {
168 int ret;
169 struct run_as_open_ret open;
170 struct run_as_extract_elf_symbol_offset_ret extract_elf_symbol_offset;
171 struct run_as_extract_sdt_probe_offsets_ret extract_sdt_probe_offsets;
172 struct run_as_generate_filter_bytecode_ret generate_filter_bytecode;
173 } u;
174 int _errno;
175 bool _error;
176 } LTTNG_PACKED;
177
178 #define COMMAND_IN_FDS(data_ptr) ({ \
179 int *fds = NULL; \
180 if (command_properties[data_ptr->cmd].in_fds_offset != -1) { \
181 fds = (int *) ((char *) data_ptr + command_properties[data_ptr->cmd].in_fds_offset); \
182 } \
183 fds; \
184 })
185
186 #define COMMAND_OUT_FDS(cmd, ret_ptr) ({ \
187 int *fds = NULL; \
188 if (command_properties[cmd].out_fds_offset != -1) { \
189 fds = (int *) ((char *) ret_ptr + command_properties[cmd].out_fds_offset); \
190 } \
191 fds; \
192 })
193
194 #define COMMAND_IN_FD_COUNT(data_ptr) ({ \
195 command_properties[data_ptr->cmd].in_fd_count; \
196 })
197
198 #define COMMAND_OUT_FD_COUNT(cmd) ({ \
199 command_properties[cmd].out_fd_count; \
200 })
201
202 #define COMMAND_USE_CWD_FD(data_ptr) command_properties[data_ptr->cmd].use_cwd_fd
203
204 struct run_as_command_properties {
205 /* Set to -1 when not applicable. */
206 ptrdiff_t in_fds_offset, out_fds_offset;
207 unsigned int in_fd_count, out_fd_count;
208 bool use_cwd_fd;
209 };
210
211 static const struct run_as_command_properties command_properties[] = {
212 [RUN_AS_MKDIR] = {
213 .in_fds_offset = offsetof(struct run_as_data, u.mkdir.dirfd),
214 .in_fd_count = 1,
215 .out_fds_offset = -1,
216 .out_fd_count = 0,
217 .use_cwd_fd = true,
218 },
219 [RUN_AS_MKDIRAT] = {
220 .in_fds_offset = offsetof(struct run_as_data, u.mkdir.dirfd),
221 .in_fd_count = 1,
222 .out_fds_offset = -1,
223 .out_fd_count = 0,
224 .use_cwd_fd = false,
225 },
226 [RUN_AS_MKDIR_RECURSIVE] = {
227 .in_fds_offset = offsetof(struct run_as_data, u.mkdir.dirfd),
228 .in_fd_count = 1,
229 .out_fds_offset = -1,
230 .out_fd_count = 0,
231 .use_cwd_fd = true,
232 },
233 [RUN_AS_MKDIRAT_RECURSIVE] = {
234 .in_fds_offset = offsetof(struct run_as_data, u.mkdir.dirfd),
235 .in_fd_count = 1,
236 .out_fds_offset = -1,
237 .out_fd_count = 0,
238 .use_cwd_fd = false,
239 },
240 [RUN_AS_OPEN] = {
241 .in_fds_offset = offsetof(struct run_as_data, u.open.dirfd),
242 .in_fd_count = 1,
243 .out_fds_offset = offsetof(struct run_as_ret, u.open.fd),
244 .out_fd_count = 1,
245 .use_cwd_fd = true,
246 },
247 [RUN_AS_OPENAT] = {
248 .in_fds_offset = offsetof(struct run_as_data, u.open.dirfd),
249 .in_fd_count = 1,
250 .out_fds_offset = offsetof(struct run_as_ret, u.open.fd),
251 .out_fd_count = 1,
252 .use_cwd_fd = false,
253 },
254 [RUN_AS_UNLINK] = {
255 .in_fds_offset = offsetof(struct run_as_data, u.unlink.dirfd),
256 .in_fd_count = 1,
257 .out_fds_offset = -1,
258 .out_fd_count = 0,
259 .use_cwd_fd = true,
260 },
261 [RUN_AS_UNLINKAT] = {
262 .in_fds_offset = offsetof(struct run_as_data, u.unlink.dirfd),
263 .in_fd_count = 1,
264 .out_fds_offset = -1,
265 .out_fd_count = 0,
266 .use_cwd_fd = false,
267 },
268 [RUN_AS_RMDIR_RECURSIVE] = {
269 .in_fds_offset = offsetof(struct run_as_data, u.rmdir.dirfd),
270 .in_fd_count = 1,
271 .out_fds_offset = -1,
272 .out_fd_count = 0,
273 .use_cwd_fd = true,
274 },
275 [RUN_AS_RMDIRAT_RECURSIVE] = {
276 .in_fds_offset = offsetof(struct run_as_data, u.rmdir.dirfd),
277 .in_fd_count = 1,
278 .out_fds_offset = -1,
279 .out_fd_count = 0,
280 .use_cwd_fd = false,
281 },
282 [RUN_AS_RMDIR] = {
283 .in_fds_offset = offsetof(struct run_as_data, u.rmdir.dirfd),
284 .in_fd_count = 1,
285 .out_fds_offset = -1,
286 .out_fd_count = 0,
287 .use_cwd_fd = true,
288 },
289 [RUN_AS_RMDIRAT] = {
290 .in_fds_offset = offsetof(struct run_as_data, u.rmdir.dirfd),
291 .in_fd_count = 1,
292 .out_fds_offset = -1,
293 .out_fd_count = 0,
294 .use_cwd_fd = false,
295 },
296 [RUN_AS_RENAME] = {
297 .in_fds_offset = offsetof(struct run_as_data, u.rename.dirfds),
298 .in_fd_count = 2,
299 .out_fds_offset = -1,
300 .out_fd_count = 0,
301 .use_cwd_fd = true,
302 },
303 [RUN_AS_RENAMEAT] = {
304 .in_fds_offset = offsetof(struct run_as_data, u.rename.dirfds),
305 .in_fd_count = 2,
306 .out_fds_offset = -1,
307 .out_fd_count = 0,
308 .use_cwd_fd = false,
309 },
310 [RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET] = {
311 .in_fds_offset = offsetof(struct run_as_data,
312 u.extract_elf_symbol_offset.fd),
313 .in_fd_count = 1,
314 .out_fds_offset = -1,
315 .out_fd_count = 0,
316 .use_cwd_fd = false,
317 },
318 [RUN_AS_EXTRACT_SDT_PROBE_OFFSETS] = {
319 .in_fds_offset = offsetof(struct run_as_data,
320 u.extract_sdt_probe_offsets.fd),
321 .in_fd_count = 1,
322 .out_fds_offset = -1,
323 .out_fd_count = 0,
324 .use_cwd_fd = false,
325 },
326 [RUN_AS_GENERATE_FILTER_BYTECODE] = {
327 .in_fds_offset = -1,
328 .in_fd_count = 0,
329 .out_fds_offset = -1,
330 .out_fd_count = 0,
331 .use_cwd_fd = false,
332 },
333 };
334
335 struct run_as_worker {
336 pid_t pid; /* Worker PID. */
337 int sockpair[2];
338 char *procname;
339 };
340
341 /* Single global worker per process (for now). */
342 static struct run_as_worker *global_worker;
343 /* Lock protecting the worker. */
344 static pthread_mutex_t worker_lock = PTHREAD_MUTEX_INITIALIZER;
345
346 #ifdef VALGRIND
347 static
348 int use_clone(void)
349 {
350 return 0;
351 }
352 #else
353 static
354 int use_clone(void)
355 {
356 return !lttng_secure_getenv("LTTNG_DEBUG_NOCLONE");
357 }
358 #endif
359
360 /*
361 * Create recursively directory using the FULL path.
362 */
363 static
364 int _mkdirat_recursive(struct run_as_data *data, struct run_as_ret *ret_value)
365 {
366 const char *path;
367 mode_t mode;
368 struct lttng_directory_handle *handle;
369
370 path = data->u.mkdir.path;
371 mode = data->u.mkdir.mode;
372
373 handle = lttng_directory_handle_create_from_dirfd(data->u.mkdir.dirfd);
374 if (!handle) {
375 ret_value->_errno = errno;
376 ret_value->_error = true;
377 ret_value->u.ret = -1;
378 goto end;
379 }
380 /* Ownership of dirfd is transferred to the handle. */
381 data->u.mkdir.dirfd = -1;
382 /* Safe to call as we have transitioned to the requested uid/gid. */
383 ret_value->u.ret = lttng_directory_handle_create_subdirectory_recursive(
384 handle, path, mode);
385 ret_value->_errno = errno;
386 ret_value->_error = (ret_value->u.ret) ? true : false;
387 lttng_directory_handle_put(handle);
388 end:
389 return ret_value->u.ret;
390 }
391
392 static
393 int _mkdirat(struct run_as_data *data, struct run_as_ret *ret_value)
394 {
395 const char *path;
396 mode_t mode;
397 struct lttng_directory_handle *handle;
398
399 path = data->u.mkdir.path;
400 mode = data->u.mkdir.mode;
401
402 handle = lttng_directory_handle_create_from_dirfd(data->u.mkdir.dirfd);
403 if (!handle) {
404 ret_value->u.ret = -1;
405 ret_value->_errno = errno;
406 ret_value->_error = true;
407 goto end;
408 }
409 /* Ownership of dirfd is transferred to the handle. */
410 data->u.mkdir.dirfd = -1;
411 /* Safe to call as we have transitioned to the requested uid/gid. */
412 ret_value->u.ret = lttng_directory_handle_create_subdirectory(
413 handle, path, mode);
414 ret_value->_errno = errno;
415 ret_value->_error = (ret_value->u.ret) ? true : false;
416 lttng_directory_handle_put(handle);
417 end:
418 return ret_value->u.ret;
419 }
420
421 static
422 int _open(struct run_as_data *data, struct run_as_ret *ret_value)
423 {
424 int fd;
425 struct lttng_directory_handle *handle;
426
427 handle = lttng_directory_handle_create_from_dirfd(data->u.open.dirfd);
428 if (!handle) {
429 ret_value->_errno = errno;
430 ret_value->_error = true;
431 ret_value->u.ret = -1;
432 goto end;
433 }
434 /* Ownership of dirfd is transferred to the handle. */
435 data->u.open.dirfd = -1;
436
437 fd = lttng_directory_handle_open_file(handle,
438 data->u.open.path, data->u.open.flags,
439 data->u.open.mode);
440 if (fd < 0) {
441 ret_value->u.ret = -1;
442 ret_value->u.open.fd = -1;
443 } else {
444 ret_value->u.ret = 0;
445 ret_value->u.open.fd = fd;
446 }
447
448 ret_value->_errno = errno;
449 ret_value->_error = fd < 0;
450 lttng_directory_handle_put(handle);
451 end:
452 return ret_value->u.ret;
453 }
454
455 static
456 int _unlink(struct run_as_data *data, struct run_as_ret *ret_value)
457 {
458 struct lttng_directory_handle *handle;
459
460 handle = lttng_directory_handle_create_from_dirfd(data->u.unlink.dirfd);
461 if (!handle) {
462 ret_value->u.ret = -1;
463 ret_value->_errno = errno;
464 ret_value->_error = true;
465 goto end;
466 }
467
468 /* Ownership of dirfd is transferred to the handle. */
469 data->u.unlink.dirfd = -1;
470
471 ret_value->u.ret = lttng_directory_handle_unlink_file(handle,
472 data->u.unlink.path);
473 ret_value->_errno = errno;
474 ret_value->_error = (ret_value->u.ret) ? true : false;
475 lttng_directory_handle_put(handle);
476 end:
477 return ret_value->u.ret;
478 }
479
480 static
481 int _rmdir(struct run_as_data *data, struct run_as_ret *ret_value)
482 {
483 struct lttng_directory_handle *handle;
484
485 handle = lttng_directory_handle_create_from_dirfd(data->u.rmdir.dirfd);
486 if (!handle) {
487 ret_value->u.ret = -1;
488 ret_value->_errno = errno;
489 ret_value->_error = true;
490 goto end;
491 }
492
493 /* Ownership of dirfd is transferred to the handle. */
494 data->u.rmdir.dirfd = -1;
495
496 ret_value->u.ret = lttng_directory_handle_remove_subdirectory(
497 handle, data->u.rmdir.path);
498 ret_value->_errno = errno;
499 ret_value->_error = (ret_value->u.ret) ? true : false;
500 lttng_directory_handle_put(handle);
501 end:
502 return ret_value->u.ret;
503 }
504
505 static
506 int _rmdir_recursive(struct run_as_data *data, struct run_as_ret *ret_value)
507 {
508 struct lttng_directory_handle *handle;
509
510 handle = lttng_directory_handle_create_from_dirfd(data->u.rmdir.dirfd);
511 if (!handle) {
512 ret_value->u.ret = -1;
513 ret_value->_errno = errno;
514 ret_value->_error = true;
515 goto end;
516 }
517
518 /* Ownership of dirfd is transferred to the handle. */
519 data->u.rmdir.dirfd = -1;
520
521 ret_value->u.ret = lttng_directory_handle_remove_subdirectory_recursive(
522 handle, data->u.rmdir.path, data->u.rmdir.flags);
523 ret_value->_errno = errno;
524 ret_value->_error = (ret_value->u.ret) ? true : false;
525 lttng_directory_handle_put(handle);
526 end:
527 return ret_value->u.ret;
528 }
529
530 static
531 int _rename(struct run_as_data *data, struct run_as_ret *ret_value)
532 {
533 const char *old_path, *new_path;
534 struct lttng_directory_handle *old_handle = NULL, *new_handle = NULL;
535
536 old_path = data->u.rename.old_path;
537 new_path = data->u.rename.new_path;
538
539 old_handle = lttng_directory_handle_create_from_dirfd(
540 data->u.rename.dirfds[0]);
541 if (!old_handle) {
542 ret_value->u.ret = -1;
543 goto end;
544 }
545 new_handle = lttng_directory_handle_create_from_dirfd(
546 data->u.rename.dirfds[1]);
547 if (!new_handle) {
548 ret_value->u.ret = -1;
549 goto end;
550 }
551
552 /* Ownership of dirfds are transferred to the handles. */
553 data->u.rename.dirfds[0] = data->u.rename.dirfds[1] = -1;
554
555 /* Safe to call as we have transitioned to the requested uid/gid. */
556 ret_value->u.ret = lttng_directory_handle_rename(
557 old_handle, old_path, new_handle, new_path);
558 end:
559 lttng_directory_handle_put(old_handle);
560 lttng_directory_handle_put(new_handle);
561 ret_value->_errno = errno;
562 ret_value->_error = (ret_value->u.ret) ? true : false;
563 return ret_value->u.ret;
564 }
565
566 #ifdef HAVE_ELF_H
567 static
568 int _extract_elf_symbol_offset(struct run_as_data *data,
569 struct run_as_ret *ret_value)
570 {
571 int ret = 0;
572 uint64_t offset;
573
574 ret_value->_error = false;
575 ret = lttng_elf_get_symbol_offset(data->u.extract_elf_symbol_offset.fd,
576 data->u.extract_elf_symbol_offset.function,
577 &offset);
578 if (ret) {
579 DBG("Failed to extract ELF function offset");
580 ret_value->_error = true;
581 }
582 ret_value->u.extract_elf_symbol_offset.offset = offset;
583
584 return ret;
585 }
586
587 static
588 int _extract_sdt_probe_offsets(struct run_as_data *data,
589 struct run_as_ret *ret_value)
590 {
591 int ret = 0;
592 uint64_t *offsets = NULL;
593 uint32_t num_offset;
594
595 ret_value->_error = false;
596
597 /* On success, this call allocates the offsets paramater. */
598 ret = lttng_elf_get_sdt_probe_offsets(
599 data->u.extract_sdt_probe_offsets.fd,
600 data->u.extract_sdt_probe_offsets.provider_name,
601 data->u.extract_sdt_probe_offsets.probe_name,
602 &offsets, &num_offset);
603
604 if (ret) {
605 DBG("Failed to extract SDT probe offsets");
606 ret_value->_error = true;
607 goto end;
608 }
609
610 if (num_offset <= 0 || num_offset > LTTNG_KERNEL_ABI_MAX_UPROBE_NUM) {
611 DBG("Wrong number of probes.");
612 ret = -1;
613 ret_value->_error = true;
614 goto free_offset;
615 }
616
617 /* Copy the content of the offsets array to the ret struct. */
618 memcpy(ret_value->u.extract_sdt_probe_offsets.offsets,
619 offsets, num_offset * sizeof(uint64_t));
620
621 ret_value->u.extract_sdt_probe_offsets.num_offset = num_offset;
622
623 free_offset:
624 free(offsets);
625 end:
626 return ret;
627 }
628 #else
629 static
630 int _extract_elf_symbol_offset(struct run_as_data *data,
631 struct run_as_ret *ret_value)
632 {
633 ERR("Unimplemented runas command RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET");
634 return -1;
635 }
636
637 static
638 int _extract_sdt_probe_offsets(struct run_as_data *data,
639 struct run_as_ret *ret_value)
640 {
641 ERR("Unimplemented runas command RUN_AS_EXTRACT_SDT_PROBE_OFFSETS");
642 return -1;
643 }
644 #endif
645
646 static
647 int _generate_filter_bytecode(struct run_as_data *data,
648 struct run_as_ret *ret_value) {
649 int ret = 0;
650 const char *filter_expression = NULL;
651 struct filter_parser_ctx *ctx = NULL;
652
653 ret_value->_error = false;
654
655 filter_expression = data->u.generate_filter_bytecode.filter_expression;
656
657 if (lttng_strnlen(filter_expression, LTTNG_FILTER_MAX_LEN - 1) == LTTNG_FILTER_MAX_LEN - 1) {
658 ret_value->_error = true;
659 ret = -1;
660 goto end;
661 }
662
663 ret = filter_parser_ctx_create_from_filter_expression(filter_expression, &ctx);
664 if (ret < 0) {
665 ret_value->_error = true;
666 ret = -1;
667 goto end;
668 }
669
670 DBG("Size of bytecode generated: %u bytes.",
671 bytecode_get_len(&ctx->bytecode->b));
672
673 /* Copy the lttng_bytecode_filter object to the return structure. */
674 memcpy(ret_value->u.generate_filter_bytecode.bytecode,
675 &ctx->bytecode->b,
676 sizeof(ctx->bytecode->b) +
677 bytecode_get_len(&ctx->bytecode->b));
678
679 end:
680 if (ctx) {
681 filter_bytecode_free(ctx);
682 filter_ir_free(ctx);
683 filter_parser_ctx_free(ctx);
684 }
685
686 return ret;
687 }
688 static
689 run_as_fct run_as_enum_to_fct(enum run_as_cmd cmd)
690 {
691 switch (cmd) {
692 case RUN_AS_MKDIR:
693 case RUN_AS_MKDIRAT:
694 return _mkdirat;
695 case RUN_AS_MKDIR_RECURSIVE:
696 case RUN_AS_MKDIRAT_RECURSIVE:
697 return _mkdirat_recursive;
698 case RUN_AS_OPEN:
699 case RUN_AS_OPENAT:
700 return _open;
701 case RUN_AS_UNLINK:
702 case RUN_AS_UNLINKAT:
703 return _unlink;
704 case RUN_AS_RMDIR:
705 case RUN_AS_RMDIRAT:
706 return _rmdir;
707 case RUN_AS_RMDIR_RECURSIVE:
708 case RUN_AS_RMDIRAT_RECURSIVE:
709 return _rmdir_recursive;
710 case RUN_AS_RENAME:
711 case RUN_AS_RENAMEAT:
712 return _rename;
713 case RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET:
714 return _extract_elf_symbol_offset;
715 case RUN_AS_EXTRACT_SDT_PROBE_OFFSETS:
716 return _extract_sdt_probe_offsets;
717 case RUN_AS_GENERATE_FILTER_BYTECODE:
718 return _generate_filter_bytecode;
719 default:
720 ERR("Unknown command %d", (int) cmd);
721 return NULL;
722 }
723 }
724
725 static
726 int do_send_fds(int sock, const int *fds, unsigned int fd_count)
727 {
728 ssize_t len;
729 unsigned int i;
730
731 for (i = 0; i < fd_count; i++) {
732 if (fds[i] < 0) {
733 DBG("Attempt to send invalid file descriptor (fd = %i)",
734 fds[i]);
735 /* Return 0 as this is not a fatal error. */
736 return 0;
737 }
738 }
739
740 len = lttcomm_send_fds_unix_sock(sock, fds, fd_count);
741 return len < 0 ? -1 : 0;
742 }
743
744 static
745 int do_recv_fds(int sock, int *fds, unsigned int fd_count)
746 {
747 int ret = 0;
748 unsigned int i;
749 ssize_t len;
750
751 len = lttcomm_recv_fds_unix_sock(sock, fds, fd_count);
752 if (len == 0) {
753 ret = -1;
754 goto end;
755 } else if (len < 0) {
756 PERROR("Failed to receive file descriptors from socket");
757 ret = -1;
758 goto end;
759 }
760
761 for (i = 0; i < fd_count; i++) {
762 if (fds[i] < 0) {
763 ERR("Invalid file descriptor received from worker (fd = %i)", fds[i]);
764 /* Return 0 as this is not a fatal error. */
765 }
766 }
767 end:
768 return ret;
769 }
770
771 static
772 int send_fds_to_worker(const struct run_as_worker *worker,
773 const struct run_as_data *data)
774 {
775 int ret = 0;
776 unsigned int i;
777
778 if (COMMAND_USE_CWD_FD(data) || COMMAND_IN_FD_COUNT(data) == 0) {
779 goto end;
780 }
781
782 for (i = 0; i < COMMAND_IN_FD_COUNT(data); i++) {
783 if (COMMAND_IN_FDS(data)[i] < 0) {
784 ERR("Refusing to send invalid fd to worker (fd = %i)",
785 COMMAND_IN_FDS(data)[i]);
786 ret = -1;
787 goto end;
788 }
789 }
790
791 ret = do_send_fds(worker->sockpair[0], COMMAND_IN_FDS(data),
792 COMMAND_IN_FD_COUNT(data));
793 if (ret < 0) {
794 PERROR("Failed to send file descriptor to run-as worker");
795 ret = -1;
796 goto end;
797 }
798 end:
799 return ret;
800 }
801
802 static
803 int send_fds_to_master(struct run_as_worker *worker, enum run_as_cmd cmd,
804 struct run_as_ret *run_as_ret)
805 {
806 int ret = 0;
807 unsigned int i;
808
809 if (COMMAND_OUT_FD_COUNT(cmd) == 0) {
810 goto end;
811 }
812
813 ret = do_send_fds(worker->sockpair[1], COMMAND_OUT_FDS(cmd, run_as_ret),
814 COMMAND_OUT_FD_COUNT(cmd));
815 if (ret < 0) {
816 PERROR("Failed to send file descriptor to master process");
817 goto end;
818 }
819
820 for (i = 0; i < COMMAND_OUT_FD_COUNT(cmd); i++) {
821 int fd = COMMAND_OUT_FDS(cmd, run_as_ret)[i];
822 if (fd >= 0) {
823 int ret_close = close(fd);
824
825 if (ret_close < 0) {
826 PERROR("Failed to close result file descriptor (fd = %i)",
827 fd);
828 }
829 }
830 }
831 end:
832 return ret;
833 }
834
835 static
836 int recv_fds_from_worker(const struct run_as_worker *worker, enum run_as_cmd cmd,
837 struct run_as_ret *run_as_ret)
838 {
839 int ret = 0;
840
841 if (COMMAND_OUT_FD_COUNT(cmd) == 0) {
842 goto end;
843 }
844
845 ret = do_recv_fds(worker->sockpair[0], COMMAND_OUT_FDS(cmd, run_as_ret),
846 COMMAND_OUT_FD_COUNT(cmd));
847 if (ret < 0) {
848 PERROR("Failed to receive file descriptor from run-as worker");
849 ret = -1;
850 }
851 end:
852 return ret;
853 }
854
855 static
856 int recv_fds_from_master(struct run_as_worker *worker, struct run_as_data *data)
857 {
858 int ret = 0;
859
860 if (COMMAND_USE_CWD_FD(data)) {
861 unsigned int i;
862
863 for (i = 0; i < COMMAND_IN_FD_COUNT(data); i++) {
864 COMMAND_IN_FDS(data)[i] = AT_FDCWD;
865 }
866 goto end;
867 }
868
869 if (COMMAND_IN_FD_COUNT(data) == 0) {
870 goto end;
871 }
872
873 ret = do_recv_fds(worker->sockpair[1], COMMAND_IN_FDS(data),
874 COMMAND_IN_FD_COUNT(data));
875 if (ret < 0) {
876 PERROR("Failed to receive file descriptors from master process");
877 ret = -1;
878 }
879 end:
880 return ret;
881 }
882
883 static
884 int cleanup_received_fds(struct run_as_data *data)
885 {
886 int ret = 0, i;
887
888 for (i = 0; i < COMMAND_IN_FD_COUNT(data); i++) {
889 if (COMMAND_IN_FDS(data)[i] == -1) {
890 continue;
891 }
892 ret = close(COMMAND_IN_FDS(data)[i]);
893 if (ret) {
894 PERROR("Failed to close file descriptor received fd in run-as worker");
895 goto end;
896 }
897 }
898 end:
899 return ret;
900 }
901
902 /*
903 * Return < 0 on error, 0 if OK, 1 on hangup.
904 */
905 static
906 int handle_one_cmd(struct run_as_worker *worker)
907 {
908 int ret = 0;
909 struct run_as_data data = {};
910 ssize_t readlen, writelen;
911 struct run_as_ret sendret = {};
912 run_as_fct cmd;
913 uid_t prev_euid;
914
915 /*
916 * Stage 1: Receive run_as_data struct from the master.
917 * The structure contains the command type and all the parameters needed for
918 * its execution
919 */
920 readlen = lttcomm_recv_unix_sock(worker->sockpair[1], &data,
921 sizeof(data));
922 if (readlen == 0) {
923 /* hang up */
924 ret = 1;
925 goto end;
926 }
927 if (readlen < sizeof(data)) {
928 PERROR("lttcomm_recv_unix_sock error");
929 ret = -1;
930 goto end;
931 }
932
933 cmd = run_as_enum_to_fct(data.cmd);
934 if (!cmd) {
935 ret = -1;
936 goto end;
937 }
938
939 /*
940 * Stage 2: Receive file descriptor from master.
941 * Some commands need a file descriptor as input so if it's needed we
942 * receive the fd using the Unix socket.
943 */
944 ret = recv_fds_from_master(worker, &data);
945 if (ret < 0) {
946 PERROR("recv_fd_from_master error");
947 ret = -1;
948 goto end;
949 }
950
951 prev_euid = getuid();
952 if (data.gid != getegid()) {
953 ret = setegid(data.gid);
954 if (ret < 0) {
955 sendret._error = true;
956 sendret._errno = errno;
957 PERROR("setegid");
958 goto write_return;
959 }
960 }
961 if (data.uid != prev_euid) {
962 ret = seteuid(data.uid);
963 if (ret < 0) {
964 sendret._error = true;
965 sendret._errno = errno;
966 PERROR("seteuid");
967 goto write_return;
968 }
969 }
970
971 /*
972 * Also set umask to 0 for mkdir executable bit.
973 */
974 umask(0);
975
976 /*
977 * Stage 3: Execute the command
978 */
979 ret = (*cmd)(&data, &sendret);
980 if (ret < 0) {
981 DBG("Execution of command returned an error");
982 }
983
984 write_return:
985 ret = cleanup_received_fds(&data);
986 if (ret < 0) {
987 ERR("Error cleaning up FD");
988 goto end;
989 }
990
991 /*
992 * Stage 4: Send run_as_ret structure to the master.
993 * This structure contain the return value of the command and the errno.
994 */
995 writelen = lttcomm_send_unix_sock(worker->sockpair[1], &sendret,
996 sizeof(sendret));
997 if (writelen < sizeof(sendret)) {
998 PERROR("lttcomm_send_unix_sock error");
999 ret = -1;
1000 goto end;
1001 }
1002
1003 /*
1004 * Stage 5: Send resulting file descriptors to the master.
1005 */
1006 ret = send_fds_to_master(worker, data.cmd, &sendret);
1007 if (ret < 0) {
1008 DBG("Sending FD to master returned an error");
1009 goto end;
1010 }
1011
1012 if (seteuid(prev_euid) < 0) {
1013 PERROR("seteuid");
1014 ret = -1;
1015 goto end;
1016 }
1017 ret = 0;
1018 end:
1019 return ret;
1020 }
1021
1022 static
1023 int run_as_worker(struct run_as_worker *worker)
1024 {
1025 int ret;
1026 ssize_t writelen;
1027 struct run_as_ret sendret;
1028 size_t proc_orig_len;
1029
1030 /*
1031 * Initialize worker. Set a different process cmdline.
1032 */
1033 proc_orig_len = strlen(worker->procname);
1034 memset(worker->procname, 0, proc_orig_len);
1035 strncpy(worker->procname, DEFAULT_RUN_AS_WORKER_NAME, proc_orig_len);
1036
1037 ret = lttng_thread_setname(DEFAULT_RUN_AS_WORKER_NAME);
1038 if (ret && ret != -ENOSYS) {
1039 /* Don't fail as this is not essential. */
1040 DBG("Failed to set pthread name attribute");
1041 }
1042
1043 memset(&sendret, 0, sizeof(sendret));
1044
1045 writelen = lttcomm_send_unix_sock(worker->sockpair[1], &sendret,
1046 sizeof(sendret));
1047 if (writelen < sizeof(sendret)) {
1048 PERROR("lttcomm_send_unix_sock error");
1049 ret = EXIT_FAILURE;
1050 goto end;
1051 }
1052
1053 for (;;) {
1054 ret = handle_one_cmd(worker);
1055 if (ret < 0) {
1056 ret = EXIT_FAILURE;
1057 goto end;
1058 } else if (ret > 0) {
1059 break;
1060 } else {
1061 continue; /* Next command. */
1062 }
1063 }
1064 ret = EXIT_SUCCESS;
1065 end:
1066 return ret;
1067 }
1068
1069 static
1070 int run_as_cmd(struct run_as_worker *worker,
1071 enum run_as_cmd cmd,
1072 struct run_as_data *data,
1073 struct run_as_ret *ret_value,
1074 uid_t uid, gid_t gid)
1075 {
1076 int ret = 0;
1077 ssize_t readlen, writelen;
1078
1079 /*
1080 * If we are non-root, we can only deal with our own uid.
1081 */
1082 if (geteuid() != 0) {
1083 if (uid != geteuid()) {
1084 ret = -1;
1085 ret_value->_errno = EPERM;
1086 ERR("Client (%d)/Server (%d) UID mismatch (and sessiond is not root)",
1087 (int) uid, (int) geteuid());
1088 goto end;
1089 }
1090 }
1091
1092 data->cmd = cmd;
1093 data->uid = uid;
1094 data->gid = gid;
1095
1096 /*
1097 * Stage 1: Send the run_as_data struct to the worker process
1098 */
1099 writelen = lttcomm_send_unix_sock(worker->sockpair[0], data,
1100 sizeof(*data));
1101 if (writelen < sizeof(*data)) {
1102 PERROR("Error writing message to run_as");
1103 ret = -1;
1104 ret_value->_errno = EIO;
1105 goto end;
1106 }
1107
1108 /*
1109 * Stage 2: Send file descriptor to the worker process if needed
1110 */
1111 ret = send_fds_to_worker(worker, data);
1112 if (ret) {
1113 PERROR("do_send_fd error");
1114 ret = -1;
1115 ret_value->_errno = EIO;
1116 goto end;
1117 }
1118
1119 /*
1120 * Stage 3: Wait for the execution of the command
1121 */
1122
1123 /*
1124 * Stage 4: Receive the run_as_ret struct containing the return value and
1125 * errno
1126 */
1127 readlen = lttcomm_recv_unix_sock(worker->sockpair[0], ret_value,
1128 sizeof(*ret_value));
1129 if (!readlen) {
1130 ERR("Run-as worker has hung-up during run_as_cmd");
1131 ret = -1;
1132 ret_value->_errno = EIO;
1133 goto end;
1134 } else if (readlen < sizeof(*ret_value)) {
1135 PERROR("Error reading response from run_as");
1136 ret = -1;
1137 ret_value->_errno = errno;
1138 goto end;
1139 }
1140
1141 if (ret_value->_error) {
1142 /* Skip stage 5 on error as there will be no fd to receive. */
1143 goto end;
1144 }
1145
1146 /*
1147 * Stage 5: Receive file descriptor if needed
1148 */
1149 ret = recv_fds_from_worker(worker, cmd, ret_value);
1150 if (ret < 0) {
1151 ERR("Error receiving fd");
1152 ret = -1;
1153 ret_value->_errno = EIO;
1154 }
1155
1156 end:
1157 return ret;
1158 }
1159
1160 /*
1161 * This is for debugging ONLY and should not be considered secure.
1162 */
1163 static
1164 int run_as_noworker(enum run_as_cmd cmd,
1165 struct run_as_data *data, struct run_as_ret *ret_value,
1166 uid_t uid, gid_t gid)
1167 {
1168 int ret, saved_errno;
1169 mode_t old_mask;
1170 run_as_fct fct;
1171
1172 fct = run_as_enum_to_fct(cmd);
1173 if (!fct) {
1174 errno = -ENOSYS;
1175 ret = -1;
1176 goto end;
1177 }
1178 old_mask = umask(0);
1179 ret = fct(data, ret_value);
1180 saved_errno = ret_value->_errno;
1181 umask(old_mask);
1182 errno = saved_errno;
1183 end:
1184 return ret;
1185 }
1186
1187 static
1188 int reset_sighandler(void)
1189 {
1190 int sig;
1191
1192 DBG("Resetting run_as worker signal handlers to default");
1193 for (sig = 1; sig <= 31; sig++) {
1194 (void) signal(sig, SIG_DFL);
1195 }
1196 return 0;
1197 }
1198
1199 static
1200 void worker_sighandler(int sig)
1201 {
1202 const char *signame;
1203
1204 /*
1205 * The worker will inherit its parent's signals since they are part of
1206 * the same process group. However, in the case of SIGINT and SIGTERM,
1207 * we want to give the worker a chance to teardown gracefully when its
1208 * parent closes the command socket.
1209 */
1210 switch (sig) {
1211 case SIGINT:
1212 signame = "SIGINT";
1213 break;
1214 case SIGTERM:
1215 signame = "SIGTERM";
1216 break;
1217 default:
1218 signame = NULL;
1219 }
1220
1221 if (signame) {
1222 DBG("run_as worker received signal %s", signame);
1223 } else {
1224 DBG("run_as_worker received signal %d", sig);
1225 }
1226 }
1227
1228 static
1229 int set_worker_sighandlers(void)
1230 {
1231 int ret = 0;
1232 sigset_t sigset;
1233 struct sigaction sa;
1234
1235 if ((ret = sigemptyset(&sigset)) < 0) {
1236 PERROR("sigemptyset");
1237 goto end;
1238 }
1239
1240 sa.sa_handler = worker_sighandler;
1241 sa.sa_mask = sigset;
1242 sa.sa_flags = 0;
1243 if ((ret = sigaction(SIGINT, &sa, NULL)) < 0) {
1244 PERROR("sigaction SIGINT");
1245 goto end;
1246 }
1247
1248 if ((ret = sigaction(SIGTERM, &sa, NULL)) < 0) {
1249 PERROR("sigaction SIGTERM");
1250 goto end;
1251 }
1252
1253 DBG("run_as signal handler set for SIGTERM and SIGINT");
1254 end:
1255 return ret;
1256 }
1257
1258 static
1259 int run_as_create_worker_no_lock(const char *procname,
1260 post_fork_cleanup_cb clean_up_func,
1261 void *clean_up_user_data)
1262 {
1263 pid_t pid;
1264 int i, ret = 0;
1265 ssize_t readlen;
1266 struct run_as_ret recvret;
1267 struct run_as_worker *worker;
1268
1269 assert(!global_worker);
1270 if (!use_clone()) {
1271 /*
1272 * Don't initialize a worker, all run_as tasks will be performed
1273 * in the current process.
1274 */
1275 ret = 0;
1276 goto end;
1277 }
1278 worker = zmalloc(sizeof(*worker));
1279 if (!worker) {
1280 ret = -ENOMEM;
1281 goto end;
1282 }
1283 worker->procname = strdup(procname);
1284 if (!worker->procname) {
1285 ret = -ENOMEM;
1286 goto error_procname_alloc;
1287 }
1288 /* Create unix socket. */
1289 if (lttcomm_create_anon_unix_socketpair(worker->sockpair) < 0) {
1290 ret = -1;
1291 goto error_sock;
1292 }
1293
1294 /* Fork worker. */
1295 pid = fork();
1296 if (pid < 0) {
1297 PERROR("fork");
1298 ret = -1;
1299 goto error_fork;
1300 } else if (pid == 0) {
1301 /* Child */
1302
1303 reset_sighandler();
1304
1305 set_worker_sighandlers();
1306
1307 logger_set_thread_name("Run-as worker", true);
1308
1309 if (clean_up_func) {
1310 if (clean_up_func(clean_up_user_data) < 0) {
1311 ERR("Run-as post-fork clean-up failed, exiting.");
1312 exit(EXIT_FAILURE);
1313 }
1314 }
1315
1316 /* Just close, no shutdown. */
1317 if (close(worker->sockpair[0])) {
1318 PERROR("close");
1319 exit(EXIT_FAILURE);
1320 }
1321
1322 /*
1323 * Close all FDs aside from STDIN, STDOUT, STDERR and sockpair[1]
1324 * Sockpair[1] is used as a control channel with the master
1325 */
1326 for (i = 3; i < sysconf(_SC_OPEN_MAX); i++) {
1327 if (i != worker->sockpair[1]) {
1328 (void) close(i);
1329 }
1330 }
1331
1332 worker->sockpair[0] = -1;
1333 ret = run_as_worker(worker);
1334 if (lttcomm_close_unix_sock(worker->sockpair[1])) {
1335 PERROR("close");
1336 ret = -1;
1337 }
1338 worker->sockpair[1] = -1;
1339 free(worker->procname);
1340 free(worker);
1341 LOG(ret ? PRINT_ERR : PRINT_DBG, "run_as worker exiting (ret = %d)", ret);
1342 exit(ret ? EXIT_FAILURE : EXIT_SUCCESS);
1343 } else {
1344 /* Parent */
1345
1346 /* Just close, no shutdown. */
1347 if (close(worker->sockpair[1])) {
1348 PERROR("close");
1349 ret = -1;
1350 goto error_fork;
1351 }
1352 worker->sockpair[1] = -1;
1353 worker->pid = pid;
1354 /* Wait for worker to become ready. */
1355 readlen = lttcomm_recv_unix_sock(worker->sockpair[0],
1356 &recvret, sizeof(recvret));
1357 if (readlen < sizeof(recvret)) {
1358 ERR("readlen: %zd", readlen);
1359 PERROR("Error reading response from run_as at creation");
1360 ret = -1;
1361 goto error_fork;
1362 }
1363 global_worker = worker;
1364 }
1365 end:
1366 return ret;
1367
1368 /* Error handling. */
1369 error_fork:
1370 for (i = 0; i < 2; i++) {
1371 if (worker->sockpair[i] < 0) {
1372 continue;
1373 }
1374 if (lttcomm_close_unix_sock(worker->sockpair[i])) {
1375 PERROR("close");
1376 }
1377 worker->sockpair[i] = -1;
1378 }
1379 error_sock:
1380 free(worker->procname);
1381 error_procname_alloc:
1382 free(worker);
1383 return ret;
1384 }
1385
1386 static
1387 void run_as_destroy_worker_no_lock(void)
1388 {
1389 struct run_as_worker *worker = global_worker;
1390
1391 DBG("Destroying run_as worker");
1392 if (!worker) {
1393 return;
1394 }
1395 /* Close unix socket */
1396 DBG("Closing run_as worker socket");
1397 if (lttcomm_close_unix_sock(worker->sockpair[0])) {
1398 PERROR("close");
1399 }
1400 worker->sockpair[0] = -1;
1401 /* Wait for worker. */
1402 for (;;) {
1403 int status;
1404 pid_t wait_ret;
1405
1406 wait_ret = waitpid(worker->pid, &status, 0);
1407 if (wait_ret < 0) {
1408 if (errno == EINTR) {
1409 continue;
1410 }
1411 PERROR("waitpid");
1412 break;
1413 }
1414
1415 if (WIFEXITED(status)) {
1416 LOG(WEXITSTATUS(status) == 0 ? PRINT_DBG : PRINT_ERR,
1417 DEFAULT_RUN_AS_WORKER_NAME " terminated with status code %d",
1418 WEXITSTATUS(status));
1419 break;
1420 } else if (WIFSIGNALED(status)) {
1421 ERR(DEFAULT_RUN_AS_WORKER_NAME " was killed by signal %d",
1422 WTERMSIG(status));
1423 break;
1424 }
1425 }
1426 free(worker->procname);
1427 free(worker);
1428 global_worker = NULL;
1429 }
1430
1431 static
1432 int run_as_restart_worker(struct run_as_worker *worker)
1433 {
1434 int ret = 0;
1435 char *procname = NULL;
1436
1437 procname = worker->procname;
1438
1439 /* Close socket to run_as worker process and clean up the zombie process */
1440 run_as_destroy_worker_no_lock();
1441
1442 /* Create a new run_as worker process*/
1443 ret = run_as_create_worker_no_lock(procname, NULL, NULL);
1444 if (ret < 0 ) {
1445 ERR("Restarting the worker process failed");
1446 ret = -1;
1447 goto err;
1448 }
1449 err:
1450 return ret;
1451 }
1452
1453 static
1454 int run_as(enum run_as_cmd cmd, struct run_as_data *data,
1455 struct run_as_ret *ret_value, uid_t uid, gid_t gid)
1456 {
1457 int ret, saved_errno;
1458
1459 pthread_mutex_lock(&worker_lock);
1460 if (use_clone()) {
1461 DBG("Using run_as worker");
1462
1463 assert(global_worker);
1464
1465 ret = run_as_cmd(global_worker, cmd, data, ret_value, uid, gid);
1466 saved_errno = ret_value->_errno;
1467
1468 /*
1469 * If the worker thread crashed the errno is set to EIO. we log
1470 * the error and start a new worker process.
1471 */
1472 if (ret == -1 && saved_errno == EIO) {
1473 DBG("Socket closed unexpectedly... "
1474 "Restarting the worker process");
1475 ret = run_as_restart_worker(global_worker);
1476 if (ret == -1) {
1477 ERR("Failed to restart worker process.");
1478 goto err;
1479 }
1480 }
1481 } else {
1482 DBG("Using run_as without worker");
1483 ret = run_as_noworker(cmd, data, ret_value, uid, gid);
1484 }
1485 err:
1486 pthread_mutex_unlock(&worker_lock);
1487 return ret;
1488 }
1489
1490 LTTNG_HIDDEN
1491 int run_as_mkdir_recursive(const char *path, mode_t mode, uid_t uid, gid_t gid)
1492 {
1493 return run_as_mkdirat_recursive(AT_FDCWD, path, mode, uid, gid);
1494 }
1495
1496 LTTNG_HIDDEN
1497 int run_as_mkdirat_recursive(int dirfd, const char *path, mode_t mode,
1498 uid_t uid, gid_t gid)
1499 {
1500 int ret;
1501 struct run_as_data data = {};
1502 struct run_as_ret run_as_ret = {};
1503
1504 DBG3("mkdirat() recursive fd = %d%s, path = %s, mode = %d, uid = %d, gid = %d",
1505 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1506 path, (int) mode, (int) uid, (int) gid);
1507 ret = lttng_strncpy(data.u.mkdir.path, path,
1508 sizeof(data.u.mkdir.path));
1509 if (ret) {
1510 ERR("Failed to copy path argument of mkdirat recursive command");
1511 goto error;
1512 }
1513 data.u.mkdir.path[sizeof(data.u.mkdir.path) - 1] = '\0';
1514 data.u.mkdir.mode = mode;
1515 data.u.mkdir.dirfd = dirfd;
1516 run_as(dirfd == AT_FDCWD ? RUN_AS_MKDIR_RECURSIVE : RUN_AS_MKDIRAT_RECURSIVE,
1517 &data, &run_as_ret, uid, gid);
1518 errno = run_as_ret._errno;
1519 ret = run_as_ret.u.ret;
1520 error:
1521 return ret;
1522 }
1523
1524 LTTNG_HIDDEN
1525 int run_as_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid)
1526 {
1527 return run_as_mkdirat(AT_FDCWD, path, mode, uid, gid);
1528 }
1529
1530 LTTNG_HIDDEN
1531 int run_as_mkdirat(int dirfd, const char *path, mode_t mode,
1532 uid_t uid, gid_t gid)
1533 {
1534 int ret;
1535 struct run_as_data data = {};
1536 struct run_as_ret run_as_ret = {};
1537
1538 DBG3("mkdirat() recursive fd = %d%s, path = %s, mode = %d, uid = %d, gid = %d",
1539 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1540 path, (int) mode, (int) uid, (int) gid);
1541 ret = lttng_strncpy(data.u.mkdir.path, path,
1542 sizeof(data.u.mkdir.path));
1543 if (ret) {
1544 ERR("Failed to copy path argument of mkdirat command");
1545 goto error;
1546 }
1547 data.u.mkdir.path[sizeof(data.u.mkdir.path) - 1] = '\0';
1548 data.u.mkdir.mode = mode;
1549 data.u.mkdir.dirfd = dirfd;
1550 run_as(dirfd == AT_FDCWD ? RUN_AS_MKDIR : RUN_AS_MKDIRAT,
1551 &data, &run_as_ret, uid, gid);
1552 errno = run_as_ret._errno;
1553 ret = run_as_ret.u.ret;
1554 error:
1555 return ret;
1556 }
1557
1558 LTTNG_HIDDEN
1559 int run_as_open(const char *path, int flags, mode_t mode, uid_t uid,
1560 gid_t gid)
1561 {
1562 return run_as_openat(AT_FDCWD, path, flags, mode, uid, gid);
1563 }
1564
1565 LTTNG_HIDDEN
1566 int run_as_openat(int dirfd, const char *path, int flags, mode_t mode,
1567 uid_t uid, gid_t gid)
1568 {
1569 int ret;
1570 struct run_as_data data = {};
1571 struct run_as_ret run_as_ret = {};
1572
1573 DBG3("openat() fd = %d%s, path = %s, flags = %X, mode = %d, uid %d, gid %d",
1574 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1575 path, flags, (int) mode, (int) uid, (int) gid);
1576 ret = lttng_strncpy(data.u.open.path, path, sizeof(data.u.open.path));
1577 if (ret) {
1578 ERR("Failed to copy path argument of open command");
1579 goto error;
1580 }
1581 data.u.open.flags = flags;
1582 data.u.open.mode = mode;
1583 data.u.open.dirfd = dirfd;
1584 run_as(dirfd == AT_FDCWD ? RUN_AS_OPEN : RUN_AS_OPENAT,
1585 &data, &run_as_ret, uid, gid);
1586 errno = run_as_ret._errno;
1587 ret = run_as_ret.u.ret < 0 ? run_as_ret.u.ret :
1588 run_as_ret.u.open.fd;
1589 error:
1590 return ret;
1591 }
1592
1593 LTTNG_HIDDEN
1594 int run_as_unlink(const char *path, uid_t uid, gid_t gid)
1595 {
1596 return run_as_unlinkat(AT_FDCWD, path, uid, gid);
1597 }
1598
1599 LTTNG_HIDDEN
1600 int run_as_unlinkat(int dirfd, const char *path, uid_t uid, gid_t gid)
1601 {
1602 int ret;
1603 struct run_as_data data = {};
1604 struct run_as_ret run_as_ret = {};
1605
1606 DBG3("unlinkat() fd = %d%s, path = %s, uid = %d, gid = %d",
1607 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1608 path, (int) uid, (int) gid);
1609 ret = lttng_strncpy(data.u.unlink.path, path,
1610 sizeof(data.u.unlink.path));
1611 if (ret) {
1612 goto error;
1613 }
1614 data.u.unlink.dirfd = dirfd;
1615 run_as(dirfd == AT_FDCWD ? RUN_AS_UNLINK : RUN_AS_UNLINKAT, &data,
1616 &run_as_ret, uid, gid);
1617 errno = run_as_ret._errno;
1618 ret = run_as_ret.u.ret;
1619 error:
1620 return ret;
1621 }
1622
1623 LTTNG_HIDDEN
1624 int run_as_rmdir(const char *path, uid_t uid, gid_t gid)
1625 {
1626 return run_as_rmdirat(AT_FDCWD, path, uid, gid);
1627 }
1628
1629 LTTNG_HIDDEN
1630 int run_as_rmdirat(int dirfd, const char *path, uid_t uid, gid_t gid)
1631 {
1632 int ret;
1633 struct run_as_data data = {};
1634 struct run_as_ret run_as_ret = {};
1635
1636 DBG3("rmdirat() fd = %d%s, path = %s, uid = %d, gid = %d",
1637 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1638 path, (int) uid, (int) gid);
1639 ret = lttng_strncpy(data.u.rmdir.path, path,
1640 sizeof(data.u.rmdir.path));
1641 if (ret) {
1642 goto error;
1643 }
1644 data.u.rmdir.dirfd = dirfd;
1645 run_as(dirfd == AT_FDCWD ? RUN_AS_RMDIR : RUN_AS_RMDIRAT, &data,
1646 &run_as_ret, uid, gid);
1647 errno = run_as_ret._errno;
1648 ret = run_as_ret.u.ret;
1649 error:
1650 return ret;
1651 }
1652
1653 LTTNG_HIDDEN
1654 int run_as_rmdir_recursive(const char *path, uid_t uid, gid_t gid, int flags)
1655 {
1656 return run_as_rmdirat_recursive(AT_FDCWD, path, uid, gid, flags);
1657 }
1658
1659 LTTNG_HIDDEN
1660 int run_as_rmdirat_recursive(int dirfd, const char *path, uid_t uid, gid_t gid, int flags)
1661 {
1662 int ret;
1663 struct run_as_data data = {};
1664 struct run_as_ret run_as_ret = {};
1665
1666 DBG3("rmdirat() recursive fd = %d%s, path = %s, uid = %d, gid = %d",
1667 dirfd, dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1668 path, (int) uid, (int) gid);
1669 ret = lttng_strncpy(data.u.rmdir.path, path,
1670 sizeof(data.u.rmdir.path));
1671 if (ret) {
1672 goto error;
1673 }
1674 data.u.rmdir.dirfd = dirfd;
1675 data.u.rmdir.flags = flags;
1676 run_as(dirfd == AT_FDCWD ? RUN_AS_RMDIR_RECURSIVE : RUN_AS_RMDIRAT_RECURSIVE,
1677 &data, &run_as_ret, uid, gid);
1678 errno = run_as_ret._errno;
1679 ret = run_as_ret.u.ret;
1680 error:
1681 return ret;
1682 }
1683
1684 LTTNG_HIDDEN
1685 int run_as_rename(const char *old, const char *new, uid_t uid, gid_t gid)
1686 {
1687 return run_as_renameat(AT_FDCWD, old, AT_FDCWD, new, uid, gid);
1688 }
1689
1690 LTTNG_HIDDEN
1691 int run_as_renameat(int old_dirfd, const char *old_name,
1692 int new_dirfd, const char *new_name, uid_t uid, gid_t gid)
1693 {
1694 int ret;
1695 struct run_as_data data = {};
1696 struct run_as_ret run_as_ret = {};
1697
1698 DBG3("renameat() old_dirfd = %d%s, old_name = %s, new_dirfd = %d%s, new_name = %s, uid = %d, gid = %d",
1699 old_dirfd, old_dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1700 old_name,
1701 new_dirfd, new_dirfd == AT_FDCWD ? " (AT_FDCWD)" : "",
1702 new_name, (int) uid, (int) gid);
1703 ret = lttng_strncpy(data.u.rename.old_path, old_name,
1704 sizeof(data.u.rename.old_path));
1705 if (ret) {
1706 goto error;
1707 }
1708 ret = lttng_strncpy(data.u.rename.new_path, new_name,
1709 sizeof(data.u.rename.new_path));
1710 if (ret) {
1711 goto error;
1712 }
1713
1714 data.u.rename.dirfds[0] = old_dirfd;
1715 data.u.rename.dirfds[1] = new_dirfd;
1716 run_as(old_dirfd == AT_FDCWD && new_dirfd == AT_FDCWD ?
1717 RUN_AS_RENAME : RUN_AS_RENAMEAT,
1718 &data, &run_as_ret, uid, gid);
1719 errno = run_as_ret._errno;
1720 ret = run_as_ret.u.ret;
1721 error:
1722 return ret;
1723 }
1724
1725 LTTNG_HIDDEN
1726 int run_as_extract_elf_symbol_offset(int fd, const char* function,
1727 uid_t uid, gid_t gid, uint64_t *offset)
1728 {
1729 int ret;
1730 struct run_as_data data = {};
1731 struct run_as_ret run_as_ret = {};
1732
1733 DBG3("extract_elf_symbol_offset() on fd=%d and function=%s "
1734 "with for uid %d and gid %d", fd, function,
1735 (int) uid, (int) gid);
1736
1737 data.u.extract_elf_symbol_offset.fd = fd;
1738
1739 strncpy(data.u.extract_elf_symbol_offset.function, function, LTTNG_SYMBOL_NAME_LEN - 1);
1740 data.u.extract_elf_symbol_offset.function[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
1741 ret = lttng_strncpy(data.u.extract_elf_symbol_offset.function,
1742 function,
1743 sizeof(data.u.extract_elf_symbol_offset.function));
1744 if (ret) {
1745 goto error;
1746 }
1747
1748 run_as(RUN_AS_EXTRACT_ELF_SYMBOL_OFFSET, &data, &run_as_ret, uid, gid);
1749 errno = run_as_ret._errno;
1750 if (run_as_ret._error) {
1751 ret = -1;
1752 goto error;
1753 }
1754
1755 *offset = run_as_ret.u.extract_elf_symbol_offset.offset;
1756 error:
1757 return ret;
1758 }
1759
1760 LTTNG_HIDDEN
1761 int run_as_extract_sdt_probe_offsets(int fd, const char* provider_name,
1762 const char* probe_name, uid_t uid, gid_t gid,
1763 uint64_t **offsets, uint32_t *num_offset)
1764 {
1765 int ret;
1766 struct run_as_data data = {};
1767 struct run_as_ret run_as_ret = {};
1768
1769 DBG3("extract_sdt_probe_offsets() on fd=%d, probe_name=%s and "
1770 "provider_name=%s with for uid %d and gid %d", fd,
1771 probe_name, provider_name, (int) uid, (int) gid);
1772
1773 data.u.extract_sdt_probe_offsets.fd = fd;
1774
1775 ret = lttng_strncpy(data.u.extract_sdt_probe_offsets.probe_name, probe_name,
1776 sizeof(data.u.extract_sdt_probe_offsets.probe_name));
1777 if (ret) {
1778 goto error;
1779 }
1780 ret = lttng_strncpy(data.u.extract_sdt_probe_offsets.provider_name,
1781 provider_name,
1782 sizeof(data.u.extract_sdt_probe_offsets.provider_name));
1783 if (ret) {
1784 goto error;
1785 }
1786
1787 run_as(RUN_AS_EXTRACT_SDT_PROBE_OFFSETS, &data, &run_as_ret, uid, gid);
1788 errno = run_as_ret._errno;
1789 if (run_as_ret._error) {
1790 ret = -1;
1791 goto error;
1792 }
1793
1794 *num_offset = run_as_ret.u.extract_sdt_probe_offsets.num_offset;
1795 *offsets = zmalloc(*num_offset * sizeof(uint64_t));
1796 if (!*offsets) {
1797 ret = -ENOMEM;
1798 goto error;
1799 }
1800
1801 memcpy(*offsets, run_as_ret.u.extract_sdt_probe_offsets.offsets,
1802 *num_offset * sizeof(uint64_t));
1803 error:
1804 return ret;
1805 }
1806
1807 LTTNG_HIDDEN
1808 int run_as_generate_filter_bytecode(const char *filter_expression,
1809 const struct lttng_credentials *creds,
1810 struct lttng_bytecode **bytecode)
1811 {
1812 int ret;
1813 struct run_as_data data = {};
1814 struct run_as_ret run_as_ret = {};
1815 const struct lttng_bytecode *view_bytecode = NULL;
1816 struct lttng_bytecode *local_bytecode = NULL;
1817 const uid_t uid = lttng_credentials_get_uid(creds);
1818 const gid_t gid = lttng_credentials_get_gid(creds);
1819
1820 DBG3("generate_filter_bytecode() from expression=\"%s\" for uid %d and gid %d",
1821 filter_expression, (int) uid, (int) gid);
1822
1823 ret = lttng_strncpy(data.u.generate_filter_bytecode.filter_expression, filter_expression,
1824 sizeof(data.u.generate_filter_bytecode.filter_expression));
1825 if (ret) {
1826 goto error;
1827 }
1828
1829 run_as(RUN_AS_GENERATE_FILTER_BYTECODE, &data, &run_as_ret, uid, gid);
1830 errno = run_as_ret._errno;
1831 if (run_as_ret._error) {
1832 ret = -1;
1833 goto error;
1834 }
1835
1836 view_bytecode = (const struct lttng_bytecode *) run_as_ret.u.generate_filter_bytecode.bytecode;
1837
1838 local_bytecode = zmalloc(sizeof(*local_bytecode) + view_bytecode->len);
1839 if (!local_bytecode) {
1840 ret = -ENOMEM;
1841 goto error;
1842 }
1843
1844 memcpy(local_bytecode, run_as_ret.u.generate_filter_bytecode.bytecode,
1845 sizeof(*local_bytecode) + view_bytecode->len);
1846 *bytecode = local_bytecode;
1847 error:
1848 return ret;
1849 }
1850
1851 LTTNG_HIDDEN
1852 int run_as_create_worker(const char *procname,
1853 post_fork_cleanup_cb clean_up_func,
1854 void *clean_up_user_data)
1855 {
1856 int ret;
1857
1858 pthread_mutex_lock(&worker_lock);
1859 ret = run_as_create_worker_no_lock(procname, clean_up_func,
1860 clean_up_user_data);
1861 pthread_mutex_unlock(&worker_lock);
1862 return ret;
1863 }
1864
1865 LTTNG_HIDDEN
1866 void run_as_destroy_worker(void)
1867 {
1868 pthread_mutex_lock(&worker_lock);
1869 run_as_destroy_worker_no_lock();
1870 pthread_mutex_unlock(&worker_lock);
1871 }
This page took 0.082891 seconds and 3 git commands to generate.