summaryrefslogtreecommitdiffstats
path: root/recipes-containers/lxc/files/fix_c_command.patch
diff options
context:
space:
mode:
authorsana kazi <sanakazisk19@gmail.com>2021-09-16 10:36:53 +0530
committerBruce Ashfield <bruce.ashfield@gmail.com>2021-09-16 18:18:28 -0400
commit807506c777a45d805400ec6f47b45420e300c2e5 (patch)
tree94bbbc3790e2ed0326bb8f318ab5a60421589469 /recipes-containers/lxc/files/fix_c_command.patch
parent0644e808ace09f753ccd462332033e1eacd85960 (diff)
downloadmeta-virtualization-807506c777a45d805400ec6f47b45420e300c2e5.tar.gz
lxc: Fix -c command for lxc-attach
Added fix_c_command.patch the -c command seems to be broken because the passed context is ignored and always overwritten by the context specified in the config file. Signed-off-by: Sana Kazi <Sana.Kazi@kpit.com> Signed-off-by: Sana Kazi <sanakazisk19@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers/lxc/files/fix_c_command.patch')
-rw-r--r--recipes-containers/lxc/files/fix_c_command.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/recipes-containers/lxc/files/fix_c_command.patch b/recipes-containers/lxc/files/fix_c_command.patch
new file mode 100644
index 00000000..1ed8dafd
--- /dev/null
+++ b/recipes-containers/lxc/files/fix_c_command.patch
@@ -0,0 +1,36 @@
1From 9becf309a81806ef08acf9ca99ab95c1bcfa1f65 Mon Sep 17 00:00:00 2001
2From: Maximilian Blenk <Maximilian.Blenk@bmw.de>
3Date: Mon, 23 Aug 2021 15:39:28 +0200
4Subject: [PATCH] attach: Fix -c command
5
6Currently, the -c command (to set the selinux context) seems to be
7broken because the passed context is ignored and always overwritten by
8the context specified in the config file. The intention behind the -c
9imho was to be able to manually overwrite this behavior. This patch
10ensures that the selinux context will be set if passed via the command
11line.
12
13Signed-off-by: Maximilian Blenk <Maximilian.Blenk@bmw.de>
14---
15 src/lxc/tools/lxc_attach.c | 5 ++++-
16 1 file changed, 4 insertions(+), 1 deletion(-)
17
18Upstream-Status: Backport [https://github.com/lxc/lxc/commit/9becf309a81806ef08acf9ca99ab95c1bcfa1f65.patch]
19Comment: No change in any hunk
20
21diff --git a/src/lxc/tools/lxc_attach.c b/src/lxc/tools/lxc_attach.c
22index 0374d980b4..e6b388b20c 100644
23--- a/src/lxc/tools/lxc_attach.c
24+++ b/src/lxc/tools/lxc_attach.c
25@@ -379,7 +379,10 @@ int main(int argc, char *argv[])
26 attach_options.gid = my_args.gid;
27
28 // selinux_context will be NULL if not set
29- attach_options.lsm_label = selinux_context;
30+ if (selinux_context) {
31+ attach_options.attach_flags |= LXC_ATTACH_LSM_LABEL;
32+ attach_options.lsm_label = selinux_context;
33+ }
34
35 if (command.program) {
36 ret = c->attach_run_wait(c, &attach_options, command.program,