Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1225028 > unrolled thread
| Started by | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| First post | 2015-09-15 14:10 +0200 |
| Last post | 2015-09-22 09:50 +0200 |
| Articles | 14 — 7 participants |
Back to article view | Back to linux.kernel
[PATCH RFC] pidns: introduce syscall getvpid Konstantin Khlebnikov <khlebnikov@yandex-team.ru> - 2015-09-15 14:10 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Oleg Nesterov <oleg@redhat.com> - 2015-09-15 16:30 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid ebiederm@xmission.com (Eric W. Biederman) - 2015-09-15 16:40 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Konstantin Khlebnikov <khlebnikov@yandex-team.ru> - 2015-09-15 17:10 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Stéphane Graber <stgraber@ubuntu.com> - 2015-09-15 17:30 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Konstantin Khlebnikov <khlebnikov@yandex-team.ru> - 2015-09-15 18:10 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Serge Hallyn <serge.hallyn@ubuntu.com> - 2015-09-15 19:50 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Konstantin Khlebnikov <khlebnikov@yandex-team.ru> - 2015-09-16 09:40 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid "Serge E. Hallyn" <serge@hallyn.com> - 2015-09-16 16:40 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid ebiederm@xmission.com (Eric W. Biederman) - 2015-09-16 17:00 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid "Serge E. Hallyn" <serge@hallyn.com> - 2015-09-16 18:40 +0200
Re: Re: [PATCH RFC] pidns: introduce syscall getvpid Chen Fan <chen.fan.fnst@cn.fujitsu.com> - 2015-09-21 05:00 +0200
Re: Re: [PATCH RFC] pidns: introduce syscall getvpid "Serge E. Hallyn" <serge@hallyn.com> - 2015-09-21 16:30 +0200
Re: [PATCH RFC] pidns: introduce syscall getvpid Konstantin Khlebnikov <khlebnikov@yandex-team.ru> - 2015-09-22 09:50 +0200
| From | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| Date | 2015-09-15 14:10 +0200 |
| Subject | [PATCH RFC] pidns: introduce syscall getvpid |
| Message-ID | <q8XdE-4lR-23@gated-at.bofh.it> |
pid_t getvpid(pid_t pid, pid_t source, pid_t target);
This syscall converts pid from one pid-ns into pid in another pid-ns:
it takes @pid in namespace of @source task (zero for current) and
returns related pid in namespace of @target task (zero for current too).
If pid is unreachable from target pid-ns then it returns zero.
Such conversion is required for interaction between processes from
different pid-namespaces. For example when system service talks with
client from isolated container via socket about task in container:
getvpid(pid, client_pid, 0) -> pid in our pid namespace
getvpid(pid, 0, client_pid) -> pid in client pid namespace
Also service can get pid of init task and match it with container:
getvpid(1, client_pid, 0) -> pid of init task for client_pid
Seems like gdb and strace could use this too for converting pids of
newly forked tasks (IIRR they get pid from %rax) into pid from
correct namespace for further interaction.
As a bonus syscall getvpid can compare pid namespaces and
test isolation without mounted procfs:
getvpid(1, 0, pid) == 0 -> pid in our sub-pid-namespace
getvpid(1, 0, pid) == 1 -> pid in our pid-namespace
getvpid(1, pid1, pid2) == 0 -> pid1 isolated from pid2
getvpid(1, pid1, pid2) == 1 -> tasks are in one pid-namespace
getvpid(1, pid1, pid2) > 1 -> pid1 is in sub-pidns of pid2
Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
---
arch/x86/entry/syscalls/syscall_32.tbl | 1 +
arch/x86/entry/syscalls/syscall_64.tbl | 1 +
include/linux/syscalls.h | 1 +
kernel/pid.c | 36 ++++++++++++++++++++++++++++++++
4 files changed, 39 insertions(+)
diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl
index 7663c455b9f6..dadb55d42fc9 100644
--- a/arch/x86/entry/syscalls/syscall_32.tbl
+++ b/arch/x86/entry/syscalls/syscall_32.tbl
@@ -382,3 +382,4 @@
373 i386 shutdown sys_shutdown
374 i386 userfaultfd sys_userfaultfd
375 i386 membarrier sys_membarrier
+376 i386 getvpid sys_getvpid
diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl
index 278842fdf1f6..0338f2eb3b7c 100644
--- a/arch/x86/entry/syscalls/syscall_64.tbl
+++ b/arch/x86/entry/syscalls/syscall_64.tbl
@@ -331,6 +331,7 @@
322 64 execveat stub_execveat
323 common userfaultfd sys_userfaultfd
324 common membarrier sys_membarrier
+325 common getvpid sys_getvpid
#
# x32-specific system call numbers start at 512 to avoid cache impact
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index a460e2ef2843..3405c30999e3 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -222,6 +222,7 @@ asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __us
asmlinkage long sys_alarm(unsigned int seconds);
asmlinkage long sys_getpid(void);
asmlinkage long sys_getppid(void);
+asmlinkage long sys_getvpid(pid_t pid, pid_t source, pid_t target);
asmlinkage long sys_getuid(void);
asmlinkage long sys_geteuid(void);
asmlinkage long sys_getgid(void);
diff --git a/kernel/pid.c b/kernel/pid.c
index ca368793808e..caa676ff7364 100644
--- a/kernel/pid.c
+++ b/kernel/pid.c
@@ -567,6 +567,42 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
return pid;
}
+/**
+ * sys_getvpid - convert pid from one pid-namespace into pid from another
+ *
+ * @pid - pid of requested task
+ * @source - pid of task in source pid-namespace, zero for current
+ * @target - pid of task in target pid-namespace, zero for current
+ *
+ * Returns pid from target pid-ns or zero if pid is unreachable.
+ * Returns -ESRCH if some of pids are not found.
+ */
+SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
+{
+#ifdef CONFIG_PID_NS
+ struct pid_namespace *current_ns = task_active_pid_ns(current);
+ struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
+ struct pid *task_pid;
+ pid_t result = -ESRCH;
+
+ rcu_read_lock();
+ if (source)
+ source_ns = ns_of_pid(find_pid_ns(source, current_ns));
+ if (target)
+ target_ns = ns_of_pid(find_pid_ns(target, current_ns));
+ if (source_ns && target_ns) {
+ task_pid = find_pid_ns(pid, source_ns);
+ if (task_pid)
+ result = pid_nr_ns(task_pid, target_ns);
+ }
+ rcu_read_unlock();
+
+ return result;
+#else
+ return pid;
+#endif /* CONFIG_PID_NS */
+}
+
/*
* The pid hash table is scaled according to the amount of memory in the
* machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Oleg Nesterov <oleg@redhat.com> |
|---|---|
| Date | 2015-09-15 16:30 +0200 |
| Message-ID | <q8Zpb-7qt-79@gated-at.bofh.it> |
| In reply to | #1225028 |
On 09/15, Konstantin Khlebnikov wrote:
>
> +SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
> +{
> +#ifdef CONFIG_PID_NS
> + struct pid_namespace *current_ns = task_active_pid_ns(current);
> + struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
> + struct pid *task_pid;
> + pid_t result = -ESRCH;
> +
> + rcu_read_lock();
> + if (source)
> + source_ns = ns_of_pid(find_pid_ns(source, current_ns));
> + if (target)
> + target_ns = ns_of_pid(find_pid_ns(target, current_ns));
> + if (source_ns && target_ns) {
> + task_pid = find_pid_ns(pid, source_ns);
> + if (task_pid)
> + result = pid_nr_ns(task_pid, target_ns);
> + }
> + rcu_read_unlock();
> +
> + return result;
> +#else
> + return pid;
> +#endif /* CONFIG_PID_NS */
> +}
Not sure we actually want ifdef(CONFIG_PID_NS). If this is just optimization
I'd suggest to simply add
if (!IS_ENABLED(CONFIG_PID_NS))
return pid;
at the start.
But. Either way this unconditional "return pid" doesn't look right imho.
I think we should return -ESRCH if this pid number is not valid to ensure
we have the same semantics with-or-without CONFIG_PID_NS. So it seems that
you should remove this ifdef, this will also ensure that we return -ESRCH
if (say) source != 0 and find_pid_ns(source) fails.
Oleg.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | ebiederm@xmission.com (Eric W. Biederman) |
|---|---|
| Date | 2015-09-15 16:40 +0200 |
| Message-ID | <q8ZyP-7BR-45@gated-at.bofh.it> |
| In reply to | #1225028 |
Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes:
> pid_t getvpid(pid_t pid, pid_t source, pid_t target);
>
> This syscall converts pid from one pid-ns into pid in another pid-ns:
> it takes @pid in namespace of @source task (zero for current) and
> returns related pid in namespace of @target task (zero for current too).
> If pid is unreachable from target pid-ns then it returns zero.
This interface as presented is inherently racy. It would be better
if source and target were file descriptors referring to the namespaces
you wish to translate between.
> Such conversion is required for interaction between processes from
> different pid-namespaces. For example when system service talks with
> client from isolated container via socket about task in container:
Sockets are already supported. At least the metadata of sockets is.
Maybe we need this but I am not convinced of it's utility.
What are you trying to do that motivates this?
Eric
> getvpid(pid, client_pid, 0) -> pid in our pid namespace
> getvpid(pid, 0, client_pid) -> pid in client pid namespace
>
> Also service can get pid of init task and match it with container:
>
> getvpid(1, client_pid, 0) -> pid of init task for client_pid
>
> Seems like gdb and strace could use this too for converting pids of
> newly forked tasks (IIRR they get pid from %rax) into pid from
> correct namespace for further interaction.
>
> As a bonus syscall getvpid can compare pid namespaces and
> test isolation without mounted procfs:
>
> getvpid(1, 0, pid) == 0 -> pid in our sub-pid-namespace
> getvpid(1, 0, pid) == 1 -> pid in our pid-namespace
> getvpid(1, pid1, pid2) == 0 -> pid1 isolated from pid2
> getvpid(1, pid1, pid2) == 1 -> tasks are in one pid-namespace
> getvpid(1, pid1, pid2) > 1 -> pid1 is in sub-pidns of pid2
>
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
> ---
> arch/x86/entry/syscalls/syscall_32.tbl | 1 +
> arch/x86/entry/syscalls/syscall_64.tbl | 1 +
> include/linux/syscalls.h | 1 +
> kernel/pid.c | 36 ++++++++++++++++++++++++++++++++
> 4 files changed, 39 insertions(+)
>
> diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl
> index 7663c455b9f6..dadb55d42fc9 100644
> --- a/arch/x86/entry/syscalls/syscall_32.tbl
> +++ b/arch/x86/entry/syscalls/syscall_32.tbl
> @@ -382,3 +382,4 @@
> 373 i386 shutdown sys_shutdown
> 374 i386 userfaultfd sys_userfaultfd
> 375 i386 membarrier sys_membarrier
> +376 i386 getvpid sys_getvpid
> diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl
> index 278842fdf1f6..0338f2eb3b7c 100644
> --- a/arch/x86/entry/syscalls/syscall_64.tbl
> +++ b/arch/x86/entry/syscalls/syscall_64.tbl
> @@ -331,6 +331,7 @@
> 322 64 execveat stub_execveat
> 323 common userfaultfd sys_userfaultfd
> 324 common membarrier sys_membarrier
> +325 common getvpid sys_getvpid
>
> #
> # x32-specific system call numbers start at 512 to avoid cache impact
> diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
> index a460e2ef2843..3405c30999e3 100644
> --- a/include/linux/syscalls.h
> +++ b/include/linux/syscalls.h
> @@ -222,6 +222,7 @@ asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __us
> asmlinkage long sys_alarm(unsigned int seconds);
> asmlinkage long sys_getpid(void);
> asmlinkage long sys_getppid(void);
> +asmlinkage long sys_getvpid(pid_t pid, pid_t source, pid_t target);
> asmlinkage long sys_getuid(void);
> asmlinkage long sys_geteuid(void);
> asmlinkage long sys_getgid(void);
> diff --git a/kernel/pid.c b/kernel/pid.c
> index ca368793808e..caa676ff7364 100644
> --- a/kernel/pid.c
> +++ b/kernel/pid.c
> @@ -567,6 +567,42 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
> return pid;
> }
>
> +/**
> + * sys_getvpid - convert pid from one pid-namespace into pid from another
> + *
> + * @pid - pid of requested task
> + * @source - pid of task in source pid-namespace, zero for current
> + * @target - pid of task in target pid-namespace, zero for current
> + *
> + * Returns pid from target pid-ns or zero if pid is unreachable.
> + * Returns -ESRCH if some of pids are not found.
> + */
> +SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
> +{
> +#ifdef CONFIG_PID_NS
> + struct pid_namespace *current_ns = task_active_pid_ns(current);
> + struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
> + struct pid *task_pid;
> + pid_t result = -ESRCH;
> +
> + rcu_read_lock();
> + if (source)
> + source_ns = ns_of_pid(find_pid_ns(source, current_ns));
> + if (target)
> + target_ns = ns_of_pid(find_pid_ns(target, current_ns));
> + if (source_ns && target_ns) {
> + task_pid = find_pid_ns(pid, source_ns);
> + if (task_pid)
> + result = pid_nr_ns(task_pid, target_ns);
> + }
> + rcu_read_unlock();
> +
> + return result;
> +#else
> + return pid;
> +#endif /* CONFIG_PID_NS */
> +}
> +
> /*
> * The pid hash table is scaled according to the amount of memory in the
> * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| Date | 2015-09-15 17:10 +0200 |
| Message-ID | <q901P-8qX-1@gated-at.bofh.it> |
| In reply to | #1225229 |
On 15.09.2015 17:27, Eric W. Biederman wrote:
> Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes:
>
>> pid_t getvpid(pid_t pid, pid_t source, pid_t target);
>>
>> This syscall converts pid from one pid-ns into pid in another pid-ns:
>> it takes @pid in namespace of @source task (zero for current) and
>> returns related pid in namespace of @target task (zero for current too).
>> If pid is unreachable from target pid-ns then it returns zero.
>
> This interface as presented is inherently racy. It would be better
> if source and target were file descriptors referring to the namespaces
> you wish to translate between.
Yep, it's racy. As well as any operation with non-child pids.
With file descriptors for source/target result will be racy anyway.
>
>> Such conversion is required for interaction between processes from
>> different pid-namespaces. For example when system service talks with
>> client from isolated container via socket about task in container:
>
> Sockets are already supported. At least the metadata of sockets is.
>
> Maybe we need this but I am not convinced of it's utility.
>
> What are you trying to do that motivates this?
I'm working on hierarchical container management system which
allows to create and control nested sub-containers from containers
( https://github.com/yandex/porto ). Main server works in host and
have to interact with all levels of nested namespaces. This syscall
makes some operations much easier: server must remember only pid in
host pid namespace and convert it into right vpid on demand.
>
> Eric
>
>
>> getvpid(pid, client_pid, 0) -> pid in our pid namespace
>> getvpid(pid, 0, client_pid) -> pid in client pid namespace
>>
>> Also service can get pid of init task and match it with container:
>>
>> getvpid(1, client_pid, 0) -> pid of init task for client_pid
>>
>> Seems like gdb and strace could use this too for converting pids of
>> newly forked tasks (IIRR they get pid from %rax) into pid from
>> correct namespace for further interaction.
>>
>> As a bonus syscall getvpid can compare pid namespaces and
>> test isolation without mounted procfs:
>>
>> getvpid(1, 0, pid) == 0 -> pid in our sub-pid-namespace
>> getvpid(1, 0, pid) == 1 -> pid in our pid-namespace
>> getvpid(1, pid1, pid2) == 0 -> pid1 isolated from pid2
>> getvpid(1, pid1, pid2) == 1 -> tasks are in one pid-namespace
>> getvpid(1, pid1, pid2) > 1 -> pid1 is in sub-pidns of pid2
>>
>> Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
>> ---
>> arch/x86/entry/syscalls/syscall_32.tbl | 1 +
>> arch/x86/entry/syscalls/syscall_64.tbl | 1 +
>> include/linux/syscalls.h | 1 +
>> kernel/pid.c | 36 ++++++++++++++++++++++++++++++++
>> 4 files changed, 39 insertions(+)
>>
>> diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl
>> index 7663c455b9f6..dadb55d42fc9 100644
>> --- a/arch/x86/entry/syscalls/syscall_32.tbl
>> +++ b/arch/x86/entry/syscalls/syscall_32.tbl
>> @@ -382,3 +382,4 @@
>> 373 i386 shutdown sys_shutdown
>> 374 i386 userfaultfd sys_userfaultfd
>> 375 i386 membarrier sys_membarrier
>> +376 i386 getvpid sys_getvpid
>> diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl
>> index 278842fdf1f6..0338f2eb3b7c 100644
>> --- a/arch/x86/entry/syscalls/syscall_64.tbl
>> +++ b/arch/x86/entry/syscalls/syscall_64.tbl
>> @@ -331,6 +331,7 @@
>> 322 64 execveat stub_execveat
>> 323 common userfaultfd sys_userfaultfd
>> 324 common membarrier sys_membarrier
>> +325 common getvpid sys_getvpid
>>
>> #
>> # x32-specific system call numbers start at 512 to avoid cache impact
>> diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
>> index a460e2ef2843..3405c30999e3 100644
>> --- a/include/linux/syscalls.h
>> +++ b/include/linux/syscalls.h
>> @@ -222,6 +222,7 @@ asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __us
>> asmlinkage long sys_alarm(unsigned int seconds);
>> asmlinkage long sys_getpid(void);
>> asmlinkage long sys_getppid(void);
>> +asmlinkage long sys_getvpid(pid_t pid, pid_t source, pid_t target);
>> asmlinkage long sys_getuid(void);
>> asmlinkage long sys_geteuid(void);
>> asmlinkage long sys_getgid(void);
>> diff --git a/kernel/pid.c b/kernel/pid.c
>> index ca368793808e..caa676ff7364 100644
>> --- a/kernel/pid.c
>> +++ b/kernel/pid.c
>> @@ -567,6 +567,42 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
>> return pid;
>> }
>>
>> +/**
>> + * sys_getvpid - convert pid from one pid-namespace into pid from another
>> + *
>> + * @pid - pid of requested task
>> + * @source - pid of task in source pid-namespace, zero for current
>> + * @target - pid of task in target pid-namespace, zero for current
>> + *
>> + * Returns pid from target pid-ns or zero if pid is unreachable.
>> + * Returns -ESRCH if some of pids are not found.
>> + */
>> +SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
>> +{
>> +#ifdef CONFIG_PID_NS
>> + struct pid_namespace *current_ns = task_active_pid_ns(current);
>> + struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
>> + struct pid *task_pid;
>> + pid_t result = -ESRCH;
>> +
>> + rcu_read_lock();
>> + if (source)
>> + source_ns = ns_of_pid(find_pid_ns(source, current_ns));
>> + if (target)
>> + target_ns = ns_of_pid(find_pid_ns(target, current_ns));
>> + if (source_ns && target_ns) {
>> + task_pid = find_pid_ns(pid, source_ns);
>> + if (task_pid)
>> + result = pid_nr_ns(task_pid, target_ns);
>> + }
>> + rcu_read_unlock();
>> +
>> + return result;
>> +#else
>> + return pid;
>> +#endif /* CONFIG_PID_NS */
>> +}
>> +
>> /*
>> * The pid hash table is scaled according to the amount of memory in the
>> * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
--
Konstantin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Stéphane Graber <stgraber@ubuntu.com> |
|---|---|
| Date | 2015-09-15 17:30 +0200 |
| Message-ID | <q90ld-mc-37@gated-at.bofh.it> |
| In reply to | #1225275 |
[Multipart message — attachments visible in raw view] — view raw
On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote:
> On 15.09.2015 17:27, Eric W. Biederman wrote:
> >Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes:
> >
> >>pid_t getvpid(pid_t pid, pid_t source, pid_t target);
> >>
> >>This syscall converts pid from one pid-ns into pid in another pid-ns:
> >>it takes @pid in namespace of @source task (zero for current) and
> >>returns related pid in namespace of @target task (zero for current too).
> >>If pid is unreachable from target pid-ns then it returns zero.
> >
> >This interface as presented is inherently racy. It would be better
> >if source and target were file descriptors referring to the namespaces
> >you wish to translate between.
>
> Yep, it's racy. As well as any operation with non-child pids.
> With file descriptors for source/target result will be racy anyway.
>
> >
> >>Such conversion is required for interaction between processes from
> >>different pid-namespaces. For example when system service talks with
> >>client from isolated container via socket about task in container:
> >
> >Sockets are already supported. At least the metadata of sockets is.
> >
> >Maybe we need this but I am not convinced of it's utility.
> >
> >What are you trying to do that motivates this?
>
> I'm working on hierarchical container management system which
> allows to create and control nested sub-containers from containers
> ( https://github.com/yandex/porto ). Main server works in host and
> have to interact with all levels of nested namespaces. This syscall
> makes some operations much easier: server must remember only pid in
> host pid namespace and convert it into right vpid on demand.
Note that as Eric said earlier, sending a PID inside a ucred through a
unix socket will have the pid translated.
So while your solution certainly should be faster, you can already achieve
what you want today by doing:
== Translate PID in container to PID in host
- open a socket
- setns to container's pidns
- send ucred from that container containing the requested container PID
- host sees the host PID
== Translate PID on host to PID in container
- open a socket
- setns to container's pidns
- send ucred from the host containing the request host PID
(send will fail if the host PID isn't part of that container)
- container sees the container PID
>
> >
> >Eric
> >
> >
> >>getvpid(pid, client_pid, 0) -> pid in our pid namespace
> >>getvpid(pid, 0, client_pid) -> pid in client pid namespace
> >>
> >>Also service can get pid of init task and match it with container:
> >>
> >>getvpid(1, client_pid, 0) -> pid of init task for client_pid
> >>
> >>Seems like gdb and strace could use this too for converting pids of
> >>newly forked tasks (IIRR they get pid from %rax) into pid from
> >>correct namespace for further interaction.
> >>
> >>As a bonus syscall getvpid can compare pid namespaces and
> >>test isolation without mounted procfs:
> >>
> >>getvpid(1, 0, pid) == 0 -> pid in our sub-pid-namespace
> >>getvpid(1, 0, pid) == 1 -> pid in our pid-namespace
> >>getvpid(1, pid1, pid2) == 0 -> pid1 isolated from pid2
> >>getvpid(1, pid1, pid2) == 1 -> tasks are in one pid-namespace
> >>getvpid(1, pid1, pid2) > 1 -> pid1 is in sub-pidns of pid2
> >>
> >>Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
> >>---
> >> arch/x86/entry/syscalls/syscall_32.tbl | 1 +
> >> arch/x86/entry/syscalls/syscall_64.tbl | 1 +
> >> include/linux/syscalls.h | 1 +
> >> kernel/pid.c | 36 ++++++++++++++++++++++++++++++++
> >> 4 files changed, 39 insertions(+)
> >>
> >>diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl
> >>index 7663c455b9f6..dadb55d42fc9 100644
> >>--- a/arch/x86/entry/syscalls/syscall_32.tbl
> >>+++ b/arch/x86/entry/syscalls/syscall_32.tbl
> >>@@ -382,3 +382,4 @@
> >> 373 i386 shutdown sys_shutdown
> >> 374 i386 userfaultfd sys_userfaultfd
> >> 375 i386 membarrier sys_membarrier
> >>+376 i386 getvpid sys_getvpid
> >>diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl
> >>index 278842fdf1f6..0338f2eb3b7c 100644
> >>--- a/arch/x86/entry/syscalls/syscall_64.tbl
> >>+++ b/arch/x86/entry/syscalls/syscall_64.tbl
> >>@@ -331,6 +331,7 @@
> >> 322 64 execveat stub_execveat
> >> 323 common userfaultfd sys_userfaultfd
> >> 324 common membarrier sys_membarrier
> >>+325 common getvpid sys_getvpid
> >>
> >> #
> >> # x32-specific system call numbers start at 512 to avoid cache impact
> >>diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
> >>index a460e2ef2843..3405c30999e3 100644
> >>--- a/include/linux/syscalls.h
> >>+++ b/include/linux/syscalls.h
> >>@@ -222,6 +222,7 @@ asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __us
> >> asmlinkage long sys_alarm(unsigned int seconds);
> >> asmlinkage long sys_getpid(void);
> >> asmlinkage long sys_getppid(void);
> >>+asmlinkage long sys_getvpid(pid_t pid, pid_t source, pid_t target);
> >> asmlinkage long sys_getuid(void);
> >> asmlinkage long sys_geteuid(void);
> >> asmlinkage long sys_getgid(void);
> >>diff --git a/kernel/pid.c b/kernel/pid.c
> >>index ca368793808e..caa676ff7364 100644
> >>--- a/kernel/pid.c
> >>+++ b/kernel/pid.c
> >>@@ -567,6 +567,42 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
> >> return pid;
> >> }
> >>
> >>+/**
> >>+ * sys_getvpid - convert pid from one pid-namespace into pid from another
> >>+ *
> >>+ * @pid - pid of requested task
> >>+ * @source - pid of task in source pid-namespace, zero for current
> >>+ * @target - pid of task in target pid-namespace, zero for current
> >>+ *
> >>+ * Returns pid from target pid-ns or zero if pid is unreachable.
> >>+ * Returns -ESRCH if some of pids are not found.
> >>+ */
> >>+SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
> >>+{
> >>+#ifdef CONFIG_PID_NS
> >>+ struct pid_namespace *current_ns = task_active_pid_ns(current);
> >>+ struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
> >>+ struct pid *task_pid;
> >>+ pid_t result = -ESRCH;
> >>+
> >>+ rcu_read_lock();
> >>+ if (source)
> >>+ source_ns = ns_of_pid(find_pid_ns(source, current_ns));
> >>+ if (target)
> >>+ target_ns = ns_of_pid(find_pid_ns(target, current_ns));
> >>+ if (source_ns && target_ns) {
> >>+ task_pid = find_pid_ns(pid, source_ns);
> >>+ if (task_pid)
> >>+ result = pid_nr_ns(task_pid, target_ns);
> >>+ }
> >>+ rcu_read_unlock();
> >>+
> >>+ return result;
> >>+#else
> >>+ return pid;
> >>+#endif /* CONFIG_PID_NS */
> >>+}
> >>+
> >> /*
> >> * The pid hash table is scaled according to the amount of memory in the
> >> * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
>
>
> --
> Konstantin
> _______________________________________________
> Containers mailing list
> Containers@lists.linux-foundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/containers
--
Stéphane Graber
Ubuntu developer
http://www.ubuntu.com
[toc] | [prev] | [next] | [standalone]
| From | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| Date | 2015-09-15 18:10 +0200 |
| Message-ID | <q90XU-1l8-23@gated-at.bofh.it> |
| In reply to | #1225309 |
On 15.09.2015 18:17, Stéphane Graber wrote:
> On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote:
>> On 15.09.2015 17:27, Eric W. Biederman wrote:
>>> Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes:
>>>
>>>> pid_t getvpid(pid_t pid, pid_t source, pid_t target);
>>>>
>>>> This syscall converts pid from one pid-ns into pid in another pid-ns:
>>>> it takes @pid in namespace of @source task (zero for current) and
>>>> returns related pid in namespace of @target task (zero for current too).
>>>> If pid is unreachable from target pid-ns then it returns zero.
>>>
>>> This interface as presented is inherently racy. It would be better
>>> if source and target were file descriptors referring to the namespaces
>>> you wish to translate between.
>>
>> Yep, it's racy. As well as any operation with non-child pids.
>> With file descriptors for source/target result will be racy anyway.
>>
>>>
>>>> Such conversion is required for interaction between processes from
>>>> different pid-namespaces. For example when system service talks with
>>>> client from isolated container via socket about task in container:
>>>
>>> Sockets are already supported. At least the metadata of sockets is.
>>>
>>> Maybe we need this but I am not convinced of it's utility.
>>>
>>> What are you trying to do that motivates this?
>>
>> I'm working on hierarchical container management system which
>> allows to create and control nested sub-containers from containers
>> ( https://github.com/yandex/porto ). Main server works in host and
>> have to interact with all levels of nested namespaces. This syscall
>> makes some operations much easier: server must remember only pid in
>> host pid namespace and convert it into right vpid on demand.
>
> Note that as Eric said earlier, sending a PID inside a ucred through a
> unix socket will have the pid translated.
We are using this already: clients in container connect to unix-socket
binded in host net-ns and bind-mounted into container =)
Server identifies them by pid from SO_PEERCRED
>
> So while your solution certainly should be faster, you can already achieve
> what you want today by doing:
>
> == Translate PID in container to PID in host
> - open a socket
> - setns to container's pidns
> - send ucred from that container containing the requested container PID
> - host sees the host PID
>
That's funny. But setns isn't enough,
task have to fork into pid-namespace.
> == Translate PID on host to PID in container
> - open a socket
> - setns to container's pidns
> - send ucred from the host containing the request host PID
> (send will fail if the host PID isn't part of that container)
> - container sees the container PID
>
>>
>>>
>>> Eric
>>>
>>>
>>>> getvpid(pid, client_pid, 0) -> pid in our pid namespace
>>>> getvpid(pid, 0, client_pid) -> pid in client pid namespace
>>>>
>>>> Also service can get pid of init task and match it with container:
>>>>
>>>> getvpid(1, client_pid, 0) -> pid of init task for client_pid
>>>>
>>>> Seems like gdb and strace could use this too for converting pids of
>>>> newly forked tasks (IIRR they get pid from %rax) into pid from
>>>> correct namespace for further interaction.
>>>>
>>>> As a bonus syscall getvpid can compare pid namespaces and
>>>> test isolation without mounted procfs:
>>>>
>>>> getvpid(1, 0, pid) == 0 -> pid in our sub-pid-namespace
>>>> getvpid(1, 0, pid) == 1 -> pid in our pid-namespace
>>>> getvpid(1, pid1, pid2) == 0 -> pid1 isolated from pid2
>>>> getvpid(1, pid1, pid2) == 1 -> tasks are in one pid-namespace
>>>> getvpid(1, pid1, pid2) > 1 -> pid1 is in sub-pidns of pid2
>>>>
>>>> Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
>>>> ---
>>>> arch/x86/entry/syscalls/syscall_32.tbl | 1 +
>>>> arch/x86/entry/syscalls/syscall_64.tbl | 1 +
>>>> include/linux/syscalls.h | 1 +
>>>> kernel/pid.c | 36 ++++++++++++++++++++++++++++++++
>>>> 4 files changed, 39 insertions(+)
>>>>
>>>> diff --git a/arch/x86/entry/syscalls/syscall_32.tbl b/arch/x86/entry/syscalls/syscall_32.tbl
>>>> index 7663c455b9f6..dadb55d42fc9 100644
>>>> --- a/arch/x86/entry/syscalls/syscall_32.tbl
>>>> +++ b/arch/x86/entry/syscalls/syscall_32.tbl
>>>> @@ -382,3 +382,4 @@
>>>> 373 i386 shutdown sys_shutdown
>>>> 374 i386 userfaultfd sys_userfaultfd
>>>> 375 i386 membarrier sys_membarrier
>>>> +376 i386 getvpid sys_getvpid
>>>> diff --git a/arch/x86/entry/syscalls/syscall_64.tbl b/arch/x86/entry/syscalls/syscall_64.tbl
>>>> index 278842fdf1f6..0338f2eb3b7c 100644
>>>> --- a/arch/x86/entry/syscalls/syscall_64.tbl
>>>> +++ b/arch/x86/entry/syscalls/syscall_64.tbl
>>>> @@ -331,6 +331,7 @@
>>>> 322 64 execveat stub_execveat
>>>> 323 common userfaultfd sys_userfaultfd
>>>> 324 common membarrier sys_membarrier
>>>> +325 common getvpid sys_getvpid
>>>>
>>>> #
>>>> # x32-specific system call numbers start at 512 to avoid cache impact
>>>> diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
>>>> index a460e2ef2843..3405c30999e3 100644
>>>> --- a/include/linux/syscalls.h
>>>> +++ b/include/linux/syscalls.h
>>>> @@ -222,6 +222,7 @@ asmlinkage long sys_nanosleep(struct timespec __user *rqtp, struct timespec __us
>>>> asmlinkage long sys_alarm(unsigned int seconds);
>>>> asmlinkage long sys_getpid(void);
>>>> asmlinkage long sys_getppid(void);
>>>> +asmlinkage long sys_getvpid(pid_t pid, pid_t source, pid_t target);
>>>> asmlinkage long sys_getuid(void);
>>>> asmlinkage long sys_geteuid(void);
>>>> asmlinkage long sys_getgid(void);
>>>> diff --git a/kernel/pid.c b/kernel/pid.c
>>>> index ca368793808e..caa676ff7364 100644
>>>> --- a/kernel/pid.c
>>>> +++ b/kernel/pid.c
>>>> @@ -567,6 +567,42 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
>>>> return pid;
>>>> }
>>>>
>>>> +/**
>>>> + * sys_getvpid - convert pid from one pid-namespace into pid from another
>>>> + *
>>>> + * @pid - pid of requested task
>>>> + * @source - pid of task in source pid-namespace, zero for current
>>>> + * @target - pid of task in target pid-namespace, zero for current
>>>> + *
>>>> + * Returns pid from target pid-ns or zero if pid is unreachable.
>>>> + * Returns -ESRCH if some of pids are not found.
>>>> + */
>>>> +SYSCALL_DEFINE3(getvpid, pid_t, pid, pid_t, source, pid_t, target)
>>>> +{
>>>> +#ifdef CONFIG_PID_NS
>>>> + struct pid_namespace *current_ns = task_active_pid_ns(current);
>>>> + struct pid_namespace *source_ns = current_ns, *target_ns = current_ns;
>>>> + struct pid *task_pid;
>>>> + pid_t result = -ESRCH;
>>>> +
>>>> + rcu_read_lock();
>>>> + if (source)
>>>> + source_ns = ns_of_pid(find_pid_ns(source, current_ns));
>>>> + if (target)
>>>> + target_ns = ns_of_pid(find_pid_ns(target, current_ns));
>>>> + if (source_ns && target_ns) {
>>>> + task_pid = find_pid_ns(pid, source_ns);
>>>> + if (task_pid)
>>>> + result = pid_nr_ns(task_pid, target_ns);
>>>> + }
>>>> + rcu_read_unlock();
>>>> +
>>>> + return result;
>>>> +#else
>>>> + return pid;
>>>> +#endif /* CONFIG_PID_NS */
>>>> +}
>>>> +
>>>> /*
>>>> * The pid hash table is scaled according to the amount of memory in the
>>>> * machine. From a minimum of 16 slots up to 4096 slots at one gigabyte or
>>
>>
>> --
>> Konstantin
>> _______________________________________________
>> Containers mailing list
>> Containers@lists.linux-foundation.org
>> https://lists.linuxfoundation.org/mailman/listinfo/containers
>
--
Konstantin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Serge Hallyn <serge.hallyn@ubuntu.com> |
|---|---|
| Date | 2015-09-15 19:50 +0200 |
| Message-ID | <q92wF-3pz-5@gated-at.bofh.it> |
| In reply to | #1225309 |
Quoting Stéphane Graber (stgraber@ubuntu.com): > On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: > > On 15.09.2015 17:27, Eric W. Biederman wrote: > > >Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: > > > > > >>pid_t getvpid(pid_t pid, pid_t source, pid_t target); > > >> > > >>This syscall converts pid from one pid-ns into pid in another pid-ns: > > >>it takes @pid in namespace of @source task (zero for current) and > > >>returns related pid in namespace of @target task (zero for current too). > > >>If pid is unreachable from target pid-ns then it returns zero. > > > > > >This interface as presented is inherently racy. It would be better > > >if source and target were file descriptors referring to the namespaces > > >you wish to translate between. > > > > Yep, it's racy. As well as any operation with non-child pids. > > With file descriptors for source/target result will be racy anyway. > > > > > > > >>Such conversion is required for interaction between processes from > > >>different pid-namespaces. For example when system service talks with > > >>client from isolated container via socket about task in container: > > > > > >Sockets are already supported. At least the metadata of sockets is. > > > > > >Maybe we need this but I am not convinced of it's utility. > > > > > >What are you trying to do that motivates this? > > > > I'm working on hierarchical container management system which > > allows to create and control nested sub-containers from containers > > ( https://github.com/yandex/porto ). Main server works in host and > > have to interact with all levels of nested namespaces. This syscall > > makes some operations much easier: server must remember only pid in > > host pid namespace and convert it into right vpid on demand. > > Note that as Eric said earlier, sending a PID inside a ucred through a > unix socket will have the pid translated. > > So while your solution certainly should be faster, you can already achieve > what you want today by doing: > > == Translate PID in container to PID in host > - open a socket > - setns to container's pidns > - send ucred from that container containing the requested container PID > - host sees the host PID > > == Translate PID on host to PID in container > - open a socket > - setns to container's pidns > - send ucred from the host containing the request host PID > (send will fail if the host PID isn't part of that container) > - container sees the container PID In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns we now also have 'NSpid' etc in /proc/$$/status. -serge -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| Date | 2015-09-16 09:40 +0200 |
| Message-ID | <q9ftV-6eY-49@gated-at.bofh.it> |
| In reply to | #1225467 |
On 15.09.2015 20:41, Serge Hallyn wrote: > Quoting Stéphane Graber (stgraber@ubuntu.com): >> On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: >>> On 15.09.2015 17:27, Eric W. Biederman wrote: >>>> Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: >>>> >>>>> pid_t getvpid(pid_t pid, pid_t source, pid_t target); >>>>> >>>>> This syscall converts pid from one pid-ns into pid in another pid-ns: >>>>> it takes @pid in namespace of @source task (zero for current) and >>>>> returns related pid in namespace of @target task (zero for current too). >>>>> If pid is unreachable from target pid-ns then it returns zero. >>>> >>>> This interface as presented is inherently racy. It would be better >>>> if source and target were file descriptors referring to the namespaces >>>> you wish to translate between. >>> >>> Yep, it's racy. As well as any operation with non-child pids. >>> With file descriptors for source/target result will be racy anyway. >>> >>>> >>>>> Such conversion is required for interaction between processes from >>>>> different pid-namespaces. For example when system service talks with >>>>> client from isolated container via socket about task in container: >>>> >>>> Sockets are already supported. At least the metadata of sockets is. >>>> >>>> Maybe we need this but I am not convinced of it's utility. >>>> >>>> What are you trying to do that motivates this? >>> >>> I'm working on hierarchical container management system which >>> allows to create and control nested sub-containers from containers >>> ( https://github.com/yandex/porto ). Main server works in host and >>> have to interact with all levels of nested namespaces. This syscall >>> makes some operations much easier: server must remember only pid in >>> host pid namespace and convert it into right vpid on demand. >> >> Note that as Eric said earlier, sending a PID inside a ucred through a >> unix socket will have the pid translated. >> >> So while your solution certainly should be faster, you can already achieve >> what you want today by doing: >> >> == Translate PID in container to PID in host >> - open a socket >> - setns to container's pidns >> - send ucred from that container containing the requested container PID >> - host sees the host PID >> >> == Translate PID on host to PID in container >> - open a socket >> - setns to container's pidns >> - send ucred from the host containing the request host PID >> (send will fail if the host PID isn't part of that container) >> - container sees the container PID > > In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns > we now also have 'NSpid' etc in /proc/$$/status. > As I see this works perfectly only for converting host pid into virtual. Backward conversion is troublesome: we have to scan all pids in host procfs and somehow filter tasks from container and its sub-pid-ns. Or I am missing something trivial? -- Konstantin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Serge E. Hallyn" <serge@hallyn.com> |
|---|---|
| Date | 2015-09-16 16:40 +0200 |
| Message-ID | <q9m2l-7ec-17@gated-at.bofh.it> |
| In reply to | #1225795 |
On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote: > On 15.09.2015 20:41, Serge Hallyn wrote: > >Quoting Stéphane Graber (stgraber@ubuntu.com): > >>On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: > >>>On 15.09.2015 17:27, Eric W. Biederman wrote: > >>>>Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: > >>>> > >>>>>pid_t getvpid(pid_t pid, pid_t source, pid_t target); > >>>>> > >>>>>This syscall converts pid from one pid-ns into pid in another pid-ns: > >>>>>it takes @pid in namespace of @source task (zero for current) and > >>>>>returns related pid in namespace of @target task (zero for current too). > >>>>>If pid is unreachable from target pid-ns then it returns zero. > >>>> > >>>>This interface as presented is inherently racy. It would be better > >>>>if source and target were file descriptors referring to the namespaces > >>>>you wish to translate between. > >>> > >>>Yep, it's racy. As well as any operation with non-child pids. > >>>With file descriptors for source/target result will be racy anyway. > >>> > >>>> > >>>>>Such conversion is required for interaction between processes from > >>>>>different pid-namespaces. For example when system service talks with > >>>>>client from isolated container via socket about task in container: > >>>> > >>>>Sockets are already supported. At least the metadata of sockets is. > >>>> > >>>>Maybe we need this but I am not convinced of it's utility. > >>>> > >>>>What are you trying to do that motivates this? > >>> > >>>I'm working on hierarchical container management system which > >>>allows to create and control nested sub-containers from containers > >>>( https://github.com/yandex/porto ). Main server works in host and > >>>have to interact with all levels of nested namespaces. This syscall > >>>makes some operations much easier: server must remember only pid in > >>>host pid namespace and convert it into right vpid on demand. > >> > >>Note that as Eric said earlier, sending a PID inside a ucred through a > >>unix socket will have the pid translated. > >> > >>So while your solution certainly should be faster, you can already achieve > >>what you want today by doing: > >> > >>== Translate PID in container to PID in host > >> - open a socket > >> - setns to container's pidns > >> - send ucred from that container containing the requested container PID > >> - host sees the host PID > >> > >>== Translate PID on host to PID in container > >> - open a socket > >> - setns to container's pidns > >> - send ucred from the host containing the request host PID > >> (send will fail if the host PID isn't part of that container) > >> - container sees the container PID > > > >In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns > >we now also have 'NSpid' etc in /proc/$$/status. > > > > As I see this works perfectly only for converting host pid into virtual. > > Backward conversion is troublesome: we have to scan all pids in host > procfs and somehow filter tasks from container and its sub-pid-ns. > Or I am missing something trivial? Ah, no that doesn't help with this. What Stéphane describes is what I've done in several projects. Getting it right is however actually quite tricky. I'm not convinced it's at the level of "since you can do (sweep hands) all this, we don't need a simple syscall to do it." So I'd encourage you to resend using namespace inode fds for source and target as Eric suggested. We still may decide that the syscall isn't needed, but it's a trivial change to your patch and removes that race. And I'm not convinced it's not needed. -serge -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | ebiederm@xmission.com (Eric W. Biederman) |
|---|---|
| Date | 2015-09-16 17:00 +0200 |
| Message-ID | <q9mlH-7Bo-3@gated-at.bofh.it> |
| In reply to | #1226164 |
"Serge E. Hallyn" <serge@hallyn.com> writes: > On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote: >> On 15.09.2015 20:41, Serge Hallyn wrote: >> >Quoting Stéphane Graber (stgraber@ubuntu.com): >> >>On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: >> >>>On 15.09.2015 17:27, Eric W. Biederman wrote: >> >>>>Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: >> >>>> >> >>>>>pid_t getvpid(pid_t pid, pid_t source, pid_t target); >> >>>>> >> >>>>>This syscall converts pid from one pid-ns into pid in another pid-ns: >> >>>>>it takes @pid in namespace of @source task (zero for current) and >> >>>>>returns related pid in namespace of @target task (zero for current too). >> >>>>>If pid is unreachable from target pid-ns then it returns zero. >> >>>> >> >>>>This interface as presented is inherently racy. It would be better >> >>>>if source and target were file descriptors referring to the namespaces >> >>>>you wish to translate between. >> >>> >> >>>Yep, it's racy. As well as any operation with non-child pids. >> >>>With file descriptors for source/target result will be racy anyway. >> >>> >> >>>> >> >>>>>Such conversion is required for interaction between processes from >> >>>>>different pid-namespaces. For example when system service talks with >> >>>>>client from isolated container via socket about task in container: >> >>>> >> >>>>Sockets are already supported. At least the metadata of sockets is. >> >>>> >> >>>>Maybe we need this but I am not convinced of it's utility. >> >>>> >> >>>>What are you trying to do that motivates this? >> >>> >> >>>I'm working on hierarchical container management system which >> >>>allows to create and control nested sub-containers from containers >> >>>( https://github.com/yandex/porto ). Main server works in host and >> >>>have to interact with all levels of nested namespaces. This syscall >> >>>makes some operations much easier: server must remember only pid in >> >>>host pid namespace and convert it into right vpid on demand. >> >> >> >>Note that as Eric said earlier, sending a PID inside a ucred through a >> >>unix socket will have the pid translated. >> >> >> >>So while your solution certainly should be faster, you can already achieve >> >>what you want today by doing: >> >> >> >>== Translate PID in container to PID in host >> >> - open a socket >> >> - setns to container's pidns >> >> - send ucred from that container containing the requested container PID >> >> - host sees the host PID >> >> >> >>== Translate PID on host to PID in container >> >> - open a socket >> >> - setns to container's pidns >> >> - send ucred from the host containing the request host PID >> >> (send will fail if the host PID isn't part of that container) >> >> - container sees the container PID >> > >> >In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns >> >we now also have 'NSpid' etc in /proc/$$/status. >> > >> >> As I see this works perfectly only for converting host pid into virtual. >> >> Backward conversion is troublesome: we have to scan all pids in host >> procfs and somehow filter tasks from container and its sub-pid-ns. >> Or I am missing something trivial? > > Ah, no that doesn't help with this. > > What Stéphane describes is what I've done in several projects. > Getting it right is however actually quite tricky. I'm not > convinced it's at the level of "since you can do (sweep hands) > all this, we don't need a simple syscall to do it." > > So I'd encourage you to resend using namespace inode fds for > source and target as Eric suggested. We still may decide that > the syscall isn't needed, but it's a trivial change to your > patch and removes that race. And I'm not convinced it's not > needed. At this point my primary concern is that a pattern that would need to be convering to and from pids quickly is potentially fundamentally racy to the point of broken. Especially with unix domain sockets passing and converting pids in a way that covers the common case. I am clearly missing some nuance of this use case. Eric -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Serge E. Hallyn" <serge@hallyn.com> |
|---|---|
| Date | 2015-09-16 18:40 +0200 |
| Message-ID | <q9nUt-1tZ-1@gated-at.bofh.it> |
| In reply to | #1226173 |
On Wed, Sep 16, 2015 at 09:49:02AM -0500, Eric W. Biederman wrote: > "Serge E. Hallyn" <serge@hallyn.com> writes: > > > On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote: > >> On 15.09.2015 20:41, Serge Hallyn wrote: > >> >Quoting Stéphane Graber (stgraber@ubuntu.com): > >> >>On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: > >> >>>On 15.09.2015 17:27, Eric W. Biederman wrote: > >> >>>>Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: > >> >>>> > >> >>>>>pid_t getvpid(pid_t pid, pid_t source, pid_t target); > >> >>>>> > >> >>>>>This syscall converts pid from one pid-ns into pid in another pid-ns: > >> >>>>>it takes @pid in namespace of @source task (zero for current) and > >> >>>>>returns related pid in namespace of @target task (zero for current too). > >> >>>>>If pid is unreachable from target pid-ns then it returns zero. > >> >>>> > >> >>>>This interface as presented is inherently racy. It would be better > >> >>>>if source and target were file descriptors referring to the namespaces > >> >>>>you wish to translate between. > >> >>> > >> >>>Yep, it's racy. As well as any operation with non-child pids. > >> >>>With file descriptors for source/target result will be racy anyway. > >> >>> > >> >>>> > >> >>>>>Such conversion is required for interaction between processes from > >> >>>>>different pid-namespaces. For example when system service talks with > >> >>>>>client from isolated container via socket about task in container: > >> >>>> > >> >>>>Sockets are already supported. At least the metadata of sockets is. > >> >>>> > >> >>>>Maybe we need this but I am not convinced of it's utility. > >> >>>> > >> >>>>What are you trying to do that motivates this? > >> >>> > >> >>>I'm working on hierarchical container management system which > >> >>>allows to create and control nested sub-containers from containers > >> >>>( https://github.com/yandex/porto ). Main server works in host and > >> >>>have to interact with all levels of nested namespaces. This syscall > >> >>>makes some operations much easier: server must remember only pid in > >> >>>host pid namespace and convert it into right vpid on demand. > >> >> > >> >>Note that as Eric said earlier, sending a PID inside a ucred through a > >> >>unix socket will have the pid translated. > >> >> > >> >>So while your solution certainly should be faster, you can already achieve > >> >>what you want today by doing: > >> >> > >> >>== Translate PID in container to PID in host > >> >> - open a socket > >> >> - setns to container's pidns > >> >> - send ucred from that container containing the requested container PID > >> >> - host sees the host PID > >> >> > >> >>== Translate PID on host to PID in container > >> >> - open a socket > >> >> - setns to container's pidns > >> >> - send ucred from the host containing the request host PID > >> >> (send will fail if the host PID isn't part of that container) > >> >> - container sees the container PID > >> > > >> >In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns > >> >we now also have 'NSpid' etc in /proc/$$/status. > >> > > >> > >> As I see this works perfectly only for converting host pid into virtual. > >> > >> Backward conversion is troublesome: we have to scan all pids in host > >> procfs and somehow filter tasks from container and its sub-pid-ns. > >> Or I am missing something trivial? > > > > Ah, no that doesn't help with this. > > > > What Stéphane describes is what I've done in several projects. > > Getting it right is however actually quite tricky. I'm not > > convinced it's at the level of "since you can do (sweep hands) > > all this, we don't need a simple syscall to do it." > > > > So I'd encourage you to resend using namespace inode fds for > > source and target as Eric suggested. We still may decide that > > the syscall isn't needed, but it's a trivial change to your > > patch and removes that race. And I'm not convinced it's not > > needed. > > At this point my primary concern is that a pattern that would need to be > convering to and from pids quickly is potentially fundamentally racy to > the point of broken. The cgmanager GetTasks and GetTasksRecursive, and reading of the lxcfs cgroup /tasks files, require converting every pid from the cgmanager's namespace to the reading task's namespace. > Especially with unix domain sockets passing and converting pids in a way > that covers the common case. > > I am clearly missing some nuance of this use case. lxcfs and cgmanager are imo proof that we *can* do without the new syscall. However, the git history will show that there are some complications, and the system load when a few systemds are starting will show that it does take a performance toll on the host at some point. Still as I say it's doable. The syscall implementation was very simple, though. -serge -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Chen Fan <chen.fan.fnst@cn.fujitsu.com> |
|---|---|
| Date | 2015-09-21 05:00 +0200 |
| Message-ID | <qaZuG-28y-1@gated-at.bofh.it> |
| In reply to | #1226261 |
On 09/17/2015 12:31 AM, Serge E. Hallyn wrote: > On Wed, Sep 16, 2015 at 09:49:02AM -0500, Eric W. Biederman wrote: >> "Serge E. Hallyn" <serge@hallyn.com> writes: >> >>> On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote: >>>> On 15.09.2015 20:41, Serge Hallyn wrote: >>>>> Quoting Stéphane Graber (stgraber@ubuntu.com): >>>>>> On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: >>>>>>> On 15.09.2015 17:27, Eric W. Biederman wrote: >>>>>>>> Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: >>>>>>>> >>>>>>>>> pid_t getvpid(pid_t pid, pid_t source, pid_t target); >>>>>>>>> >>>>>>>>> This syscall converts pid from one pid-ns into pid in another pid-ns: >>>>>>>>> it takes @pid in namespace of @source task (zero for current) and >>>>>>>>> returns related pid in namespace of @target task (zero for current too). >>>>>>>>> If pid is unreachable from target pid-ns then it returns zero. >>>>>>>> This interface as presented is inherently racy. It would be better >>>>>>>> if source and target were file descriptors referring to the namespaces >>>>>>>> you wish to translate between. >>>>>>> Yep, it's racy. As well as any operation with non-child pids. >>>>>>> With file descriptors for source/target result will be racy anyway. >>>>>>> >>>>>>>>> Such conversion is required for interaction between processes from >>>>>>>>> different pid-namespaces. For example when system service talks with >>>>>>>>> client from isolated container via socket about task in container: >>>>>>>> Sockets are already supported. At least the metadata of sockets is. >>>>>>>> >>>>>>>> Maybe we need this but I am not convinced of it's utility. >>>>>>>> >>>>>>>> What are you trying to do that motivates this? >>>>>>> I'm working on hierarchical container management system which >>>>>>> allows to create and control nested sub-containers from containers >>>>>>> ( https://github.com/yandex/porto ). Main server works in host and >>>>>>> have to interact with all levels of nested namespaces. This syscall >>>>>>> makes some operations much easier: server must remember only pid in >>>>>>> host pid namespace and convert it into right vpid on demand. >>>>>> Note that as Eric said earlier, sending a PID inside a ucred through a >>>>>> unix socket will have the pid translated. >>>>>> >>>>>> So while your solution certainly should be faster, you can already achieve >>>>>> what you want today by doing: >>>>>> >>>>>> == Translate PID in container to PID in host >>>>>> - open a socket >>>>>> - setns to container's pidns >>>>>> - send ucred from that container containing the requested container PID >>>>>> - host sees the host PID >>>>>> >>>>>> == Translate PID on host to PID in container >>>>>> - open a socket >>>>>> - setns to container's pidns >>>>>> - send ucred from the host containing the request host PID >>>>>> (send will fail if the host PID isn't part of that container) >>>>>> - container sees the container PID >>>>> In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns >>>>> we now also have 'NSpid' etc in /proc/$$/status. >>>>> >>>> As I see this works perfectly only for converting host pid into virtual. >>>> >>>> Backward conversion is troublesome: we have to scan all pids in host >>>> procfs and somehow filter tasks from container and its sub-pid-ns. >>>> Or I am missing something trivial? >>> Ah, no that doesn't help with this. >>> >>> What Stéphane describes is what I've done in several projects. >>> Getting it right is however actually quite tricky. I'm not >>> convinced it's at the level of "since you can do (sweep hands) >>> all this, we don't need a simple syscall to do it." >>> >>> So I'd encourage you to resend using namespace inode fds for >>> source and target as Eric suggested. We still may decide that >>> the syscall isn't needed, but it's a trivial change to your >>> patch and removes that race. And I'm not convinced it's not >>> needed. >> At this point my primary concern is that a pattern that would need to be >> convering to and from pids quickly is potentially fundamentally racy to >> the point of broken. > The cgmanager GetTasks and GetTasksRecursive, and reading of the > lxcfs cgroup /tasks files, require converting every pid from the > cgmanager's namespace to the reading task's namespace. > >> Especially with unix domain sockets passing and converting pids in a way >> that covers the common case. >> >> I am clearly missing some nuance of this use case. > lxcfs and cgmanager are imo proof that we *can* do without the new > syscall. However, the git history will show that there are some > complications, and the system load when a few systemds are starting > will show that it does take a performance toll on the host at some > point. Still as I say it's doable. The syscall implementation was > very simple, though. Yes, previous email discussed about the implementation of syscall or procfs: http://www.gossamer-threads.com/lists/linux/kernel/1971723?search_string=chen%20hanxiao;#1971723 but it seems complicated implemented by procfs, the original discussion at: http://www.gossamer-threads.com/lists/linux/kernel/2076440?search_string=chen%20hanxiao;#2076440 Thanks, Chen > > -serge > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > . > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Serge E. Hallyn" <serge@hallyn.com> |
|---|---|
| Date | 2015-09-21 16:30 +0200 |
| Message-ID | <qbagr-O0-21@gated-at.bofh.it> |
| In reply to | #1229002 |
On Mon, Sep 21, 2015 at 10:49:39AM +0800, Chen Fan wrote: > > On 09/17/2015 12:31 AM, Serge E. Hallyn wrote: > >On Wed, Sep 16, 2015 at 09:49:02AM -0500, Eric W. Biederman wrote: > >>"Serge E. Hallyn" <serge@hallyn.com> writes: > >> > >>>On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote: > >>>>On 15.09.2015 20:41, Serge Hallyn wrote: > >>>>>Quoting Stéphane Graber (stgraber@ubuntu.com): > >>>>>>On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote: > >>>>>>>On 15.09.2015 17:27, Eric W. Biederman wrote: > >>>>>>>>Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes: > >>>>>>>> > >>>>>>>>>pid_t getvpid(pid_t pid, pid_t source, pid_t target); > >>>>>>>>> > >>>>>>>>>This syscall converts pid from one pid-ns into pid in another pid-ns: > >>>>>>>>>it takes @pid in namespace of @source task (zero for current) and > >>>>>>>>>returns related pid in namespace of @target task (zero for current too). > >>>>>>>>>If pid is unreachable from target pid-ns then it returns zero. > >>>>>>>>This interface as presented is inherently racy. It would be better > >>>>>>>>if source and target were file descriptors referring to the namespaces > >>>>>>>>you wish to translate between. > >>>>>>>Yep, it's racy. As well as any operation with non-child pids. > >>>>>>>With file descriptors for source/target result will be racy anyway. > >>>>>>> > >>>>>>>>>Such conversion is required for interaction between processes from > >>>>>>>>>different pid-namespaces. For example when system service talks with > >>>>>>>>>client from isolated container via socket about task in container: > >>>>>>>>Sockets are already supported. At least the metadata of sockets is. > >>>>>>>> > >>>>>>>>Maybe we need this but I am not convinced of it's utility. > >>>>>>>> > >>>>>>>>What are you trying to do that motivates this? > >>>>>>>I'm working on hierarchical container management system which > >>>>>>>allows to create and control nested sub-containers from containers > >>>>>>>( https://github.com/yandex/porto ). Main server works in host and > >>>>>>>have to interact with all levels of nested namespaces. This syscall > >>>>>>>makes some operations much easier: server must remember only pid in > >>>>>>>host pid namespace and convert it into right vpid on demand. > >>>>>>Note that as Eric said earlier, sending a PID inside a ucred through a > >>>>>>unix socket will have the pid translated. > >>>>>> > >>>>>>So while your solution certainly should be faster, you can already achieve > >>>>>>what you want today by doing: > >>>>>> > >>>>>>== Translate PID in container to PID in host > >>>>>> - open a socket > >>>>>> - setns to container's pidns > >>>>>> - send ucred from that container containing the requested container PID > >>>>>> - host sees the host PID > >>>>>> > >>>>>>== Translate PID on host to PID in container > >>>>>> - open a socket > >>>>>> - setns to container's pidns > >>>>>> - send ucred from the host containing the request host PID > >>>>>> (send will fail if the host PID isn't part of that container) > >>>>>> - container sees the container PID > >>>>>In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns > >>>>>we now also have 'NSpid' etc in /proc/$$/status. > >>>>> > >>>>As I see this works perfectly only for converting host pid into virtual. > >>>> > >>>>Backward conversion is troublesome: we have to scan all pids in host > >>>>procfs and somehow filter tasks from container and its sub-pid-ns. > >>>>Or I am missing something trivial? > >>>Ah, no that doesn't help with this. > >>> > >>>What Stéphane describes is what I've done in several projects. > >>>Getting it right is however actually quite tricky. I'm not > >>>convinced it's at the level of "since you can do (sweep hands) > >>>all this, we don't need a simple syscall to do it." > >>> > >>>So I'd encourage you to resend using namespace inode fds for > >>>source and target as Eric suggested. We still may decide that > >>>the syscall isn't needed, but it's a trivial change to your > >>>patch and removes that race. And I'm not convinced it's not > >>>needed. > >>At this point my primary concern is that a pattern that would need to be > >>convering to and from pids quickly is potentially fundamentally racy to > >>the point of broken. > >The cgmanager GetTasks and GetTasksRecursive, and reading of the > >lxcfs cgroup /tasks files, require converting every pid from the > >cgmanager's namespace to the reading task's namespace. > > > >>Especially with unix domain sockets passing and converting pids in a way > >>that covers the common case. > >> > >>I am clearly missing some nuance of this use case. > >lxcfs and cgmanager are imo proof that we *can* do without the new > >syscall. However, the git history will show that there are some > >complications, and the system load when a few systemds are starting > >will show that it does take a performance toll on the host at some > >point. Still as I say it's doable. The syscall implementation was > >very simple, though. > > Yes, previous email discussed about the implementation of syscall or procfs: > http://www.gossamer-threads.com/lists/linux/kernel/1971723?search_string=chen%20hanxiao;#1971723 > > but it seems complicated implemented by procfs, the original discussion at: > http://www.gossamer-threads.com/lists/linux/kernel/2076440?search_string=chen%20hanxiao;#2076440 So please implement it, as Eric suggested, using the ns inode fds instead of racy pid_t hints for namespaces. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Konstantin Khlebnikov <khlebnikov@yandex-team.ru> |
|---|---|
| Date | 2015-09-22 09:50 +0200 |
| Message-ID | <qbquR-7mj-3@gated-at.bofh.it> |
| In reply to | #1229427 |
On 21.09.2015 17:22, Serge E. Hallyn wrote:
> On Mon, Sep 21, 2015 at 10:49:39AM +0800, Chen Fan wrote:
>>
>> On 09/17/2015 12:31 AM, Serge E. Hallyn wrote:
>>> On Wed, Sep 16, 2015 at 09:49:02AM -0500, Eric W. Biederman wrote:
>>>> "Serge E. Hallyn" <serge@hallyn.com> writes:
>>>>
>>>>> On Wed, Sep 16, 2015 at 10:37:33AM +0300, Konstantin Khlebnikov wrote:
>>>>>> On 15.09.2015 20:41, Serge Hallyn wrote:
>>>>>>> Quoting Stéphane Graber (stgraber@ubuntu.com):
>>>>>>>> On Tue, Sep 15, 2015 at 06:01:38PM +0300, Konstantin Khlebnikov wrote:
>>>>>>>>> On 15.09.2015 17:27, Eric W. Biederman wrote:
>>>>>>>>>> Konstantin Khlebnikov <khlebnikov@yandex-team.ru> writes:
>>>>>>>>>>
>>>>>>>>>>> pid_t getvpid(pid_t pid, pid_t source, pid_t target);
>>>>>>>>>>>
>>>>>>>>>>> This syscall converts pid from one pid-ns into pid in another pid-ns:
>>>>>>>>>>> it takes @pid in namespace of @source task (zero for current) and
>>>>>>>>>>> returns related pid in namespace of @target task (zero for current too).
>>>>>>>>>>> If pid is unreachable from target pid-ns then it returns zero.
>>>>>>>>>> This interface as presented is inherently racy. It would be better
>>>>>>>>>> if source and target were file descriptors referring to the namespaces
>>>>>>>>>> you wish to translate between.
>>>>>>>>> Yep, it's racy. As well as any operation with non-child pids.
>>>>>>>>> With file descriptors for source/target result will be racy anyway.
>>>>>>>>>
>>>>>>>>>>> Such conversion is required for interaction between processes from
>>>>>>>>>>> different pid-namespaces. For example when system service talks with
>>>>>>>>>>> client from isolated container via socket about task in container:
>>>>>>>>>> Sockets are already supported. At least the metadata of sockets is.
>>>>>>>>>>
>>>>>>>>>> Maybe we need this but I am not convinced of it's utility.
>>>>>>>>>>
>>>>>>>>>> What are you trying to do that motivates this?
>>>>>>>>> I'm working on hierarchical container management system which
>>>>>>>>> allows to create and control nested sub-containers from containers
>>>>>>>>> ( https://github.com/yandex/porto ). Main server works in host and
>>>>>>>>> have to interact with all levels of nested namespaces. This syscall
>>>>>>>>> makes some operations much easier: server must remember only pid in
>>>>>>>>> host pid namespace and convert it into right vpid on demand.
>>>>>>>> Note that as Eric said earlier, sending a PID inside a ucred through a
>>>>>>>> unix socket will have the pid translated.
>>>>>>>>
>>>>>>>> So while your solution certainly should be faster, you can already achieve
>>>>>>>> what you want today by doing:
>>>>>>>>
>>>>>>>> == Translate PID in container to PID in host
>>>>>>>> - open a socket
>>>>>>>> - setns to container's pidns
>>>>>>>> - send ucred from that container containing the requested container PID
>>>>>>>> - host sees the host PID
>>>>>>>>
>>>>>>>> == Translate PID on host to PID in container
>>>>>>>> - open a socket
>>>>>>>> - setns to container's pidns
>>>>>>>> - send ucred from the host containing the request host PID
>>>>>>>> (send will fail if the host PID isn't part of that container)
>>>>>>>> - container sees the container PID
>>>>>>> In addition, since commit e4bc332451 : /proc/PID/status: show all sets of pid according to ns
>>>>>>> we now also have 'NSpid' etc in /proc/$$/status.
>>>>>>>
>>>>>> As I see this works perfectly only for converting host pid into virtual.
>>>>>>
>>>>>> Backward conversion is troublesome: we have to scan all pids in host
>>>>>> procfs and somehow filter tasks from container and its sub-pid-ns.
>>>>>> Or I am missing something trivial?
>>>>> Ah, no that doesn't help with this.
>>>>>
>>>>> What Stéphane describes is what I've done in several projects.
>>>>> Getting it right is however actually quite tricky. I'm not
>>>>> convinced it's at the level of "since you can do (sweep hands)
>>>>> all this, we don't need a simple syscall to do it."
>>>>>
>>>>> So I'd encourage you to resend using namespace inode fds for
>>>>> source and target as Eric suggested. We still may decide that
>>>>> the syscall isn't needed, but it's a trivial change to your
>>>>> patch and removes that race. And I'm not convinced it's not
>>>>> needed.
>>>> At this point my primary concern is that a pattern that would need to be
>>>> convering to and from pids quickly is potentially fundamentally racy to
>>>> the point of broken.
>>> The cgmanager GetTasks and GetTasksRecursive, and reading of the
>>> lxcfs cgroup /tasks files, require converting every pid from the
>>> cgmanager's namespace to the reading task's namespace.
>>>
>>>> Especially with unix domain sockets passing and converting pids in a way
>>>> that covers the common case.
>>>>
>>>> I am clearly missing some nuance of this use case.
>>> lxcfs and cgmanager are imo proof that we *can* do without the new
>>> syscall. However, the git history will show that there are some
>>> complications, and the system load when a few systemds are starting
>>> will show that it does take a performance toll on the host at some
>>> point. Still as I say it's doable. The syscall implementation was
>>> very simple, though.
>>
>> Yes, previous email discussed about the implementation of syscall or procfs:
>> http://www.gossamer-threads.com/lists/linux/kernel/1971723?search_string=chen%20hanxiao;#1971723
>>
>> but it seems complicated implemented by procfs, the original discussion at:
>> http://www.gossamer-threads.com/lists/linux/kernel/2076440?search_string=chen%20hanxiao;#2076440
>
> So please implement it, as Eric suggested, using the ns inode fds
> instead of racy pid_t hints for namespaces.
>
I don't want to loose simple way to use it.
Sometimes caller cannot prevent races (task its child or
locked with with ptrace) or it don't care about them.
What about this design:
pid_t getvpid(pid_t pid, pid_t source, pid_t target)
pid > 0 - get vpid of task
pid = 0 - current pid (= just for symmetry =)
pid < 0 - get vpid of parent task (ppid of -pid)
[ that's really useful for poking isolated pidns ]
source/target > 0 - pid of source/target task
source/target = 0 - use current as source/target
source/target < 0 - use pidns fd (1-arg) as source/target
or the same but without =0 sugar:
pid > 0 - get vpid of task
pid < 0 - get vpid of parent task (ppid of -arg)
source/target > 0 - pid of source/target task
source/target <= 0 - use pidns fd (-arg) as source/target
libc caches current pid, extra getpid shouldn't be a problem.
--
Konstantin
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web