The patch titled file capabilities: simplify signal check has been removed from the -mm tree. Its filename was file-capabilities-simplify-signal-check.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: file capabilities: simplify signal check From: "Serge E. Hallyn" <serue@xxxxxxxxxx> Simplify the uid equivalence check in cap_task_kill(). Anyone can kill a process owned by the same uid. Without this patch wireshark is reported to fail. Signed-off-by: Serge E. Hallyn <serue@xxxxxxxxxx> Signed-off-by: Andrew G. Morgan <morgan@xxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- security/commoncap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN security/commoncap.c~file-capabilities-simplify-signal-check security/commoncap.c --- a/security/commoncap.c~file-capabilities-simplify-signal-check +++ a/security/commoncap.c @@ -552,7 +552,7 @@ int cap_task_kill(struct task_struct *p, * allowed. * We must preserve legacy signal behavior in this case. */ - if (p->euid == 0 && p->uid == current->uid) + if (p->uid == current->uid) return 0; /* sigcont is permitted within same session */ _ Patches currently in -mm which might be from serue@xxxxxxxxxx are git-unionfs.patch capabilities-implement-per-process-securebits.patch r-o-bind-mounts-stub-functions.patch r-o-bind-mounts-elevate-write-count-for-vfs_rmdir.patch ipc-semaphores-code-factorisation.patch ipc-shared-memory-introduce-shmctl_down.patch ipc-message-queues-introduce-msgctl_down.patch ipc-semaphores-move-the-rwmutex-handling-inside-semctl_down.patch ipc-semaphores-remove-one-unused-parameter-from-semctl_down.patch ipc-get-rid-of-the-use-_setbuf-structure.patch ipc-introduce-ipc_update_perm.patch ipc-consolidate-all-xxxctl_down-functions.patch reiser4-replace-uid==0-check-with-capability.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html