]> asedeno.scripts.mit.edu Git - linux.git/commit
ipc/util: Helpers for making the sysvipc operations pid namespace aware
authorEric W. Biederman <ebiederm@xmission.com>
Fri, 23 Mar 2018 05:22:05 +0000 (00:22 -0500)
committerEric W. Biederman <ebiederm@xmission.com>
Sat, 24 Mar 2018 16:25:37 +0000 (11:25 -0500)
commit03f1fc09180b345582889a344b012d069b3a6dbe
treedcf320097f15d377f9a3c3f51d8bf92e26762f94
parentf83a396d06d499029fe6d32e326605a2b5ca4eff
ipc/util: Helpers for making the sysvipc operations pid namespace aware

Capture the pid namespace when /proc/sysvipc/msg /proc/sysvipc/shm
and /proc/sysvipc/sem are opened, and make it available through
the new helper ipc_seq_pid_ns.

This makes it possible to report the pids in these files in the
pid namespace of the opener of the files.

Implement ipc_update_pid.  A simple impline helper that will only update
a struct pid pointer if the new value does not equal the old value.  This
removes the need for wordy code sequences like:

old = object->pid;
object->pid = new;
put_pid(old);

and

old = object->pid;
if (old != new) {
object->pid = new;
put_pid(old);
}

Allowing the following to be written instead:

ipc_update_pid(&object->pid, new);

Which is easier to read and ensures that the pid reference count is
not touched the old and the new values are the same.  Not touching
the reference count in this case is important to help avoid issues
like af_unix experienced, where multiple threads of the same
process managed to bounce the struct pid between cpu cache lines,
but updating the pids reference count.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
ipc/util.c
ipc/util.h