2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)rwho.c 8.1 (Berkeley) 6/6/93
35 * $FreeBSD: src/usr.bin/rwho/rwho.c,v 1.13.2.1 2002/03/12 19:49:09 phantom Exp $
36 * $DragonFly: src/usr.bin/rwho/rwho.c,v 1.5 2008/10/16 01:52:33 swildner Exp $
39 #include <sys/param.h>
42 #include <protocols/rwhod.h>
60 char myhost
[sizeof(wd
.wd_hostname
)];
65 #define WHDRSIZE (sizeof (wd) - sizeof (wd.wd_we))
67 * this macro should be shared with ruptime.
69 #define down(w,now) ((now) - (w)->wd_recvtime > 11 * 60)
71 static void usage(void);
72 static int utmpcmp(const void *, const void *);
75 main(int argc
, char **argv
)
82 int width
, d_first
, aflg
;
89 setlocale(LC_TIME
, "");
90 d_first
= (*nl_langinfo(D_MD_ORDER
) == 'd');
92 while ((ch
= getopt(argc
, argv
, "a")) != -1)
107 if (chdir(_PATH_RWHODIR
) || (dirp
= opendir(".")) == NULL
)
108 err(1, "%s", _PATH_RWHODIR
);
111 while ((dp
= readdir(dirp
))) {
112 if (dp
->d_ino
== 0 || strncmp(dp
->d_name
, "whod.", 5))
114 f
= open(dp
->d_name
, O_RDONLY
);
117 cc
= read(f
, (char *)&wd
, sizeof (struct whod
));
128 for (n
= cc
/ sizeof (struct whoent
); n
> 0; n
--) {
129 if (aflg
== 0 && we
->we_idle
>= 60*60) {
133 if (nusers
>= NUSERS
)
134 errx(1, "too many users");
135 mp
->myutmp
= we
->we_utmp
; mp
->myidle
= we
->we_idle
;
136 strcpy(mp
->myhost
, w
->wd_hostname
);
137 nusers
++; we
++; mp
++;
141 qsort((char *)myutmp
, nusers
, sizeof (struct myutmp
), utmpcmp
);
144 for (i
= 0; i
< nusers
; i
++) {
145 /* append one for the blank and use 8 for the out_line */
146 int j
= strlen(mp
->myhost
) + 1 + sizeof(mp
->myutmp
.out_line
);
152 for (i
= 0; i
< nusers
; i
++) {
153 char buf
[BUFSIZ
], cbuf
[80];
155 strftime(cbuf
, sizeof(cbuf
),
156 d_first
? "%e %b %R" : "%b %e %R",
157 localtime((time_t *)&mp
->myutmp
.out_time
));
158 sprintf(buf
, "%s:%-.*s", mp
->myhost
,
159 (int)sizeof(mp
->myutmp
.out_line
), mp
->myutmp
.out_line
);
160 printf("%-*.*s %-*s %s",
161 UT_NAMESIZE
, (int)sizeof(mp
->myutmp
.out_name
),
169 if (mp
->myidle
>= 100*60)
170 mp
->myidle
= 100*60 - 1;
171 if (mp
->myidle
>= 60)
172 printf(" %2d", mp
->myidle
/ 60);
177 printf(":%02d", mp
->myidle
% 60);
189 fprintf(stderr
, "usage: rwho [-a]\n");
193 #define MYUTMP(a) ((const struct myutmp *)(a))
196 utmpcmp(const void *u1
, const void *u2
)
200 rc
= strncmp(MYUTMP(u1
)->myutmp
.out_name
, MYUTMP(u2
)->myutmp
.out_name
,
201 sizeof(MYUTMP(u2
)->myutmp
.out_name
));
204 rc
= strcmp(MYUTMP(u1
)->myhost
, MYUTMP(u2
)->myhost
);
207 return (strncmp(MYUTMP(u1
)->myutmp
.out_line
, MYUTMP(u2
)->myutmp
.out_line
,
208 sizeof(MYUTMP(u2
)->myutmp
.out_line
)));