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