]> git.proxmox.com Git - mirror_lxc.git/blob - src/lxc/freezer.c
tree-wide: s/strncpy()/strlcpy()/g
[mirror_lxc.git] / src / lxc / freezer.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 #include "config.h"
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <errno.h>
28 #include <unistd.h>
29 #include <string.h>
30 #include <fcntl.h>
31 #include <sys/types.h>
32 #include <sys/param.h>
33
34 #include "commands.h"
35 #include "error.h"
36 #include "log.h"
37 #include "lxc.h"
38 #include "monitor.h"
39 #include "parse.h"
40 #include "state.h"
41
42 lxc_log_define(lxc_freezer, lxc);
43
44 lxc_state_t freezer_state(const char *name, const char *lxcpath)
45 {
46 int ret;
47 char v[100];
48
49 ret = lxc_cgroup_get("freezer.state", v, sizeof(v), name, lxcpath);
50 if (ret < 0)
51 return -1;
52
53 v[99] = '\0';
54 v[lxc_char_right_gc(v, strlen(v))] = '\0';
55
56 return lxc_str2state(v);
57 }
58
59 static int do_freeze_thaw(bool freeze, const char *name, const char *lxcpath)
60 {
61 int ret;
62 char v[100];
63 const char *state = freeze ? "FROZEN" : "THAWED";
64 size_t state_len = 6;
65 lxc_state_t new_state = freeze ? FROZEN : THAWED;
66
67 ret = lxc_cgroup_set("freezer.state", state, name, lxcpath);
68 if (ret < 0) {
69 ERROR("Failed to freeze %s", name);
70 return -1;
71 }
72
73 for (;;) {
74 ret = lxc_cgroup_get("freezer.state", v, sizeof(v), name, lxcpath);
75 if (ret < 0) {
76 ERROR("Failed to get freezer state of %s", name);
77 return -1;
78 }
79
80 v[99] = '\0';
81 v[lxc_char_right_gc(v, strlen(v))] = '\0';
82
83 ret = strncmp(v, state, state_len);
84 if (ret == 0) {
85 lxc_cmd_serve_state_clients(name, lxcpath, new_state);
86 lxc_monitor_send_state(name, new_state, lxcpath);
87 return 0;
88 }
89
90 sleep(1);
91 }
92 }
93
94 int lxc_freeze(const char *name, const char *lxcpath)
95 {
96 lxc_cmd_serve_state_clients(name, lxcpath, FREEZING);
97 lxc_monitor_send_state(name, FREEZING, lxcpath);
98 return do_freeze_thaw(true, name, lxcpath);
99 }
100
101 int lxc_unfreeze(const char *name, const char *lxcpath)
102 {
103 return do_freeze_thaw(false, name, lxcpath);
104 }