]>
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 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1983, 1993, 1994
27 * The Regents of the University of California. All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 3. All advertising materials mentioning features or use of this software
38 * must display the following acknowledgement:
39 * This product includes software developed by the University of
40 * California, Berkeley and its contributors.
41 * 4. Neither the name of the University nor the names of its contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
46 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
49 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
50 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
53 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
54 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 static char copyright
[] =
61 "@(#) Copyright (c) 1983, 1993, 1994\n\
62 The Regents of the University of California. All rights reserved.\n";
65 #include <sys/param.h>
67 #include <protocols/rwhod.h>
86 #define ISDOWN(h) (now - (h)->hs_wd->wd_recvtime > 11 * 60)
87 #define WHDRSIZE (sizeof (awhod) - sizeof (awhod.wd_we))
93 int hscmp
__P((const void *, const void *));
94 char *interval
__P((time_t, char *));
95 int lcmp
__P((const void *, const void *));
96 void morehosts
__P((void));
97 int tcmp
__P((const void *, const void *));
98 int ucmp
__P((const void *, const void *));
99 void usage
__P((void));
113 int aflg
, cc
, ch
, fd
, i
, maxloadav
;
114 char buf
[sizeof(struct whod
)];
115 int (*cmp
) __P((const void *, const void *));
119 while ((ch
= getopt(argc
, argv
, "alrut")) != EOF
)
145 if (chdir(_PATH_RWHODIR
) || (dirp
= opendir(".")) == NULL
)
146 err(1, "%s", _PATH_RWHODIR
);
149 for (nhosts
= hspace
= 0; (dp
= readdir(dirp
)) != NULL
;) {
150 if (dp
->d_ino
== 0 || strncmp(dp
->d_name
, "whod.", 5))
152 if ((fd
= open(dp
->d_name
, O_RDONLY
, 0)) < 0) {
153 warn("%s", dp
->d_name
);
156 cc
= read(fd
, buf
, sizeof(struct whod
));
161 if (nhosts
== hspace
) {
163 realloc(hs
, (hspace
+= 40) * sizeof(*hs
))) == NULL
)
168 if ((hsp
->hs_wd
= malloc((size_t)WHDRSIZE
)) == NULL
)
170 memmove(hsp
->hs_wd
, buf
, (size_t)WHDRSIZE
);
172 for (wd
= (struct whod
*)buf
, i
= 0; i
< 2; ++i
)
173 if (wd
->wd_loadav
[i
] > maxloadav
)
174 maxloadav
= wd
->wd_loadav
[i
];
176 for (hsp
->hs_nusers
= 0,
177 we
= (struct whoent
*)(buf
+ cc
); --we
>= wd
->wd_we
;)
178 if (aflg
|| we
->we_idle
< 3600)
184 errx(0, "no hosts in %s.", _PATH_RWHODIR
);
187 qsort(hs
, nhosts
, sizeof(hs
[0]), cmp
);
188 for (i
= 0; i
< nhosts
; i
++) {
191 (void)printf("%-12.12s%s\n", hsp
->hs_wd
->wd_hostname
,
192 interval(now
- hsp
->hs_wd
->wd_recvtime
, "down"));
196 "%-12.12s%s, %4d user%s load %*.2f, %*.2f, %*.2f\n",
197 hsp
->hs_wd
->wd_hostname
,
198 interval((time_t)hsp
->hs_wd
->wd_sendtime
-
199 (time_t)hsp
->hs_wd
->wd_boottime
, " up"),
201 hsp
->hs_nusers
== 1 ? ", " : "s,",
202 maxloadav
>= 1000 ? 5 : 4,
203 hsp
->hs_wd
->wd_loadav
[0] / 100.0,
204 maxloadav
>= 1000 ? 5 : 4,
205 hsp
->hs_wd
->wd_loadav
[1] / 100.0,
206 maxloadav
>= 1000 ? 5 : 4,
207 hsp
->hs_wd
->wd_loadav
[2] / 100.0);
213 interval(tval
, updown
)
217 static char resbuf
[32];
218 int days
, hours
, minutes
;
220 if (tval
< 0 || tval
> DAYSPERNYEAR
* SECSPERDAY
) {
221 (void)snprintf(resbuf
, sizeof(resbuf
), " %s ??:??", updown
);
224 /* round to minutes. */
225 minutes
= (tval
+ (SECSPERMIN
- 1)) / SECSPERMIN
;
226 hours
= minutes
/ MINSPERHOUR
;
227 minutes
%= MINSPERHOUR
;
228 days
= hours
/ HOURSPERDAY
;
229 hours
%= HOURSPERDAY
;
231 (void)snprintf(resbuf
, sizeof(resbuf
),
232 "%s %2d+%02d:%02d", updown
, days
, hours
, minutes
);
234 (void)snprintf(resbuf
, sizeof(resbuf
),
235 "%s %2d:%02d", updown
, hours
, minutes
);
239 #define HS(a) ((struct hs *)(a))
241 /* Alphabetical comparison. */
247 strcmp(HS(a1
)->hs_wd
->wd_hostname
, HS(a2
)->hs_wd
->wd_hostname
));
250 /* Load average comparison. */
257 return (tcmp(a1
, a2
));
260 else if (ISDOWN(HS(a2
)))
264 (HS(a2
)->hs_wd
->wd_loadav
[0] - HS(a1
)->hs_wd
->wd_loadav
[0]));
267 /* Number of users comparison. */
274 return (tcmp(a1
, a2
));
277 else if (ISDOWN(HS(a2
)))
280 return (rflg
* (HS(a2
)->hs_nusers
- HS(a1
)->hs_nusers
));
283 /* Uptime comparison. */
289 (ISDOWN(HS(a2
)) ? HS(a2
)->hs_wd
->wd_recvtime
- now
290 : HS(a2
)->hs_wd
->wd_sendtime
- HS(a2
)->hs_wd
->wd_boottime
)
292 (ISDOWN(HS(a1
)) ? HS(a1
)->hs_wd
->wd_recvtime
- now
293 : HS(a1
)->hs_wd
->wd_sendtime
- HS(a1
)->hs_wd
->wd_boottime
)
300 (void)fprintf(stderr
, "usage: ruptime [-alrut]\n");