Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / release / picobsd / tinyware / sps / sps.c
1 /*-
2  * Copyright (c) 1998 Andrzej Bialecki
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/release/picobsd/tinyware/sps/sps.c,v 1.2 1999/08/28 01:34:01 peter Exp $
27  * $DragonFly: src/release/picobsd/tinyware/sps/Attic/sps.c,v 1.2 2003/06/17 04:27:21 dillon Exp $
28  */
29
30 /*
31  * Small replacement for ps(1) - uses only sysctl(3) to retrieve info
32  */
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <sys/param.h>
38 #include <sys/sysctl.h>
39 #include <sys/stat.h>
40 #include <sys/proc.h>
41 #include <sys/user.h>
42
43 char p_stat[]="?iRSTZ";
44
45 int
46 main(int argc, char *argv[])
47 {
48         int mib[3],i=0,num,len;
49         struct kinfo_proc kp,*t,*u;
50         char buf[20],vty[5],pst[5];
51         int ma,mi;
52
53         mib[0]=CTL_KERN;
54         mib[1]=KERN_PROC;
55         mib[2]=KERN_PROC_ALL;
56         if(sysctl(mib,3,NULL,&len,NULL,0)) {
57                 perror("sysctl sizing");
58                 exit(1);
59         }
60         t=(struct kinfo_proc *)malloc(len);
61         if(sysctl(mib,3,t,&len,NULL,0)) {
62                 perror("sysctl info");
63                 exit(1);
64         }
65         num=len / sizeof(struct kinfo_proc);
66         i=0;
67         printf("USERNAME  PID PPID PRI NICE TTY STAT WCHAN   COMMAND\n");
68         while(i<num) {
69                 u=(t+num-i-1);
70                 ma=major(u->kp_eproc.e_tdev);
71                 mi=minor(u->kp_eproc.e_tdev);
72                 switch(ma) {
73                 case 255:
74                         strcpy(vty,"??");
75                         break;
76                 case 12:
77                         if(mi!=255) {
78                                 sprintf(vty,"v%d",mi);
79                                 break;
80                         }
81                         /* FALLTHROUGH */
82                 case 0:
83                         strcpy(vty,"con");
84                         break;
85                 case 5:
86                         sprintf(vty,"p%d",mi);
87                         break;
88                 }
89                 sprintf(pst,"%c",p_stat[u->kp_proc.p_stat]);
90                 printf("%8s%5d%5d %3d %4d %3s %-4s %-7s (%s)\n",
91                         u->kp_eproc.e_login,
92                         u->kp_proc.p_pid,
93                         u->kp_eproc.e_ppid,
94                         u->kp_proc.p_priority,
95                         u->kp_proc.p_nice,
96                         vty,
97                         pst,
98                         u->kp_eproc.e_wmesg,
99                         u->kp_proc.p_comm);
100                 i++;
101         }
102         free(t);
103         exit(0);
104
105 }