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
bcbef733
Unverified
Commit
bcbef733
authored
Jul 11, 2018
by
Christian Brauner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
attach: cleanup no_new_privs()
Signed-off-by:
Christian Brauner
<
christian.brauner@ubuntu.com
>
parent
d4db3d14
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
attach.c
src/lxc/attach.c
+7
-8
No files found.
src/lxc/attach.c
View file @
bcbef733
...
@@ -692,27 +692,26 @@ static bool fetch_seccomp(struct lxc_container *c, lxc_attach_options_t *options
...
@@ -692,27 +692,26 @@ static bool fetch_seccomp(struct lxc_container *c, lxc_attach_options_t *options
static
bool
no_new_privs
(
struct
lxc_container
*
c
,
lxc_attach_options_t
*
options
)
static
bool
no_new_privs
(
struct
lxc_container
*
c
,
lxc_attach_options_t
*
options
)
{
{
bool
bret
;
char
*
val
;
char
*
val
;
/* Remove current setting. */
/* Remove current setting. */
if
(
!
c
->
set_config_item
(
c
,
"lxc.no_new_privs"
,
""
))
if
(
!
c
->
set_config_item
(
c
,
"lxc.no_new_privs"
,
""
))
{
INFO
(
"Failed to unset lxc.no_new_privs"
);
return
false
;
return
false
;
}
/* Retrieve currently active setting. */
/* Retrieve currently active setting. */
val
=
c
->
get_running_config_item
(
c
,
"lxc.no_new_privs"
);
val
=
c
->
get_running_config_item
(
c
,
"lxc.no_new_privs"
);
if
(
!
val
)
{
if
(
!
val
)
{
INFO
(
"Failed to
get running config item for lxc.no_new_privs.
"
);
INFO
(
"Failed to
retrieve lxc.no_new_privs
"
);
return
false
;
return
false
;
}
}
/* Set currently active setting. */
/* Set currently active setting. */
if
(
!
c
->
set_config_item
(
c
,
"lxc.no_new_privs"
,
val
))
{
bret
=
c
->
set_config_item
(
c
,
"lxc.no_new_privs"
,
val
);
free
(
val
);
return
false
;
}
free
(
val
);
free
(
val
);
return
bret
;
return
true
;
}
}
static
signed
long
get_personality
(
const
char
*
name
,
const
char
*
lxcpath
)
static
signed
long
get_personality
(
const
char
*
name
,
const
char
*
lxcpath
)
...
...
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