]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/attach.c
Merge pull request #2009 from lifeng68/add_sysctl
[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 free(result);
603 return NULL;
604 }
605
606 /* Some sanity checks. If anything even hinted at going wrong,
607 * we can't be sure we have a valid result, so we assume we
608 * don't.
609 */
610
611 if (!WIFEXITED(status)) {
612 free(result);
613 return NULL;
614 }
615
616 if (WEXITSTATUS(status) != 0) {
617 free(result);
618 return NULL;
619 }
620
621 if (!found) {
622 free(result);
623 return NULL;
624 }
625
626 return result;
627 } else {
628 char uid_buf[32];
629 char *arguments[] = {
630 "getent",
631 "passwd",
632 uid_buf,
633 NULL
634 };
635
636 close(pipes[0]);
637
638 /* We want to capture stdout. */
639 dup2(pipes[1], 1);
640 close(pipes[1]);
641
642 /* Get rid of stdin/stderr, so we try to associate it with
643 * /dev/null.
644 */
645 fd = open("/dev/null", O_RDWR);
646 if (fd < 0) {
647 close(0);
648 close(2);
649 } else {
650 dup2(fd, 0);
651 dup2(fd, 2);
652 close(fd);
653 }
654
655 /* Finish argument list. */
656 ret = snprintf(uid_buf, sizeof(uid_buf), "%ld", (long) uid);
657 if (ret <= 0)
658 exit(-1);
659
660 /* Try to run getent program. */
661 (void) execvp("getent", arguments);
662 exit(-1);
663 }
664 }
665
666 static void lxc_attach_get_init_uidgid(uid_t *init_uid, gid_t *init_gid)
667 {
668 FILE *proc_file;
669 char proc_fn[__PROC_STATUS_LEN];
670 int ret;
671 char *line = NULL;
672 size_t line_bufsz = 0;
673 long value = -1;
674 uid_t uid = (uid_t)-1;
675 gid_t gid = (gid_t)-1;
676
677 /* Read capabilities. */
678 snprintf(proc_fn, __PROC_STATUS_LEN, "/proc/%d/status", 1);
679
680 proc_file = fopen(proc_fn, "r");
681 if (!proc_file)
682 return;
683
684 while (getline(&line, &line_bufsz, proc_file) != -1) {
685 /* Format is: real, effective, saved set user, fs we only care
686 * about real uid.
687 */
688 ret = sscanf(line, "Uid: %ld", &value);
689 if (ret != EOF && ret == 1) {
690 uid = (uid_t)value;
691 } else {
692 ret = sscanf(line, "Gid: %ld", &value);
693 if (ret != EOF && ret == 1)
694 gid = (gid_t)value;
695 }
696 if (uid != (uid_t)-1 && gid != (gid_t)-1)
697 break;
698 }
699
700 fclose(proc_file);
701 free(line);
702
703 /* Only override arguments if we found something. */
704 if (uid != (uid_t)-1)
705 *init_uid = uid;
706 if (gid != (gid_t)-1)
707 *init_gid = gid;
708
709 /* TODO: we should also parse supplementary groups and use
710 * setgroups() to set them.
711 */
712 }
713
714 struct attach_clone_payload {
715 int ipc_socket;
716 lxc_attach_options_t *options;
717 struct lxc_proc_context_info *init_ctx;
718 lxc_attach_exec_t exec_function;
719 void *exec_payload;
720 };
721
722 static int attach_child_main(void* data);
723
724 /* Help the optimizer along if it doesn't know that exit always exits. */
725 #define rexit(c) \
726 do { \
727 int __c = (c); \
728 _exit(__c); \
729 return __c; \
730 } while (0)
731
732 /* Define default options if no options are supplied by the user. */
733 static lxc_attach_options_t attach_static_default_options = LXC_ATTACH_OPTIONS_DEFAULT;
734
735 static bool fetch_seccomp(struct lxc_container *c,
736 lxc_attach_options_t *options)
737 {
738 char *path;
739
740 if (!(options->namespaces & CLONE_NEWNS) ||
741 !(options->attach_flags & LXC_ATTACH_LSM)) {
742 free(c->lxc_conf->seccomp);
743 c->lxc_conf->seccomp = NULL;
744 return true;
745 }
746
747 /* Remove current setting. */
748 if (!c->set_config_item(c, "lxc.seccomp", "") &&
749 !c->set_config_item(c, "lxc.seccomp.profile", "")) {
750 return false;
751 }
752
753 /* Fetch the current profile path over the cmd interface. */
754 path = c->get_running_config_item(c, "lxc.seccomp.profile");
755 if (!path) {
756 INFO("Failed to get running config item for lxc.seccomp.profile");
757 path = c->get_running_config_item(c, "lxc.seccomp");
758 }
759 if (!path) {
760 INFO("Failed to get running config item for lxc.seccomp");
761 return true;
762 }
763
764 /* Copy the value into the new lxc_conf. */
765 if (!c->set_config_item(c, "lxc.seccomp.profile", path)) {
766 free(path);
767 return false;
768 }
769 free(path);
770
771 /* Attempt to parse the resulting config. */
772 if (lxc_read_seccomp_config(c->lxc_conf) < 0) {
773 ERROR("Error reading seccomp policy.");
774 return false;
775 }
776
777 INFO("Retrieved seccomp policy.");
778 return true;
779 }
780
781 static bool no_new_privs(struct lxc_container *c, lxc_attach_options_t *options)
782 {
783 char *val;
784
785 /* Remove current setting. */
786 if (!c->set_config_item(c, "lxc.no_new_privs", ""))
787 return false;
788
789 /* Retrieve currently active setting. */
790 val = c->get_running_config_item(c, "lxc.no_new_privs");
791 if (!val) {
792 INFO("Failed to get running config item for lxc.no_new_privs.");
793 return false;
794 }
795
796 /* Set currently active setting. */
797 if (!c->set_config_item(c, "lxc.no_new_privs", val)) {
798 free(val);
799 return false;
800 }
801 free(val);
802
803 return true;
804 }
805
806 static signed long get_personality(const char *name, const char *lxcpath)
807 {
808 char *p;
809 signed long ret;
810
811 p = lxc_cmd_get_config_item(name, "lxc.arch", lxcpath);
812 if (!p)
813 return -1;
814
815 ret = lxc_config_parse_arch(p);
816 free(p);
817
818 return ret;
819 }
820
821 int lxc_attach(const char *name, const char *lxcpath,
822 lxc_attach_exec_t exec_function, void *exec_payload,
823 lxc_attach_options_t *options, pid_t *attached_process)
824 {
825 int i, ret, status;
826 int ipc_sockets[2];
827 char *cwd, *new_cwd;
828 signed long personality;
829 pid_t attached_pid, expected, init_pid, pid;
830 struct lxc_proc_context_info *init_ctx;
831
832 ret = access("/proc/self/ns", X_OK);
833 if (ret) {
834 ERROR("Does this kernel version support namespaces?");
835 return -1;
836 }
837
838 if (!options)
839 options = &attach_static_default_options;
840
841 init_pid = lxc_cmd_get_init_pid(name, lxcpath);
842 if (init_pid < 0) {
843 ERROR("Failed to get init pid.");
844 return -1;
845 }
846
847 init_ctx = lxc_proc_get_context_info(init_pid);
848 if (!init_ctx) {
849 ERROR("Failed to get context of init process: %ld", (long)init_pid);
850 return -1;
851 }
852
853 personality = get_personality(name, lxcpath);
854 if (init_ctx->personality < 0) {
855 ERROR("Failed to get personality of the container");
856 lxc_proc_put_context_info(init_ctx);
857 return -1;
858 }
859 init_ctx->personality = personality;
860
861 init_ctx->container = lxc_container_new(name, lxcpath);
862 if (!init_ctx->container)
863 return -1;
864
865 if (!init_ctx->container->lxc_conf) {
866 init_ctx->container->lxc_conf = lxc_conf_init();
867 if (!init_ctx->container->lxc_conf)
868 return -ENOMEM;
869 }
870
871 if (!fetch_seccomp(init_ctx->container, options))
872 WARN("Failed to get seccomp policy.");
873
874 if (!no_new_privs(init_ctx->container, options))
875 WARN("Could not determine whether PR_SET_NO_NEW_PRIVS is set.");
876
877 cwd = getcwd(NULL, 0);
878
879 /* Determine which namespaces the container was created with
880 * by asking lxc-start, if necessary.
881 */
882 if (options->namespaces == -1) {
883 options->namespaces = lxc_cmd_get_clone_flags(name, lxcpath);
884 /* call failed */
885 if (options->namespaces == -1) {
886 ERROR("Failed to automatically determine the "
887 "namespaces which the container uses");
888 free(cwd);
889 lxc_proc_put_context_info(init_ctx);
890 return -1;
891 }
892
893 for (i = 0; i < LXC_NS_MAX; i++) {
894 if (ns_info[i].clone_flag & CLONE_NEWCGROUP)
895 if (!(options->attach_flags & LXC_ATTACH_MOVE_TO_CGROUP) ||
896 !cgns_supported())
897 continue;
898
899 if (ns_info[i].clone_flag & options->namespaces)
900 continue;
901
902 init_ctx->ns_inherited |= ns_info[i].clone_flag;
903 }
904 }
905
906 pid = getpid();
907 for (i = 0; i < LXC_NS_MAX; i++) {
908 int j, saved_errno;
909
910 if (options->namespaces & ns_info[i].clone_flag)
911 init_ctx->ns_fd[i] = lxc_preserve_ns(init_pid, ns_info[i].proc_name);
912 else if (init_ctx->ns_inherited & ns_info[i].clone_flag)
913 init_ctx->ns_fd[i] = in_same_namespace(pid, init_pid, ns_info[i].proc_name);
914 else
915 continue;
916 if (init_ctx->ns_fd[i] >= 0)
917 continue;
918
919 if (init_ctx->ns_fd[i] == -EINVAL) {
920 DEBUG("Inheriting %s namespace from %d",
921 ns_info[i].proc_name, pid);
922 init_ctx->ns_inherited &= ~ns_info[i].clone_flag;
923 continue;
924 }
925
926 /* We failed to preserve the namespace. */
927 saved_errno = errno;
928 /* Close all already opened file descriptors before we return an
929 * error, so we don't leak them.
930 */
931 for (j = 0; j < i; j++)
932 close(init_ctx->ns_fd[j]);
933
934 errno = saved_errno;
935 SYSERROR("Failed to attach to %s namespace of %d",
936 ns_info[i].proc_name, pid);
937 free(cwd);
938 lxc_proc_put_context_info(init_ctx);
939 return -1;
940 }
941
942 /* Create a socket pair for IPC communication; set SOCK_CLOEXEC in order
943 * to make sure we don't irritate other threads that want to fork+exec
944 * away
945 *
946 * IMPORTANT: if the initial process is multithreaded and another call
947 * just fork()s away without exec'ing directly after, the socket fd will
948 * exist in the forked process from the other thread and any close() in
949 * our own child process will not really cause the socket to close
950 * properly, potentiall causing the parent to hang.
951 *
952 * For this reason, while IPC is still active, we have to use shutdown()
953 * if the child exits prematurely in order to signal that the socket is
954 * closed and cannot assume that the child exiting will automatically do
955 * that.
956 *
957 * IPC mechanism: (X is receiver)
958 * initial process intermediate attached
959 * X <--- send pid of
960 * attached proc,
961 * then exit
962 * send 0 ------------------------------------> X
963 * [do initialization]
964 * X <------------------------------------ send 1
965 * [add to cgroup, ...]
966 * send 2 ------------------------------------> X
967 * [set LXC_ATTACH_NO_NEW_PRIVS]
968 * X <------------------------------------ send 3
969 * [open LSM label fd]
970 * send 4 ------------------------------------> X
971 * [set LSM label]
972 * close socket close socket
973 * run program
974 */
975 ret = socketpair(PF_LOCAL, SOCK_STREAM | SOCK_CLOEXEC, 0, ipc_sockets);
976 if (ret < 0) {
977 SYSERROR("Could not set up required IPC mechanism for attaching.");
978 free(cwd);
979 lxc_proc_put_context_info(init_ctx);
980 return -1;
981 }
982
983 /* Create intermediate subprocess, three reasons:
984 * 1. Runs all pthread_atfork handlers and the child will no
985 * longer be threaded (we can't properly setns() in a threaded
986 * process).
987 * 2. We can't setns() in the child itself, since we want to make
988 * sure we are properly attached to the pidns.
989 * 3. Also, the initial thread has to put the attached process
990 * into the cgroup, which we can only do if we didn't already
991 * setns() (otherwise, user namespaces will hate us).
992 */
993 pid = fork();
994 if (pid < 0) {
995 SYSERROR("Failed to create first subprocess.");
996 free(cwd);
997 lxc_proc_put_context_info(init_ctx);
998 return -1;
999 }
1000
1001 if (pid) {
1002 int procfd = -1;
1003 pid_t to_cleanup_pid = pid;
1004
1005 /* close file namespace descriptors */
1006 lxc_proc_close_ns_fd(init_ctx);
1007
1008 /* Initial thread, we close the socket that is for the
1009 * subprocesses.
1010 */
1011 close(ipc_sockets[1]);
1012 free(cwd);
1013
1014 /* Attach to cgroup, if requested. */
1015 if (options->attach_flags & LXC_ATTACH_MOVE_TO_CGROUP) {
1016 if (!cgroup_attach(name, lxcpath, pid))
1017 goto on_error;
1018 }
1019
1020 /* Setup resource limits */
1021 if (!lxc_list_empty(&init_ctx->container->lxc_conf->limits))
1022 if (setup_resource_limits(&init_ctx->container->lxc_conf->limits, pid) < 0)
1023 goto on_error;
1024
1025 /* Open /proc before setns() to the containers namespace so we
1026 * don't rely on any information from inside the container.
1027 */
1028 procfd = open("/proc", O_DIRECTORY | O_RDONLY | O_CLOEXEC);
1029 if (procfd < 0) {
1030 SYSERROR("Unable to open /proc.");
1031 goto on_error;
1032 }
1033
1034 /* Let the child process know to go ahead. */
1035 status = 0;
1036 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1037 if (ret <= 0) {
1038 ERROR("Intended to send sequence number 0: %s.",
1039 strerror(errno));
1040 goto on_error;
1041 }
1042
1043 /* Get pid of attached process from intermediate process. */
1044 ret = lxc_read_nointr_expect(ipc_sockets[0], &attached_pid,
1045 sizeof(attached_pid), NULL);
1046 if (ret <= 0) {
1047 if (ret != 0)
1048 ERROR("Expected to receive pid: %s.", strerror(errno));
1049 goto on_error;
1050 }
1051
1052 /* Ignore SIGKILL (CTRL-C) and SIGQUIT (CTRL-\) - issue #313. */
1053 if (options->stdin_fd == 0) {
1054 signal(SIGINT, SIG_IGN);
1055 signal(SIGQUIT, SIG_IGN);
1056 }
1057
1058 /* Reap intermediate process. */
1059 ret = wait_for_pid(pid);
1060 if (ret < 0)
1061 goto on_error;
1062
1063 /* We will always have to reap the attached process now. */
1064 to_cleanup_pid = attached_pid;
1065
1066 /* Tell attached process it may start initializing. */
1067 status = 0;
1068 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1069 if (ret <= 0) {
1070 ERROR("Intended to send sequence number 0: %s.", strerror(errno));
1071 goto on_error;
1072 }
1073
1074 /* Wait for the attached process to finish initializing. */
1075 expected = 1;
1076 ret = lxc_read_nointr_expect(ipc_sockets[0], &status,
1077 sizeof(status), &expected);
1078 if (ret <= 0) {
1079 if (ret != 0)
1080 ERROR("Expected to receive sequence number 1: %s.", strerror(errno));
1081 goto on_error;
1082 }
1083
1084 /* Tell attached process we're done. */
1085 status = 2;
1086 ret = lxc_write_nointr(ipc_sockets[0], &status, sizeof(status));
1087 if (ret <= 0) {
1088 ERROR("Intended to send sequence number 2: %s.", strerror(errno));
1089 goto on_error;
1090 }
1091
1092 /* Wait for the (grand)child to tell us that it's ready to set
1093 * up its LSM labels.
1094 */
1095 expected = 3;
1096 ret = lxc_read_nointr_expect(ipc_sockets[0], &status,
1097 sizeof(status), &expected);
1098 if (ret <= 0) {
1099 ERROR("Expected to receive sequence number 3: %s.",
1100 strerror(errno));
1101 goto on_error;
1102 }
1103
1104 /* Open LSM fd and send it to child. */
1105 if ((options->namespaces & CLONE_NEWNS) &&
1106 (options->attach_flags & LXC_ATTACH_LSM) &&
1107 init_ctx->lsm_label) {
1108 int on_exec, saved_errno;
1109 int labelfd = -1;
1110
1111 on_exec = options->attach_flags & LXC_ATTACH_LSM_EXEC ? 1 : 0;
1112 /* Open fd for the LSM security module. */
1113 labelfd = lsm_openat(procfd, attached_pid, on_exec);
1114 if (labelfd < 0)
1115 goto on_error;
1116
1117 /* Send child fd of the LSM security module to write to. */
1118 ret = lxc_abstract_unix_send_fds(ipc_sockets[0], &labelfd, 1, NULL, 0);
1119 saved_errno = errno;
1120 close(labelfd);
1121 if (ret <= 0) {
1122 ERROR("Intended to send file descriptor %d: %s.", labelfd, strerror(saved_errno));
1123 goto on_error;
1124 }
1125 }
1126
1127 if (procfd >= 0)
1128 close(procfd);
1129 /* Now shut down communication with child, we're done. */
1130 shutdown(ipc_sockets[0], SHUT_RDWR);
1131 close(ipc_sockets[0]);
1132 lxc_proc_put_context_info(init_ctx);
1133
1134 /* We're done, the child process should now execute whatever it
1135 * is that the user requested. The parent can now track it with
1136 * waitpid() or similar.
1137 */
1138
1139 *attached_process = attached_pid;
1140 return 0;
1141
1142 on_error:
1143 /* First shut down the socket, then wait for the pid, otherwise
1144 * the pid we're waiting for may never exit.
1145 */
1146 if (procfd >= 0)
1147 close(procfd);
1148 shutdown(ipc_sockets[0], SHUT_RDWR);
1149 close(ipc_sockets[0]);
1150 if (to_cleanup_pid)
1151 (void)wait_for_pid(to_cleanup_pid);
1152 lxc_proc_put_context_info(init_ctx);
1153 return -1;
1154 }
1155
1156 /* First subprocess begins here, we close the socket that is for the
1157 * initial thread.
1158 */
1159 close(ipc_sockets[0]);
1160
1161 /* Wait for the parent to have setup cgroups. */
1162 expected = 0;
1163 status = -1;
1164 ret = lxc_read_nointr_expect(ipc_sockets[1], &status, sizeof(status),
1165 &expected);
1166 if (ret <= 0) {
1167 ERROR("Expected to receive sequence number 0: %s.", strerror(errno));
1168 shutdown(ipc_sockets[1], SHUT_RDWR);
1169 rexit(-1);
1170 }
1171
1172 /* Attach now, create another subprocess later, since pid namespaces
1173 * only really affect the children of the current process.
1174 */
1175 ret = lxc_attach_to_ns(init_pid, init_ctx);
1176 if (ret < 0) {
1177 ERROR("Failed to enter namespaces.");
1178 shutdown(ipc_sockets[1], SHUT_RDWR);
1179 rexit(-1);
1180 }
1181 /* close namespace file descriptors */
1182 lxc_proc_close_ns_fd(init_ctx);
1183
1184 /* Attach succeeded, try to cwd. */
1185 if (options->initial_cwd)
1186 new_cwd = options->initial_cwd;
1187 else
1188 new_cwd = cwd;
1189 ret = chdir(new_cwd);
1190 if (ret < 0)
1191 WARN("Could not change directory to \"%s\".", new_cwd);
1192 free(cwd);
1193
1194 /* Now create the real child process. */
1195 {
1196 struct attach_clone_payload payload = {
1197 .ipc_socket = ipc_sockets[1],
1198 .options = options,
1199 .init_ctx = init_ctx,
1200 .exec_function = exec_function,
1201 .exec_payload = exec_payload,
1202 };
1203 /* We use clone_parent here to make this subprocess a direct
1204 * child of the initial process. Then this intermediate process
1205 * can exit and the parent can directly track the attached
1206 * process.
1207 */
1208 pid = lxc_clone(attach_child_main, &payload, CLONE_PARENT);
1209 }
1210
1211 /* Shouldn't happen, clone() should always return positive pid. */
1212 if (pid <= 0) {
1213 SYSERROR("Failed to create subprocess.");
1214 shutdown(ipc_sockets[1], SHUT_RDWR);
1215 rexit(-1);
1216 }
1217
1218 /* Tell grandparent the pid of the pid of the newly created child. */
1219 ret = lxc_write_nointr(ipc_sockets[1], &pid, sizeof(pid));
1220 if (ret != sizeof(pid)) {
1221 /* If this really happens here, this is very unfortunate, since
1222 * the parent will not know the pid of the attached process and
1223 * will not be able to wait for it (and we won't either due to
1224 * CLONE_PARENT) so the parent won't be able to reap it and the
1225 * attached process will remain a zombie.
1226 */
1227 ERROR("Intended to send pid %d: %s.", pid, strerror(errno));
1228 shutdown(ipc_sockets[1], SHUT_RDWR);
1229 rexit(-1);
1230 }
1231
1232 /* The rest is in the hands of the initial and the attached process. */
1233 rexit(0);
1234 }
1235
1236 static int attach_child_main(void* data)
1237 {
1238 int expected, fd, lsm_labelfd, ret, status;
1239 long flags;
1240 #if HAVE_SYS_PERSONALITY_H
1241 long new_personality;
1242 #endif
1243 uid_t new_uid;
1244 gid_t new_gid;
1245 struct attach_clone_payload* payload = (struct attach_clone_payload*)data;
1246 int ipc_socket = payload->ipc_socket;
1247 lxc_attach_options_t* options = payload->options;
1248 struct lxc_proc_context_info* init_ctx = payload->init_ctx;
1249
1250 /* Wait for the initial thread to signal us that it's ready for us to
1251 * start initializing.
1252 */
1253 expected = 0;
1254 status = -1;
1255 ret = lxc_read_nointr_expect(ipc_socket, &status, sizeof(status), &expected);
1256 if (ret <= 0) {
1257 ERROR("Expected to receive sequence number 0: %s.", strerror(errno));
1258 shutdown(ipc_socket, SHUT_RDWR);
1259 rexit(-1);
1260 }
1261
1262 /* A description of the purpose of this functionality is provided in the
1263 * lxc-attach(1) manual page. We have to remount here and not in the
1264 * parent process, otherwise /proc may not properly reflect the new pid
1265 * namespace.
1266 */
1267 if (!(options->namespaces & CLONE_NEWNS) &&
1268 (options->attach_flags & LXC_ATTACH_REMOUNT_PROC_SYS)) {
1269 ret = lxc_attach_remount_sys_proc();
1270 if (ret < 0) {
1271 shutdown(ipc_socket, SHUT_RDWR);
1272 rexit(-1);
1273 }
1274 }
1275
1276 /* Now perform additional attachments. */
1277 #if HAVE_SYS_PERSONALITY_H
1278 if (options->personality < 0)
1279 new_personality = init_ctx->personality;
1280 else
1281 new_personality = options->personality;
1282
1283 if (options->attach_flags & LXC_ATTACH_SET_PERSONALITY) {
1284 ret = personality(new_personality);
1285 if (ret < 0) {
1286 SYSERROR("Could not ensure correct architecture.");
1287 shutdown(ipc_socket, SHUT_RDWR);
1288 rexit(-1);
1289 }
1290 }
1291 #endif
1292
1293 if (options->attach_flags & LXC_ATTACH_DROP_CAPABILITIES) {
1294 ret = lxc_attach_drop_privs(init_ctx);
1295 if (ret < 0) {
1296 ERROR("Could not drop privileges.");
1297 shutdown(ipc_socket, SHUT_RDWR);
1298 rexit(-1);
1299 }
1300 }
1301
1302 /* Always set the environment (specify (LXC_ATTACH_KEEP_ENV, NULL, NULL)
1303 * if you want this to be a no-op).
1304 */
1305 ret = lxc_attach_set_environment(options->env_policy,
1306 options->extra_env_vars,
1307 options->extra_keep_env);
1308 if (ret < 0) {
1309 ERROR("Could not set initial environment for attached process.");
1310 shutdown(ipc_socket, SHUT_RDWR);
1311 rexit(-1);
1312 }
1313
1314 /* Set {u,g}id. */
1315 new_uid = 0;
1316 new_gid = 0;
1317 /* Ignore errors, we will fall back to root in that case (/proc was not
1318 * mounted etc.).
1319 */
1320 if (options->namespaces & CLONE_NEWUSER)
1321 lxc_attach_get_init_uidgid(&new_uid, &new_gid);
1322
1323 if (options->uid != (uid_t)-1)
1324 new_uid = options->uid;
1325 if (options->gid != (gid_t)-1)
1326 new_gid = options->gid;
1327
1328 /* Setup the controlling tty. */
1329 if (options->stdin_fd && isatty(options->stdin_fd)) {
1330 if (setsid() < 0) {
1331 SYSERROR("Unable to setsid.");
1332 shutdown(ipc_socket, SHUT_RDWR);
1333 rexit(-1);
1334 }
1335
1336 if (ioctl(options->stdin_fd, TIOCSCTTY, (char *)NULL) < 0) {
1337 SYSERROR("Unable to set TIOCSTTY.");
1338 shutdown(ipc_socket, SHUT_RDWR);
1339 rexit(-1);
1340 }
1341 }
1342
1343 /* Try to set the {u,g}id combination. */
1344 if ((new_gid != 0 || options->namespaces & CLONE_NEWUSER)) {
1345 if (setgid(new_gid) || setgroups(0, NULL)) {
1346 SYSERROR("Switching to container gid.");
1347 shutdown(ipc_socket, SHUT_RDWR);
1348 rexit(-1);
1349 }
1350 }
1351 if ((new_uid != 0 || options->namespaces & CLONE_NEWUSER) &&
1352 setuid(new_uid)) {
1353 SYSERROR("Switching to container uid.");
1354 shutdown(ipc_socket, SHUT_RDWR);
1355 rexit(-1);
1356 }
1357
1358 /* Tell initial process it may now put us into cgroups. */
1359 status = 1;
1360 ret = lxc_write_nointr(ipc_socket, &status, sizeof(status));
1361 if (ret != sizeof(status)) {
1362 ERROR("Intended to send sequence number 1: %s.", strerror(errno));
1363 shutdown(ipc_socket, SHUT_RDWR);
1364 rexit(-1);
1365 }
1366
1367 /* Wait for the initial thread to signal us that it has done everything
1368 * for us when it comes to cgroups etc.
1369 */
1370 expected = 2;
1371 status = -1;
1372 ret = lxc_read_nointr_expect(ipc_socket, &status, sizeof(status), &expected);
1373 if (ret <= 0) {
1374 ERROR("Expected to receive sequence number 2: %s", strerror(errno));
1375 shutdown(ipc_socket, SHUT_RDWR);
1376 rexit(-1);
1377 }
1378
1379 if ((init_ctx->container && init_ctx->container->lxc_conf &&
1380 init_ctx->container->lxc_conf->no_new_privs) ||
1381 (options->attach_flags & LXC_ATTACH_NO_NEW_PRIVS)) {
1382 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) < 0) {
1383 SYSERROR("PR_SET_NO_NEW_PRIVS could not be set. "
1384 "Process can use execve() gainable "
1385 "privileges.");
1386 shutdown(ipc_socket, SHUT_RDWR);
1387 rexit(-1);
1388 }
1389 INFO("PR_SET_NO_NEW_PRIVS is set. Process cannot use execve() "
1390 "gainable privileges.");
1391 }
1392
1393 /* Tell the (grand)parent to send us LSM label fd. */
1394 status = 3;
1395 ret = lxc_write_nointr(ipc_socket, &status, sizeof(status));
1396 if (ret <= 0) {
1397 ERROR("Intended to send sequence number 3: %s.", strerror(errno));
1398 shutdown(ipc_socket, SHUT_RDWR);
1399 rexit(-1);
1400 }
1401
1402 if ((options->namespaces & CLONE_NEWNS) &&
1403 (options->attach_flags & LXC_ATTACH_LSM) && init_ctx->lsm_label) {
1404 int on_exec;
1405 /* Receive fd for LSM security module. */
1406 ret = lxc_abstract_unix_recv_fds(ipc_socket, &lsm_labelfd, 1, NULL, 0);
1407 if (ret <= 0) {
1408 ERROR("Expected to receive file descriptor: %s.", strerror(errno));
1409 shutdown(ipc_socket, SHUT_RDWR);
1410 rexit(-1);
1411 }
1412
1413 /* Change into our new LSM profile. */
1414 on_exec = options->attach_flags & LXC_ATTACH_LSM_EXEC ? 1 : 0;
1415 if (lsm_set_label_at(lsm_labelfd, on_exec, init_ctx->lsm_label) < 0) {
1416 SYSERROR("Failed to set LSM label.");
1417 shutdown(ipc_socket, SHUT_RDWR);
1418 close(lsm_labelfd);
1419 rexit(-1);
1420 }
1421 close(lsm_labelfd);
1422 }
1423
1424 if (init_ctx->container && init_ctx->container->lxc_conf &&
1425 init_ctx->container->lxc_conf->seccomp &&
1426 (lxc_seccomp_load(init_ctx->container->lxc_conf) != 0)) {
1427 ERROR("Failed to load seccomp policy.");
1428 shutdown(ipc_socket, SHUT_RDWR);
1429 rexit(-1);
1430 }
1431
1432 shutdown(ipc_socket, SHUT_RDWR);
1433 close(ipc_socket);
1434 lxc_proc_put_context_info(init_ctx);
1435
1436 /* The following is done after the communication socket is shut down.
1437 * That way, all errors that might (though unlikely) occur up until this
1438 * point will have their messages printed to the original stderr (if
1439 * logging is so configured) and not the fd the user supplied, if any.
1440 */
1441
1442 /* Fd handling for stdin, stdout and stderr; ignore errors here, user
1443 * may want to make sure the fds are closed, for example.
1444 */
1445 if (options->stdin_fd >= 0 && options->stdin_fd != 0)
1446 dup2(options->stdin_fd, 0);
1447 if (options->stdout_fd >= 0 && options->stdout_fd != 1)
1448 dup2(options->stdout_fd, 1);
1449 if (options->stderr_fd >= 0 && options->stderr_fd != 2)
1450 dup2(options->stderr_fd, 2);
1451
1452 /* close the old fds */
1453 if (options->stdin_fd > 2)
1454 close(options->stdin_fd);
1455 if (options->stdout_fd > 2)
1456 close(options->stdout_fd);
1457 if (options->stderr_fd > 2)
1458 close(options->stderr_fd);
1459
1460 /* Try to remove FD_CLOEXEC flag from stdin/stdout/stderr, but also
1461 * here, ignore errors.
1462 */
1463 for (fd = 0; fd <= 2; fd++) {
1464 flags = fcntl(fd, F_GETFL);
1465 if (flags < 0)
1466 continue;
1467 if (flags & FD_CLOEXEC)
1468 if (fcntl(fd, F_SETFL, flags & ~FD_CLOEXEC) < 0)
1469 SYSERROR("Unable to clear FD_CLOEXEC from file descriptor.");
1470 }
1471
1472 /* We're done, so we can now do whatever the user intended us to do. */
1473 rexit(payload->exec_function(payload->exec_payload));
1474 }
1475
1476 int lxc_attach_run_command(void* payload)
1477 {
1478 lxc_attach_command_t* cmd = (lxc_attach_command_t*)payload;
1479
1480 execvp(cmd->program, cmd->argv);
1481 SYSERROR("Failed to exec \"%s\".", cmd->program);
1482 return -1;
1483 }
1484
1485 int lxc_attach_run_shell(void* payload)
1486 {
1487 uid_t uid;
1488 struct passwd *passwd;
1489 char *user_shell;
1490
1491 /* Ignore payload parameter. */
1492 (void)payload;
1493
1494 uid = getuid();
1495 passwd = getpwuid(uid);
1496
1497 /* This probably happens because of incompatible nss implementations in
1498 * host and container (remember, this code is still using the host's
1499 * glibc but our mount namespace is in the container) we may try to get
1500 * the information by spawning a [getent passwd uid] process and parsing
1501 * the result.
1502 */
1503 if (!passwd)
1504 user_shell = lxc_attach_getpwshell(uid);
1505 else
1506 user_shell = passwd->pw_shell;
1507
1508 if (user_shell)
1509 execlp(user_shell, user_shell, (char *)NULL);
1510
1511 /* Executed if either no passwd entry or execvp fails, we will fall back
1512 * on /bin/sh as a default shell.
1513 */
1514 execlp("/bin/sh", "/bin/sh", (char *)NULL);
1515 SYSERROR("Failed to exec shell.");
1516 return -1;
1517 }