]>
git.saurik.com Git - apple/network_cmds.git/blob - ruptime.tproj/ruptime.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 * Copyright (c) 1983, 1993, 1994
26 * The Regents of the University of California. All rights reserved.
28 * Redistribution and use in source and binary forms, with or without
29 * modification, are permitted provided that the following conditions
31 * 1. Redistributions of source code must retain the above copyright
32 * notice, this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright
34 * notice, this list of conditions and the following disclaimer in the
35 * documentation and/or other materials provided with the distribution.
36 * 3. All advertising materials mentioning features or use of this software
37 * must display the following acknowledgement:
38 * This product includes software developed by the University of
39 * California, Berkeley and its contributors.
40 * 4. Neither the name of the University nor the names of its contributors
41 * may be used to endorse or promote products derived from this software
42 * without specific prior written permission.
44 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
45 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
48 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 static char copyright
[] =
60 "@(#) Copyright (c) 1983, 1993, 1994\n\
61 The Regents of the University of California. All rights reserved.\n";
64 #include <sys/param.h>
66 #include <protocols/rwhod.h>
85 #define ISDOWN(h) (now - (h)->hs_wd->wd_recvtime > 11 * 60)
86 #define WHDRSIZE (sizeof (awhod) - sizeof (awhod.wd_we))
92 int hscmp
__P((const void *, const void *));
93 char *interval
__P((time_t, char *));
94 int lcmp
__P((const void *, const void *));
95 void morehosts
__P((void));
96 int tcmp
__P((const void *, const void *));
97 int ucmp
__P((const void *, const void *));
98 void usage
__P((void));
112 int aflg
, cc
, ch
, fd
, i
, maxloadav
;
113 char buf
[sizeof(struct whod
)];
114 int (*cmp
) __P((const void *, const void *));
118 while ((ch
= getopt(argc
, argv
, "alrut")) != EOF
)
144 if (chdir(_PATH_RWHODIR
) || (dirp
= opendir(".")) == NULL
)
145 err(1, "%s", _PATH_RWHODIR
);
148 for (nhosts
= hspace
= 0; (dp
= readdir(dirp
)) != NULL
;) {
149 if (dp
->d_ino
== 0 || strncmp(dp
->d_name
, "whod.", 5))
151 if ((fd
= open(dp
->d_name
, O_RDONLY
, 0)) < 0) {
152 warn("%s", dp
->d_name
);
155 cc
= read(fd
, buf
, sizeof(struct whod
));
160 if (nhosts
== hspace
) {
162 realloc(hs
, (hspace
+= 40) * sizeof(*hs
))) == NULL
)
167 if ((hsp
->hs_wd
= malloc((size_t)WHDRSIZE
)) == NULL
)
169 memmove(hsp
->hs_wd
, buf
, (size_t)WHDRSIZE
);
171 for (wd
= (struct whod
*)buf
, i
= 0; i
< 2; ++i
)
172 if (wd
->wd_loadav
[i
] > maxloadav
)
173 maxloadav
= wd
->wd_loadav
[i
];
175 for (hsp
->hs_nusers
= 0,
176 we
= (struct whoent
*)(buf
+ cc
); --we
>= wd
->wd_we
;)
177 if (aflg
|| we
->we_idle
< 3600)
183 errx(0, "no hosts in %s.", _PATH_RWHODIR
);
186 qsort(hs
, nhosts
, sizeof(hs
[0]), cmp
);
187 for (i
= 0; i
< nhosts
; i
++) {
190 (void)printf("%-12.12s%s\n", hsp
->hs_wd
->wd_hostname
,
191 interval(now
- hsp
->hs_wd
->wd_recvtime
, "down"));
195 "%-12.12s%s, %4d user%s load %*.2f, %*.2f, %*.2f\n",
196 hsp
->hs_wd
->wd_hostname
,
197 interval((time_t)hsp
->hs_wd
->wd_sendtime
-
198 (time_t)hsp
->hs_wd
->wd_boottime
, " up"),
200 hsp
->hs_nusers
== 1 ? ", " : "s,",
201 maxloadav
>= 1000 ? 5 : 4,
202 hsp
->hs_wd
->wd_loadav
[0] / 100.0,
203 maxloadav
>= 1000 ? 5 : 4,
204 hsp
->hs_wd
->wd_loadav
[1] / 100.0,
205 maxloadav
>= 1000 ? 5 : 4,
206 hsp
->hs_wd
->wd_loadav
[2] / 100.0);
212 interval(tval
, updown
)
216 static char resbuf
[32];
217 int days
, hours
, minutes
;
219 if (tval
< 0 || tval
> DAYSPERNYEAR
* SECSPERDAY
) {
220 (void)snprintf(resbuf
, sizeof(resbuf
), " %s ??:??", updown
);
223 /* round to minutes. */
224 minutes
= (tval
+ (SECSPERMIN
- 1)) / SECSPERMIN
;
225 hours
= minutes
/ MINSPERHOUR
;
226 minutes
%= MINSPERHOUR
;
227 days
= hours
/ HOURSPERDAY
;
228 hours
%= HOURSPERDAY
;
230 (void)snprintf(resbuf
, sizeof(resbuf
),
231 "%s %2d+%02d:%02d", updown
, days
, hours
, minutes
);
233 (void)snprintf(resbuf
, sizeof(resbuf
),
234 "%s %2d:%02d", updown
, hours
, minutes
);
238 #define HS(a) ((struct hs *)(a))
240 /* Alphabetical comparison. */
246 strcmp(HS(a1
)->hs_wd
->wd_hostname
, HS(a2
)->hs_wd
->wd_hostname
));
249 /* Load average comparison. */
256 return (tcmp(a1
, a2
));
259 else if (ISDOWN(HS(a2
)))
263 (HS(a2
)->hs_wd
->wd_loadav
[0] - HS(a1
)->hs_wd
->wd_loadav
[0]));
266 /* Number of users comparison. */
273 return (tcmp(a1
, a2
));
276 else if (ISDOWN(HS(a2
)))
279 return (rflg
* (HS(a2
)->hs_nusers
- HS(a1
)->hs_nusers
));
282 /* Uptime comparison. */
288 (ISDOWN(HS(a2
)) ? HS(a2
)->hs_wd
->wd_recvtime
- now
289 : HS(a2
)->hs_wd
->wd_sendtime
- HS(a2
)->hs_wd
->wd_boottime
)
291 (ISDOWN(HS(a1
)) ? HS(a1
)->hs_wd
->wd_recvtime
- now
292 : HS(a1
)->hs_wd
->wd_sendtime
- HS(a1
)->hs_wd
->wd_boottime
)
299 (void)fprintf(stderr
, "usage: ruptime [-alrut]\n");