2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
31 #include <sys/signal.h>
33 #include <common/error.h>
34 #include <common/compat/mman.h>
35 #include <common/compat/clone.h>
39 #define RUNAS_CHILD_STACK_SIZE 10485760
46 /* FreeBSD MAP_STACK always return -ENOMEM */
47 #define LTTNG_MAP_STACK 0
49 #define LTTNG_MAP_STACK MAP_STACK
53 #define MAP_GROWSDOWN 0
57 #define MAP_ANONYMOUS MAP_ANON
61 int (*cmd
)(void *data
);
68 struct run_as_mkdir_data
{
73 struct run_as_open_data
{
80 * Create recursively directory using the FULL path.
83 int _mkdir_recursive(void *_data
)
85 struct run_as_mkdir_data
*data
= _data
;
87 char *p
, tmp
[PATH_MAX
];
96 ret
= snprintf(tmp
, sizeof(tmp
), "%s", path
);
98 PERROR("snprintf mkdir");
103 if (tmp
[len
- 1] == '/') {
107 for (p
= tmp
+ 1; *p
; p
++) {
110 ret
= stat(tmp
, &statbuf
);
112 ret
= mkdir(tmp
, mode
);
114 if (!(errno
== EEXIST
)) {
115 PERROR("mkdir recursive");
125 ret
= mkdir(tmp
, mode
);
127 if (!(errno
== EEXIST
)) {
128 PERROR("mkdir recursive last piece");
140 int _mkdir(void *_data
)
142 struct run_as_mkdir_data
*data
= _data
;
143 return mkdir(data
->path
, data
->mode
);
147 int _open(void *_data
)
149 struct run_as_open_data
*data
= _data
;
150 return open(data
->path
, data
->flags
, data
->mode
);
154 int child_run_as(void *_data
)
156 struct run_as_data
*data
= _data
;
157 size_t writelen
, writeleft
, index
;
165 * Child: it is safe to drop egid and euid while sharing the
166 * file descriptors with the parent process, since we do not
167 * drop "uid": therefore, the user we are dropping egid/euid to
168 * cannot attach to this process with, e.g. ptrace, nor map this
171 if (data
->gid
!= getegid()) {
172 ret
= setegid(data
->gid
);
178 if (data
->uid
!= geteuid()) {
179 ret
= seteuid(data
->uid
);
186 * Also set umask to 0 for mkdir executable bit.
189 sendret
.i
= (*data
->cmd
)(data
->data
);
190 /* send back return value */
191 writeleft
= sizeof(sendret
);
194 writelen
= write(data
->retval_pipe
, &sendret
.c
[index
],
200 writeleft
-= writelen
;
202 } while (writeleft
> 0);
207 int run_as_clone(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
209 struct run_as_data run_as_data
;
214 ssize_t readlen
, readleft
, index
;
222 * If we are non-root, we can only deal with our own uid.
224 if (geteuid() != 0) {
225 if (uid
!= geteuid()) {
226 ERR("Client (%d)/Server (%d) UID mismatch (and sessiond is not root)",
232 ret
= pipe(retval_pipe
);
238 run_as_data
.data
= data
;
239 run_as_data
.cmd
= cmd
;
240 run_as_data
.uid
= uid
;
241 run_as_data
.gid
= gid
;
242 run_as_data
.retval_pipe
= retval_pipe
[1]; /* write end */
243 child_stack
= mmap(NULL
, RUNAS_CHILD_STACK_SIZE
,
244 PROT_WRITE
| PROT_READ
,
245 MAP_PRIVATE
| MAP_GROWSDOWN
| MAP_ANONYMOUS
| LTTNG_MAP_STACK
,
247 if (child_stack
== MAP_FAILED
) {
253 * Pointing to the middle of the stack to support architectures
254 * where the stack grows up (HPPA).
256 pid
= lttng_clone_files(child_run_as
, child_stack
+ (RUNAS_CHILD_STACK_SIZE
/ 2),
263 /* receive return value */
264 readleft
= sizeof(retval
);
267 readlen
= read(retval_pipe
[0], &retval
.c
[index
], readleft
);
275 } while (readleft
> 0);
278 * Parent: wait for child to return, in which case the
279 * shared memory map will have been created.
281 pid
= waitpid(pid
, &status
, 0);
282 if (pid
< 0 || !WIFEXITED(status
) || WEXITSTATUS(status
) != 0) {
287 ret
= munmap(child_stack
, RUNAS_CHILD_STACK_SIZE
);
293 ret
= close(retval_pipe
[0]);
297 ret
= close(retval_pipe
[1]);
306 * To be used on setups where gdb has issues debugging programs using
307 * clone/rfork. Note that this is for debuging ONLY, and should not be
311 int run_as_noclone(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
317 int run_as(int (*cmd
)(void *data
), void *data
, uid_t uid
, gid_t gid
)
319 if (!getenv("LTTNG_DEBUG_NOCLONE")) {
322 DBG("Using run_as_clone");
323 pthread_mutex_lock(<tng_libc_state_lock
);
324 ret
= run_as_clone(cmd
, data
, uid
, gid
);
325 pthread_mutex_unlock(<tng_libc_state_lock
);
328 DBG("Using run_as_noclone");
329 return run_as_noclone(cmd
, data
, uid
, gid
);
333 int run_as_mkdir_recursive(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
335 struct run_as_mkdir_data data
;
337 DBG3("mkdir() recursive %s with mode %d for uid %d and gid %d",
338 path
, mode
, uid
, gid
);
341 return run_as(_mkdir_recursive
, &data
, uid
, gid
);
344 int run_as_mkdir(const char *path
, mode_t mode
, uid_t uid
, gid_t gid
)
346 struct run_as_mkdir_data data
;
348 DBG3("mkdir() %s with mode %d for uid %d and gid %d",
349 path
, mode
, uid
, gid
);
352 return run_as(_mkdir
, &data
, uid
, gid
);
356 * Note: open_run_as is currently not working. We'd need to pass the fd
357 * opened in the child to the parent.
359 int run_as_open(const char *path
, int flags
, mode_t mode
, uid_t uid
, gid_t gid
)
361 struct run_as_open_data data
;
363 DBG3("open() %s with flags %X mode %d for uid %d and gid %d",
364 path
, flags
, mode
, uid
, gid
);
368 return run_as(_open
, &data
, uid
, gid
);
This page took 0.058874 seconds and 5 git commands to generate.