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

« back to all changes in this revision

Viewing changes to .pc/0200-liblxc/src/lxc/state.c

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber, Stéphane Graber, Serge Hallyn
  • Date: 2012-08-22 11:50:51 UTC
  • Revision ID: package-import@ubuntu.com-20120822115051-2cmb0vjrkyadjovf
Tags: 0.8.0~rc1-4ubuntu28
[ Stéphane Graber ]
* Merge liblxc changes:
  - Build-depend on automake as autogen.sh is now run at build time.
  - Introduce new liblxc0 binary package
  - Make lxc to depend on liblxc0
  - Move library to the new binary package
  - Change libdir to be the public multi-arch path
  - Build with --disable-rpath
  - Move all the test binaries to a lxc-test-* namespace
* Merge python3-lxc changes:
  - Introduce new python3-lxc binary package
  - Update debian/rules to build the python3 code
* Update lxc-start-ephemeral:
  - Replace tabs by 4 spaces, fix indentation
  - Fix code to work properly as non-root (calling sudo where needed)

[ Serge Hallyn ]
* confile.c: support hooks in save_config().
* conf.h: Add array of hook names

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
#include <stdio.h>
 
24
#include <string.h>
 
25
#include <fcntl.h>
 
26
#include <errno.h>
 
27
#include <unistd.h>
 
28
#include <sys/types.h>
 
29
#include <sys/socket.h>
 
30
#include <sys/param.h>
 
31
#include <sys/stat.h>
 
32
#include <sys/file.h>
 
33
 
 
34
#include <lxc/log.h>
 
35
#include <lxc/start.h>
 
36
#include <lxc/cgroup.h>
 
37
#include "commands.h"
 
38
#include "config.h"
 
39
 
 
40
lxc_log_define(lxc_state, lxc);
 
41
 
 
42
static char *strstate[] = {
 
43
        "STOPPED", "STARTING", "RUNNING", "STOPPING",
 
44
        "ABORTING", "FREEZING", "FROZEN", "THAWED",
 
45
};
 
46
 
 
47
const char *lxc_state2str(lxc_state_t state)
 
48
{
 
49
        if (state < STOPPED || state > MAX_STATE - 1)
 
50
                return NULL;
 
51
        return strstate[state];
 
52
}
 
53
 
 
54
lxc_state_t lxc_str2state(const char *state)
 
55
{
 
56
        int i, len;
 
57
        len = sizeof(strstate)/sizeof(strstate[0]);
 
58
        for (i = 0; i < len; i++)
 
59
                if (!strcmp(strstate[i], state))
 
60
                        return i;
 
61
 
 
62
        ERROR("invalid state '%s'", state);
 
63
        return -1;
 
64
}
 
65
 
 
66
static int freezer_state(const char *name)
 
67
{
 
68
        char *nsgroup;
 
69
        char freezer[MAXPATHLEN];
 
70
        char status[MAXPATHLEN];
 
71
        FILE *file;
 
72
        int err;
 
73
 
 
74
        err = lxc_cgroup_path_get(&nsgroup, "freezer", name);
 
75
        if (err)
 
76
                return -1;
 
77
 
 
78
        err = snprintf(freezer, MAXPATHLEN, "%s/freezer.state", nsgroup);
 
79
        if (err < 0 || err >= MAXPATHLEN)
 
80
                return -1;
 
81
 
 
82
        file = fopen(freezer, "r");
 
83
        if (!file)
 
84
                return -1;
 
85
 
 
86
        err = fscanf(file, "%s", status);
 
87
        fclose(file);
 
88
 
 
89
        if (err == EOF) {
 
90
                SYSERROR("failed to read %s", freezer);
 
91
                return -1;
 
92
        }
 
93
 
 
94
        return lxc_str2state(status);
 
95
}
 
96
 
 
97
static lxc_state_t __lxc_getstate(const char *name)
 
98
{
 
99
        struct lxc_command command = {
 
100
                .request = { .type = LXC_COMMAND_STATE },
 
101
        };
 
102
 
 
103
        int ret, stopped = 0;
 
104
 
 
105
        ret = lxc_command(name, &command, &stopped);
 
106
        if (ret < 0 && stopped)
 
107
                return STOPPED;
 
108
 
 
109
        if (ret < 0) {
 
110
                ERROR("failed to send command");
 
111
                return -1;
 
112
        }
 
113
 
 
114
        if (!ret) {
 
115
                WARN("'%s' has stopped before sending its state", name);
 
116
                return -1;
 
117
        }
 
118
 
 
119
        if (command.answer.ret < 0) {
 
120
                ERROR("failed to get state for '%s': %s",
 
121
                        name, strerror(-command.answer.ret));
 
122
                return -1;
 
123
        }
 
124
 
 
125
        DEBUG("'%s' is in '%s' state", name, lxc_state2str(command.answer.ret));
 
126
 
 
127
        return command.answer.ret;
 
128
}
 
129
 
 
130
lxc_state_t lxc_getstate(const char *name)
 
131
{
 
132
        int state = freezer_state(name);
 
133
        if (state != FROZEN && state != FREEZING)
 
134
                state = __lxc_getstate(name);
 
135
        return state;
 
136
}
 
137
 
 
138
/*----------------------------------------------------------------------------
 
139
 * functions used by lxc-start mainloop
 
140
 * to handle above command request.
 
141
 *--------------------------------------------------------------------------*/
 
142
extern int lxc_state_callback(int fd, struct lxc_request *request,
 
143
                        struct lxc_handler *handler)
 
144
{
 
145
        struct lxc_answer answer;
 
146
        int ret;
 
147
 
 
148
        answer.ret = handler->state;
 
149
 
 
150
        ret = send(fd, &answer, sizeof(answer), 0);
 
151
        if (ret < 0) {
 
152
                WARN("failed to send answer to the peer");
 
153
                goto out;
 
154
        }
 
155
 
 
156
        if (ret != sizeof(answer)) {
 
157
                ERROR("partial answer sent");
 
158
                goto out;
 
159
        }
 
160
 
 
161
out:
 
162
        return ret;
 
163
}
 
164