]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/attach.c
Merge pull request #1994 from brauner/2017-12-04/bugfixes
[mirror_lxc.git] / src / lxc / attach.c
1 /*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
7 * Daniel Lezcano <daniel.lezcano at free.fr>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #define _GNU_SOURCE
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <grp.h>
28 #include <pwd.h>
29 #include <signal.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34 #include <linux/unistd.h>
35 #include <sys/mount.h>
36 #include <sys/param.h>
37 #include <sys/prctl.h>
38 #include <sys/socket.h>
39 #include <sys/syscall.h>
40 #include <sys/wait.h>
41
42 #include <lxc/lxccontainer.h>
43
44 #ifndef HAVE_DECL_PR_CAPBSET_DROP
45 #define PR_CAPBSET_DROP 24
46 #endif
47
48 #ifndef HAVE_DECL_PR_SET_NO_NEW_PRIVS
49 #define PR_SET_NO_NEW_PRIVS 38
50 #endif
51
52 #ifndef HAVE_DECL_PR_GET_NO_NEW_PRIVS
53 #define PR_GET_NO_NEW_PRIVS 39
54 #endif
55
56 #include "af_unix.h"
57 #include "attach.h"
58 #include "caps.h"
59 #include "cgroup.h"
60 #include "commands.h"
61 #include "conf.h"
62 #include "config.h"
63 #include "confile.h"
64 #include "log.h"
65 #include "lsm/lsm.h"
66 #include "lxclock.h"
67 #include "lxcseccomp.h"
68 #include "namespace.h"
69 #include "utils.h"
70
71 #if HAVE_SYS_PERSONALITY_H
72 #include <sys/personality.h>
73 #endif
74
75 #ifndef SOCK_CLOEXEC
76 #define SOCK_CLOEXEC 02000000
77 #endif
78
79 #ifndef MS_REC
80 #define MS_REC 16384
81 #endif
82
83 #ifndef MS_SLAVE
84 #define MS_SLAVE (1 << 19)
85 #endif
86
87 lxc_log_define(lxc_attach, lxc);
88
89 /* /proc/pid-to-str/current\0 = (5 + 21 + 7 + 1) */
90 #define __LSMATTRLEN (5 + (LXC_NUMSTRLEN64) + 7 + 1)
91 static int lsm_openat(int procfd, pid_t pid, int on_exec)
92 {
93 int ret = -1;
94 int labelfd = -1;
95 const char *name;
96 char path[__LSMATTRLEN];
97
98 name = lsm_name();
99
100 if (strcmp(name, "nop") == 0)
101 return 0;
102
103 if (strcmp(name, "none") == 0)
104 return 0;
105
106 /* We don't support on-exec with AppArmor */
107 if (strcmp(name, "AppArmor") == 0)
108 on_exec = 0;
109
110 if (on_exec)
111 ret = snprintf(path, __LSMATTRLEN, "%d/attr/exec", pid);
112 else
113 ret = snprintf(path, __LSMATTRLEN, "%d/attr/current", pid);
114 if (ret < 0 || ret >= __LSMATTRLEN)
115 return -1;
116
117 labelfd = openat(procfd, path, O_RDWR);
118 if (labelfd < 0) {
119 SYSERROR("Unable to open file descriptor to set LSM label.");
120 return -1;
121 }
122
123 return labelfd;
124 }
125
126 static int lsm_set_label_at(int lsm_labelfd, int on_exec, char *lsm_label)
127 {
128 int fret = -1;
129 const char *name;
130 char *command = NULL;
131
132 name = lsm_name();
133
134 if (strcmp(name, "nop") == 0)
135 return 0;
136
137 if (strcmp(name, "none") == 0)
138 return 0;
139
140 /* We don't support on-exec with AppArmor */
141 if (strcmp(name, "AppArmor") == 0)
142 on_exec = 0;
143
144 if (strcmp(name, "AppArmor") == 0) {
145 int size;
146
147 command =
148 malloc(strlen(lsm_label) + strlen("changeprofile ") + 1);
149 if (!command) {
150 SYSERROR("Failed to write apparmor profile.");
151 goto out;
152 }
153
154 size = sprintf(command, "changeprofile %s", lsm_label);
155 if (size < 0) {
156 SYSERROR("Failed to write apparmor profile.");
157 goto out;
158 }
159
160 if (write(lsm_labelfd, command, size + 1) < 0) {
161 SYSERROR("Unable to set LSM label: %s.", command);
162 goto out;
163 }
164 INFO("Set LSM label to: %s.", command);
165 } else if (strcmp(name, "SELinux") == 0) {
166 if (write(lsm_labelfd, lsm_label, strlen(lsm_label) + 1) < 0) {
167 SYSERROR("Unable to set LSM label: %s.", lsm_label);
168 goto out;
169 }
170 INFO("Set LSM label to: %s.", lsm_label);
171 } else {
172 ERROR("Unable to restore label for unknown LSM: %s.", name);
173 goto out;
174 }
175 fret = 0;
176
177 out:
178 free(command);
179
180 if (lsm_labelfd != -1)
181 close(lsm_labelfd);
182
183 return fret;
184 }
185
186 /* /proc/pid-to-str/status\0 = (5 + 21 + 7 + 1) */
187 #define __PROC_STATUS_LEN (5 + (LXC_NUMSTRLEN64) + 7 + 1)
188 static struct lxc_proc_context_info *lxc_proc_get_context_info(pid_t pid)
189 {
190 int ret;
191 bool found;
192 FILE *proc_file;
193 char proc_fn[__PROC_STATUS_LEN];
194 size_t line_bufsz = 0;
195 char *line = NULL;
196 struct lxc_proc_context_info *info = NULL;
197
198 /* Read capabilities. */
199 ret = snprintf(proc_fn, __PROC_STATUS_LEN, "/proc/%d/status", pid);
200 if (ret < 0 || ret >= __PROC_STATUS_LEN)
201 goto on_error;
202
203 proc_file = fopen(proc_fn, "r");
204 if (!proc_file) {
205 SYSERROR("Could not open %s.", proc_fn);
206 goto on_error;
207 }
208
209 info = calloc(1, sizeof(*info));
210 if (!info) {
211 SYSERROR("Could not allocate memory.");
212 fclose(proc_file);
213 return NULL;
214 }
215
216 found = false;
217 while (getline(&line, &line_bufsz, proc_file) != -1) {
218 ret = sscanf(line, "CapBnd: %llx", &info->capability_mask);
219 if (ret != EOF && ret == 1) {
220 found = true;
221 break;
222 }
223 }
224
225 free(line);
226 fclose(proc_file);
227
228 if (!found) {
229 SYSERROR("Could not read capability bounding set from %s.",
230 proc_fn);
231 errno = ENOENT;
232 goto on_error;
233 }
234
235 info->lsm_label = lsm_process_label_get(pid);
236 info->ns_inherited = 0;
237 memset(info->ns_fd, -1, sizeof(int) * LXC_NS_MAX);
238
239 return info;
240
241 on_error:
242 free(info);
243 return NULL;
244 }
245
246 static inline void lxc_proc_close_ns_fd(struct lxc_proc_context_info *ctx)
247 {
248 int i;
249
250 for (i = 0; i < LXC_NS_MAX; i++) {
251 if (ctx->ns_fd[i] < 0)
252 continue;
253 close(ctx->ns_fd[i]);
254 ctx->ns_fd[i] = -EBADF;
255 }
256 }
257
258 static void lxc_proc_put_context_info(struct lxc_proc_context_info *ctx)
259 {
260 free(ctx->lsm_label);
261 if (ctx->container)
262 lxc_container_put(ctx->container);
263 lxc_proc_close_ns_fd(ctx);
264 free(ctx);
265 }
266
267 /**
268 * in_same_namespace - Check whether two processes are in the same namespace.
269 * @pid1 - PID of the first process.
270 * @pid2 - PID of the second process.
271 * @ns - Name of the namespace to check. Must correspond to one of the names
272 * for the namespaces as shown in /proc/<pid/ns/
273 *
274 * If the two processes are not in the same namespace returns an fd to the
275 * namespace of the second process identified by @pid2. If the two processes are
276 * in the same namespace returns -EINVAL, -1 if an error occurred.
277 */
278 static int in_same_namespace(pid_t pid1, pid_t pid2, const char *ns)
279 {
280 int ns_fd1 = -1, ns_fd2 = -1, ret = -1;
281 struct stat ns_st1, ns_st2;
282
283 ns_fd1 = lxc_preserve_ns(pid1, ns);
284 if (ns_fd1 < 0) {
285 /* The kernel does not support this namespace. This is not an
286 * error.
287 */
288 if (errno == ENOENT)
289 return -EINVAL;
290
291 goto out;
292 }
293
294 ns_fd2 = lxc_preserve_ns(pid2, ns);
295 if (ns_fd2 < 0)
296 goto out;
297
298 ret = fstat(ns_fd1, &ns_st1);
299 if (ret < 0)
300 goto out;
301
302 ret = fstat(ns_fd2, &ns_st2);
303 if (ret < 0)
304 goto out;
305
306 /* processes are in the same namespace */
307 ret = -EINVAL;
308 if ((ns_st1.st_dev == ns_st2.st_dev ) && (ns_st1.st_ino == ns_st2.st_ino))
309 goto out;
310
311 /* processes are in different namespaces */
312 ret = ns_fd2;
313 ns_fd2 = -1;
314
315 out:
316
317 if (ns_fd1 >= 0)
318 close(ns_fd1);
319 if (ns_fd2 >= 0)
320 close(ns_fd2);
321
322 return ret;
323 }
324
325 static int lxc_attach_to_ns(pid_t pid, struct lxc_proc_context_info *ctx)
326 {
327 int i, ret;
328
329 for (i = 0; i < LXC_NS_MAX; i++) {
330 if (ctx->ns_fd[i] < 0)
331 continue;
332
333 ret = setns(ctx->ns_fd[i], ns_info[i].clone_flag);
334 if (ret < 0) {
335 SYSERROR("Failed to attach to %s namespace of %d",
336 ns_info[i].proc_name, pid);
337 return -1;
338 }
339
340 DEBUG("Attached to %s namespace of %d", ns_info[i].proc_name, pid);
341 }
342
343 return 0;
344 }
345
346 static int lxc_attach_remount_sys_proc(void)
347 {
348 int ret;
349
350 ret = unshare(CLONE_NEWNS);
351 if (ret < 0) {
352 SYSERROR("Failed to unshare mount namespace.");
353 return -1;
354 }
355
356 if (detect_shared_rootfs()) {
357 if (mount(NULL, "/", NULL, MS_SLAVE | MS_REC, NULL)) {
358 SYSERROR("Failed to make / rslave.");
359 ERROR("Continuing...");
360 }
361 }
362
363 /* Assume /proc is always mounted, so remount it. */
364 ret = umount2("/proc", MNT_DETACH);
365 if (ret < 0) {
366 SYSERROR("Failed to unmount /proc.");
367 return -1;
368 }
369
370 ret = mount("none", "/proc", "proc", 0, NULL);
371 if (ret < 0) {
372 SYSERROR("Failed to remount /proc.");
373 return -1;
374 }
375
376 /* Try to umount /sys. If it's not a mount point, we'll get EINVAL, then
377 * we ignore it because it may not have been mounted in the first place.
378 */
379 ret = umount2("/sys", MNT_DETACH);
380 if (ret < 0 && errno != EINVAL) {
381 SYSERROR("Failed to unmount /sys.");
382 return -1;
383 } else if (ret == 0) {
384 /* Remount it. */
385 ret = mount("none", "/sys", "sysfs", 0, NULL);
386 if (ret < 0) {
387 SYSERROR("Failed to remount /sys.");
388 return -1;
389 }
390 }
391
392 return 0;
393 }
394
395 static int lxc_attach_drop_privs(struct lxc_proc_context_info *ctx)
396 {
397 int cap, last_cap;
398
399 last_cap = lxc_caps_last_cap();
400 for (cap = 0; cap <= last_cap; cap++) {
401 if (ctx->capability_mask & (1LL << cap))
402 continue;
403
404 if (prctl(PR_CAPBSET_DROP, cap, 0, 0, 0)) {
405 SYSERROR("Failed to remove capability id %d.", cap);
406 return -1;
407 }
408 }
409
410 return 0;
411 }
412
413 static int lxc_attach_set_environment(enum lxc_attach_env_policy_t policy,
414 char **extra_env, char **extra_keep)
415 {
416 if (policy == LXC_ATTACH_CLEAR_ENV) {
417 int path_kept = 0;
418 char **extra_keep_store = NULL;
419
420 if (extra_keep) {
421 size_t count, i;
422
423 for (count = 0; extra_keep[count]; count++);
424
425 extra_keep_store = calloc(count, sizeof(char *));
426 if (!extra_keep_store) {
427 SYSERROR("Failed to allocate memory for storing current "
428 "environment variable values that will be kept.");
429 return -1;
430 }
431 for (i = 0; i < count; i++) {
432 char *v = getenv(extra_keep[i]);
433 if (v) {
434 extra_keep_store[i] = strdup(v);
435 if (!extra_keep_store[i]) {
436 SYSERROR("Failed to allocate memory for storing current "
437 "environment variable values that will be kept.");
438 while (i > 0)
439 free(extra_keep_store[--i]);
440 free(extra_keep_store);
441 return -1;
442 }
443 if (strcmp(extra_keep[i], "PATH") == 0)
444 path_kept = 1;
445 }
446 /* Calloc sets entire array to zero, so we don't
447 * need an else.
448 */
449 }
450 }
451
452 if (clearenv()) {
453 char **p;
454
455 SYSERROR("Failed to clear environment.");
456 if (extra_keep_store) {
457 for (p = extra_keep_store; *p; p++)
458 free(*p);
459 free(extra_keep_store);
460 }
461 return -1;
462 }
463
464 if (extra_keep_store) {
465 size_t i;
466
467 for (i = 0; extra_keep[i]; i++) {
468 if (extra_keep_store[i]) {
469 if (setenv(extra_keep[i], extra_keep_store[i], 1) < 0)
470 SYSERROR("Unable to set environment variable.");
471 }
472 free(extra_keep_store[i]);
473 }
474 free(extra_keep_store);
475 }
476
477 /* Always set a default path; shells and execlp tend to be fine
478 * without it, but there is a disturbing number of C programs
479 * out there that just assume that getenv("PATH") is never NULL
480 * and then die a painful segfault death.
481 */
482 if (!path_kept)
483 setenv("PATH", "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", 1);
484 }
485
486 if (putenv("container=lxc")) {
487 SYSERROR("Failed to set environment variable.");
488 return -1;
489 }
490
491 /* Set extra environment variables. */
492 if (extra_env) {
493 for (; *extra_env; extra_env++) {
494 /* Duplicate the string, just to be on the safe side,
495 * because putenv does not do it for us.
496 */
497 char *p = strdup(*extra_env);
498 /* We just assume the user knows what they are doing, so
499 * we don't do any checks.
500 */
501 if (!p) {
502 SYSERROR("Failed to allocate memory for additional environment "
503 "variables.");
504 return -1;
505 }
506 putenv(p);
507 }
508 }
509
510 return 0;
511 }
512
513 static char *lxc_attach_getpwshell(uid_t uid)
514 {
515 int fd, ret;
516 pid_t pid;
517 int pipes[2];
518 char *result = NULL;
519
520 /* We need to fork off a process that runs the getent program, and we
521 * need to capture its output, so we use a pipe for that purpose.
522 */
523 ret = pipe(pipes);
524 if (ret < 0)
525 return NULL;
526
527 pid = fork();
528 if (pid < 0) {
529 close(pipes[0]);
530 close(pipes[1]);
531 return NULL;
532 }
533
534 if (pid) {
535 int status;
536 FILE *pipe_f;
537 int found = 0;
538 size_t line_bufsz = 0;
539 char *line = NULL;
540
541 close(pipes[1]);
542
543 pipe_f = fdopen(pipes[0], "r");
544 while (getline(&line, &line_bufsz, pipe_f) != -1) {
545 int i;
546 long value;
547 char *token;
548 char *endptr = NULL, *saveptr = NULL;
549
550 /* If we already found something, just continue to read
551 * until the pipe doesn't deliver any more data, but
552 * don't modify the existing data structure.
553 */
554 if (found)
555 continue;
556
557 /* Trim line on the right hand side. */
558 for (i = strlen(line); i > 0 && (line[i - 1] == '\n' || line[i - 1] == '\r'); --i)
559 line[i - 1] = '\0';
560
561 /* Split into tokens: first: user name. */
562 token = strtok_r(line, ":", &saveptr);
563 if (!token)
564 continue;
565 /* next: dummy password field */
566 token = strtok_r(NULL, ":", &saveptr);
567 if (!token)
568 continue;
569 /* next: user id */
570 token = strtok_r(NULL, ":", &saveptr);
571 value = token ? strtol(token, &endptr, 10) : 0;
572 if (!token || !endptr || *endptr || value == LONG_MIN || value == LONG_MAX)
573 continue;
574 /* dummy sanity check: user id matches */
575 if ((uid_t) value != uid)
576 continue;
577 /* skip fields: gid, gecos, dir, go to next field 'shell' */
578 for (i = 0; i < 4; i++) {
579 token = strtok_r(NULL, ":", &saveptr);
580 if (!token)
581 break;
582 }
583 if (!token)
584 continue;
585 free(result);
586 result = strdup(token);
587
588 /* Sanity check that there are no fields after that. */
589 token = strtok_r(NULL, ":", &saveptr);
590 if (token)
591 continue;
592
593 found = 1;
594 }
595
596 free(line);
597 fclose(pipe_f);
598 again:
599 if (waitpid(pid, &status, 0) < 0) {
600 if (errno == EINTR)
601 goto again;
602 return NULL;
603 }
604
605 /* Some sanity checks. If anything even hinted at going wrong,
606 * we can't be sure we have a valid result, so we assume we
607 * don't.
608 */
609
610 if (!WIFEXITED(status))
611 return NULL;
612
613 if (WEXITSTATUS(status) != 0)
614 return NULL;
615
616 if (!found)
617 return NULL;
618
619 return result;
620 } else {
621 char uid_buf[32];
622 char *arguments[] = {
623 "getent",
624 "passwd",
625 uid_buf,
626 NULL
627 };
628
629 close(pipes[0]);
630
631 /* We want to capture stdout. */
632 dup2(pipes[1], 1);
633 close(pipes[1]);
634
635 /* Get rid of stdin/stderr, so we try to associate it with
636 * /dev/null.
637 */
638 fd = open("/dev/null", O_RDWR);
639 if (fd < 0) {
640 close(0);
641 close(2);
642 } else {
643 dup2(fd, 0);
644 dup2(fd, 2);
645 close(fd);
646 }
647
648 /* Finish argument list. */
649 ret = snprintf(uid_buf, sizeof(uid_buf), "%ld", (long) uid);
650 if (ret <= 0)
651 exit(-1);
652
653 /* Try to run getent program. */
654 (void) execvp("getent", arguments);
655 exit(-1);
656 }
657 }
658
659 static void lxc_attach_get_init_uidgid(uid_t *init_uid, gid_t *init_gid)
660 {
661 FILE *proc_file;
662 char proc_fn[__PROC_STATUS_LEN];
663 int ret;
664 char *line = NULL;
665 size_t line_bufsz = 0;
666 long value = -1;
667 uid_t uid = (uid_t)-1;
668 gid_t gid = (gid_t)-1;
669
670 /* Read capabilities. */
671 snprintf(proc_fn, __PROC_STATUS_LEN, "/proc/%d/status", 1);
672
673 proc_file = fopen(proc_fn, "r");
674 if (!proc_file)
675 return;
676
677 while (getline(&line, &line_bufsz, proc_file) != -1) {
678 /* Format is: real, effective, saved set user, fs we only care
679 * about real uid.
680 */
681 ret = sscanf(line, "Uid: %ld", &value);
682 if (ret != EOF && ret == 1) {
683 uid = (uid_t)value;
684 } else {
685 ret = sscanf(line, "Gid: %ld", &value);
686 if (ret != EOF && ret == 1)
687 gid = (gid_t)value;
688 }
689 if (uid != (uid_t)-1 && gid != (gid_t)-1)
690 break;
691 }
692
693 fclose(proc_file);
694 free(line);
695
696 /* Only override arguments if we found something. */
697 if (uid != (uid_t)-1)
698 *init_uid = uid;
699 if (gid != (gid_t)-1)
700 *init_gid = gid;
701
702 /* TODO: we should also parse supplementary groups and use
703 * setgroups() to set them.
704 */
705 }
706
707 struct attach_clone_payload {
708 int ipc_socket;
709 lxc_attach_options_t *options;
710 struct lxc_proc_context_info *init_ctx;
711 lxc_attach_exec_t exec_function;
712 void *exec_payload;
713 };
714
715 static int attach_child_main(void* data);
716
717 /* Help the optimizer along if it doesn't know that exit always exits. */
718 #define rexit(c) \
719 do { \
720 int __c = (c); \
721 _exit(__c); \
722 return __c; \
723 } while (0)
724
725 /* Define default options if no options are supplied by the user. */
726 static lxc_attach_options_t attach_static_default_options = LXC_ATTACH_OPTIONS_DEFAULT;
727
728 static bool fetch_seccomp(struct lxc_container *c,
729 lxc_attach_options_t *options)
730 {
731 char *path;
732
733 if (!(options->namespaces & CLONE_NEWNS) ||
734 !(options->attach_flags & LXC_ATTACH_LSM)) {
735 free(c->lxc_conf->seccomp);
736 c->lxc_conf->seccomp = NULL;
737 return true;
738 }
739
740 /* Remove current setting. */
741 if (!c->set_config_item(c, "lxc.seccomp", "") &&
742 !c->set_config_item(c, "lxc.seccomp.profile", "")) {
743 return false;
744 }
745
746 /* Fetch the current profile path over the cmd interface. */
747 path = c->get_running_config_item(c, "lxc.seccomp.profile");
748 if (!path) {
749 INFO("Failed to get running config item for lxc.seccomp.profile");
750 path = c->get_running_config_item(c, "lxc.seccomp");
751 }
752 if (!path) {
753 INFO("Failed to get running config item for lxc.seccomp");
754 return true;
755 }
756
757 /* Copy the value into the new lxc_conf. */
758 if (!c->set_config_item(c, "lxc.seccomp.profile", path)) {
759 free(path);
760 return false;
761 }
762 free(path);
763
764 /* Attempt to parse the resulting config. */
765 if (lxc_read_seccomp_config(c->lxc_conf) < 0) {
766 ERROR("Error reading seccomp policy.");
767 return false;
768 }
769
770 INFO("Retrieved seccomp policy.");
771 return true;
772 }
773
774 static bool no_new_privs(struct lxc_container *c, lxc_attach_options_t *options)
775 {
776 char *val;
777
778 /* Remove current setting. */
779 if (!c->set_config_item(c, "lxc.no_new_privs", ""))
780 return false;
781
782 /* Retrieve currently active setting. */
783 val = c->get_running_config_item(c, "lxc.no_new_privs");
784 if (!val) {
785 INFO("Failed to get running config item for lxc.no_new_privs.");
786 return false;
787 }
788
789 /* Set currently active setting. */
790 if (!c->set_config_item(c, "lxc.no_new_privs", val)) {
791 free(val);
792 return false;
793 }
794 free(val);
795
796 return true;
797 }
798
799 static signed long get_personality(const char *name, const char *lxcpath)
800 {
801 char *p;
802 signed long ret;
803
804 p = lxc_cmd_get_config_item(name, "lxc.arch", lxcpath);
805 if (!p)
806 return -1;
807
808 ret = lxc_config_parse_arch(p);
809 free(p);
810
811 return ret;
812 }
813
814 int lxc_attach(const char *name, const char *lxcpath,
815 lxc_attach_exec_t exec_function, void *exec_payload,
816 lxc_attach_options_t *options, pid_t *attached_process)
817 {
818 int i, ret, status;
819 int ipc_sockets[2];
820 char *cwd, *new_cwd;
821 signed long personality;
822 pid_t attached_pid, expected, init_pid, pid;
823 struct lxc_proc_context_info *init_ctx;
824
825 ret = access("/proc/self/ns", X_OK);
826 if (ret) {
827 ERROR("Does this kernel version support namespaces?");
828 return -1;
829 }
830
831 if (!options)
832 options = &attach_static_default_options;
833
834 init_pid = lxc_cmd_get_init_pid(name, lxcpath);
835 if (init_pid < 0) {
836 ERROR("Failed to get init pid.");
837 return -1;
838 }
839
840 init_ctx = lxc_proc_get_context_info(init_pid);
841 if (!init_ctx) {
842 ERROR("Failed to get context of init process: %ld", (long)init_pid);
843 return -1;
844 }
845
846 personality = get_personality(name, lxcpath);
847 if (init_ctx->personality < 0) {
848 ERROR("Failed to get personality of the container");
849 lxc_proc_put_context_info(init_ctx);
850 return -1;
851 }
852 init_ctx->personality = personality;
853
854 init_ctx->container = lxc_container_new(name, lxcpath);
855 if (!init_ctx->container)
856 return -1;
857
858 if (!init_ctx->container->lxc_conf) {
859 init_ctx->container->lxc_conf = lxc_conf_init();
860 if (!init_ctx->container->lxc_conf)
861 return -ENOMEM;
862 }
863
864 if (!fetch_seccomp(init_ctx->container, options))
865 WARN("Failed to get seccomp policy.");
866
867 if (!no_new_privs(init_ctx->container, options))
868 WARN("Could not determine whether PR_SET_NO_NEW_PRIVS is set.");
869
870 cwd = getcwd(NULL, 0);
871
872 /* Determine which namespaces the container was created with
873 * by asking lxc-start, if necessary.
874 */
875 if (options->namespaces == -1) {
876 options->namespaces = lxc_cmd_get_clone_flags(name, lxcpath);
877 /* call failed */
878 if (options->namespaces == -1) {
879 ERROR("Failed to automatically determine the "
880 "namespaces which the container uses");
881 free(cwd);
882 lxc_proc_put_context_info(init_ctx);
883 return -1;
884 }
885
886 for (i = 0; i < LXC_NS_MAX; i++) {
887 if (ns_info[i].clone_flag & CLONE_NEWCGROUP)
888 if (!(options->attach_flags & LXC_ATTACH_MOVE_TO_CGROUP) ||
889 !cgns_supported())
890 continue;
891
892 if (ns_info[i].clone_flag & options->namespaces)
893 continue;
894
895 init_ctx->ns_inherited |= ns_info[i].clone_flag;
896 }
897 }
898
899 pid = getpid();
900 for (i = 0; i < LXC_NS_MAX; i++) {
901 int j, saved_errno;
902
903 if (options->namespaces & ns_info[i].clone_flag)
904 init_ctx->ns_fd[i] = lxc_preserve_ns(init_pid, ns_info[i].proc_name);
905 else if (init_ctx->ns_inherited & ns_info[i].clone_flag)
906 init_ctx->ns_fd[i] = in_same_namespace(pid, init_pid, ns_info[i].proc_name);
907 else
908 continue;
909 if (init_ctx->ns_fd[i] >= 0)
910 continue;
911
912 if (init_ctx->ns_fd[i] == -EINVAL) {
913 DEBUG("Inheriting %s namespace from %d",
914 ns_info[i].proc_name, pid);
915 init_ctx->ns_inherited &= ~ns_info[i].clone_flag;
916 continue;
917 }
918
919 /* We failed to preserve the namespace. */
920 saved_errno = errno;
921 /* Close all already opened file descriptors before we return an
922 * error, so we don't leak them.
923 */
924 for (j = 0; j < i; j++)
925 close(init_ctx->ns_fd[j]);
926
927 errno = saved_errno;
928 SYSERROR("Failed to attach to %s namespace of %d",
929 ns_info[i].proc_name, pid);
930 free(cwd);
931 lxc_proc_put_context_info(init_ctx);
932 return -1;
933 }
934
935 /* Create a socket pair for IPC communication; set SOCK_CLOEXEC in order
936 * to make sure we don't irritate other threads that want to fork+exec
937 * away
938 *
939 * IMPORTANT: if the initial process is multithreaded and another call
940 * just fork()s away without exec'ing directly after, the socket fd will
941 * exist in the forked process from the other thread and any close() in
942 * our own child process will not really cause the socket to close
943 * properly, potentiall causing the parent to hang.
944 *
945 * For this reason, while IPC is still active, we have to use shutdown()
946 * if the child exits prematurely in order to signal that the socket is
947 * closed and cannot assume that the child exiting will automatically do
948 * that.
949 *
950 * IPC mechanism: (X is receiver)
951 * initial process intermediate attached
952 * X <--- send pid of
953 * attached proc,
954 * then exit
955 * send 0 ------------------------------------> X
956 * [do initialization]
957 * X <------------------------------------ send 1
958 * [add to cgroup, ...]
959 * send 2 ------------------------------------> X
960 * [set LXC_ATTACH_NO_NEW_PRIVS]
961 * X <------------------------------------ send 3
962 * [open LSM label fd]
963 * send 4 ------------------------------------> X
964 * [set LSM label]
965 * close socket close socket
966 * run program
967 */
968 ret = socketpair(PF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0, ipc_sockets);
969 if (ret < 0) {
970 SYSERROR("Could not set up required IPC mechanism for attaching.");
971 free(cwd);
972 lxc_proc_put_context_info(init_ctx);
973 return -1;
974 }
975
976 /* Create intermediate subprocess, three reasons:
977 * 1. Runs all pthread_atfork handlers and the child will no
978 * longer be threaded (we can't properly setns() in a threaded
979 * process).
980 * 2. We can't setns() in the child itself, since we want to make
981 * sure we are properly attached to the pidns.
982 * 3. Also, the initial thread has to put the attached process
983 * into the cgroup, which we can only do if we didn't already
984 * setns() (otherwise, user namespaces will hate us).
985 */
986 pid = fork();
987 if (pid < 0) {
988 SYSERROR("Failed to create first subprocess.");
989 free(cwd);
990 lxc_proc_put_context_info(init_ctx);
991 return -1;
992 }
993
994 if (pid) {
995 int procfd = -1;
996 pid_t to_cleanup_pid = pid;
997
998 /* close file namespace descriptors */
999 lxc_proc_close_ns_fd(init_ctx);
1000
1001 /* Initial thread, we close the socket that is for the
1002 * subprocesses.
1003 */
1004 close(ipc_sockets[1]);
1005 free(cwd);
1006
1007 /* Attach to cgroup, if requested. */
1008 if (options->attach_flags & LXC_ATTACH_MOVE_TO_CGROUP) {
1009 if (!cgroup_attach(name, lxcpath, pid))
1010 goto on_error;
1011 }
1012
1013 /* Setup resource limits */
1014 if (!lxc_list_empty(&init_ctx->container->lxc_conf->limits))
1015 if (setup_resource_limits(&init_ctx->container->lxc_conf->limits, pid) < 0)
1016 goto on_error;
1017
1018 /* Open /proc before setns() to the containers namespace so we
1019 * don't rely on any information from inside the container.
1020 */
1021 procfd = open("/proc", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
1022 if (procfd < 0) {
1023 SYSERROR("Unable to open /proc.");
1024 goto on_error;
1025 }
1026
1027 /* Let the child process know to go ahead. */
1028 status = 0;
1029 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1030 if (ret <= 0) {
1031 ERROR("Intended to send sequence number 0: %s.",
1032 strerror(errno));
1033 goto on_error;
1034 }
1035
1036 /* Get pid of attached process from intermediate process. */
1037 ret = lxc_read_nointr_expect(ipc_sockets[0], &attached_pid,
1038 sizeof(attached_pid), NULL);
1039 if (ret <= 0) {
1040 if (ret != 0)
1041 ERROR("Expected to receive pid: %s.", strerror(errno));
1042 goto on_error;
1043 }
1044
1045 /* Ignore SIGKILL (CTRL-C) and SIGQUIT (CTRL-\) - issue #313. */
1046 if (options->stdin_fd == 0) {
1047 signal(SIGINT, SIG_IGN);
1048 signal(SIGQUIT, SIG_IGN);
1049 }
1050
1051 /* Reap intermediate process. */
1052 ret = wait_for_pid(pid);
1053 if (ret < 0)
1054 goto on_error;
1055
1056 /* We will always have to reap the attached process now. */
1057 to_cleanup_pid = attached_pid;
1058
1059 /* Tell attached process it may start initializing. */
1060 status = 0;
1061 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1062 if (ret <= 0) {
1063 ERROR("Intended to send sequence number 0: %s.", strerror(errno));
1064 goto on_error;
1065 }
1066
1067 /* Wait for the attached process to finish initializing. */
1068 expected = 1;
1069 ret = lxc_read_nointr_expect(ipc_sockets[0], &status,
1070 sizeof(status), &expected);
1071 if (ret <= 0) {
1072 if (ret != 0)
1073 ERROR("Expected to receive sequence number 1: %s.", strerror(errno));
1074 goto on_error;
1075 }
1076
1077 /* Tell attached process we're done. */
1078 status = 2;
1079 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1080 if (ret <= 0) {
1081 ERROR("Intended to send sequence number 2: %s.", strerror(errno));
1082 goto on_error;
1083 }
1084
1085 /* Wait for the (grand)child to tell us that it's ready to set
1086 * up its LSM labels.
1087 */
1088 expected = 3;
1089 ret = lxc_read_nointr_expect(ipc_sockets[0], &status,
1090 sizeof(status), &expected);
1091 if (ret <= 0) {
1092 ERROR("Expected to receive sequence number 3: %s.",
1093 strerror(errno));
1094 goto on_error;
1095 }
1096
1097 /* Open LSM fd and send it to child. */
1098 if ((options->namespaces & CLONE_NEWNS) &&
1099 (options->attach_flags & LXC_ATTACH_LSM) &&
1100 init_ctx->lsm_label) {
1101 int on_exec, saved_errno;
1102 int labelfd = -1;
1103
1104 on_exec = options->attach_flags & LXC_ATTACH_LSM_EXEC ? 1 : 0;
1105 /* Open fd for the LSM security module. */
1106 labelfd = lsm_openat(procfd, attached_pid, on_exec);
1107 if (labelfd < 0)
1108 goto on_error;
1109
1110 /* Send child fd of the LSM security module to write to. */
1111 ret = lxc_abstract_unix_send_fds(ipc_sockets[0], &labelfd, 1, NULL, 0);
1112 saved_errno = errno;
1113 close(labelfd);
1114 if (ret <= 0) {
1115 ERROR("Intended to send file descriptor %d: %s.", labelfd, strerror(saved_errno));
1116 goto on_error;
1117 }
1118 }
1119
1120 if (procfd >= 0)
1121 close(procfd);
1122 /* Now shut down communication with child, we're done. */
1123 shutdown(ipc_sockets[0], SHUT_RDWR);
1124 close(ipc_sockets[0]);
1125 lxc_proc_put_context_info(init_ctx);
1126
1127 /* We're done, the child process should now execute whatever it
1128 * is that the user requested. The parent can now track it with
1129 * waitpid() or similar.
1130 */
1131
1132 *attached_process = attached_pid;
1133 return 0;
1134
1135 on_error:
1136 /* First shut down the socket, then wait for the pid, otherwise
1137 * the pid we're waiting for may never exit.
1138 */
1139 if (procfd >= 0)
1140 close(procfd);
1141 shutdown(ipc_sockets[0], SHUT_RDWR);
1142 close(ipc_sockets[0]);
1143 if (to_cleanup_pid)
1144 (void)wait_for_pid(to_cleanup_pid);
1145 lxc_proc_put_context_info(init_ctx);
1146 return -1;
1147 }
1148
1149 /* First subprocess begins here, we close the socket that is for the
1150 * initial thread.
1151 */
1152 close(ipc_sockets[0]);
1153
1154 /* Wait for the parent to have setup cgroups. */
1155 expected = 0;
1156 status = -1;
1157 ret = lxc_read_nointr_expect(ipc_sockets[1], &status, sizeof(status),
1158 &expected);
1159 if (ret <= 0) {
1160 ERROR("Expected to receive sequence number 0: %s.", strerror(errno));
1161 shutdown(ipc_sockets[1], SHUT_RDWR);
1162 rexit(-1);
1163 }
1164
1165 /* Attach now, create another subprocess later, since pid namespaces
1166 * only really affect the children of the current process.
1167 */
1168 ret = lxc_attach_to_ns(init_pid, init_ctx);
1169 if (ret < 0) {
1170 ERROR("Failed to enter namespaces.");
1171 shutdown(ipc_sockets[1], SHUT_RDWR);
1172 rexit(-1);
1173 }
1174 /* close namespace file descriptors */
1175 lxc_proc_close_ns_fd(init_ctx);
1176
1177 /* Attach succeeded, try to cwd. */
1178 if (options->initial_cwd)
1179 new_cwd = options->initial_cwd;
1180 else
1181 new_cwd = cwd;
1182 ret = chdir(new_cwd);
1183 if (ret < 0)
1184 WARN("Could not change directory to \"%s\".", new_cwd);
1185 free(cwd);
1186
1187 /* Now create the real child process. */
1188 {
1189 struct attach_clone_payload payload = {
1190 .ipc_socket = ipc_sockets[1],
1191 .options = options,
1192 .init_ctx = init_ctx,
1193 .exec_function = exec_function,
1194 .exec_payload = exec_payload,
1195 };
1196 /* We use clone_parent here to make this subprocess a direct
1197 * child of the initial process. Then this intermediate process
1198 * can exit and the parent can directly track the attached
1199 * process.
1200 */
1201 pid = lxc_clone(attach_child_main, &payload, CLONE_PARENT);
1202 }
1203
1204 /* Shouldn't happen, clone() should always return positive pid. */
1205 if (pid <= 0) {
1206 SYSERROR("Failed to create subprocess.");
1207 shutdown(ipc_sockets[1], SHUT_RDWR);
1208 rexit(-1);
1209 }
1210
1211 /* Tell grandparent the pid of the pid of the newly created child. */
1212 ret = lxc_write_nointr(ipc_sockets[1], &pid, sizeof(pid));
1213 if (ret != sizeof(pid)) {
1214 /* If this really happens here, this is very unfortunate, since
1215 * the parent will not know the pid of the attached process and
1216 * will not be able to wait for it (and we won't either due to
1217 * CLONE_PARENT) so the parent won't be able to reap it and the
1218 * attached process will remain a zombie.
1219 */
1220 ERROR("Intended to send pid %d: %s.", pid, strerror(errno));
1221 shutdown(ipc_sockets[1], SHUT_RDWR);
1222 rexit(-1);
1223 }
1224
1225 /* The rest is in the hands of the initial and the attached process. */
1226 rexit(0);
1227 }
1228
1229 static int attach_child_main(void* data)
1230 {
1231 int expected, fd, lsm_labelfd, ret, status;
1232 long flags;
1233 #if HAVE_SYS_PERSONALITY_H
1234 long new_personality;
1235 #endif
1236 uid_t new_uid;
1237 gid_t new_gid;
1238 struct attach_clone_payload* payload = (struct attach_clone_payload*)data;
1239 int ipc_socket = payload->ipc_socket;
1240 lxc_attach_options_t* options = payload->options;
1241 struct lxc_proc_context_info* init_ctx = payload->init_ctx;
1242
1243 /* Wait for the initial thread to signal us that it's ready for us to
1244 * start initializing.
1245 */
1246 expected = 0;
1247 status = -1;
1248 ret = lxc_read_nointr_expect(ipc_socket, &status, sizeof(status), &expected);
1249 if (ret <= 0) {
1250 ERROR("Expected to receive sequence number 0: %s.", strerror(errno));
1251 shutdown(ipc_socket, SHUT_RDWR);
1252 rexit(-1);
1253 }
1254
1255 /* A description of the purpose of this functionality is provided in the
1256 * lxc-attach(1) manual page. We have to remount here and not in the
1257 * parent process, otherwise /proc may not properly reflect the new pid
1258 * namespace.
1259 */
1260 if (!(options->namespaces & CLONE_NEWNS) &&
1261 (options->attach_flags & LXC_ATTACH_REMOUNT_PROC_SYS)) {
1262 ret = lxc_attach_remount_sys_proc();
1263 if (ret < 0) {
1264 shutdown(ipc_socket, SHUT_RDWR);
1265 rexit(-1);
1266 }
1267 }
1268
1269 /* Now perform additional attachments. */
1270 #if HAVE_SYS_PERSONALITY_H
1271 if (options->personality < 0)
1272 new_personality = init_ctx->personality;
1273 else
1274 new_personality = options->personality;
1275
1276 if (options->attach_flags & LXC_ATTACH_SET_PERSONALITY) {
1277 ret = personality(new_personality);
1278 if (ret < 0) {
1279 SYSERROR("Could not ensure correct architecture.");
1280 shutdown(ipc_socket, SHUT_RDWR);
1281 rexit(-1);
1282 }
1283 }
1284 #endif
1285
1286 if (options->attach_flags & LXC_ATTACH_DROP_CAPABILITIES) {
1287 ret = lxc_attach_drop_privs(init_ctx);
1288 if (ret < 0) {
1289 ERROR("Could not drop privileges.");
1290 shutdown(ipc_socket, SHUT_RDWR);
1291 rexit(-1);
1292 }
1293 }
1294
1295 /* Always set the environment (specify (LXC_ATTACH_KEEP_ENV, NULL, NULL)
1296 * if you want this to be a no-op).
1297 */
1298 ret = lxc_attach_set_environment(options->env_policy,
1299 options->extra_env_vars,
1300 options->extra_keep_env);
1301 if (ret < 0) {
1302 ERROR("Could not set initial environment for attached process.");
1303 shutdown(ipc_socket, SHUT_RDWR);
1304 rexit(-1);
1305 }
1306
1307 /* Set {u,g}id. */
1308 new_uid = 0;
1309 new_gid = 0;
1310 /* Ignore errors, we will fall back to root in that case (/proc was not
1311 * mounted etc.).
1312 */
1313 if (options->namespaces & CLONE_NEWUSER)
1314 lxc_attach_get_init_uidgid(&new_uid, &new_gid);
1315
1316 if (options->uid != (uid_t)-1)
1317 new_uid = options->uid;
1318 if (options->gid != (gid_t)-1)
1319 new_gid = options->gid;
1320
1321 /* Setup the controlling tty. */
1322 if (options->stdin_fd && isatty(options->stdin_fd)) {
1323 if (setsid() < 0) {
1324 SYSERROR("Unable to setsid.");
1325 shutdown(ipc_socket, SHUT_RDWR);
1326 rexit(-1);
1327 }
1328
1329 if (ioctl(options->stdin_fd, TIOCSCTTY, (char *)NULL) < 0) {
1330 SYSERROR("Unable to set TIOCSTTY.");
1331 shutdown(ipc_socket, SHUT_RDWR);
1332 rexit(-1);
1333 }
1334 }
1335
1336 /* Try to set the {u,g}id combination. */
1337 if ((new_gid != 0 || options->namespaces & CLONE_NEWUSER)) {
1338 if (setgid(new_gid) || setgroups(0, NULL)) {
1339 SYSERROR("Switching to container gid.");
1340 shutdown(ipc_socket, SHUT_RDWR);
1341 rexit(-1);
1342 }
1343 }
1344 if ((new_uid != 0 || options->namespaces & CLONE_NEWUSER) &&
1345 setuid(new_uid)) {
1346 SYSERROR("Switching to container uid.");
1347 shutdown(ipc_socket, SHUT_RDWR);
1348 rexit(-1);
1349 }
1350
1351 /* Tell initial process it may now put us into cgroups. */
1352 status = 1;
1353 ret = lxc_write_nointr(ipc_socket, &status, sizeof(status));
1354 if (ret != sizeof(status)) {
1355 ERROR("Intended to send sequence number 1: %s.", strerror(errno));
1356 shutdown(ipc_socket, SHUT_RDWR);
1357 rexit(-1);
1358 }
1359
1360 /* Wait for the initial thread to signal us that it has done everything
1361 * for us when it comes to cgroups etc.
1362 */
1363 expected = 2;
1364 status = -1;
1365 ret = lxc_read_nointr_expect(ipc_socket, &status, sizeof(status), &expected);
1366 if (ret <= 0) {
1367 ERROR("Expected to receive sequence number 2: %s", strerror(errno));
1368 shutdown(ipc_socket, SHUT_RDWR);
1369 rexit(-1);
1370 }
1371
1372 if ((init_ctx->container && init_ctx->container->lxc_conf &&
1373 init_ctx->container->lxc_conf->no_new_privs) ||
1374 (options->attach_flags & LXC_ATTACH_NO_NEW_PRIVS)) {
1375 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
1376 SYSERROR("PR_SET_NO_NEW_PRIVS could not be set. "
1377 "Process can use execve() gainable "
1378 "privileges.");
1379 shutdown(ipc_socket, SHUT_RDWR);
1380 rexit(-1);
1381 }
1382 INFO("PR_SET_NO_NEW_PRIVS is set. Process cannot use execve() "
1383 "gainable privileges.");
1384 }
1385
1386 /* Tell the (grand)parent to send us LSM label fd. */
1387 status = 3;
1388 ret = lxc_write_nointr(ipc_socket, &status, sizeof(status));
1389 if (ret <= 0) {
1390 ERROR("Intended to send sequence number 3: %s.", strerror(errno));
1391 shutdown(ipc_socket, SHUT_RDWR);
1392 rexit(-1);
1393 }
1394
1395 if ((options->namespaces & CLONE_NEWNS) &&
1396 (options->attach_flags & LXC_ATTACH_LSM) && init_ctx->lsm_label) {
1397 int on_exec;
1398 /* Receive fd for LSM security module. */
1399 ret = lxc_abstract_unix_recv_fds(ipc_socket, &lsm_labelfd, 1, NULL, 0);
1400 if (ret <= 0) {
1401 ERROR("Expected to receive file descriptor: %s.", strerror(errno));
1402 shutdown(ipc_socket, SHUT_RDWR);
1403 rexit(-1);
1404 }
1405
1406 /* Change into our new LSM profile. */
1407 on_exec = options->attach_flags & LXC_ATTACH_LSM_EXEC ? 1 : 0;
1408 if (lsm_set_label_at(lsm_labelfd, on_exec, init_ctx->lsm_label) < 0) {
1409 SYSERROR("Failed to set LSM label.");
1410 shutdown(ipc_socket, SHUT_RDWR);
1411 close(lsm_labelfd);
1412 rexit(-1);
1413 }
1414 close(lsm_labelfd);
1415 }
1416
1417 if (init_ctx->container && init_ctx->container->lxc_conf &&
1418 init_ctx->container->lxc_conf->seccomp &&
1419 (lxc_seccomp_load(init_ctx->container->lxc_conf) != 0)) {
1420 ERROR("Failed to load seccomp policy.");
1421 shutdown(ipc_socket, SHUT_RDWR);
1422 rexit(-1);
1423 }
1424
1425 shutdown(ipc_socket, SHUT_RDWR);
1426 close(ipc_socket);
1427 lxc_proc_put_context_info(init_ctx);
1428
1429 /* The following is done after the communication socket is shut down.
1430 * That way, all errors that might (though unlikely) occur up until this
1431 * point will have their messages printed to the original stderr (if
1432 * logging is so configured) and not the fd the user supplied, if any.
1433 */
1434
1435 /* Fd handling for stdin, stdout and stderr; ignore errors here, user
1436 * may want to make sure the fds are closed, for example.
1437 */
1438 if (options->stdin_fd >= 0 && options->stdin_fd != 0)
1439 dup2(options->stdin_fd, 0);
1440 if (options->stdout_fd >= 0 && options->stdout_fd != 1)
1441 dup2(options->stdout_fd, 1);
1442 if (options->stderr_fd >= 0 && options->stderr_fd != 2)
1443 dup2(options->stderr_fd, 2);
1444
1445 /* close the old fds */
1446 if (options->stdin_fd > 2)
1447 close(options->stdin_fd);
1448 if (options->stdout_fd > 2)
1449 close(options->stdout_fd);
1450 if (options->stderr_fd > 2)
1451 close(options->stderr_fd);
1452
1453 /* Try to remove FD_CLOEXEC flag from stdin/stdout/stderr, but also
1454 * here, ignore errors.
1455 */
1456 for (fd = 0; fd <= 2; fd++) {
1457 flags = fcntl(fd, F_GETFL);
1458 if (flags < 0)
1459 continue;
1460 if (flags & FD_CLOEXEC)
1461 if (fcntl(fd, F_SETFL, flags & ~FD_CLOEXEC) < 0)
1462 SYSERROR("Unable to clear FD_CLOEXEC from file descriptor.");
1463 }
1464
1465 /* We're done, so we can now do whatever the user intended us to do. */
1466 rexit(payload->exec_function(payload->exec_payload));
1467 }
1468
1469 int lxc_attach_run_command(void* payload)
1470 {
1471 lxc_attach_command_t* cmd = (lxc_attach_command_t*)payload;
1472
1473 execvp(cmd->program, cmd->argv);
1474 SYSERROR("Failed to exec \"%s\".", cmd->program);
1475 return -1;
1476 }
1477
1478 int lxc_attach_run_shell(void* payload)
1479 {
1480 uid_t uid;
1481 struct passwd *passwd;
1482 char *user_shell;
1483
1484 /* Ignore payload parameter. */
1485 (void)payload;
1486
1487 uid = getuid();
1488 passwd = getpwuid(uid);
1489
1490 /* This probably happens because of incompatible nss implementations in
1491 * host and container (remember, this code is still using the host's
1492 * glibc but our mount namespace is in the container) we may try to get
1493 * the information by spawning a [getent passwd uid] process and parsing
1494 * the result.
1495 */
1496 if (!passwd)
1497 user_shell = lxc_attach_getpwshell(uid);
1498 else
1499 user_shell = passwd->pw_shell;
1500
1501 if (user_shell)
1502 execlp(user_shell, user_shell, (char *)NULL);
1503
1504 /* Executed if either no passwd entry or execvp fails, we will fall back
1505 * on /bin/sh as a default shell.
1506 */
1507 execlp("/bin/sh", "/bin/sh", (char *)NULL);
1508 SYSERROR("Failed to exec shell.");
1509 return -1;
1510 }