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
60883ba8
Commit
60883ba8
authored
May 10, 2017
by
Serge Hallyn
Committed by
GitHub
May 10, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1547 from brauner/2017-05-10/prevent_umount_propagation
start: remove umount2()
parents
eb09dc4e
39c7b795
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
13 deletions
+21
-13
conf.c
src/lxc/conf.c
+21
-10
start.c
src/lxc/start.c
+0
-3
No files found.
src/lxc/conf.c
View file @
60883ba8
...
...
@@ -1287,23 +1287,23 @@ int prepare_ramfs_root(char *root)
char
*
p2
;
if
(
realpath
(
root
,
nroot
)
==
NULL
)
return
-
1
;
return
-
errno
;
if
(
chdir
(
"/"
)
==
-
1
)
return
-
1
;
return
-
errno
;
/*
* We could use here MS_MOVE, but in userns this mount is
* locked and can't be moved.
*/
if
(
mount
(
root
,
"/"
,
NULL
,
MS_REC
|
MS_BIND
,
NULL
))
{
if
(
mount
(
root
,
"/"
,
NULL
,
MS_REC
|
MS_BIND
,
NULL
)
<
0
)
{
SYSERROR
(
"Failed to move %s into /"
,
root
);
return
-
1
;
return
-
errno
;
}
if
(
mount
(
NULL
,
"/"
,
NULL
,
MS_REC
|
MS_PRIVATE
,
NULL
))
{
if
(
mount
(
NULL
,
"/"
,
NULL
,
MS_REC
|
MS_PRIVATE
,
NULL
)
<
0
)
{
SYSERROR
(
"Failed to make . rprivate"
);
return
-
1
;
return
-
errno
;
}
/*
...
...
@@ -1369,17 +1369,28 @@ int prepare_ramfs_root(char *root)
static
int
setup_pivot_root
(
const
struct
lxc_rootfs
*
rootfs
)
{
if
(
!
rootfs
->
path
)
if
(
!
rootfs
->
path
)
{
DEBUG
(
"container does not have a rootfs, so not doing pivot root"
);
return
0
;
}
if
(
detect_ramfs_rootfs
())
{
if
(
prepare_ramfs_root
(
rootfs
->
mount
))
DEBUG
(
"detected that container is on ramfs"
);
if
(
prepare_ramfs_root
(
rootfs
->
mount
))
{
ERROR
(
"failed to prepare minimal ramfs root"
);
return
-
1
;
}
else
if
(
setup_rootfs_pivot_root
(
rootfs
->
mount
))
{
ERROR
(
"failed to setup pivot root"
);
}
DEBUG
(
"prepared ramfs root for container"
);
return
0
;
}
if
(
setup_rootfs_pivot_root
(
rootfs
->
mount
)
<
0
)
{
ERROR
(
"failed to pivot root"
);
return
-
1
;
}
DEBUG
(
"finished pivot root"
);
return
0
;
}
...
...
src/lxc/start.c
View file @
60883ba8
...
...
@@ -1289,9 +1289,6 @@ static int lxc_spawn(struct lxc_handler *handler)
if
(
lxc_sync_barrier_child
(
handler
,
LXC_SYNC_POST_CGROUP
))
return
-
1
;
if
(
detect_shared_rootfs
())
umount2
(
handler
->
conf
->
rootfs
.
mount
,
MNT_DETACH
);
if
(
handler
->
ops
->
post_start
(
handler
,
handler
->
data
))
goto
out_abort
;
...
...
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