]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/commands.c
console: lxc_terminal_sigwinch()
[mirror_lxc.git] / src / lxc / commands.c
CommitLineData
724e753c
MN
1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2009
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
724e753c
MN
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
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
724e753c
MN
22 */
23
fe84a562
CB
24#include "config.h"
25
cf685555 26#include <caps.h>
724e753c 27#include <errno.h>
91480a0f 28#include <fcntl.h>
fe84a562 29#include <malloc.h>
37515ebd 30#include <poll.h>
fe84a562
CB
31#include <signal.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <unistd.h>
35#include <sys/param.h>
724e753c
MN
36#include <sys/socket.h>
37#include <sys/un.h>
724e753c 38
fe84a562 39#include "af_unix.h"
f2363e38 40#include "cgroup.h"
724e753c 41#include "commands.h"
bbf5cf35 42#include "commands_utils.h"
fe84a562 43#include "conf.h"
ef6e34ee 44#include "confile.h"
fe84a562
CB
45#include "console.h"
46#include "log.h"
47#include "lxc.h"
dbc9832d 48#include "lxclock.h"
724e753c 49#include "mainloop.h"
dbc9832d 50#include "monitor.h"
fe84a562
CB
51#include "start.h"
52#include "utils.h"
724e753c 53
ded1d23f 54/*
fe84a562
CB
55 * This file provides the different functions for clients to query/command the
56 * server. The client is typically some lxc tool and the server is typically the
57 * container (ie. lxc-start).
ded1d23f 58 *
fe84a562
CB
59 * Each command is transactional, the clients send a request to the server and
60 * the server answers the request with a message giving the request's status
61 * (zero or a negative errno value). Both the request and response may contain
62 * additional data.
ded1d23f 63 *
fe84a562
CB
64 * Each command is wrapped in a ancillary message in order to pass a credential
65 * making possible to the server to check if the client is allowed to ask for
66 * this command or not.
80bcb053 67 *
fe84a562
CB
68 * IMPORTANTLY: Note that semantics for current commands are fixed. If you wish
69 * to make any changes to how, say, LXC_CMD_GET_CONFIG_ITEM works by adding
70 * information to the end of cmd.data, then you must introduce a new
71 * LXC_CMD_GET_CONFIG_ITEM_V2 define with a new number. You may wish to also
72 * mark LXC_CMD_GET_CONFIG_ITEM deprecated in commands.h.
80bcb053
SH
73 *
74 * This is necessary in order to avoid having a newly compiled lxc command
75 * communicating with a running (old) monitor from crashing the running
76 * container.
ded1d23f
DL
77 */
78
724e753c
MN
79lxc_log_define(lxc_commands, lxc);
80
ef6e34ee 81static const char *lxc_cmd_str(lxc_cmd_t cmd)
724e753c 82{
fe84a562 83 static const char *const cmdname[LXC_CMD_MAX] = {
974a8aba
CB
84 [LXC_CMD_CONSOLE] = "console",
85 [LXC_CMD_CONSOLE_WINCH] = "console_winch",
86 [LXC_CMD_STOP] = "stop",
87 [LXC_CMD_GET_STATE] = "get_state",
88 [LXC_CMD_GET_INIT_PID] = "get_init_pid",
89 [LXC_CMD_GET_CLONE_FLAGS] = "get_clone_flags",
90 [LXC_CMD_GET_CGROUP] = "get_cgroup",
91 [LXC_CMD_GET_CONFIG_ITEM] = "get_config_item",
92 [LXC_CMD_GET_NAME] = "get_name",
93 [LXC_CMD_GET_LXCPATH] = "get_lxcpath",
94 [LXC_CMD_ADD_STATE_CLIENT] = "add_state_client",
95 [LXC_CMD_CONSOLE_LOG] = "console_log",
96 [LXC_CMD_SERVE_STATE_CLIENTS] = "serve_state_clients",
ef6e34ee 97 };
724e753c 98
f371aca9 99 if (cmd >= LXC_CMD_MAX)
ef6e34ee 100 return "Unknown cmd";
fe84a562 101
ef6e34ee
DE
102 return cmdname[cmd];
103}
104
105/*
106 * lxc_cmd_rsp_recv: Receive a response to a command
107 *
108 * @sock : the socket connected to the container
109 * @cmd : command to put response in
110 *
111 * Returns the size of the response message or < 0 on failure
112 *
113 * Note that if the command response datalen > 0, then data is
114 * a malloc()ed buffer and should be free()ed by the caller. If
115 * the response data is <= a void * worth of data, it will be
116 * stored directly in data and datalen will be 0.
117 *
118 * As a special case, the response for LXC_CMD_CONSOLE is created
0115f8fd
DE
119 * here as it contains an fd for the master pty passed through the
120 * unix socket.
ef6e34ee
DE
121 */
122static int lxc_cmd_rsp_recv(int sock, struct lxc_cmd_rr *cmd)
123{
2945ea97 124 int ret, rspfd;
ef6e34ee
DE
125 struct lxc_cmd_rsp *rsp = &cmd->rsp;
126
ae467c54 127 ret = lxc_abstract_unix_recv_fds(sock, &rspfd, 1, rsp, sizeof(*rsp));
ef6e34ee 128 if (ret < 0) {
fe84a562
CB
129 WARN("%s - Failed to receive response for command \"%s\"",
130 strerror(errno), lxc_cmd_str(cmd->req.cmd));
6b7f85cb
CB
131 if (errno == ECONNRESET)
132 return -ECONNRESET;
133
ef6e34ee
DE
134 return -1;
135 }
fe84a562 136 TRACE("Command \"%s\" received response", lxc_cmd_str(cmd->req.cmd));
ef6e34ee
DE
137
138 if (cmd->req.cmd == LXC_CMD_CONSOLE) {
139 struct lxc_cmd_console_rsp_data *rspdata;
140
0115f8fd
DE
141 /* recv() returns 0 bytes when a tty cannot be allocated,
142 * rsp->ret is < 0 when the peer permission check failed
143 */
144 if (ret == 0 || rsp->ret < 0)
145 return 0;
146
ef6e34ee
DE
147 rspdata = malloc(sizeof(*rspdata));
148 if (!rspdata) {
fe84a562 149 ERROR("Failed to allocate response buffer for command \"%s\"",
ef6e34ee 150 lxc_cmd_str(cmd->req.cmd));
fe84a562 151 return -ENOMEM;
ef6e34ee 152 }
0115f8fd 153 rspdata->masterfd = rspfd;
ef6e34ee
DE
154 rspdata->ttynum = PTR_TO_INT(rsp->data);
155 rsp->data = rspdata;
156 }
157
860e7c43 158 if (rsp->datalen == 0) {
fe84a562 159 DEBUG("Response data length for command \"%s\" is 0",
860e7c43 160 lxc_cmd_str(cmd->req.cmd));
ae5c8b8e 161 return ret;
860e7c43 162 }
fe84a562 163
191d43cc
CB
164 if ((rsp->datalen > LXC_CMD_DATA_MAX) &&
165 (cmd->req.cmd != LXC_CMD_CONSOLE_LOG)) {
ef6e34ee 166 errno = EFBIG;
fe84a562
CB
167 ERROR("%s - Response data for command \"%s\" is too long: %d "
168 "bytes > %d", strerror(errno), lxc_cmd_str(cmd->req.cmd),
169 rsp->datalen, LXC_CMD_DATA_MAX);
170 return -EFBIG;
2ac9aafc 171 }
ef6e34ee 172
191d43cc
CB
173 if (cmd->req.cmd == LXC_CMD_CONSOLE_LOG) {
174 rsp->data = malloc(rsp->datalen + 1);
175 ((char *)rsp->data)[rsp->datalen] = '\0';
176 } else {
177 rsp->data = malloc(rsp->datalen);
178 }
ef6e34ee 179 if (!rsp->data) {
fe84a562
CB
180 errno = ENOMEM;
181 ERROR("%s - Failed to allocate response buffer for command "
182 "\"%s\"", strerror(errno), lxc_cmd_str(cmd->req.cmd));
183 return -ENOMEM;
ef6e34ee 184 }
fe84a562 185
ef6e34ee
DE
186 ret = recv(sock, rsp->data, rsp->datalen, 0);
187 if (ret != rsp->datalen) {
fe84a562 188 ERROR("%s - Failed to receive response data for command \"%s\"",
08aa08fe 189 lxc_cmd_str(cmd->req.cmd), strerror(errno));
ef6e34ee
DE
190 if (ret >= 0)
191 ret = -1;
192 }
724e753c
MN
193
194 return ret;
195}
196
ef6e34ee
DE
197/*
198 * lxc_cmd_rsp_send: Send a command response
199 *
200 * @fd : file descriptor of socket to send response on
201 * @rsp : response to send
202 *
203 * Returns 0 on success, < 0 on failure
204 */
205static int lxc_cmd_rsp_send(int fd, struct lxc_cmd_rsp *rsp)
206{
fe84a562 207 ssize_t ret;
ef6e34ee
DE
208
209 ret = send(fd, rsp, sizeof(*rsp), 0);
fe84a562
CB
210 if (ret < 0 || (size_t)ret != sizeof(*rsp)) {
211 ERROR("%s - Failed to send command response %zd",
212 strerror(errno), ret);
ef6e34ee
DE
213 return -1;
214 }
215
fe84a562
CB
216 if (rsp->datalen <= 0)
217 return 0;
218
219 ret = send(fd, rsp->data, rsp->datalen, 0);
220 if (ret < 0 || ret != (ssize_t)rsp->datalen) {
221 WARN("%s - Failed to send command response data %zd",
222 strerror(errno), ret);
223 return -1;
ef6e34ee 224 }
fe84a562 225
ef6e34ee
DE
226 return 0;
227}
228
c01c2be6 229static int lxc_cmd_send(const char *name, struct lxc_cmd_rr *cmd,
fe84a562 230 const char *lxcpath, const char *hashed_sock_name)
c01c2be6
CB
231{
232 int client_fd;
fe84a562 233 ssize_t ret = -1;
c01c2be6 234
9dfa4041 235 client_fd = lxc_cmd_connect(name, lxcpath, hashed_sock_name, "command");
fe84a562
CB
236 if (client_fd < 0) {
237 if (client_fd == -ECONNREFUSED)
238 return -ECONNREFUSED;
c01c2be6 239
fe84a562
CB
240 return -1;
241 }
c01c2be6 242
fe84a562
CB
243 ret = lxc_abstract_unix_send_credential(client_fd, &cmd->req,
244 sizeof(cmd->req));
245 if (ret < 0 || (size_t)ret != sizeof(cmd->req)) {
c01c2be6
CB
246 close(client_fd);
247
248 if (errno == EPIPE)
249 return -EPIPE;
250
251 if (ret >= 0)
252 return -EMSGSIZE;
253
254 return -1;
255 }
256
fe84a562
CB
257 if (cmd->req.datalen <= 0)
258 return client_fd;
c01c2be6 259
fe84a562
CB
260 ret = send(client_fd, cmd->req.data, cmd->req.datalen, MSG_NOSIGNAL);
261 if (ret < 0 || ret != (ssize_t)cmd->req.datalen) {
262 close(client_fd);
c01c2be6 263
fe84a562
CB
264 if (errno == EPIPE)
265 return -EPIPE;
c01c2be6 266
fe84a562
CB
267 if (ret >= 0)
268 return -EMSGSIZE;
c01c2be6 269
fe84a562 270 return -1;
c01c2be6
CB
271 }
272
273 return client_fd;
274}
275
ef6e34ee
DE
276/*
277 * lxc_cmd: Connect to the specified running container, send it a command
278 * request and collect the response
279 *
280 * @name : name of container to connect to
1e8cfdf6 281 * @cmd : command with initialized request to send
ef6e34ee
DE
282 * @stopped : output indicator if the container was not running
283 * @lxcpath : the lxcpath in which the container is running
284 *
285 * Returns the size of the response message on success, < 0 on failure
286 *
287 * Note that there is a special case for LXC_CMD_CONSOLE. For this command
288 * the fd cannot be closed because it is used as a placeholder to indicate
289 * that a particular tty slot is in use. The fd is also used as a signal to
290 * the container that when the caller dies or closes the fd, the container
0115f8fd
DE
291 * will notice the fd on its side of the socket in its mainloop select and
292 * then free the slot with lxc_cmd_fd_cleanup(). The socket fd will be
293 * returned in the cmd response structure.
ef6e34ee
DE
294 */
295static int lxc_cmd(const char *name, struct lxc_cmd_rr *cmd, int *stopped,
88556fd7 296 const char *lxcpath, const char *hashed_sock_name)
724e753c 297{
fe84a562
CB
298 int client_fd;
299 int ret = -1;
dbc9832d
CB
300 bool stay_connected = false;
301
302 if (cmd->req.cmd == LXC_CMD_CONSOLE ||
54446942 303 cmd->req.cmd == LXC_CMD_ADD_STATE_CLIENT)
dbc9832d 304 stay_connected = true;
724e753c 305
0ecf64b5
SH
306 *stopped = 0;
307
c01c2be6
CB
308 client_fd = lxc_cmd_send(name, cmd, lxcpath, hashed_sock_name);
309 if (client_fd < 0) {
fe84a562
CB
310 TRACE("%s - Command \"%s\" failed to connect command socket",
311 strerror(errno), lxc_cmd_str(cmd->req.cmd));
c01c2be6 312 if (client_fd == -ECONNREFUSED) {
ef6e34ee 313 *stopped = 1;
c01c2be6 314 return -1;
3f903c04
CB
315 }
316
c01c2be6 317 if (client_fd == -EPIPE)
6168ff15 318 goto epipe;
724e753c 319
c01c2be6 320 goto out;
724e753c
MN
321 }
322
c01c2be6 323 ret = lxc_cmd_rsp_recv(client_fd, cmd);
6b7f85cb
CB
324 if (ret == -ECONNRESET)
325 *stopped = 1;
724e753c 326out:
4575a9f9 327 if (!stay_connected || ret <= 0)
2a7de7ea
CB
328 if (client_fd >= 0)
329 close(client_fd);
fe84a562 330
0115f8fd 331 if (stay_connected && ret > 0)
c01c2be6 332 cmd->rsp.ret = client_fd;
43eb6f29 333
1362f2eb 334 return ret;
6168ff15
SH
335
336epipe:
6168ff15
SH
337 *stopped = 1;
338 return 0;
724e753c
MN
339}
340
b494d2dd
SH
341int lxc_try_cmd(const char *name, const char *lxcpath)
342{
0ecf64b5 343 int stopped, ret;
b494d2dd
SH
344 struct lxc_cmd_rr cmd = {
345 .req = { .cmd = LXC_CMD_GET_INIT_PID },
346 };
347
88556fd7 348 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
b494d2dd
SH
349 if (stopped)
350 return 0;
351 if (ret > 0 && cmd.rsp.ret < 0) {
352 errno = cmd.rsp.ret;
353 return -1;
354 }
355 if (ret > 0)
356 return 0;
357
fe84a562
CB
358 /* At this point we weren't denied access, and the container *was*
359 * started. There was some inexplicable error in the protocol. I'm not
360 * clear on whether we should return -1 here, but we didn't receive a
361 * -EACCES, so technically it's not that we're not allowed to control
362 * the container - it's just not behaving.
b494d2dd
SH
363 */
364 return 0;
365}
366
ef6e34ee
DE
367/* Implentations of the commands and their callbacks */
368
369/*
370 * lxc_cmd_get_init_pid: Get pid of the container's init process
371 *
372 * @name : name of container to connect to
373 * @lxcpath : the lxcpath in which the container is running
374 *
375 * Returns the pid on success, < 0 on failure
376 */
377pid_t lxc_cmd_get_init_pid(const char *name, const char *lxcpath)
43eb6f29 378{
0ecf64b5 379 int ret, stopped;
ef6e34ee
DE
380 struct lxc_cmd_rr cmd = {
381 .req = { .cmd = LXC_CMD_GET_INIT_PID },
382 };
383
88556fd7 384 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
ef6e34ee
DE
385 if (ret < 0)
386 return ret;
387
388 return PTR_TO_INT(cmd.rsp.data);
43eb6f29
DL
389}
390
ef6e34ee
DE
391static int lxc_cmd_get_init_pid_callback(int fd, struct lxc_cmd_req *req,
392 struct lxc_handler *handler)
43eb6f29 393{
ef6e34ee
DE
394 struct lxc_cmd_rsp rsp = { .data = INT_TO_PTR(handler->pid) };
395
396 return lxc_cmd_rsp_send(fd, &rsp);
43eb6f29
DL
397}
398
ef6e34ee
DE
399/*
400 * lxc_cmd_get_clone_flags: Get clone flags container was spawned with
401 *
402 * @name : name of container to connect to
403 * @lxcpath : the lxcpath in which the container is running
404 *
405 * Returns the clone flags on success, < 0 on failure
406 */
407int lxc_cmd_get_clone_flags(const char *name, const char *lxcpath)
408{
0ecf64b5 409 int ret, stopped;
ef6e34ee
DE
410 struct lxc_cmd_rr cmd = {
411 .req = { .cmd = LXC_CMD_GET_CLONE_FLAGS },
412 };
413
88556fd7 414 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
ef6e34ee
DE
415 if (ret < 0)
416 return ret;
43eb6f29 417
ef6e34ee
DE
418 return PTR_TO_INT(cmd.rsp.data);
419}
420
421static int lxc_cmd_get_clone_flags_callback(int fd, struct lxc_cmd_req *req,
422 struct lxc_handler *handler)
26b2d152 423{
becad0ec 424 struct lxc_cmd_rsp rsp = { .data = INT_TO_PTR(handler->ns_clone_flags) };
ef6e34ee
DE
425
426 return lxc_cmd_rsp_send(fd, &rsp);
427}
428
429/*
430 * lxc_cmd_get_cgroup_path: Calculate a container's cgroup path for a
431 * particular subsystem. This is the cgroup path relative to the root
432 * of the cgroup filesystem.
433 *
ef6e34ee
DE
434 * @name : name of container to connect to
435 * @lxcpath : the lxcpath in which the container is running
b98f7d6e 436 * @subsystem : the subsystem being asked about
ef6e34ee
DE
437 *
438 * Returns the path on success, NULL on failure. The caller must free() the
439 * returned path.
440 */
b98f7d6e 441char *lxc_cmd_get_cgroup_path(const char *name, const char *lxcpath,
fe84a562 442 const char *subsystem)
ef6e34ee 443{
0ecf64b5 444 int ret, stopped;
ef6e34ee 445 struct lxc_cmd_rr cmd = {
b98f7d6e
SH
446 .req = {
447 .cmd = LXC_CMD_GET_CGROUP,
b98f7d6e 448 .data = subsystem,
c2aed66d 449 .datalen = 0,
b98f7d6e 450 },
26b2d152
MN
451 };
452
c2aed66d
CB
453 cmd.req.data = subsystem;
454 cmd.req.datalen = 0;
455 if (subsystem)
456 cmd.req.datalen = strlen(subsystem) + 1;
457
88556fd7 458 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
fe84a562 459 if (ret < 0)
ef6e34ee
DE
460 return NULL;
461
fe84a562 462 if (ret == 0)
ef6e34ee 463 return NULL;
ef6e34ee 464
fe84a562 465 if (cmd.rsp.ret < 0 || cmd.rsp.datalen < 0)
ef6e34ee 466 return NULL;
3f903c04 467
ef6e34ee
DE
468 return cmd.rsp.data;
469}
470
471static int lxc_cmd_get_cgroup_callback(int fd, struct lxc_cmd_req *req,
472 struct lxc_handler *handler)
473{
4fb3cba5 474 const char *path;
fe84a562 475 struct lxc_cmd_rsp rsp;
b98f7d6e 476
c2aed66d
CB
477 if (req->datalen > 0)
478 path = cgroup_get_cgroup(handler, req->data);
479 else
480 path = cgroup_get_cgroup(handler, NULL);
b98f7d6e
SH
481 if (!path)
482 return -1;
fe84a562 483
4f17323e 484 rsp.ret = 0;
fe84a562
CB
485 rsp.datalen = strlen(path) + 1;
486 rsp.data = (char *)path;
ef6e34ee
DE
487
488 return lxc_cmd_rsp_send(fd, &rsp);
489}
490
491/*
492 * lxc_cmd_get_config_item: Get config item the running container
493 *
494 * @name : name of container to connect to
7fa3f2e9 495 * @item : the configuration item to retrieve (ex: lxc.net.0.veth.pair)
ef6e34ee
DE
496 * @lxcpath : the lxcpath in which the container is running
497 *
498 * Returns the item on success, NULL on failure. The caller must free() the
499 * returned item.
500 */
501char *lxc_cmd_get_config_item(const char *name, const char *item,
502 const char *lxcpath)
503{
0ecf64b5 504 int ret, stopped;
ef6e34ee
DE
505 struct lxc_cmd_rr cmd = {
506 .req = { .cmd = LXC_CMD_GET_CONFIG_ITEM,
507 .data = item,
fe84a562 508 .datalen = strlen(item) + 1,
ef6e34ee
DE
509 },
510 };
511
88556fd7 512 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
ef6e34ee
DE
513 if (ret < 0)
514 return NULL;
515
516 if (cmd.rsp.ret == 0)
517 return cmd.rsp.data;
fe84a562 518
ef6e34ee
DE
519 return NULL;
520}
521
522static int lxc_cmd_get_config_item_callback(int fd, struct lxc_cmd_req *req,
523 struct lxc_handler *handler)
524{
525 int cilen;
ef6e34ee 526 char *cidata;
30aec088 527 struct lxc_config_t *item;
fe84a562 528 struct lxc_cmd_rsp rsp;
ef6e34ee
DE
529
530 memset(&rsp, 0, sizeof(rsp));
300df83e 531 item = lxc_get_config(req->data);
30aec088
CB
532 if (!item)
533 goto err1;
fe84a562 534
cccd2219 535 cilen = item->get(req->data, NULL, 0, handler->conf, NULL);
ef6e34ee
DE
536 if (cilen <= 0)
537 goto err1;
538
539 cidata = alloca(cilen + 1);
cccd2219 540 if (item->get(req->data, cidata, cilen + 1, handler->conf, NULL) != cilen)
ef6e34ee 541 goto err1;
fe84a562 542
ef6e34ee
DE
543 cidata[cilen] = '\0';
544 rsp.data = cidata;
545 rsp.datalen = cilen + 1;
546 rsp.ret = 0;
547 goto out;
548
549err1:
550 rsp.ret = -1;
551out:
552 return lxc_cmd_rsp_send(fd, &rsp);
553}
554
555/*
556 * lxc_cmd_get_state: Get current state of the container
557 *
558 * @name : name of container to connect to
559 * @lxcpath : the lxcpath in which the container is running
560 *
561 * Returns the state on success, < 0 on failure
562 */
dbc9832d 563int lxc_cmd_get_state(const char *name, const char *lxcpath)
ef6e34ee 564{
0ecf64b5 565 int ret, stopped;
ef6e34ee
DE
566 struct lxc_cmd_rr cmd = {
567 .req = { .cmd = LXC_CMD_GET_STATE }
568 };
26b2d152 569
88556fd7 570 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
ebdd307d 571 if (ret < 0 && stopped)
ef6e34ee
DE
572 return STOPPED;
573
574 if (ret < 0)
26b2d152 575 return -1;
26b2d152 576
ef6e34ee 577 if (!ret) {
fe84a562 578 WARN("Container \"%s\" has stopped before sending its state", name);
ef6e34ee
DE
579 return -1;
580 }
581
fe84a562 582 DEBUG("Container \"%s\" is in \"%s\" state", name,
ef6e34ee 583 lxc_state2str(PTR_TO_INT(cmd.rsp.data)));
fe84a562 584
ef6e34ee
DE
585 return PTR_TO_INT(cmd.rsp.data);
586}
587
588static int lxc_cmd_get_state_callback(int fd, struct lxc_cmd_req *req,
589 struct lxc_handler *handler)
590{
591 struct lxc_cmd_rsp rsp = { .data = INT_TO_PTR(handler->state) };
592
593 return lxc_cmd_rsp_send(fd, &rsp);
594}
595
596/*
597 * lxc_cmd_stop: Stop the container previously started with lxc_start. All
598 * the processes running inside this container will be killed.
599 *
600 * @name : name of container to connect to
601 * @lxcpath : the lxcpath in which the container is running
602 *
603 * Returns 0 on success, < 0 on failure
604 */
605int lxc_cmd_stop(const char *name, const char *lxcpath)
606{
0ecf64b5 607 int ret, stopped;
ef6e34ee
DE
608 struct lxc_cmd_rr cmd = {
609 .req = { .cmd = LXC_CMD_STOP },
610 };
611
88556fd7 612 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
26b2d152 613 if (ret < 0) {
ef6e34ee 614 if (stopped) {
fe84a562 615 INFO("Container \"%s\" is already stopped", name);
ef6e34ee
DE
616 return 0;
617 }
fe84a562 618
26b2d152
MN
619 return -1;
620 }
621
fe84a562
CB
622 /* We do not expect any answer, because we wait for the connection to be
623 * closed.
95d5b147
SH
624 */
625 if (ret > 0) {
fe84a562
CB
626 ERROR("%s - Failed to stop container \"%s\"",
627 strerror(-cmd.rsp.ret), name);
26b2d152
MN
628 return -1;
629 }
630
fe84a562 631 INFO("Container \"%s\" has stopped", name);
ef6e34ee 632 return 0;
26b2d152
MN
633}
634
ef6e34ee
DE
635static int lxc_cmd_stop_callback(int fd, struct lxc_cmd_req *req,
636 struct lxc_handler *handler)
d5088cf2 637{
ef6e34ee 638 struct lxc_cmd_rsp rsp;
ef6e34ee
DE
639 int stopsignal = SIGKILL;
640
641 if (handler->conf->stopsignal)
642 stopsignal = handler->conf->stopsignal;
643 memset(&rsp, 0, sizeof(rsp));
644 rsp.ret = kill(handler->pid, stopsignal);
645 if (!rsp.ret) {
fe84a562 646 /* We can't just use lxc_unfreeze() since we are already in the
4fb3cba5
DE
647 * context of handling the STOP cmd in lxc-start, and calling
648 * lxc_unfreeze() would do another cmd (GET_CGROUP) which would
fe84a562 649 * deadlock us.
4fb3cba5
DE
650 */
651 if (cgroup_unfreeze(handler))
95d5b147 652 return 0;
fe84a562
CB
653
654 ERROR("Failed to unfreeze container \"%s\"", handler->name);
ecfcb3f0 655 rsp.ret = -1;
ef6e34ee
DE
656 }
657
658 return lxc_cmd_rsp_send(fd, &rsp);
659}
d5088cf2 660
b5159817
DE
661/*
662 * lxc_cmd_console_winch: To process as if a SIGWINCH were received
663 *
664 * @name : name of container to connect to
665 * @lxcpath : the lxcpath in which the container is running
666 *
667 * Returns 0 on success, < 0 on failure
668 */
669int lxc_cmd_console_winch(const char *name, const char *lxcpath)
670{
0ecf64b5 671 int ret, stopped;
b5159817
DE
672 struct lxc_cmd_rr cmd = {
673 .req = { .cmd = LXC_CMD_CONSOLE_WINCH },
674 };
675
88556fd7 676 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
b5159817
DE
677 if (ret < 0)
678 return ret;
679
680 return 0;
681}
682
683static int lxc_cmd_console_winch_callback(int fd, struct lxc_cmd_req *req,
684 struct lxc_handler *handler)
685{
686 struct lxc_cmd_rsp rsp = { .data = 0 };
687
dad4a039 688 lxc_terminal_sigwinch(SIGWINCH);
fe84a562 689
b5159817
DE
690 return lxc_cmd_rsp_send(fd, &rsp);
691}
692
ef6e34ee
DE
693/*
694 * lxc_cmd_console: Open an fd to a tty in the container
695 *
696 * @name : name of container to connect to
697 * @ttynum : in: the tty to open or -1 for next available
698 * : out: the tty allocated
699 * @fd : out: file descriptor for master side of pty
700 * @lxcpath : the lxcpath in which the container is running
701 *
0115f8fd 702 * Returns fd holding tty allocated on success, < 0 on failure
ef6e34ee
DE
703 */
704int lxc_cmd_console(const char *name, int *ttynum, int *fd, const char *lxcpath)
705{
0ecf64b5 706 int ret, stopped;
ef6e34ee
DE
707 struct lxc_cmd_console_rsp_data *rspdata;
708 struct lxc_cmd_rr cmd = {
709 .req = { .cmd = LXC_CMD_CONSOLE, .data = INT_TO_PTR(*ttynum) },
710 };
d5088cf2 711
88556fd7 712 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
ef6e34ee
DE
713 if (ret < 0)
714 return ret;
0115f8fd
DE
715
716 if (cmd.rsp.ret < 0) {
fe84a562 717 ERROR("%s - Denied access to tty", strerror(-cmd.rsp.ret));
ef6e34ee
DE
718 ret = -1;
719 goto out;
720 }
d5088cf2 721
0115f8fd 722 if (ret == 0) {
fe84a562 723 ERROR("tty number %d invalid, busy or all ttys busy", *ttynum);
0115f8fd 724 ret = -1;
ef6e34ee
DE
725 goto out;
726 }
ef6e34ee
DE
727
728 rspdata = cmd.rsp.data;
0115f8fd 729 if (rspdata->masterfd < 0) {
fe84a562 730 ERROR("Unable to allocate fd for tty %d", rspdata->ttynum);
ef6e34ee
DE
731 goto out;
732 }
733
fe84a562 734 ret = cmd.rsp.ret; /* socket fd */
0115f8fd 735 *fd = rspdata->masterfd;
ef6e34ee 736 *ttynum = rspdata->ttynum;
fe84a562
CB
737 INFO("Alloced fd %d for tty %d via socket %d", *fd, rspdata->ttynum, ret);
738
ef6e34ee
DE
739out:
740 free(cmd.rsp.data);
741 return ret;
742}
743
744static int lxc_cmd_console_callback(int fd, struct lxc_cmd_req *req,
745 struct lxc_handler *handler)
746{
fe84a562 747 int masterfd, ret;
ef6e34ee 748 struct lxc_cmd_rsp rsp;
fe84a562 749 int ttynum = PTR_TO_INT(req->data);
ef6e34ee 750
b5159817
DE
751 masterfd = lxc_console_allocate(handler->conf, fd, &ttynum);
752 if (masterfd < 0)
ef6e34ee
DE
753 goto out_close;
754
ef6e34ee
DE
755 memset(&rsp, 0, sizeof(rsp));
756 rsp.data = INT_TO_PTR(ttynum);
fe84a562
CB
757 ret = lxc_abstract_unix_send_fds(fd, &masterfd, 1, &rsp, sizeof(rsp));
758 if (ret < 0) {
759 ERROR("Failed to send tty to client");
b5159817 760 lxc_console_free(handler->conf, fd);
ef6e34ee
DE
761 goto out_close;
762 }
763
ef6e34ee
DE
764 return 0;
765
766out_close:
fe84a562
CB
767 /* Special indicator to lxc_cmd_handler() to close the fd and do
768 * related cleanup.
ef6e34ee
DE
769 */
770 return 1;
d5088cf2
CS
771}
772
88556fd7
ÇO
773/*
774 * lxc_cmd_get_name: Returns the name of the container
775 *
776 * @hashed_sock_name: hashed socket name
777 *
778 * Returns the name on success, NULL on failure.
779 */
780char *lxc_cmd_get_name(const char *hashed_sock_name)
781{
782 int ret, stopped;
783 struct lxc_cmd_rr cmd = {
784 .req = { .cmd = LXC_CMD_GET_NAME},
785 };
786
787 ret = lxc_cmd(NULL, &cmd, &stopped, NULL, hashed_sock_name);
fe84a562 788 if (ret < 0)
88556fd7 789 return NULL;
88556fd7
ÇO
790
791 if (cmd.rsp.ret == 0)
792 return cmd.rsp.data;
fe84a562 793
88556fd7
ÇO
794 return NULL;
795}
796
797static int lxc_cmd_get_name_callback(int fd, struct lxc_cmd_req *req,
fe84a562 798 struct lxc_handler *handler)
88556fd7
ÇO
799{
800 struct lxc_cmd_rsp rsp;
801
802 memset(&rsp, 0, sizeof(rsp));
803
f0ecc19d 804 rsp.data = (char *)handler->name;
88556fd7
ÇO
805 rsp.datalen = strlen(handler->name) + 1;
806 rsp.ret = 0;
807
808 return lxc_cmd_rsp_send(fd, &rsp);
809}
810
811/*
812 * lxc_cmd_get_lxcpath: Returns the lxcpath of the container
813 *
814 * @hashed_sock_name: hashed socket name
815 *
816 * Returns the lxcpath on success, NULL on failure.
817 */
818char *lxc_cmd_get_lxcpath(const char *hashed_sock_name)
819{
820 int ret, stopped;
821 struct lxc_cmd_rr cmd = {
822 .req = { .cmd = LXC_CMD_GET_LXCPATH},
823 };
724e753c 824
88556fd7 825 ret = lxc_cmd(NULL, &cmd, &stopped, NULL, hashed_sock_name);
fe84a562 826 if (ret < 0)
88556fd7 827 return NULL;
88556fd7
ÇO
828
829 if (cmd.rsp.ret == 0)
830 return cmd.rsp.data;
fe84a562 831
88556fd7
ÇO
832 return NULL;
833}
834
835static int lxc_cmd_get_lxcpath_callback(int fd, struct lxc_cmd_req *req,
836 struct lxc_handler *handler)
837{
838 struct lxc_cmd_rsp rsp;
839
840 memset(&rsp, 0, sizeof(rsp));
841
fe84a562 842 rsp.ret = 0;
88556fd7
ÇO
843 rsp.data = (char *)handler->lxcpath;
844 rsp.datalen = strlen(handler->lxcpath) + 1;
88556fd7
ÇO
845
846 return lxc_cmd_rsp_send(fd, &rsp);
847}
ef6e34ee 848
54446942 849int lxc_cmd_add_state_client(const char *name, const char *lxcpath,
92e35018
CB
850 lxc_state_t states[MAX_STATE],
851 int *state_client_fd)
dbc9832d 852{
bc631984 853 int state, stopped;
dbc9832d 854 ssize_t ret;
dbc9832d
CB
855 struct lxc_cmd_rr cmd = {
856 .req = {
54446942 857 .cmd = LXC_CMD_ADD_STATE_CLIENT,
dbc9832d
CB
858 .data = states,
859 .datalen = (sizeof(lxc_state_t) * MAX_STATE)
860 },
861 };
862
dbc9832d 863 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
bc631984
CB
864 if (states[STOPPED] != 0 && stopped != 0)
865 return STOPPED;
866
dbc9832d 867 if (ret < 0) {
f577e061
CB
868 if (errno != ECONNREFUSED)
869 ERROR("%s - Failed to execute command", strerror(errno));
dbc9832d
CB
870 return -1;
871 }
fe84a562 872
dbc9832d
CB
873 /* We should now be guaranteed to get an answer from the state sending
874 * function.
875 */
dbc9832d 876 if (cmd.rsp.ret < 0) {
bc631984 877 ERROR("%s - Failed to receive socket fd", strerror(-cmd.rsp.ret));
dbc9832d
CB
878 return -1;
879 }
880
bc631984
CB
881 state = PTR_TO_INT(cmd.rsp.data);
882 if (state < MAX_STATE) {
44552fb2
CB
883 TRACE("Container is already in requested state %s", lxc_state2str(state));
884 close(cmd.rsp.ret);
bc631984
CB
885 return state;
886 }
887
92e35018 888 *state_client_fd = cmd.rsp.ret;
bc631984 889 TRACE("Added state client %d to state client list", cmd.rsp.ret);
92e35018 890 return MAX_STATE;
dbc9832d
CB
891}
892
54446942
CB
893static int lxc_cmd_add_state_client_callback(int fd, struct lxc_cmd_req *req,
894 struct lxc_handler *handler)
dbc9832d 895{
44552fb2 896 int ret;
dbc9832d 897 struct lxc_cmd_rsp rsp = {0};
dbc9832d 898
fe84a562 899 if (req->datalen < 0)
44552fb2 900 goto reap_client_fd;
dbc9832d 901
fe84a562 902 if (req->datalen > (sizeof(lxc_state_t) * MAX_STATE))
44552fb2 903 goto reap_client_fd;
dbc9832d 904
fe84a562 905 if (!req->data)
44552fb2 906 goto reap_client_fd;
dbc9832d 907
c01c2be6 908 rsp.ret = lxc_add_state_client(fd, handler, (lxc_state_t *)req->data);
44552fb2
CB
909 if (rsp.ret < 0)
910 goto reap_client_fd;
911
bc631984 912 rsp.data = INT_TO_PTR(rsp.ret);
dbc9832d 913
44552fb2
CB
914 ret = lxc_cmd_rsp_send(fd, &rsp);
915 if (ret < 0)
916 goto reap_client_fd;
917
918 return 0;
919
920reap_client_fd:
921 /* Special indicator to lxc_cmd_handler() to close the fd and do related
922 * cleanup.
923 */
924 return 1;
dbc9832d
CB
925}
926
191d43cc
CB
927int lxc_cmd_console_log(const char *name, const char *lxcpath,
928 struct lxc_console_log *log)
929{
930 int ret, stopped;
931 struct lxc_cmd_console_log data;
932 struct lxc_cmd_rr cmd;
933
934 data.clear = log->clear;
935 data.read = log->read;
936 data.read_max = *log->read_max;
937
938 cmd.req.cmd = LXC_CMD_CONSOLE_LOG;
939 cmd.req.data = &data;
940 cmd.req.datalen = sizeof(struct lxc_cmd_console_log);
941
942 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
943 if (ret < 0)
944 return ret;
945
946 /* There is nothing to be read from the buffer. So clear any values we
947 * where passed to clearly indicate to the user that nothing went wrong.
948 */
63b74cda 949 if (cmd.rsp.ret == -ENODATA || cmd.rsp.ret == -EFAULT || cmd.rsp.ret == -ENOENT) {
191d43cc
CB
950 *log->read_max = 0;
951 log->data = NULL;
952 }
953
954 /* This is a proper error so don't touch any values we were passed. */
955 if (cmd.rsp.ret < 0)
956 return cmd.rsp.ret;
957
958 *log->read_max = cmd.rsp.datalen;
959 log->data = cmd.rsp.data;
960
961 return 0;
962}
963
964static int lxc_cmd_console_log_callback(int fd, struct lxc_cmd_req *req,
965 struct lxc_handler *handler)
966{
967 struct lxc_cmd_rsp rsp;
28f3b1cd 968 uint64_t buffer_size = handler->conf->console.buffer_size;
191d43cc
CB
969 const struct lxc_cmd_console_log *log = req->data;
970 struct lxc_ringbuf *buf = &handler->conf->console.ringbuf;
971
972 rsp.ret = -EFAULT;
973 rsp.datalen = 0;
974 rsp.data = NULL;
28f3b1cd 975 if (buffer_size <= 0)
191d43cc
CB
976 goto out;
977
5928191e
CB
978 if (log->read || log->write_logfile)
979 rsp.datalen = lxc_ringbuf_used(buf);
980
191d43cc
CB
981 if (log->read)
982 rsp.data = lxc_ringbuf_get_read_addr(buf);
983
984 if (log->read_max > 0 && (log->read_max <= rsp.datalen))
985 rsp.datalen = log->read_max;
986
987 /* there's nothing to read */
63b74cda 988 rsp.ret = -ENODATA;
191d43cc 989 if (log->read && (buf->r_off == buf->w_off))
63b74cda
CB
990 goto out;
991
63b74cda 992 rsp.ret = 0;
23e0d9af 993 if (log->clear)
cf685555 994 /* clear the ringbuffer */
191d43cc 995 lxc_ringbuf_clear(buf);
23e0d9af 996 else if (rsp.datalen > 0)
191d43cc
CB
997 lxc_ringbuf_move_read_addr(buf, rsp.datalen);
998
999out:
1000 return lxc_cmd_rsp_send(fd, &rsp);
1001}
1002
974a8aba
CB
1003int lxc_cmd_serve_state_clients(const char *name, const char *lxcpath,
1004 lxc_state_t state)
1005{
1006 int stopped;
1007 ssize_t ret;
1008 struct lxc_cmd_rr cmd = {
1009 .req = {
1010 .cmd = LXC_CMD_SERVE_STATE_CLIENTS,
1011 .data = INT_TO_PTR(state)
1012 },
1013 };
1014
1015 ret = lxc_cmd(name, &cmd, &stopped, lxcpath, NULL);
1016 if (ret < 0) {
1017 ERROR("%s - Failed to execute command", strerror(errno));
1018 return -1;
1019 }
1020
1021 return 0;
1022}
1023
1024static int lxc_cmd_serve_state_clients_callback(int fd, struct lxc_cmd_req *req,
1025 struct lxc_handler *handler)
1026{
1027 int ret;
1028 lxc_state_t state = PTR_TO_INT(req->data);
1029 struct lxc_cmd_rsp rsp = {0};
1030
1031 ret = lxc_serve_state_clients(handler->name, handler, state);
1032 if (ret < 0)
1033 goto reap_client_fd;
1034
1035 ret = lxc_cmd_rsp_send(fd, &rsp);
1036 if (ret < 0)
1037 goto reap_client_fd;
1038
1039 return 0;
1040
1041reap_client_fd:
1042 /* Special indicator to lxc_cmd_handler() to close the fd and do related
1043 * cleanup.
1044 */
1045 return 1;
1046}
1047
ef6e34ee 1048static int lxc_cmd_process(int fd, struct lxc_cmd_req *req,
ded1d23f 1049 struct lxc_handler *handler)
724e753c 1050{
ef6e34ee
DE
1051 typedef int (*callback)(int, struct lxc_cmd_req *, struct lxc_handler *);
1052
1053 callback cb[LXC_CMD_MAX] = {
974a8aba
CB
1054 [LXC_CMD_CONSOLE] = lxc_cmd_console_callback,
1055 [LXC_CMD_CONSOLE_WINCH] = lxc_cmd_console_winch_callback,
1056 [LXC_CMD_STOP] = lxc_cmd_stop_callback,
1057 [LXC_CMD_GET_STATE] = lxc_cmd_get_state_callback,
1058 [LXC_CMD_GET_INIT_PID] = lxc_cmd_get_init_pid_callback,
1059 [LXC_CMD_GET_CLONE_FLAGS] = lxc_cmd_get_clone_flags_callback,
1060 [LXC_CMD_GET_CGROUP] = lxc_cmd_get_cgroup_callback,
1061 [LXC_CMD_GET_CONFIG_ITEM] = lxc_cmd_get_config_item_callback,
1062 [LXC_CMD_GET_NAME] = lxc_cmd_get_name_callback,
1063 [LXC_CMD_GET_LXCPATH] = lxc_cmd_get_lxcpath_callback,
1064 [LXC_CMD_ADD_STATE_CLIENT] = lxc_cmd_add_state_client_callback,
1065 [LXC_CMD_CONSOLE_LOG] = lxc_cmd_console_log_callback,
1066 [LXC_CMD_SERVE_STATE_CLIENTS] = lxc_cmd_serve_state_clients_callback,
724e753c
MN
1067 };
1068
f371aca9 1069 if (req->cmd >= LXC_CMD_MAX) {
fe84a562 1070 ERROR("Undefined command id %d", req->cmd);
724e753c 1071 return -1;
ef6e34ee
DE
1072 }
1073 return cb[req->cmd](fd, req, handler);
724e753c
MN
1074}
1075
ef6e34ee 1076static void lxc_cmd_fd_cleanup(int fd, struct lxc_handler *handler,
f6fc1565
CB
1077 struct lxc_epoll_descr *descr,
1078 const lxc_cmd_t cmd)
724e753c 1079{
d39b10eb 1080 struct lxc_state_client *client;
f6fc1565
CB
1081 struct lxc_list *cur, *next;
1082
b5159817 1083 lxc_console_free(handler->conf, fd);
724e753c 1084 lxc_mainloop_del_handler(descr, fd);
f6fc1565
CB
1085 if (cmd != LXC_CMD_ADD_STATE_CLIENT) {
1086 close(fd);
1087 return;
1088 }
1089
d39b10eb 1090 lxc_list_for_each_safe(cur, &handler->conf->state_clients, next) {
f6fc1565
CB
1091 client = cur->elem;
1092 if (client->clientfd != fd)
1093 continue;
1094
1095 /* kick client from list */
f6fc1565 1096 lxc_list_del(cur);
300d1cb4 1097 close(client->clientfd);
f6fc1565
CB
1098 free(cur->elem);
1099 free(cur);
b1ca434a
CB
1100 /* No need to walk the whole list. If we found the state client
1101 * fd there can't be a second one.
1102 */
1103 break;
f6fc1565 1104 }
724e753c
MN
1105}
1106
84c92abd
DE
1107static int lxc_cmd_handler(int fd, uint32_t events, void *data,
1108 struct lxc_epoll_descr *descr)
724e753c
MN
1109{
1110 int ret;
ef6e34ee 1111 struct lxc_cmd_req req;
191d43cc 1112 void *reqdata = NULL;
724e753c
MN
1113 struct lxc_handler *handler = data;
1114
aae93dd3 1115 ret = lxc_abstract_unix_rcv_credential(fd, &req, sizeof(req));
0a3ec350 1116 if (ret == -EACCES) {
fe84a562
CB
1117 /* We don't care for the peer, just send and close. */
1118 struct lxc_cmd_rsp rsp = {.ret = ret};
ef6e34ee
DE
1119
1120 lxc_cmd_rsp_send(fd, &rsp);
3cc5de36 1121 goto out_close;
ded1d23f
DL
1122 }
1123
1124 if (ret < 0) {
fe84a562
CB
1125 SYSERROR("Failed to receive data on command socket for command "
1126 "\"%s\"", lxc_cmd_str(req.cmd));
724e753c
MN
1127 goto out_close;
1128 }
1129
fe84a562 1130 if (ret == 0)
724e753c 1131 goto out_close;
724e753c 1132
ef6e34ee 1133 if (ret != sizeof(req)) {
c01c2be6 1134 WARN("Failed to receive full command request. Ignoring request "
fe84a562 1135 "for \"%s\"", lxc_cmd_str(req.cmd));
ef6e34ee
DE
1136 ret = -1;
1137 goto out_close;
1138 }
1139
191d43cc
CB
1140 if ((req.datalen > LXC_CMD_DATA_MAX) &&
1141 (req.cmd != LXC_CMD_CONSOLE_LOG)) {
c01c2be6 1142 ERROR("Received command data length %d is too large for "
fe84a562
CB
1143 "command \"%s\"", req.datalen, lxc_cmd_str(req.cmd));
1144 errno = EFBIG;
1145 ret = -EFBIG;
724e753c
MN
1146 goto out_close;
1147 }
1148
ef6e34ee 1149 if (req.datalen > 0) {
191d43cc
CB
1150 /* LXC_CMD_CONSOLE_LOG needs to be able to allocate data
1151 * that exceeds LXC_CMD_DATA_MAX: use malloc() for that.
1152 */
1153 if (req.cmd == LXC_CMD_CONSOLE_LOG)
1154 reqdata = malloc(req.datalen);
1155 else
1156 reqdata = alloca(req.datalen);
1157 if (!reqdata) {
1158 ERROR("Failed to allocate memory for \"%s\" command",
1159 lxc_cmd_str(req.cmd));
1160 errno = ENOMEM;
1161 ret = -ENOMEM;
1162 goto out_close;
1163 }
ef6e34ee 1164
ef6e34ee
DE
1165 ret = recv(fd, reqdata, req.datalen, 0);
1166 if (ret != req.datalen) {
c01c2be6 1167 WARN("Failed to receive full command request. Ignoring "
fe84a562 1168 "request for \"%s\"", lxc_cmd_str(req.cmd));
ef6e34ee
DE
1169 ret = -1;
1170 goto out_close;
1171 }
fe84a562 1172
ef6e34ee
DE
1173 req.data = reqdata;
1174 }
1175
1176 ret = lxc_cmd_process(fd, &req, handler);
724e753c 1177 if (ret) {
fe84a562 1178 /* This is not an error, but only a request to close fd. */
724e753c
MN
1179 ret = 0;
1180 goto out_close;
1181 }
1182
1183out:
191d43cc
CB
1184 if (req.cmd == LXC_CMD_CONSOLE_LOG && reqdata)
1185 free(reqdata);
1186
724e753c 1187 return ret;
fe84a562 1188
724e753c 1189out_close:
f6fc1565 1190 lxc_cmd_fd_cleanup(fd, handler, descr, req.cmd);
724e753c
MN
1191 goto out;
1192}
1193
84c92abd
DE
1194static int lxc_cmd_accept(int fd, uint32_t events, void *data,
1195 struct lxc_epoll_descr *descr)
724e753c 1196{
fe84a562
CB
1197 int connection;
1198 int opt = 1, ret = -1;
724e753c
MN
1199
1200 connection = accept(fd, NULL, 0);
1201 if (connection < 0) {
08aa08fe 1202 SYSERROR("Failed to accept connection to run command.");
724e753c
MN
1203 return -1;
1204 }
1205
fe84a562
CB
1206 ret = fcntl(connection, F_SETFD, FD_CLOEXEC);
1207 if (ret < 0) {
1208 SYSERROR("Failed to set close-on-exec on incoming command connection");
9ccb2dbc
DL
1209 goto out_close;
1210 }
1211
fe84a562
CB
1212 ret = setsockopt(connection, SOL_SOCKET, SO_PASSCRED, &opt, sizeof(opt));
1213 if (ret < 0) {
1214 SYSERROR("Failed to enable necessary credentials on command socket");
724e753c
MN
1215 goto out_close;
1216 }
1217
ef6e34ee 1218 ret = lxc_mainloop_add_handler(descr, connection, lxc_cmd_handler, data);
724e753c 1219 if (ret) {
fe84a562 1220 ERROR("Failed to add command handler");
724e753c
MN
1221 goto out_close;
1222 }
1223
1224out:
1225 return ret;
1226
1227out_close:
1228 close(connection);
1229 goto out;
1230}
1231
9dfa4041 1232int lxc_cmd_init(const char *name, const char *lxcpath, const char *suffix)
724e753c 1233{
fe84a562
CB
1234 int fd, len, ret;
1235 char path[sizeof(((struct sockaddr_un *)0)->sun_path)] = {0};
46968ea3 1236 char *offset = &path[1];
724e753c 1237
6f2944c1
TA
1238 /* -2 here because this is an abstract unix socket so it needs a
1239 * leading \0, and we null terminate, so it needs a trailing \0.
1240 * Although null termination isn't required by the API, we do it anyway
1241 * because we print the sockname out sometimes.
1242 */
860e7c43 1243 len = sizeof(path) - 2;
9dfa4041 1244 ret = lxc_make_abstract_socket_name(offset, len, name, lxcpath, NULL, suffix);
fe84a562 1245 if (ret < 0)
9ba8130c 1246 return -1;
9dfa4041 1247 TRACE("Creating abstract unix socket \"%s\"", offset);
724e753c 1248
aae93dd3 1249 fd = lxc_abstract_unix_open(path, SOCK_STREAM, 0);
724e753c 1250 if (fd < 0) {
fe84a562
CB
1251 ERROR("%s - Failed to create command socket %s",
1252 strerror(errno), offset);
08aa08fe 1253 if (errno == EADDRINUSE)
fe84a562 1254 ERROR("Container \"%s\" appears to be already running", name);
724e753c
MN
1255 return -1;
1256 }
1257
fe84a562
CB
1258 ret = fcntl(fd, F_SETFD, FD_CLOEXEC);
1259 if (ret < 0) {
1260 SYSERROR("Failed to set FD_CLOEXEC on command socket file descriptor");
91480a0f
DL
1261 close(fd);
1262 return -1;
1263 }
1264
9dfa4041 1265 return fd;
d2e30e99
DE
1266}
1267
fe84a562 1268int lxc_cmd_mainloop_add(const char *name, struct lxc_epoll_descr *descr,
ef6e34ee 1269 struct lxc_handler *handler)
d2e30e99 1270{
fe84a562
CB
1271 int ret;
1272 int fd = handler->conf->maincmd_fd;
d2e30e99 1273
ef6e34ee 1274 ret = lxc_mainloop_add_handler(descr, fd, lxc_cmd_accept, handler);
fe84a562
CB
1275 if (ret < 0) {
1276 ERROR("Failed to add handler for command socket");
724e753c
MN
1277 close(fd);
1278 }
1279
1280 return ret;
1281}