]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/execute.c
Merge pull request #1539 from brauner/2017-05-06/fix_abstract_unix_sockets
[mirror_lxc.git] / src / lxc / execute.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 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <errno.h>
27 #include <unistd.h>
28 #include <stdlib.h>
29
30 #include "conf.h"
31 #include "log.h"
32 #include "start.h"
33 #include "utils.h"
34
35 lxc_log_define(lxc_execute, lxc_start);
36
37 struct execute_args {
38 char *const *argv;
39 int quiet;
40 };
41
42 static int execute_start(struct lxc_handler *handler, void* data)
43 {
44 int j, i = 0;
45 struct execute_args *my_args = data;
46 char **argv;
47 int argc = 0, argc_add;
48 char *initpath;
49
50 while (my_args->argv[argc++]);
51
52 argc_add = 4;
53 if (my_args->quiet)
54 argc_add++;
55 if (!handler->conf->rootfs.path) {
56 argc_add += 4;
57 if (lxc_log_has_valid_level())
58 argc_add += 2;
59 }
60
61 argv = malloc((argc + argc_add) * sizeof(*argv));
62 if (!argv)
63 goto out1;
64
65 initpath = choose_init(NULL);
66 if (!initpath) {
67 ERROR("Failed to find an lxc-init or init.lxc");
68 goto out2;
69 }
70 argv[i++] = initpath;
71 if (my_args->quiet)
72 argv[i++] = "--quiet";
73 if (!handler->conf->rootfs.path) {
74 argv[i++] = "--name";
75 argv[i++] = (char *)handler->name;
76 argv[i++] = "--lxcpath";
77 argv[i++] = (char *)handler->lxcpath;
78
79 if (lxc_log_has_valid_level()) {
80 argv[i++] = "--logpriority";
81 argv[i++] = (char *)
82 lxc_log_priority_to_string(lxc_log_get_level());
83 }
84 }
85 argv[i++] = "--";
86 for (j = 0; j < argc; j++)
87 argv[i++] = my_args->argv[j];
88 argv[i++] = NULL;
89
90 NOTICE("exec'ing '%s'", my_args->argv[0]);
91
92 execvp(argv[0], argv);
93 SYSERROR("failed to exec %s", argv[0]);
94 free(initpath);
95 out2:
96 free(argv);
97 out1:
98 return 1;
99 }
100
101 static int execute_post_start(struct lxc_handler *handler, void* data)
102 {
103 struct execute_args *my_args = data;
104 NOTICE("'%s' started with pid '%d'", my_args->argv[0], handler->pid);
105 return 0;
106 }
107
108 static struct lxc_operations execute_start_ops = {
109 .start = execute_start,
110 .post_start = execute_post_start
111 };
112
113 int lxc_execute(const char *name, char *const argv[], int quiet,
114 struct lxc_conf *conf, const char *lxcpath, bool backgrounded)
115 {
116 struct execute_args args = {
117 .argv = argv,
118 .quiet = quiet
119 };
120
121 if (lxc_check_inherited(conf, false, -1))
122 return -1;
123
124 conf->is_execute = 1;
125 return __lxc_start(name, conf, &execute_start_ops, &args, lxcpath, backgrounded);
126 }