xref: /freebsd/sys/fs/procfs/procfs_status.c (revision c8997bf02ac41549392905cc4b2d7cbaa113c67e)
1d167cf6fSWarner Losh /*-
2df8bae1dSRodney W. Grimes  * Copyright (c) 1993 Jan-Simon Pendry
3df8bae1dSRodney W. Grimes  * Copyright (c) 1993
4df8bae1dSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
5df8bae1dSRodney W. Grimes  *
6df8bae1dSRodney W. Grimes  * This code is derived from software contributed to Berkeley by
7df8bae1dSRodney W. Grimes  * Jan-Simon Pendry.
8df8bae1dSRodney W. Grimes  *
9df8bae1dSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
10df8bae1dSRodney W. Grimes  * modification, are permitted provided that the following conditions
11df8bae1dSRodney W. Grimes  * are met:
12df8bae1dSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
13df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
14df8bae1dSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
15df8bae1dSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
16df8bae1dSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
17df8bae1dSRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18df8bae1dSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19df8bae1dSRodney W. Grimes  *    without specific prior written permission.
20df8bae1dSRodney W. Grimes  *
21df8bae1dSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22df8bae1dSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23df8bae1dSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24df8bae1dSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25df8bae1dSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26df8bae1dSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27df8bae1dSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28df8bae1dSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29df8bae1dSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30df8bae1dSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31df8bae1dSRodney W. Grimes  * SUCH DAMAGE.
32df8bae1dSRodney W. Grimes  *
33996c772fSJohn Dyson  *	@(#)procfs_status.c	8.4 (Berkeley) 6/15/94
34df8bae1dSRodney W. Grimes  *
35996c772fSJohn Dyson  * From:
36a21759a1SBruce Evans  *	$Id: procfs_status.c,v 3.1 1993/12/15 09:40:17 jsp Exp $
37c3aac50fSPeter Wemm  * $FreeBSD$
38df8bae1dSRodney W. Grimes  */
39df8bae1dSRodney W. Grimes 
40df8bae1dSRodney W. Grimes #include <sys/param.h>
4187ccef7bSDag-Erling Smørgrav #include <sys/kernel.h>
42df8bae1dSRodney W. Grimes #include <sys/systm.h>
43fb919e4dSMark Murray #include <sys/exec.h>
44fb919e4dSMark Murray #include <sys/lock.h>
45fb919e4dSMark Murray #include <sys/mutex.h>
4601137630SRobert Watson #include <sys/jail.h>
4701137630SRobert Watson #include <sys/malloc.h>
48f591779bSSeigo Tanimura #include <sys/mutex.h>
49f591779bSSeigo Tanimura #include <sys/sx.h>
50fb919e4dSMark Murray #include <sys/proc.h>
51df8bae1dSRodney W. Grimes #include <sys/resourcevar.h>
523a669c52SDag-Erling Smørgrav #include <sys/sbuf.h>
5305ba50f5SJake Burkholder #include <sys/sysent.h>
54fb919e4dSMark Murray #include <sys/tty.h>
55df8bae1dSRodney W. Grimes 
5663a99273SMarcel Moolenaar #include <vm/vm.h>
5763a99273SMarcel Moolenaar #include <vm/pmap.h>
5863a99273SMarcel Moolenaar #include <vm/vm_param.h>
59fb919e4dSMark Murray 
603a669c52SDag-Erling Smørgrav #include <fs/pseudofs/pseudofs.h>
6199d300a1SRuslan Ermilov #include <fs/procfs/procfs.h>
6263a99273SMarcel Moolenaar 
63df8bae1dSRodney W. Grimes int
643a669c52SDag-Erling Smørgrav procfs_doprocstatus(PFS_FILL_ARGS)
65df8bae1dSRodney W. Grimes {
66df8bae1dSRodney W. Grimes 	struct session *sess;
67a21759a1SBruce Evans 	struct thread *tdfirst;
68df8bae1dSRodney W. Grimes 	struct tty *tp;
69df8bae1dSRodney W. Grimes 	struct ucred *cr;
70f3640361SJohn Baldwin 	const char *wmesg;
713a669c52SDag-Erling Smørgrav 	char *pc;
72df8bae1dSRodney W. Grimes 	char *sep;
73df8bae1dSRodney W. Grimes 	int pid, ppid, pgid, sid;
74df8bae1dSRodney W. Grimes 	int i;
75df8bae1dSRodney W. Grimes 
76df8bae1dSRodney W. Grimes 	pid = p->p_pid;
7730ac5d0fSJohn Baldwin 	PROC_LOCK(p);
78e0f9d286SPeter Wemm 	ppid = p->p_pptr ? p->p_pptr->p_pid : 0;
79df8bae1dSRodney W. Grimes 	pgid = p->p_pgrp->pg_id;
80df8bae1dSRodney W. Grimes 	sess = p->p_pgrp->pg_session;
81f591779bSSeigo Tanimura 	SESS_LOCK(sess);
82df8bae1dSRodney W. Grimes 	sid = sess->s_leader ? sess->s_leader->p_pid : 0;
83df8bae1dSRodney W. Grimes 
8446d7d4a3SPoul-Henning Kamp /* comm pid ppid pgid sid tty ctty,sldr start ut st wmsg
8564606312SBrooks Davis 				euid ruid rgid,egid,groups[1 .. ngroups]
861d08058fSWolfram Schneider */
87b8c8516aSEivind Eklund 
883273a63eSMike Barcroft 	pc = p->p_comm;
893273a63eSMike Barcroft 	do {
903273a63eSMike Barcroft 		if (*pc < 33 || *pc > 126 || *pc == '\\')
913a669c52SDag-Erling Smørgrav 			sbuf_printf(sb, "\\%03o", *pc);
923273a63eSMike Barcroft 		else
933a669c52SDag-Erling Smørgrav 			sbuf_putc(sb, *pc);
943a669c52SDag-Erling Smørgrav 	} while (*++pc);
953a669c52SDag-Erling Smørgrav 	sbuf_printf(sb, " %d %d %d %d ", pid, ppid, pgid, sid);
96df8bae1dSRodney W. Grimes 	if ((p->p_flag & P_CONTROLT) && (tp = sess->s_ttyp))
9746d7d4a3SPoul-Henning Kamp 		sbuf_printf(sb, "%s ", devtoname(tp->t_dev));
98df8bae1dSRodney W. Grimes 	else
9946d7d4a3SPoul-Henning Kamp 		sbuf_printf(sb, "- ");
100df8bae1dSRodney W. Grimes 
101df8bae1dSRodney W. Grimes 	sep = "";
102df8bae1dSRodney W. Grimes 	if (sess->s_ttyvp) {
1033a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, "%sctty", sep);
104df8bae1dSRodney W. Grimes 		sep = ",";
105df8bae1dSRodney W. Grimes 	}
106df8bae1dSRodney W. Grimes 	if (SESS_LEADER(p)) {
1073a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, "%ssldr", sep);
108df8bae1dSRodney W. Grimes 		sep = ",";
109df8bae1dSRodney W. Grimes 	}
110f591779bSSeigo Tanimura 	SESS_UNLOCK(sess);
111b8c8516aSEivind Eklund 	if (*sep != ',') {
1123a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, "noflags");
113b8c8516aSEivind Eklund 	}
114df8bae1dSRodney W. Grimes 
115f3640361SJohn Baldwin 	tdfirst = FIRST_THREAD_IN_PROC(p);
116*c8997bf0SKonstantin Belousov 	thread_lock(tdfirst);
117f3640361SJohn Baldwin 	if (tdfirst->td_wchan != NULL) {
118f3640361SJohn Baldwin 		KASSERT(tdfirst->td_wmesg != NULL,
119f3640361SJohn Baldwin 		    ("wchan %p has no wmesg", tdfirst->td_wchan));
120f3640361SJohn Baldwin 		wmesg = tdfirst->td_wmesg;
121f3640361SJohn Baldwin 	} else
122f3640361SJohn Baldwin 		wmesg = "nochan";
123*c8997bf0SKonstantin Belousov 	thread_unlock(tdfirst);
124f3640361SJohn Baldwin 
125b61ce5b0SJeff Roberson 	if (p->p_flag & P_INMEM) {
12687ccef7bSDag-Erling Smørgrav 		struct timeval start, ut, st;
127df8bae1dSRodney W. Grimes 
128b61ce5b0SJeff Roberson 		PROC_SLOCK(p);
12978c85e8dSJohn Baldwin 		calcru(p, &ut, &st);
130a1fe14bcSAttilio Rao 		PROC_SUNLOCK(p);
13187ccef7bSDag-Erling Smørgrav 		start = p->p_stats->p_start;
13287ccef7bSDag-Erling Smørgrav 		timevaladd(&start, &boottime);
13309c00166STom Rhodes 		sbuf_printf(sb, " %jd,%ld %jd,%ld %jd,%ld",
13409c00166STom Rhodes 		    (intmax_t)start.tv_sec, start.tv_usec,
13509c00166STom Rhodes 		    (intmax_t)ut.tv_sec, ut.tv_usec,
13609c00166STom Rhodes 		    (intmax_t)st.tv_sec, st.tv_usec);
137b61ce5b0SJeff Roberson 	} else
1383a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, " -1,-1 -1,-1 -1,-1");
139df8bae1dSRodney W. Grimes 
140f3640361SJohn Baldwin 	sbuf_printf(sb, " %s", wmesg);
141df8bae1dSRodney W. Grimes 
142df8bae1dSRodney W. Grimes 	cr = p->p_ucred;
143df8bae1dSRodney W. Grimes 
1443a669c52SDag-Erling Smørgrav 	sbuf_printf(sb, " %lu %lu %lu",
145ac1e407bSBruce Evans 		(u_long)cr->cr_uid,
146b1fc0ec1SRobert Watson 		(u_long)cr->cr_ruid,
147b1fc0ec1SRobert Watson 		(u_long)cr->cr_rgid);
1481d08058fSWolfram Schneider 
149b1fc0ec1SRobert Watson 	/* egid (cr->cr_svgid) is equal to cr_ngroups[0]
1501d08058fSWolfram Schneider 	   see also getegid(2) in /sys/kern/kern_prot.c */
1511d08058fSWolfram Schneider 
152b8c8516aSEivind Eklund 	for (i = 0; i < cr->cr_ngroups; i++) {
1533a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, ",%lu", (u_long)cr->cr_groups[i]);
154b8c8516aSEivind Eklund 	}
15575c13541SPoul-Henning Kamp 
1560304c731SJamie Gritton 	if (jailed(cr)) {
1570304c731SJamie Gritton 		mtx_lock(&cr->cr_prison->pr_mtx);
1580304c731SJamie Gritton 		sbuf_printf(sb, " %s",
1590304c731SJamie Gritton 		    prison_name(td->td_ucred->cr_prison, cr->cr_prison));
1600304c731SJamie Gritton 		mtx_unlock(&cr->cr_prison->pr_mtx);
16101137630SRobert Watson 	} else {
1623a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, " -");
16301137630SRobert Watson 	}
164590ae816SJohn Baldwin 	PROC_UNLOCK(p);
1653a669c52SDag-Erling Smørgrav 	sbuf_printf(sb, "\n");
166df8bae1dSRodney W. Grimes 
1673a669c52SDag-Erling Smørgrav 	return (0);
168df8bae1dSRodney W. Grimes }
16975ba7757SPeter Wemm 
17075ba7757SPeter Wemm int
1713a669c52SDag-Erling Smørgrav procfs_doproccmdline(PFS_FILL_ARGS)
17275ba7757SPeter Wemm {
17363a99273SMarcel Moolenaar 	struct ps_strings pstr;
174691b3b0dSColin Percival 	char **ps_argvstr;
1753a669c52SDag-Erling Smørgrav 	int error, i;
17675ba7757SPeter Wemm 
17775ba7757SPeter Wemm 	/*
1786153cb20SPoul-Henning Kamp 	 * If we are using the ps/cmdline caching, use that.  Otherwise
1796153cb20SPoul-Henning Kamp 	 * revert back to the old way which only implements full cmdline
18025cc6027SKonstantin Belousov 	 * for the current process and just p->p_comm for all other
1816153cb20SPoul-Henning Kamp 	 * processes.
18263a99273SMarcel Moolenaar 	 * Note that if the argv is no longer available, we deliberately
18363a99273SMarcel Moolenaar 	 * don't fall back on p->p_comm or return an error: the authentic
18463a99273SMarcel Moolenaar 	 * Linux behaviour is to return zero-length in this case.
18575ba7757SPeter Wemm 	 */
18663a99273SMarcel Moolenaar 
187e9b192b7SAlfred Perlstein 	PROC_LOCK(p);
188c5b7c33bSPawel Jakub Dawidek 	if (p->p_args && p_cansee(td, p) == 0) {
1893a669c52SDag-Erling Smørgrav 		sbuf_bcpy(sb, p->p_args->ar_args, p->p_args->ar_length);
190e9b192b7SAlfred Perlstein 		PROC_UNLOCK(p);
191590ae816SJohn Baldwin 		return (0);
192590ae816SJohn Baldwin 	}
193590ae816SJohn Baldwin 	PROC_UNLOCK(p);
194590ae816SJohn Baldwin 	if (p != td->td_proc) {
1953a669c52SDag-Erling Smørgrav 		sbuf_printf(sb, "%.*s", MAXCOMLEN, p->p_comm);
1966153cb20SPoul-Henning Kamp 	} else {
19705ba50f5SJake Burkholder 		error = copyin((void *)p->p_sysent->sv_psstrings, &pstr,
19805ba50f5SJake Burkholder 		    sizeof(pstr));
1993a669c52SDag-Erling Smørgrav 		if (error)
20063a99273SMarcel Moolenaar 			return (error);
201691b3b0dSColin Percival 		if (pstr.ps_nargvstr > ARG_MAX)
202691b3b0dSColin Percival 			return (E2BIG);
203691b3b0dSColin Percival 		ps_argvstr = malloc(pstr.ps_nargvstr * sizeof(char *),
204691b3b0dSColin Percival 		    M_TEMP, M_WAITOK);
205691b3b0dSColin Percival 		error = copyin((void *)pstr.ps_argvstr, ps_argvstr,
206691b3b0dSColin Percival 		    pstr.ps_nargvstr * sizeof(char *));
207691b3b0dSColin Percival 		if (error) {
208691b3b0dSColin Percival 			free(ps_argvstr, M_TEMP);
209691b3b0dSColin Percival 			return (error);
210691b3b0dSColin Percival 		}
2113a669c52SDag-Erling Smørgrav 		for (i = 0; i < pstr.ps_nargvstr; i++) {
212691b3b0dSColin Percival 			sbuf_copyin(sb, ps_argvstr[i], 0);
2133a669c52SDag-Erling Smørgrav 			sbuf_printf(sb, "%c", '\0');
2146153cb20SPoul-Henning Kamp 		}
215691b3b0dSColin Percival 		free(ps_argvstr, M_TEMP);
21663a99273SMarcel Moolenaar 	}
21775ba7757SPeter Wemm 
2183a669c52SDag-Erling Smørgrav 	return (0);
21975ba7757SPeter Wemm }
220