2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <sys/types.h>
32 #include <sys/signal.h>
34 #include <common/common.h>
35 #include <common/utils.h>
36 #include <common/compat/mman.h>
37 #include <common/compat/clone.h>
38 #include <common/compat/getenv.h>
42 #define RUNAS_CHILD_STACK_SIZE 10485760
49 /* FreeBSD MAP_STACK always return -ENOMEM */
50 #define LTTNG_MAP_STACK 0
52 #define LTTNG_MAP_STACK MAP_STACK
56 #define MAP_GROWSDOWN 0
60 #define MAP_ANONYMOUS MAP_ANON
64 int (*cmd
)(void *data
);
71 struct run_as_mkdir_data
{
76 struct run_as_open_data
{
82 struct run_as_unlink_data
{
86 struct run_as_recursive_rmdir_data
{
100 return !lttng_secure_getenv("LTTNG_DEBUG_NOCLONE");
105 int _utils_mkdir_recursive_unsafe(const char *path
, mode_t mode
);
108 * Create recursively directory using the FULL path.
111 int _mkdir_recursive(void *_data
)
113 struct run_as_mkdir_data
*data
= _data
;
120 /* Safe to call as we have transitioned to the requested uid/gid. */
121 return _utils_mkdir_recursive_unsafe(path
, mode
);
125 int _mkdir(void *_data
)
128 struct run_as_mkdir_data
*data
= _data
;
130 ret
= mkdir(data
->path
, data
->mode
);
139 int _open(void *_data
)
141 struct run_as_open_data
*data
= _data
;
142 return open(data
->path
, data
->flags
, data
->mode
);
146 int _unlink(void *_data
)
149 struct run_as_unlink_data
*data
= _data
;
151 ret
= unlink(data
->path
);
160 int _recursive_rmdir(void *_data
)
163 struct run_as_recursive_rmdir_data
*data
= _data
;
165 ret
= utils_recursive_rmdir(data
->path
);
174 int child_run_as(void *_data
)
177 struct run_as_data
*data
= _data
;
182 * Child: it is safe to drop egid and euid while sharing the
183 * file descriptors with the parent process, since we do not
184 * drop "uid": therefore, the user we are dropping egid/euid to
185 * cannot attach to this process with, e.g. ptrace, nor map this
188 if (data
->gid
!= getegid()) {
189 ret
= setegid(data
->gid
);
196 if (data
->uid
!= geteuid()) {
197 ret
= seteuid(data
->uid
);
205 * Also set umask to 0 for mkdir executable bit.
208 sendret
= (*data
->cmd
)(data
->data
);
211 /* send back return value */
212 writelen
= lttng_write(data
->retval_pipe
, &sendret
, sizeof(sendret
));
213 if (writelen
< sizeof(sendret
)) {
214 PERROR("lttng_write error");
222 int run_as_clone(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
224 struct run_as_data run_as_data
;
234 * If we are non-root, we can only deal with our own uid.
236 if (geteuid() != 0) {
237 if (uid
!= geteuid()) {
238 ERR("Client (%d)/Server (%d) UID mismatch (and sessiond is not root)",
244 ret
= pipe(retval_pipe
);
250 run_as_data
.data
= data
;
251 run_as_data
.cmd
= cmd
;
252 run_as_data
.uid
= uid
;
253 run_as_data
.gid
= gid
;
254 run_as_data
.retval_pipe
= retval_pipe
[1]; /* write end */
255 child_stack
= mmap(NULL
, RUNAS_CHILD_STACK_SIZE
,
256 PROT_WRITE
| PROT_READ
,
257 MAP_PRIVATE
| MAP_GROWSDOWN
| MAP_ANONYMOUS
| LTTNG_MAP_STACK
,
259 if (child_stack
== MAP_FAILED
) {
265 * Pointing to the middle of the stack to support architectures
266 * where the stack grows up (HPPA).
268 pid
= lttng_clone_files(child_run_as
, child_stack
+ (RUNAS_CHILD_STACK_SIZE
/ 2),
275 /* receive return value */
276 readlen
= lttng_read(retval_pipe
[0], &retval
, sizeof(retval
));
277 if (readlen
< sizeof(retval
)) {
282 * Parent: wait for child to return, in which case the
283 * shared memory map will have been created.
285 pid
= waitpid(pid
, &status
, 0);
286 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
291 ret
= munmap(child_stack
, RUNAS_CHILD_STACK_SIZE
);
297 ret
= close(retval_pipe
[0]);
301 ret
= close(retval_pipe
[1]);
310 * To be used on setups where gdb has issues debugging programs using
311 * clone/rfork. Note that this is for debuging ONLY, and should not be
315 int run_as_noclone(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
328 int run_as(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
333 DBG("Using run_as_clone");
334 pthread_mutex_lock(<tng_libc_state_lock
);
335 ret
= run_as_clone(cmd
, data
, uid
, gid
);
336 pthread_mutex_unlock(<tng_libc_state_lock
);
339 DBG("Using run_as_noclone");
340 return run_as_noclone(cmd
, data
, uid
, gid
);
345 int run_as_mkdir_recursive(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
347 struct run_as_mkdir_data data
;
349 DBG3("mkdir() recursive %s with mode %d for uid %d and gid %d",
350 path
, mode
, uid
, gid
);
353 return run_as(_mkdir_recursive
, &data
, uid
, gid
);
357 int run_as_mkdir(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
359 struct run_as_mkdir_data data
;
361 DBG3("mkdir() %s with mode %d for uid %d and gid %d",
362 path
, mode
, uid
, gid
);
365 return run_as(_mkdir
, &data
, uid
, gid
);
369 * Note: open_run_as is currently not working. We'd need to pass the fd
370 * opened in the child to the parent.
373 int run_as_open(const char *path
, int flags
, mode_t mode
, uid_t uid
, gid_t gid
)
375 struct run_as_open_data data
;
377 DBG3("open() %s with flags %X mode %d for uid %d and gid %d",
378 path
, flags
, mode
, uid
, gid
);
382 return run_as(_open
, &data
, uid
, gid
);
386 int run_as_unlink(const char *path
, uid_t uid
, gid_t gid
)
388 struct run_as_unlink_data data
;
390 DBG3("unlink() %s with for uid %d and gid %d",
393 return run_as(_unlink
, &data
, uid
, gid
);
397 int run_as_recursive_rmdir(const char *path
, uid_t uid
, gid_t gid
)
399 struct run_as_recursive_rmdir_data data
;
401 DBG3("recursive_rmdir() %s with for uid %d and gid %d",
404 return run_as(_recursive_rmdir
, &data
, uid
, gid
);