Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lxc
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
lxc
Commits
eb4ca13d
Commit
eb4ca13d
authored
Oct 11, 2017
by
Serge Hallyn
Committed by
GitHub
Oct 11, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1852 from brauner/2017-10-11/container_live_patching
POC: container live patching
parents
70cc6755
af54d8e6
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
395 additions
and
15 deletions
+395
-15
.gitignore
.gitignore
+1
-0
commands.c
src/lxc/commands.c
+55
-0
commands.h
src/lxc/commands.h
+9
-0
lxc.h
src/lxc/lxc.h
+7
-0
lxccontainer.c
src/lxc/lxccontainer.c
+53
-14
lxccontainer.h
src/lxc/lxccontainer.h
+11
-0
Makefile.am
src/tests/Makefile.am
+3
-1
livepatch.c
src/tests/livepatch.c
+256
-0
No files found.
.gitignore
View file @
eb4ca13d
...
@@ -84,6 +84,7 @@ src/tests/lxc-test-destroytest
...
@@ -84,6 +84,7 @@ src/tests/lxc-test-destroytest
src/tests/lxc-test-get_item
src/tests/lxc-test-get_item
src/tests/lxc-test-getkeys
src/tests/lxc-test-getkeys
src/tests/lxc-test-list
src/tests/lxc-test-list
src/tests/lxc-test-livepatch
src/tests/lxc-test-locktests
src/tests/lxc-test-locktests
src/tests/lxc-test-lxcpath
src/tests/lxc-test-lxcpath
src/tests/lxc-test-may-control
src/tests/lxc-test-may-control
...
...
src/lxc/commands.c
View file @
eb4ca13d
...
@@ -90,6 +90,7 @@ static const char *lxc_cmd_str(lxc_cmd_t cmd)
...
@@ -90,6 +90,7 @@ static const char *lxc_cmd_str(lxc_cmd_t cmd)
[
LXC_CMD_GET_NAME
]
=
"get_name"
,
[
LXC_CMD_GET_NAME
]
=
"get_name"
,
[
LXC_CMD_GET_LXCPATH
]
=
"get_lxcpath"
,
[
LXC_CMD_GET_LXCPATH
]
=
"get_lxcpath"
,
[
LXC_CMD_ADD_STATE_CLIENT
]
=
"add_state_client"
,
[
LXC_CMD_ADD_STATE_CLIENT
]
=
"add_state_client"
,
[
LXC_CMD_SET_CONFIG_ITEM
]
=
"set_config_item"
,
};
};
if
(
cmd
>=
LXC_CMD_MAX
)
if
(
cmd
>=
LXC_CMD_MAX
)
...
@@ -539,6 +540,59 @@ out:
...
@@ -539,6 +540,59 @@ out:
}
}
/*
/*
* lxc_cmd_set_config_item: Get config item the running container
*
* @name : name of container to connect to
* @item : the configuration item to set (ex: lxc.net.0.veth.pair)
* @value : the value to set (ex: "eth0")
* @lxcpath : the lxcpath in which the container is running
*
* Returns 0 on success, negative errno on failure.
*/
int
lxc_cmd_set_config_item
(
const
char
*
name
,
const
char
*
item
,
const
char
*
value
,
const
char
*
lxcpath
)
{
int
ret
,
stopped
;
struct
lxc_cmd_set_config_item_req_data
data
;
struct
lxc_cmd_rr
cmd
;
/* pre-validate request
Currently we only support live-patching network configurations.
*/
if
(
strncmp
(
item
,
"lxc.net."
,
8
))
return
-
EINVAL
;
data
.
item
=
item
;
data
.
value
=
(
void
*
)
value
;
cmd
.
req
.
cmd
=
LXC_CMD_SET_CONFIG_ITEM
;
cmd
.
req
.
data
=
&
data
;
cmd
.
req
.
datalen
=
sizeof
(
data
);
ret
=
lxc_cmd
(
name
,
&
cmd
,
&
stopped
,
lxcpath
,
NULL
);
if
(
ret
<
0
)
return
ret
;
return
cmd
.
rsp
.
ret
;
}
static
int
lxc_cmd_set_config_item_callback
(
int
fd
,
struct
lxc_cmd_req
*
req
,
struct
lxc_handler
*
handler
)
{
const
char
*
key
,
*
value
;
struct
lxc_cmd_rsp
rsp
;
const
struct
lxc_cmd_set_config_item_req_data
*
data
;
data
=
req
->
data
;
key
=
data
->
item
;
value
=
data
->
value
;
memset
(
&
rsp
,
0
,
sizeof
(
rsp
));
rsp
.
ret
=
lxc_set_config_item_locked
(
handler
->
conf
,
key
,
value
);
return
lxc_cmd_rsp_send
(
fd
,
&
rsp
);
}
/*
* lxc_cmd_get_state: Get current state of the container
* lxc_cmd_get_state: Get current state of the container
*
*
* @name : name of container to connect to
* @name : name of container to connect to
...
@@ -949,6 +1003,7 @@ static int lxc_cmd_process(int fd, struct lxc_cmd_req *req,
...
@@ -949,6 +1003,7 @@ static int lxc_cmd_process(int fd, struct lxc_cmd_req *req,
[
LXC_CMD_GET_NAME
]
=
lxc_cmd_get_name_callback
,
[
LXC_CMD_GET_NAME
]
=
lxc_cmd_get_name_callback
,
[
LXC_CMD_GET_LXCPATH
]
=
lxc_cmd_get_lxcpath_callback
,
[
LXC_CMD_GET_LXCPATH
]
=
lxc_cmd_get_lxcpath_callback
,
[
LXC_CMD_ADD_STATE_CLIENT
]
=
lxc_cmd_add_state_client_callback
,
[
LXC_CMD_ADD_STATE_CLIENT
]
=
lxc_cmd_add_state_client_callback
,
[
LXC_CMD_SET_CONFIG_ITEM
]
=
lxc_cmd_set_config_item_callback
,
};
};
if
(
req
->
cmd
>=
LXC_CMD_MAX
)
{
if
(
req
->
cmd
>=
LXC_CMD_MAX
)
{
...
...
src/lxc/commands.h
View file @
eb4ca13d
...
@@ -48,6 +48,7 @@ typedef enum {
...
@@ -48,6 +48,7 @@ typedef enum {
LXC_CMD_GET_NAME
,
LXC_CMD_GET_NAME
,
LXC_CMD_GET_LXCPATH
,
LXC_CMD_GET_LXCPATH
,
LXC_CMD_ADD_STATE_CLIENT
,
LXC_CMD_ADD_STATE_CLIENT
,
LXC_CMD_SET_CONFIG_ITEM
,
LXC_CMD_MAX
,
LXC_CMD_MAX
,
}
lxc_cmd_t
;
}
lxc_cmd_t
;
...
@@ -73,6 +74,11 @@ struct lxc_cmd_console_rsp_data {
...
@@ -73,6 +74,11 @@ struct lxc_cmd_console_rsp_data {
int
ttynum
;
int
ttynum
;
};
};
struct
lxc_cmd_set_config_item_req_data
{
const
char
*
item
;
void
*
value
;
};
extern
int
lxc_cmd_console_winch
(
const
char
*
name
,
const
char
*
lxcpath
);
extern
int
lxc_cmd_console_winch
(
const
char
*
name
,
const
char
*
lxcpath
);
extern
int
lxc_cmd_console
(
const
char
*
name
,
int
*
ttynum
,
int
*
fd
,
extern
int
lxc_cmd_console
(
const
char
*
name
,
int
*
ttynum
,
int
*
fd
,
const
char
*
lxcpath
);
const
char
*
lxcpath
);
...
@@ -116,4 +122,7 @@ extern int lxc_cmd_mainloop_add(const char *name, struct lxc_epoll_descr *descr,
...
@@ -116,4 +122,7 @@ extern int lxc_cmd_mainloop_add(const char *name, struct lxc_epoll_descr *descr,
struct
lxc_handler
*
handler
);
struct
lxc_handler
*
handler
);
extern
int
lxc_try_cmd
(
const
char
*
name
,
const
char
*
lxcpath
);
extern
int
lxc_try_cmd
(
const
char
*
name
,
const
char
*
lxcpath
);
extern
int
lxc_cmd_set_config_item
(
const
char
*
name
,
const
char
*
item
,
const
char
*
value
,
const
char
*
lxcpath
);
#endif
/* __commands_h */
#endif
/* __commands_h */
src/lxc/lxc.h
View file @
eb4ca13d
...
@@ -149,6 +149,13 @@ extern int lxc_get_wait_states(const char **states);
...
@@ -149,6 +149,13 @@ extern int lxc_get_wait_states(const char **states);
*/
*/
extern
int
add_rdepend
(
struct
lxc_conf
*
lxc_conf
,
char
*
rdepend
);
extern
int
add_rdepend
(
struct
lxc_conf
*
lxc_conf
,
char
*
rdepend
);
/*
* Set a key/value configuration option. Requires that to take a lock on the
* in-memory config of the container.
*/
extern
int
lxc_set_config_item_locked
(
struct
lxc_conf
*
conf
,
const
char
*
key
,
const
char
*
v
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#endif
...
...
src/lxc/lxccontainer.c
View file @
eb4ca13d
...
@@ -2765,9 +2765,35 @@ static bool do_lxcapi_destroy_with_snapshots(struct lxc_container *c)
...
@@ -2765,9 +2765,35 @@ static bool do_lxcapi_destroy_with_snapshots(struct lxc_container *c)
WRAP_API
(
bool
,
lxcapi_destroy_with_snapshots
)
WRAP_API
(
bool
,
lxcapi_destroy_with_snapshots
)
static
bool
set_config_item_locked
(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
v
)
int
lxc_set_config_item_locked
(
struct
lxc_conf
*
conf
,
const
char
*
key
,
const
char
*
v
)
{
{
int
ret
;
struct
lxc_config_t
*
config
;
struct
lxc_config_t
*
config
;
bool
bret
=
true
;
config
=
lxc_get_config
(
key
);
if
(
!
config
)
return
-
EINVAL
;
ret
=
config
->
set
(
key
,
v
,
conf
,
NULL
);
if
(
ret
<
0
)
return
-
EINVAL
;
if
(
lxc_config_value_empty
(
v
))
do_clear_unexp_config_line
(
conf
,
key
);
else
bret
=
do_append_unexp_config_line
(
conf
,
key
,
v
);
if
(
!
bret
)
return
-
ENOMEM
;
return
0
;
}
static
bool
do_set_config_item_locked
(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
v
)
{
int
ret
;
if
(
!
c
->
lxc_conf
)
if
(
!
c
->
lxc_conf
)
c
->
lxc_conf
=
lxc_conf_init
();
c
->
lxc_conf
=
lxc_conf_init
();
...
@@ -2775,19 +2801,11 @@ static bool set_config_item_locked(struct lxc_container *c, const char *key, con
...
@@ -2775,19 +2801,11 @@ static bool set_config_item_locked(struct lxc_container *c, const char *key, con
if
(
!
c
->
lxc_conf
)
if
(
!
c
->
lxc_conf
)
return
false
;
return
false
;
config
=
lxc_get_config
(
key
);
ret
=
lxc_set_config_item_locked
(
c
->
lxc_conf
,
key
,
v
);
if
(
!
config
)
if
(
ret
<
0
)
return
false
;
if
(
config
->
set
(
key
,
v
,
c
->
lxc_conf
,
NULL
)
!=
0
)
return
false
;
return
false
;
if
(
lxc_config_value_empty
(
v
))
{
return
true
;
do_clear_unexp_config_line
(
c
->
lxc_conf
,
key
);
return
true
;
}
return
do_append_unexp_config_line
(
c
->
lxc_conf
,
key
,
v
);
}
}
static
bool
do_lxcapi_set_config_item
(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
v
)
static
bool
do_lxcapi_set_config_item
(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
v
)
...
@@ -2800,7 +2818,7 @@ static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key,
...
@@ -2800,7 +2818,7 @@ static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key,
if
(
container_mem_lock
(
c
))
if
(
container_mem_lock
(
c
))
return
false
;
return
false
;
b
=
set_config_item_locked
(
c
,
key
,
v
);
b
=
do_
set_config_item_locked
(
c
,
key
,
v
);
container_mem_unlock
(
c
);
container_mem_unlock
(
c
);
return
b
;
return
b
;
...
@@ -2808,6 +2826,26 @@ static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key,
...
@@ -2808,6 +2826,26 @@ static bool do_lxcapi_set_config_item(struct lxc_container *c, const char *key,
WRAP_API_2
(
bool
,
lxcapi_set_config_item
,
const
char
*
,
const
char
*
)
WRAP_API_2
(
bool
,
lxcapi_set_config_item
,
const
char
*
,
const
char
*
)
static
bool
do_lxcapi_set_running_config_item
(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
v
)
{
int
ret
;
if
(
!
c
)
return
false
;
if
(
container_mem_lock
(
c
))
return
false
;
ret
=
lxc_cmd_set_config_item
(
c
->
name
,
key
,
v
,
do_lxcapi_get_config_path
(
c
));
if
(
ret
<
0
)
SYSERROR
(
"%s - Failed to live patch container"
,
strerror
(
-
ret
));
container_mem_unlock
(
c
);
return
ret
==
0
;
}
WRAP_API_2
(
bool
,
lxcapi_set_running_config_item
,
const
char
*
,
const
char
*
)
static
char
*
lxcapi_config_file_name
(
struct
lxc_container
*
c
)
static
char
*
lxcapi_config_file_name
(
struct
lxc_container
*
c
)
{
{
if
(
!
c
||
!
c
->
configfile
)
if
(
!
c
||
!
c
->
configfile
)
...
@@ -3502,7 +3540,7 @@ static struct lxc_container *do_lxcapi_clone(struct lxc_container *c, const char
...
@@ -3502,7 +3540,7 @@ static struct lxc_container *do_lxcapi_clone(struct lxc_container *c, const char
clear_unexp_config_line
(
c2
->
lxc_conf
,
"lxc.utsname"
,
false
);
clear_unexp_config_line
(
c2
->
lxc_conf
,
"lxc.utsname"
,
false
);
clear_unexp_config_line
(
c2
->
lxc_conf
,
"lxc.uts.name"
,
false
);
clear_unexp_config_line
(
c2
->
lxc_conf
,
"lxc.uts.name"
,
false
);
if
(
!
set_config_item_locked
(
c2
,
"lxc.uts.name"
,
newname
))
{
if
(
!
do_
set_config_item_locked
(
c2
,
"lxc.uts.name"
,
newname
))
{
ERROR
(
"Error setting new hostname"
);
ERROR
(
"Error setting new hostname"
);
goto
out
;
goto
out
;
}
}
...
@@ -4544,6 +4582,7 @@ struct lxc_container *lxc_container_new(const char *name, const char *configpath
...
@@ -4544,6 +4582,7 @@ struct lxc_container *lxc_container_new(const char *name, const char *configpath
c
->
clear_config_item
=
lxcapi_clear_config_item
;
c
->
clear_config_item
=
lxcapi_clear_config_item
;
c
->
get_config_item
=
lxcapi_get_config_item
;
c
->
get_config_item
=
lxcapi_get_config_item
;
c
->
get_running_config_item
=
lxcapi_get_running_config_item
;
c
->
get_running_config_item
=
lxcapi_get_running_config_item
;
c
->
set_running_config_item
=
lxcapi_set_running_config_item
;
c
->
get_cgroup_item
=
lxcapi_get_cgroup_item
;
c
->
get_cgroup_item
=
lxcapi_get_cgroup_item
;
c
->
set_cgroup_item
=
lxcapi_set_cgroup_item
;
c
->
set_cgroup_item
=
lxcapi_set_cgroup_item
;
c
->
get_config_path
=
lxcapi_get_config_path
;
c
->
get_config_path
=
lxcapi_get_config_path
;
...
...
src/lxc/lxccontainer.h
View file @
eb4ca13d
...
@@ -280,6 +280,17 @@ struct lxc_container {
...
@@ -280,6 +280,17 @@ struct lxc_container {
bool
(
*
set_config_item
)(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
value
);
bool
(
*
set_config_item
)(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
value
);
/*!
/*!
* \brief Set a key/value configuration option on a running container.
*
* \param c Container.
* \param key Name of option to set.
* \param value Value of \p name to set.
*
* \return \c true on success, else \c false.
*/
bool
(
*
set_running_config_item
)(
struct
lxc_container
*
c
,
const
char
*
key
,
const
char
*
value
);
/*!
* \brief Delete the container.
* \brief Delete the container.
*
*
* \param c Container.
* \param c Container.
...
...
src/tests/Makefile.am
View file @
eb4ca13d
...
@@ -27,6 +27,7 @@ lxc_test_utils_SOURCES = lxc-test-utils.c lxctest.h
...
@@ -27,6 +27,7 @@ lxc_test_utils_SOURCES = lxc-test-utils.c lxctest.h
lxc_test_parse_config_file_SOURCES
=
parse_config_file.c lxctest.h
lxc_test_parse_config_file_SOURCES
=
parse_config_file.c lxctest.h
lxc_test_config_jump_table_SOURCES
=
config_jump_table.c lxctest.h
lxc_test_config_jump_table_SOURCES
=
config_jump_table.c lxctest.h
lxc_test_shortlived_SOURCES
=
shortlived.c
lxc_test_shortlived_SOURCES
=
shortlived.c
lxc_test_livepatch_SOURCES
=
livepatch.c lxctest.h
AM_CFLAGS
=
-DLXCROOTFSMOUNT
=
\"
$(LXCROOTFSMOUNT)
\"
\
AM_CFLAGS
=
-DLXCROOTFSMOUNT
=
\"
$(LXCROOTFSMOUNT)
\"
\
-DLXCPATH
=
\"
$(LXCPATH)
\"
\
-DLXCPATH
=
\"
$(LXCPATH)
\"
\
...
@@ -55,7 +56,7 @@ bin_PROGRAMS = lxc-test-containertests lxc-test-locktests lxc-test-startone \
...
@@ -55,7 +56,7 @@ bin_PROGRAMS = lxc-test-containertests lxc-test-locktests lxc-test-startone \
lxc-test-snapshot lxc-test-concurrent lxc-test-may-control
\
lxc-test-snapshot lxc-test-concurrent lxc-test-may-control
\
lxc-test-reboot lxc-test-list lxc-test-attach lxc-test-device-add-remove
\
lxc-test-reboot lxc-test-list lxc-test-attach lxc-test-device-add-remove
\
lxc-test-apparmor lxc-test-utils lxc-test-parse-config-file
\
lxc-test-apparmor lxc-test-utils lxc-test-parse-config-file
\
lxc-test-config-jump-table lxc-test-shortlived
lxc-test-config-jump-table lxc-test-shortlived
lxc-test-livepatch
bin_SCRIPTS
=
lxc-test-automount
\
bin_SCRIPTS
=
lxc-test-automount
\
lxc-test-autostart
\
lxc-test-autostart
\
...
@@ -91,6 +92,7 @@ EXTRA_DIST = \
...
@@ -91,6 +92,7 @@ EXTRA_DIST = \
get_item.c
\
get_item.c
\
getkeys.c
\
getkeys.c
\
list.c
\
list.c
\
livepatch.c
\
locktests.c
\
locktests.c
\
lxcpath.c
\
lxcpath.c
\
lxc-test-lxc-attach
\
lxc-test-lxc-attach
\
...
...
src/tests/livepatch.c
0 → 100644
View file @
eb4ca13d
/* liblxcapi
*
* Copyright © 2017 Christian Brauner <christian.brauner@ubuntu.com>.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <errno.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <lxc/lxccontainer.h>
#include "lxctest.h"
int
main
(
int
argc
,
char
*
argv
[])
{
char
*
value
;
struct
lxc_container
*
c
;
int
ret
=
EXIT_FAILURE
;
c
=
lxc_container_new
(
"livepatch"
,
NULL
);
if
(
!
c
)
{
lxc_error
(
"%s"
,
"Failed to create container
\"
livepatch
\"
"
);
exit
(
ret
);
}
if
(
c
->
is_defined
(
c
))
{
lxc_error
(
"%s
\n
"
,
"Container
\"
livepatch
\"
is defined"
);
goto
on_error_put
;
}
if
(
!
c
->
set_config_item
(
c
,
"lxc.net.0.type"
,
"veth"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set network item
\"
lxc.net.0.type
\"
"
);
goto
on_error_put
;
}
if
(
!
c
->
set_config_item
(
c
,
"lxc.net.0.link"
,
"lxcbr0"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set network item
\"
lxc.net.0.link
\"
"
);
goto
on_error_put
;
}
if
(
!
c
->
set_config_item
(
c
,
"lxc.net.0.flags"
,
"up"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set network item
\"
lxc.net.0.flags
\"
"
);
goto
on_error_put
;
}
if
(
!
c
->
set_config_item
(
c
,
"lxc.net.0.name"
,
"eth0"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set network item
\"
lxc.net.0.name
\"
"
);
goto
on_error_put
;
}
if
(
!
c
->
createl
(
c
,
"busybox"
,
NULL
,
NULL
,
0
,
NULL
))
{
lxc_error
(
"%s
\n
"
,
"Failed to create busybox container
\"
livepatch
\"
"
);
goto
on_error_put
;
}
if
(
!
c
->
is_defined
(
c
))
{
lxc_error
(
"%s
\n
"
,
"Container
\"
livepatch
\"
is not defined"
);
goto
on_error_put
;
}
c
->
clear_config
(
c
);
if
(
!
c
->
load_config
(
c
,
NULL
))
{
lxc_error
(
"%s
\n
"
,
"Failed to load config for container
\"
livepatch
\"
"
);
goto
on_error_stop
;
}
if
(
!
c
->
want_daemonize
(
c
,
true
))
{
lxc_error
(
"%s
\n
"
,
"Failed to mark container
\"
livepatch
\"
daemonized"
);
goto
on_error_stop
;
}
if
(
!
c
->
startl
(
c
,
0
,
NULL
))
{
lxc_error
(
"%s
\n
"
,
"Failed to start container
\"
livepatch
\"
daemonized"
);
goto
on_error_stop
;
}
/* Test whether the current value is ok. */
value
=
c
->
get_running_config_item
(
c
,
"lxc.net.0.name"
);
if
(
!
value
)
{
lxc_error
(
"%s
\n
"
,
"Failed to retrieve running config item
\"
lxc.net.0.name
\"
"
);
goto
on_error_stop
;
}
if
(
strcmp
(
value
,
"eth0"
))
{
lxc_error
(
"Retrieved unexpected value for config item "
"
\"
lxc.net.0.name
\"
: eth0 != %s"
,
value
);
free
(
value
);
goto
on_error_stop
;
}
free
(
value
);
/* Change current in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.0.name"
,
"blabla"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.0.name
\"
to
\"
blabla
\"
"
);
goto
on_error_stop
;
}
/* Verify change. */
value
=
c
->
get_running_config_item
(
c
,
"lxc.net.0.name"
);
if
(
!
value
)
{
lxc_error
(
"%s
\n
"
,
"Failed to retrieve running config item
\"
lxc.net.0.name
\"
"
);
goto
on_error_stop
;
}
if
(
strcmp
(
value
,
"blabla"
))
{
lxc_error
(
"Retrieved unexpected value for config item "
"
\"
lxc.net.0.name
\"
: blabla != %s"
,
value
);
free
(
value
);
goto
on_error_stop
;
}
free
(
value
);
/* Change current in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.0.name"
,
"eth0"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.0.name
\"
to
\"
eth0
\"
"
);
goto
on_error_stop
;
}
/* Add new in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.1.type"
,
"veth"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.1.type
\"
to
\"
veth
\"
"
);
goto
on_error_stop
;
}
/* Verify change. */
value
=
c
->
get_running_config_item
(
c
,
"lxc.net.1.type"
);
if
(
!
value
)
{
lxc_error
(
"%s
\n
"
,
"Failed to retrieve running config item
\"
lxc.net.1.type
\"
"
);
goto
on_error_stop
;
}
if
(
strcmp
(
value
,
"veth"
))
{
lxc_error
(
"Retrieved unexpected value for config item "
"
\"
lxc.net.1.type
\"
: veth != %s"
,
value
);
free
(
value
);
goto
on_error_stop
;
}
free
(
value
);
/* Add new in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.1.flags"
,
"up"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.1.flags
\"
to
\"
up
\"
"
);
goto
on_error_stop
;
}
/* Verify change. */
value
=
c
->
get_running_config_item
(
c
,
"lxc.net.1.flags"
);
if
(
!
value
)
{
lxc_error
(
"%s
\n
"
,
"Failed to retrieve running config item
\"
lxc.net.1.flags
\"
"
);
goto
on_error_stop
;
}
if
(
strcmp
(
value
,
"up"
))
{
lxc_error
(
"Retrieved unexpected value for config item "
"
\"
lxc.net.1.flags
\"
: up != %s"
,
value
);
free
(
value
);
goto
on_error_stop
;
}
free
(
value
);
/* Add new in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.1.link"
,
"lxcbr0"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.1.link
\"
to
\"
lxcbr0
\"
"
);
goto
on_error_stop
;
}
/* Verify change. */
value
=
c
->
get_running_config_item
(
c
,
"lxc.net.1.link"
);
if
(
!
value
)
{
lxc_error
(
"%s
\n
"
,
"Failed to retrieve running config item
\"
lxc.net.1.link
\"
"
);
goto
on_error_stop
;
}
if
(
strcmp
(
value
,
"lxcbr0"
))
{
lxc_error
(
"Retrieved unexpected value for config item "
"
\"
lxc.net.1.link
\"
: lxcbr0 != %s"
,
value
);
free
(
value
);
goto
on_error_stop
;
}
free
(
value
);
if
(
!
c
->
reboot
(
c
))
{
lxc_error
(
"%s"
,
"Failed to create container
\"
livepatch
\"
"
);
goto
on_error_stop
;
}
/* Busybox shouldn't take long to reboot. Sleep for 5s. */
sleep
(
5
);
if
(
!
c
->
is_running
(
c
))
{
lxc_error
(
"%s
\n
"
,
"Failed to reboot container
\"
livepatch
\"
"
);
goto
on_error_destroy
;
}
/* Remove in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.1.name"
,
"eth1"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to clear running config item "
"
\"
lxc.net.1.name
\"
"
);
goto
on_error_stop
;
}
if
(
!
c
->
stop
(
c
))
{
lxc_error
(
"%s
\n
"
,
"Failed to stop container
\"
livepatch
\"
"
);
goto
on_error_stop
;
}
if
(
!
c
->
startl
(
c
,
0
,
NULL
))
{
lxc_error
(
"%s
\n
"
,
"Failed to start container
\"
livepatch
\"
daemonized"
);
goto
on_error_destroy
;
}
/* Remove in-memory value. */
if
(
!
c
->
set_running_config_item
(
c
,
"lxc.net.1.mtu"
,
"3000"
))
{
lxc_error
(
"%s
\n
"
,
"Failed to set running config item "
"
\"
lxc.net.1.mtu
\"
"
);
goto
on_error_stop
;
}
ret
=
0
;
on_error_stop:
if
(
c
->
is_running
(
c
)
&&
!
c
->
stop
(
c
))
lxc_error
(
"%s
\n
"
,
"Failed to stop container
\"
livepatch
\"
"
);
on_error_destroy:
if
(
!
c
->
destroy
(
c
))
lxc_error
(
"%s
\n
"
,
"Failed to destroy container
\"
livepatch
\"
"
);
on_error_put:
lxc_container_put
(
c
);
exit
(
ret
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment