~ubuntu-branches/ubuntu/quantal/lxc/quantal-201208301614

« back to all changes in this revision

Viewing changes to src/lxc/lxc_execute.c

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2009-04-29 17:49:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090429174913-jvahs1ykizqtodje
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * lxc: linux Container library
 
3
 *
 
4
 * (C) Copyright IBM Corp. 2007, 2008
 
5
 *
 
6
 * Authors:
 
7
 * Daniel Lezcano <dlezcano at fr.ibm.com>
 
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
22
 */
 
23
#define _GNU_SOURCE
 
24
#include <stdio.h>
 
25
#include <errno.h>
 
26
#include <libgen.h>
 
27
#include <string.h>
 
28
#include <unistd.h>
 
29
#include <sys/types.h>
 
30
#include <sys/stat.h>
 
31
#include <sys/param.h>
 
32
 
 
33
#include <lxc/lxc.h>
 
34
#include "confile.h"
 
35
 
 
36
void usage(char *cmd)
 
37
{
 
38
        fprintf(stderr, "%s <command>\n", basename(cmd));
 
39
        fprintf(stderr, "\t -n <name>      : name of the container\n");
 
40
        fprintf(stderr, "\t [-f <confile>] : path of the configuration file\n");
 
41
        _exit(1);
 
42
}
 
43
 
 
44
int main(int argc, char *argv[])
 
45
{
 
46
        char *name = NULL, *file = NULL;
 
47
        static char **args;
 
48
        char path[MAXPATHLEN];
 
49
        int opt;
 
50
        int nbargs = 0;
 
51
        int autodestroy = 0;
 
52
        int ret = 1;
 
53
        struct lxc_conf lxc_conf;
 
54
 
 
55
        while ((opt = getopt(argc, argv, "f:n:")) != -1) {
 
56
                switch (opt) {
 
57
                case 'n':
 
58
                        name = optarg;
 
59
                        break;
 
60
                case 'f':
 
61
                        file = optarg;
 
62
                        break;
 
63
                }
 
64
 
 
65
                nbargs++;
 
66
        }
 
67
 
 
68
        if (!name || !argv[optind] || !strlen(argv[optind]))
 
69
                usage(argv[0]);
 
70
 
 
71
        argc -= nbargs;
 
72
        
 
73
        if (lxc_conf_init(&lxc_conf)) {
 
74
                fprintf(stderr, "failed to initialize the configuration\n");
 
75
                goto out;
 
76
        }
 
77
 
 
78
        if (file && lxc_config_read(file, &lxc_conf)) {
 
79
                fprintf(stderr, "invalid configuration file\n");
 
80
                goto out;
 
81
        }
 
82
 
 
83
        snprintf(path, MAXPATHLEN, LXCPATH "/%s", name);
 
84
        if (access(path, R_OK)) {
 
85
                if (lxc_create(name, &lxc_conf)) {
 
86
                        fprintf(stderr, "failed to create the container '%s'\n", name);
 
87
                        goto out;
 
88
                }
 
89
                autodestroy = 1;
 
90
        }
 
91
 
 
92
        /* lxc-init --mount-procfs -- .... */
 
93
        args = malloc((argc + 3)*sizeof(*args));
 
94
        if (!args) {
 
95
                fprintf(stderr, "failed to allocate memory for '%s'\n", name);
 
96
                goto out;
 
97
        }
 
98
 
 
99
        nbargs = 0;
 
100
        args[nbargs++] = LXCLIBEXECDIR "/lxc-init";
 
101
        args[nbargs++] = "--mount-procfs";
 
102
        args[nbargs++] = "--";
 
103
 
 
104
        for (opt = 0; opt < argc; opt++)
 
105
                args[nbargs++] = argv[optind++];
 
106
 
 
107
        ret = lxc_start(name, args);
 
108
        if (ret) {
 
109
                fprintf(stderr, "%s\n", lxc_strerror(ret));
 
110
                goto out;
 
111
        }
 
112
 
 
113
        ret = 0;
 
114
out:
 
115
        if (autodestroy) {
 
116
                if (lxc_destroy(name)) {
 
117
                        fprintf(stderr, "failed to destroy '%s'\n", name);
 
118
                        ret = 1;
 
119
                }
 
120
        }
 
121
 
 
122
        return ret;
 
123
}
 
124