lxc: update to 3.1.0
This commit is contained in:
parent
6e9ab12b50
commit
646459240c
2 changed files with 3 additions and 86 deletions
|
@ -1,83 +0,0 @@
|
||||||
commit c14ea11dccbfa80021a9b169b94bd86e8b359611
|
|
||||||
Author: Cameron Nemo <camerontnorman@gmail.com>
|
|
||||||
Date: Wed Nov 28 19:42:29 2018 -0800
|
|
||||||
|
|
||||||
lxc-usernsexec: fix default map functionality
|
|
||||||
|
|
||||||
* Place NULL bytes at the end of strings so that
|
|
||||||
lxc_safe_ulong() can parse them correctly
|
|
||||||
|
|
||||||
* Only free the newly created id_map on error,
|
|
||||||
to avoid passing garbage to lxc_map_ids()
|
|
||||||
|
|
||||||
Signed-off-by: Cameron Nemo <camerontnorman@gmail.com>
|
|
||||||
|
|
||||||
diff --git src/lxc/cmd/lxc_usernsexec.c src/lxc/cmd/lxc_usernsexec.c
|
|
||||||
index 10557dd5..ab0dffcf 100644
|
|
||||||
--- src/lxc/cmd/lxc_usernsexec.c
|
|
||||||
+++ src/lxc/cmd/lxc_usernsexec.c
|
|
||||||
@@ -200,6 +200,7 @@ static int read_default_map(char *fnam, int which, char *user)
|
|
||||||
{
|
|
||||||
size_t len;
|
|
||||||
char *p1, *p2;
|
|
||||||
+ unsigned long ul1, ul2;
|
|
||||||
FILE *fin;
|
|
||||||
int ret = -1;
|
|
||||||
size_t sz = 0;
|
|
||||||
@@ -224,37 +225,42 @@ static int read_default_map(char *fnam, int which, char *user)
|
|
||||||
if (!p2)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
- newmap = malloc(sizeof(*newmap));
|
|
||||||
- if (!newmap)
|
|
||||||
- goto on_error;
|
|
||||||
+ line[strlen(line) - 1] = '\0';
|
|
||||||
+ *p2 = '\0';
|
|
||||||
|
|
||||||
- ret = lxc_safe_ulong(p1 + 1, &newmap->hostid);
|
|
||||||
+ ret = lxc_safe_ulong(p1 + 1, &ul1);
|
|
||||||
if (ret < 0)
|
|
||||||
- goto on_error;
|
|
||||||
+ break;
|
|
||||||
|
|
||||||
- ret = lxc_safe_ulong(p2 + 1, &newmap->range);
|
|
||||||
+ ret = lxc_safe_ulong(p2 + 1, &ul2);
|
|
||||||
if (ret < 0)
|
|
||||||
- goto on_error;
|
|
||||||
+ break;
|
|
||||||
+
|
|
||||||
+ ret = -1;
|
|
||||||
+ newmap = malloc(sizeof(*newmap));
|
|
||||||
+ if (!newmap)
|
|
||||||
+ break;
|
|
||||||
|
|
||||||
newmap->nsid = 0;
|
|
||||||
newmap->idtype = which;
|
|
||||||
+ newmap->hostid = ul1;
|
|
||||||
+ newmap->range = ul2;
|
|
||||||
|
|
||||||
- ret = -1;
|
|
||||||
tmp = malloc(sizeof(*tmp));
|
|
||||||
- if (!tmp)
|
|
||||||
- goto on_error;
|
|
||||||
+ if (!tmp) {
|
|
||||||
+ free(newmap);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
|
|
||||||
tmp->elem = newmap;
|
|
||||||
lxc_list_add_tail(&active_map, tmp);
|
|
||||||
+
|
|
||||||
+ ret = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
- ret = 0;
|
|
||||||
-
|
|
||||||
-on_error:
|
|
||||||
fclose(fin);
|
|
||||||
free(line);
|
|
||||||
- free(newmap);
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
|
|
@ -2,8 +2,8 @@
|
||||||
_desc="Linux Containers"
|
_desc="Linux Containers"
|
||||||
|
|
||||||
pkgname=lxc
|
pkgname=lxc
|
||||||
version=3.0.3
|
version=3.1.0
|
||||||
revision=4
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--enable-doc --enable-seccomp
|
configure_args="--enable-doc --enable-seccomp
|
||||||
--enable-capabilities --enable-apparmor --with-distro=none
|
--enable-capabilities --enable-apparmor --with-distro=none
|
||||||
|
@ -16,7 +16,7 @@ maintainer="Juan RP <xtraeme@voidlinux.org>"
|
||||||
homepage="https://linuxcontainers.org"
|
homepage="https://linuxcontainers.org"
|
||||||
license="LGPL-2.1-or-later"
|
license="LGPL-2.1-or-later"
|
||||||
distfiles="https://linuxcontainers.org/downloads/lxc-${version}.tar.gz"
|
distfiles="https://linuxcontainers.org/downloads/lxc-${version}.tar.gz"
|
||||||
checksum=620cb832cc02c63bf4d330657bf6176544e145da281ee384a34d689635a19841
|
checksum=4d8772c25baeaea2c37a954902b88c05d1454c91c887cb6a0997258cfac3fdc5
|
||||||
|
|
||||||
conf_files="/etc/lxc/default.conf"
|
conf_files="/etc/lxc/default.conf"
|
||||||
make_dirs="
|
make_dirs="
|
||||||
|
|
Loading…
Reference in a new issue