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