diff options
author | Euan Harris <euan.harris@docker.com> | 2018-05-04 16:18:47 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-05-13 20:14:07 +0200 |
commit | 254e47372f77ea1070be6dbb44b5c45770115a07 (patch) | |
tree | 70b48f5c5461cb8f9184b0e242fc0c7ce20e0d89 | |
parent | 40394cb1c963c35d2daa9570ba968afa981cf1fc (diff) | |
download | busybox-w32-254e47372f77ea1070be6dbb44b5c45770115a07.tar.gz busybox-w32-254e47372f77ea1070be6dbb44b5c45770115a07.tar.bz2 busybox-w32-254e47372f77ea1070be6dbb44b5c45770115a07.zip |
nsenter: fix parsing of -t, -S and -G options
-t, -S and -G each take mandatory integer arguments. getopt32long()'s
option string syntax for this type of argument is 'c:+', however nsenter's
opt_str uses 'c+', which specifies two options 'c' and '+' which do not
take arguments. This means that giving a target PID causes nsenter to
exit and print the usage string:
# nsenter -t1 sh
nsenter: unrecognized option: 1
BusyBox v1.27.2 (2017-12-12 10:41:50 GMT) multi-call binary.
...
The long form options are also broken:
# nsenter --setuid=1000 --setgid=1000 sh
BusyBox v1.29.0.git (2018-05-04 13:56:49 UTC) multi-call binary.
...
`nsenter --target=<pid> sh` parses correctly and appears to work, but
<pid> is ignored and set to 0. This doesn't raise an error unless one
of the namespace arguments is also given:
# ./busybox_unstripped nsenter --target=42 sh
# exit
# ./busybox_unstripped nsenter -n --target=42 sh
BusyBox v1.29.0.git (2018-05-04 13:56:49 UTC) multi-call binary.
...
This has caused problems in a couple of places:
https://github.com/linuxkit/linuxkit/issues/567
https://github.com/gliderlabs/docker-alpine/issues/359
https://github.com/kontena/pharos-cluster/pull/81
Signed-off-by: Euan Harris <euan.harris@docker.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/nsenter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/nsenter.c b/util-linux/nsenter.c index 35439a2ab..ae8103a52 100644 --- a/util-linux/nsenter.c +++ b/util-linux/nsenter.c | |||
@@ -105,7 +105,7 @@ static const struct namespace_descr ns_list[] = { | |||
105 | /* | 105 | /* |
106 | * Upstream nsenter doesn't support the short option for --preserve-credentials | 106 | * Upstream nsenter doesn't support the short option for --preserve-credentials |
107 | */ | 107 | */ |
108 | static const char opt_str[] ALIGN1 = "U::i::u::n::p::m::""t+S+G+r::w::F"; | 108 | static const char opt_str[] ALIGN1 = "U::i::u::n::p::m::""t:+S:+G:+r::w::F"; |
109 | 109 | ||
110 | #if ENABLE_LONG_OPTS | 110 | #if ENABLE_LONG_OPTS |
111 | static const char nsenter_longopts[] ALIGN1 = | 111 | static const char nsenter_longopts[] ALIGN1 = |