git: 2e69ba48b97d - stable/13 - procctl(2): add consistent shortcut P_ID:0 as curproc

From: Konstantin Belousov <kib_at_FreeBSD.org>
Date: Tue, 26 Oct 2021 02:37:06 UTC
The branch stable/13 has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=2e69ba48b97dffa244a4d2d47382b6fbcf6e78f4

commit 2e69ba48b97dffa244a4d2d47382b6fbcf6e78f4
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2021-10-15 19:01:42 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2021-10-26 02:26:26 +0000

    procctl(2): add consistent shortcut P_ID:0 as curproc
    
    (cherry picked from commit f833ab9dd187328306fa1601330fbc8332392abe)
---
 lib/libc/sys/procctl.2  |  2 ++
 sys/kern/kern_procctl.c | 16 +++++++++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/lib/libc/sys/procctl.2 b/lib/libc/sys/procctl.2
index 4308520b8974..9ceea00191e0 100644
--- a/lib/libc/sys/procctl.2
+++ b/lib/libc/sys/procctl.2
@@ -62,6 +62,8 @@ The following identifier types are supported:
 .It Dv P_PID
 Control the process with the process ID
 .Fa id .
+.Fa id
+zero is a shortcut for the calling process ID.
 .It Dv P_PGID
 Control processes belonging to the process group with the ID
 .Fa id .
diff --git a/sys/kern/kern_procctl.c b/sys/kern/kern_procctl.c
index 90c5e63c7219..613fabc4ca34 100644
--- a/sys/kern/kern_procctl.c
+++ b/sys/kern/kern_procctl.c
@@ -904,12 +904,18 @@ kern_procctl(struct thread *td, idtype_t idtype, id_t id, int com, void *data)
 
 	switch (idtype) {
 	case P_PID:
-		p = pfind(id);
-		if (p == NULL) {
-			error = ESRCH;
-			break;
+		if (id == 0) {
+			p = td->td_proc;
+			error = 0;
+			PROC_LOCK(p);
+		} else {
+			p = pfind(id);
+			if (p == NULL) {
+				error = ESRCH;
+				break;
+			}
+			error = p_cansee(td, p);
 		}
-		error = p_cansee(td, p);
 		if (error == 0)
 			error = kern_procctl_single(td, p, com, data);
 		PROC_UNLOCK(p);