1 /* 2 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for 3 * unrestricted use provided that this legend is included on all tape 4 * media and as a part of the software program in whole or part. Users 5 * may copy or modify Sun RPC without charge, but are not authorized 6 * to license or distribute it to anyone else except as part of a product or 7 * program developed by the user. 8 * 9 * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE 10 * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR 11 * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. 12 * 13 * Sun RPC is provided with no support and without any obligation on the 14 * part of Sun Microsystems, Inc. to assist in its use, correction, 15 * modification or enhancement. 16 * 17 * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE 18 * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC 19 * OR ANY PART THEREOF. 20 * 21 * In no event will Sun Microsystems, Inc. be liable for any lost revenue 22 * or profits or other special, indirect and consequential damages, even if 23 * Sun has been advised of the possibility of such damages. 24 * 25 * Sun Microsystems, Inc. 26 * 2550 Garcia Avenue 27 * Mountain View, California 94043 28 */ 29 30 #ifndef lint 31 #if 0 32 static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro"; 33 static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC"; 34 #endif 35 static const char rcsid[] = 36 "$FreeBSD$"; 37 #endif 38 39 /* 40 * rstat service: built with rstat.x and derived from rpc.rstatd.c 41 * 42 * Copyright (c) 1984 by Sun Microsystems, Inc. 43 */ 44 45 #include <sys/types.h> 46 #include <sys/socket.h> 47 #include <sys/sysctl.h> 48 #include <sys/time.h> 49 #include <sys/resource.h> 50 #include <sys/param.h> 51 52 #include <err.h> 53 #include <errno.h> 54 #include <fcntl.h> 55 #include <limits.h> 56 #include <signal.h> 57 #include <stdio.h> 58 #include <stdlib.h> 59 #include <string.h> 60 #include <syslog.h> 61 #include <unistd.h> 62 #include <devstat.h> 63 64 #include <net/if.h> 65 #include <net/if_mib.h> 66 67 #undef FSHIFT /* Use protocol's shift and scale values */ 68 #undef FSCALE 69 #undef if_ipackets 70 #undef if_ierrors 71 #undef if_opackets 72 #undef if_oerrors 73 #undef if_collisions 74 #include <rpcsvc/rstat.h> 75 76 int haveadisk(void); 77 void updatexfers(int, int *); 78 int stats_service(void); 79 80 extern int from_inetd; 81 int sincelastreq = 0; /* number of alarms since last request */ 82 extern int closedown; 83 84 union { 85 struct stats s1; 86 struct statsswtch s2; 87 struct statstime s3; 88 } stats_all; 89 90 void updatestat(); 91 static int stat_is_init = 0; 92 93 static int cp_time_xlat[RSTAT_CPUSTATES] = { CP_USER, CP_NICE, CP_SYS, 94 CP_IDLE }; 95 static long bsd_cp_time[CPUSTATES]; 96 97 98 #ifndef FSCALE 99 #define FSCALE (1 << 8) 100 #endif 101 102 void 103 stat_init(void) 104 { 105 stat_is_init = 1; 106 alarm(0); 107 updatestat(); 108 (void) signal(SIGALRM, updatestat); 109 alarm(1); 110 } 111 112 statstime * 113 rstatproc_stats_3_svc(void *argp, struct svc_req *rqstp) 114 { 115 if (! stat_is_init) 116 stat_init(); 117 sincelastreq = 0; 118 return(&stats_all.s3); 119 } 120 121 statsswtch * 122 rstatproc_stats_2_svc(void *argp, struct svc_req *rqstp) 123 { 124 if (! stat_is_init) 125 stat_init(); 126 sincelastreq = 0; 127 return(&stats_all.s2); 128 } 129 130 stats * 131 rstatproc_stats_1_svc(void *argp, struct svc_req *rqstp) 132 { 133 if (! stat_is_init) 134 stat_init(); 135 sincelastreq = 0; 136 return(&stats_all.s1); 137 } 138 139 u_int * 140 rstatproc_havedisk_3_svc(void *argp, struct svc_req *rqstp) 141 { 142 static u_int have; 143 144 if (! stat_is_init) 145 stat_init(); 146 sincelastreq = 0; 147 have = haveadisk(); 148 return(&have); 149 } 150 151 u_int * 152 rstatproc_havedisk_2_svc(void *argp, struct svc_req *rqstp) 153 { 154 return(rstatproc_havedisk_3_svc(argp, rqstp)); 155 } 156 157 u_int * 158 rstatproc_havedisk_1_svc(void *argp, struct svc_req *rqstp) 159 { 160 return(rstatproc_havedisk_3_svc(argp, rqstp)); 161 } 162 163 void 164 updatestat(void) 165 { 166 int i, hz; 167 struct clockinfo clockrate; 168 struct ifmibdata ifmd; 169 double avrun[3]; 170 struct timeval tm, btm; 171 int mib[6]; 172 size_t len; 173 int ifcount; 174 175 #ifdef DEBUG 176 fprintf(stderr, "entering updatestat\n"); 177 #endif 178 if (sincelastreq >= closedown) { 179 #ifdef DEBUG 180 fprintf(stderr, "about to closedown\n"); 181 #endif 182 if (from_inetd) 183 exit(0); 184 else { 185 stat_is_init = 0; 186 return; 187 } 188 } 189 sincelastreq++; 190 191 mib[0] = CTL_KERN; 192 mib[1] = KERN_CLOCKRATE; 193 len = sizeof clockrate; 194 if (sysctl(mib, 2, &clockrate, &len, 0, 0) < 0) { 195 syslog(LOG_ERR, "sysctl(kern.clockrate): %m"); 196 exit(1); 197 } 198 hz = clockrate.hz; 199 200 len = sizeof(bsd_cp_time); 201 if (sysctlbyname("kern.cp_time", bsd_cp_time, &len, 0, 0) < 0) { 202 syslog(LOG_ERR, "sysctl(kern.cp_time): %m"); 203 exit(1); 204 } 205 for(i = 0; i < RSTAT_CPUSTATES ; i++) 206 stats_all.s1.cp_time[i] = bsd_cp_time[cp_time_xlat[i]]; 207 208 (void)getloadavg(avrun, sizeof(avrun) / sizeof(avrun[0])); 209 210 stats_all.s2.avenrun[0] = avrun[0] * FSCALE; 211 stats_all.s2.avenrun[1] = avrun[1] * FSCALE; 212 stats_all.s2.avenrun[2] = avrun[2] * FSCALE; 213 214 mib[0] = CTL_KERN; 215 mib[1] = KERN_BOOTTIME; 216 len = sizeof btm; 217 if (sysctl(mib, 2, &btm, &len, 0, 0) < 0) { 218 syslog(LOG_ERR, "sysctl(kern.boottime): %m"); 219 exit(1); 220 } 221 222 stats_all.s2.boottime.tv_sec = btm.tv_sec; 223 stats_all.s2.boottime.tv_usec = btm.tv_usec; 224 225 226 #ifdef DEBUG 227 fprintf(stderr, "%d %d %d %d\n", stats_all.s1.cp_time[0], 228 stats_all.s1.cp_time[1], stats_all.s1.cp_time[2], stats_all.s1.cp_time[3]); 229 #endif 230 231 #define FETCH_CNT(stat, cnt) do { \ 232 len = sizeof((stat)); \ 233 if (sysctlbyname("vm.stats." #cnt , &(stat), &len, 0, 0) < 0) { \ 234 syslog(LOG_ERR, "sysctl(vm.stats." #cnt "): %m"); \ 235 exit(1); \ 236 } \ 237 } while (0) 238 239 FETCH_CNT(stats_all.s1.v_pgpgin, vm.v_vnodepgsin); 240 FETCH_CNT(stats_all.s1.v_pgpgout, vm.v_vnodepgsout); 241 FETCH_CNT(stats_all.s1.v_pswpin, vm.v_swappgsin); 242 FETCH_CNT(stats_all.s1.v_pswpout, vm.v_swappgsout); 243 FETCH_CNT(stats_all.s1.v_intr, sys.v_intr); 244 FETCH_CNT(stats_all.s2.v_swtch, sys.v_swtch); 245 (void)gettimeofday(&tm, NULL); 246 stats_all.s1.v_intr -= hz*(tm.tv_sec - btm.tv_sec) + 247 hz*(tm.tv_usec - btm.tv_usec)/1000000; 248 249 /* update disk transfers */ 250 updatexfers(RSTAT_DK_NDRIVE, stats_all.s1.dk_xfer); 251 252 mib[0] = CTL_NET; 253 mib[1] = PF_LINK; 254 mib[2] = NETLINK_GENERIC; 255 mib[3] = IFMIB_SYSTEM; 256 mib[4] = IFMIB_IFCOUNT; 257 len = sizeof ifcount; 258 if (sysctl(mib, 5, &ifcount, &len, 0, 0) < 0) { 259 syslog(LOG_ERR, "sysctl(net.link.generic.system.ifcount): %m"); 260 exit(1); 261 } 262 263 stats_all.s1.if_ipackets = 0; 264 stats_all.s1.if_opackets = 0; 265 stats_all.s1.if_ierrors = 0; 266 stats_all.s1.if_oerrors = 0; 267 stats_all.s1.if_collisions = 0; 268 for (i = 1; i <= ifcount; i++) { 269 len = sizeof ifmd; 270 mib[3] = IFMIB_IFDATA; 271 mib[4] = i; 272 mib[5] = IFDATA_GENERAL; 273 if (sysctl(mib, 6, &ifmd, &len, 0, 0) < 0) { 274 if (errno == ENOENT) 275 continue; 276 277 syslog(LOG_ERR, "sysctl(net.link.ifdata.%d.general)" 278 ": %m", i); 279 exit(1); 280 } 281 282 stats_all.s1.if_ipackets += ifmd.ifmd_data.ifi_ipackets; 283 stats_all.s1.if_opackets += ifmd.ifmd_data.ifi_opackets; 284 stats_all.s1.if_ierrors += ifmd.ifmd_data.ifi_ierrors; 285 stats_all.s1.if_oerrors += ifmd.ifmd_data.ifi_oerrors; 286 stats_all.s1.if_collisions += ifmd.ifmd_data.ifi_collisions; 287 } 288 (void)gettimeofday(&tm, NULL); 289 stats_all.s3.curtime.tv_sec = tm.tv_sec; 290 stats_all.s3.curtime.tv_usec = tm.tv_usec; 291 alarm(1); 292 } 293 294 /* 295 * returns true if have a disk 296 */ 297 int 298 haveadisk(void) 299 { 300 register int i; 301 struct statinfo stats; 302 int num_devices, retval = 0; 303 304 if ((num_devices = devstat_getnumdevs(NULL)) < 0) { 305 syslog(LOG_ERR, "rstatd: can't get number of devices: %s", 306 devstat_errbuf); 307 exit(1); 308 } 309 310 if (devstat_checkversion(NULL) < 0) { 311 syslog(LOG_ERR, "rstatd: %s", devstat_errbuf); 312 exit(1); 313 } 314 315 stats.dinfo = (struct devinfo *)malloc(sizeof(struct devinfo)); 316 bzero(stats.dinfo, sizeof(struct devinfo)); 317 318 if (devstat_getdevs(NULL, &stats) == -1) { 319 syslog(LOG_ERR, "rstatd: can't get device list: %s", 320 devstat_errbuf); 321 exit(1); 322 } 323 for (i = 0; i < stats.dinfo->numdevs; i++) { 324 if (((stats.dinfo->devices[i].device_type 325 & DEVSTAT_TYPE_MASK) == DEVSTAT_TYPE_DIRECT) 326 && ((stats.dinfo->devices[i].device_type 327 & DEVSTAT_TYPE_PASS) == 0)) { 328 retval = 1; 329 break; 330 } 331 } 332 333 if (stats.dinfo->mem_ptr) 334 free(stats.dinfo->mem_ptr); 335 336 free(stats.dinfo); 337 return(retval); 338 } 339 340 void 341 updatexfers(int numdevs, int *devs) 342 { 343 register int i, j, k, t; 344 struct statinfo stats; 345 int num_devices = 0; 346 u_int64_t total_transfers; 347 348 if ((num_devices = devstat_getnumdevs(NULL)) < 0) { 349 syslog(LOG_ERR, "rstatd: can't get number of devices: %s", 350 devstat_errbuf); 351 exit(1); 352 } 353 354 if (devstat_checkversion(NULL) < 0) { 355 syslog(LOG_ERR, "rstatd: %s", devstat_errbuf); 356 exit(1); 357 } 358 359 stats.dinfo = (struct devinfo *)malloc(sizeof(struct devinfo)); 360 bzero(stats.dinfo, sizeof(struct devinfo)); 361 362 if (devstat_getdevs(NULL, &stats) == -1) { 363 syslog(LOG_ERR, "rstatd: can't get device list: %s", 364 devstat_errbuf); 365 exit(1); 366 } 367 368 for (i = 0, j = 0; i < stats.dinfo->numdevs && j < numdevs; i++) { 369 if (((stats.dinfo->devices[i].device_type 370 & DEVSTAT_TYPE_MASK) == DEVSTAT_TYPE_DIRECT) 371 && ((stats.dinfo->devices[i].device_type 372 & DEVSTAT_TYPE_PASS) == 0)) { 373 total_transfers = 0; 374 for (k = 0; k < DEVSTAT_N_TRANS_FLAGS; k++) 375 total_transfers += 376 stats.dinfo->devices[i].operations[k]; 377 /* 378 * XXX KDM If the total transfers for this device 379 * are greater than the amount we can fit in a 380 * signed integer, just set them to the maximum 381 * amount we can fit in a signed integer. I have a 382 * feeling that the rstat protocol assumes 32-bit 383 * integers, so this could well break on a 64-bit 384 * architecture like the Alpha. 385 */ 386 if (total_transfers > INT_MAX) 387 t = INT_MAX; 388 else 389 t = total_transfers; 390 devs[j] = t; 391 j++; 392 } 393 } 394 395 if (stats.dinfo->mem_ptr) 396 free(stats.dinfo->mem_ptr); 397 398 free(stats.dinfo); 399 } 400 401 void 402 rstat_service(struct svc_req *rqstp, SVCXPRT *transp) 403 { 404 union { 405 int fill; 406 } argument; 407 char *result; 408 bool_t (*xdr_argument)(), (*xdr_result)(); 409 char *(*local)(); 410 411 switch (rqstp->rq_proc) { 412 case NULLPROC: 413 (void)svc_sendreply(transp, (xdrproc_t)xdr_void, NULL); 414 goto leave; 415 416 case RSTATPROC_STATS: 417 xdr_argument = xdr_void; 418 xdr_result = xdr_statstime; 419 switch (rqstp->rq_vers) { 420 case RSTATVERS_ORIG: 421 local = (char *(*)()) rstatproc_stats_1_svc; 422 break; 423 case RSTATVERS_SWTCH: 424 local = (char *(*)()) rstatproc_stats_2_svc; 425 break; 426 case RSTATVERS_TIME: 427 local = (char *(*)()) rstatproc_stats_3_svc; 428 break; 429 default: 430 svcerr_progvers(transp, RSTATVERS_ORIG, RSTATVERS_TIME); 431 goto leave; 432 /*NOTREACHED*/ 433 } 434 break; 435 436 case RSTATPROC_HAVEDISK: 437 xdr_argument = xdr_void; 438 xdr_result = xdr_u_int; 439 switch (rqstp->rq_vers) { 440 case RSTATVERS_ORIG: 441 local = (char *(*)()) rstatproc_havedisk_1_svc; 442 break; 443 case RSTATVERS_SWTCH: 444 local = (char *(*)()) rstatproc_havedisk_2_svc; 445 break; 446 case RSTATVERS_TIME: 447 local = (char *(*)()) rstatproc_havedisk_3_svc; 448 break; 449 default: 450 svcerr_progvers(transp, RSTATVERS_ORIG, RSTATVERS_TIME); 451 goto leave; 452 /*NOTREACHED*/ 453 } 454 break; 455 456 default: 457 svcerr_noproc(transp); 458 goto leave; 459 } 460 bzero((char *)&argument, sizeof(argument)); 461 if (!svc_getargs(transp, (xdrproc_t)xdr_argument, &argument)) { 462 svcerr_decode(transp); 463 goto leave; 464 } 465 result = (*local)(&argument, rqstp); 466 if (result != NULL && 467 !svc_sendreply(transp, (xdrproc_t)xdr_result, result)) { 468 svcerr_systemerr(transp); 469 } 470 if (!svc_freeargs(transp, (xdrproc_t)xdr_argument, &argument)) 471 errx(1, "unable to free arguments"); 472 leave: 473 if (from_inetd) 474 exit(0); 475 } 476