treewide: readdir64() -> readdir(), readdir64_r() -> readdir_r()
[unleashed.git] / usr / src / cmd / ctstat / ctstat.c
blobe9e1b8f6e2f6c3d67fbfc4664b5ba4b8f2810cff
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
22 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
25 #include <sys/types.h>
26 #include <sys/ctfs.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <string.h>
32 #include <errno.h>
33 #include <libuutil.h>
34 #include <sys/contract/process.h>
35 #include <sys/contract/device.h>
36 #include <limits.h>
37 #include <libcontract.h>
38 #include <libcontract_priv.h>
39 #include <dirent.h>
41 #include <locale.h>
42 #include <langinfo.h>
44 #include "statcommon.h"
46 static uint_t timestamp_fmt = NODATE;
48 static int opt_verbose = 0;
49 static int opt_showall = 0;
52 * usage
54 * Educate the user.
56 static void
57 usage(void)
59 (void) fprintf(stderr, gettext("Usage: %s [-a] [-i ctidlist] "
60 "[-t typelist] [-T d|u] [-v] [interval [count]]\n"), uu_getpname());
61 exit(UU_EXIT_USAGE);
65 * mystrtoul
67 * Convert a string into an int in [0, INT_MAX]. Exit if the argument
68 * doen't fit this description.
70 static int
71 mystrtoul(const char *arg)
73 unsigned int result;
75 if (uu_strtoint(arg, &result, sizeof (result), 10, 0, INT_MAX) == -1) {
76 uu_warn(gettext("invalid numerical argument \"%s\"\n"), arg);
77 usage();
80 return (result);
84 * int_compar
86 * A simple integer comparator. Also used for id_ts, since they're the
87 * same thing.
89 static int
90 int_compar(const void *a1, const void *a2)
92 int id1 = *(int *)a1;
93 int id2 = *(int *)a2;
95 if (id1 > id2)
96 return (1);
97 if (id2 > id1)
98 return (-1);
99 return (0);
102 typedef struct optvect {
103 const char *option;
104 uint_t bit;
105 } optvect_t;
107 static optvect_t option_params[] = {
108 { "inherit", CT_PR_INHERIT },
109 { "noorphan", CT_PR_NOORPHAN },
110 { "pgrponly", CT_PR_PGRPONLY },
111 { "regent", CT_PR_REGENT },
112 { NULL }
115 static optvect_t option_events[] = {
116 { "core", CT_PR_EV_CORE },
117 { "signal", CT_PR_EV_SIGNAL },
118 { "hwerr", CT_PR_EV_HWERR },
119 { "empty", CT_PR_EV_EMPTY },
120 { "fork", CT_PR_EV_FORK },
121 { "exit", CT_PR_EV_EXIT },
122 { NULL }
126 * print_bits
128 * Display a set whose membership is identified by a bitfield.
130 static void
131 print_bits(uint_t bits, optvect_t *desc)
133 int i, printed = 0;
135 for (i = 0; desc[i].option; i++)
136 if (desc[i].bit & bits) {
137 if (printed)
138 (void) putchar(' ');
139 printed = 1;
140 (void) fputs(desc[i].option, stdout);
142 if (printed)
143 (void) putchar('\n');
144 else
145 (void) puts("none");
149 * print_ids
151 * Display a list of ids, sorted.
153 static void
154 print_ids(id_t *ids, uint_t nids)
156 int i;
157 int first = 1;
159 qsort(ids, nids, sizeof (int), int_compar);
161 for (i = 0; i < nids; i++) {
162 /*LINTED*/
163 (void) printf(" %d" + first, ids[i]);
164 first = 0;
166 if (first)
167 (void) puts("none");
168 else
169 (void) putchar('\n');
172 typedef void printfunc_t(ct_stathdl_t);
175 * A structure defining a displayed field. Includes a label to be
176 * printed along side the field value, and a function which extracts
177 * the data from a status structure, formats it, and displays it on
178 * stdout.
180 typedef struct verbout {
181 const char *label; /* field label */
182 printfunc_t *func; /* field display function */
183 } verbout_t;
186 * verb_cookie
188 * Used to display an error encountered when reading a contract status
189 * field.
191 static void
192 verb_error(int err)
194 (void) printf("(error: %s)\n", strerror(err));
198 * verb_cookie
200 * Display the contract's cookie.
202 static void
203 verb_cookie(ct_stathdl_t hdl)
205 (void) printf("%#llx\n", ct_status_get_cookie(hdl));
209 * verb_info
211 * Display the parameters in the parameter set.
213 static void
214 verb_param(ct_stathdl_t hdl)
216 uint_t param;
217 int err;
219 if (err = ct_pr_status_get_param(hdl, &param))
220 verb_error(err);
221 else
222 print_bits(param, option_params);
226 * verb_info
228 * Display the events in the informative event set.
230 static void
231 verb_info(ct_stathdl_t hdl)
233 print_bits(ct_status_get_informative(hdl), option_events);
237 * verb_crit
239 * Display the events in the critical event set.
241 static void
242 verb_crit(ct_stathdl_t hdl)
244 print_bits(ct_status_get_critical(hdl), option_events);
248 * verb_minor
250 * Display the minor device
252 static void
253 verb_minor(ct_stathdl_t hdl)
255 int err;
256 char *buf;
258 if (err = ct_dev_status_get_minor(hdl, &buf))
259 verb_error(err);
260 else
261 (void) printf("%s\n", buf);
265 * verb_state
267 * Display the state of the device
269 static void
270 verb_dev_state(ct_stathdl_t hdl)
272 int err;
273 uint_t state;
275 if (err = ct_dev_status_get_dev_state(hdl, &state))
276 verb_error(err);
277 else
278 (void) printf("%s\n", state == CT_DEV_EV_ONLINE ? "online" :
279 state == CT_DEV_EV_DEGRADED ? "degraded" : "offline");
283 * verb_fatal
285 * Display the events in the fatal event set.
287 static void
288 verb_fatal(ct_stathdl_t hdl)
290 uint_t event;
291 int err;
293 if (err = ct_pr_status_get_fatal(hdl, &event))
294 verb_error(err);
295 else
296 print_bits(event, option_events);
300 * verb_members
302 * Display the list of member contracts.
304 static void
305 verb_members(ct_stathdl_t hdl)
307 pid_t *pids;
308 uint_t npids;
309 int err;
311 if (err = ct_pr_status_get_members(hdl, &pids, &npids)) {
312 verb_error(err);
313 return;
316 print_ids(pids, npids);
320 * verb_inherit
322 * Display the list of inherited contracts.
324 static void
325 verb_inherit(ct_stathdl_t hdl)
327 ctid_t *ctids;
328 uint_t nctids;
329 int err;
331 if (err = ct_pr_status_get_contracts(hdl, &ctids, &nctids))
332 verb_error(err);
333 else
334 print_ids(ctids, nctids);
338 * verb_svc_fmri
340 * Display the process contract service fmri
342 static void
343 verb_svc_fmri(ct_stathdl_t hdl)
345 char *svc_fmri;
346 int err;
347 if (err = ct_pr_status_get_svc_fmri(hdl, &svc_fmri))
348 verb_error(err);
349 else
350 (void) printf("%s\n", svc_fmri);
354 * verb_svc_aux
356 * Display the process contract service fmri auxiliar
358 static void
359 verb_svc_aux(ct_stathdl_t hdl)
361 char *svc_aux;
362 int err;
363 if (err = ct_pr_status_get_svc_aux(hdl, &svc_aux))
364 verb_error(err);
365 else
366 (void) printf("%s\n", svc_aux);
370 * verb_svc_ctid
372 * Display the process contract service fmri ctid
374 static void
375 verb_svc_ctid(ct_stathdl_t hdl)
377 ctid_t svc_ctid;
378 int err;
379 if (err = ct_pr_status_get_svc_ctid(hdl, &svc_ctid))
380 verb_error(err);
381 else
382 (void) printf("%ld\n", svc_ctid);
386 * verb_svc_creator
388 * Display the process contract creator's execname
390 static void
391 verb_svc_creator(ct_stathdl_t hdl)
393 char *svc_creator;
394 int err;
395 if (err = ct_pr_status_get_svc_creator(hdl, &svc_creator))
396 verb_error(err);
397 else
398 (void) printf("%s\n", svc_creator);
402 * Common contract status fields.
404 static verbout_t vcommon[] = {
405 "cookie", verb_cookie,
406 NULL,
410 * Process contract-specific status fields.
411 * The critical and informative event sets are here because the event
412 * names are contract-specific. They are listed first, however, so
413 * they are displayed adjacent to the "normal" common output.
415 static verbout_t vprocess[] = {
416 "informative event set", verb_info,
417 "critical event set", verb_crit,
418 "fatal event set", verb_fatal,
419 "parameter set", verb_param,
420 "member processes", verb_members,
421 "inherited contracts", verb_inherit,
422 "service fmri", verb_svc_fmri,
423 "service fmri ctid", verb_svc_ctid,
424 "creator", verb_svc_creator,
425 "aux", verb_svc_aux,
426 NULL
429 static verbout_t vdevice[] = {
430 "device", verb_minor,
431 "dev_state", verb_dev_state,
432 NULL
436 * print_verbose
438 * Displays a contract's verbose status, common fields first.
440 static void
441 print_verbose(ct_stathdl_t hdl, verbout_t *spec, verbout_t *common)
443 int i;
444 int tmp, maxwidth = 0;
447 * Compute the width of all the fields.
449 for (i = 0; common[i].label; i++)
450 if ((tmp = strlen(common[i].label)) > maxwidth)
451 maxwidth = tmp;
452 if (spec)
453 for (i = 0; spec[i].label; i++)
454 if ((tmp = strlen(spec[i].label)) > maxwidth)
455 maxwidth = tmp;
456 maxwidth += 2;
459 * Display the data.
461 for (i = 0; common[i].label; i++) {
462 tmp = printf("\t%s", common[i].label);
463 if (tmp < 0)
464 tmp = 0;
465 (void) printf("%-*s", maxwidth - tmp + 1, ":");
466 common[i].func(hdl);
468 if (spec)
469 for (i = 0; spec[i].label; i++) {
470 (void) printf("\t%s%n", spec[i].label, &tmp);
471 (void) printf("%-*s", maxwidth - tmp + 1, ":");
472 spec[i].func(hdl);
476 struct {
477 const char *name;
478 verbout_t *verbout;
479 } cttypes[] = {
480 { "process", vprocess },
481 { "device", vdevice },
482 { NULL }
486 * get_type
488 * Given a type name, return an index into the above array of types.
490 static int
491 get_type(const char *typestr)
493 int i;
494 for (i = 0; cttypes[i].name; i++)
495 if (strcmp(cttypes[i].name, typestr) == 0)
496 return (i);
497 uu_die(gettext("invalid contract type: %s\n"), typestr);
498 /* NOTREACHED */
502 * print_header
504 * Display the status header.
506 static void
507 print_header(void)
509 (void) printf("%-8s%-8s%-8s%-8s%-8s%-8s%-8s%-8s\n", "CTID", "ZONEID",
510 "TYPE", "STATE", "HOLDER", "EVENTS", "QTIME", "NTIME");
514 * print_contract
516 * Display status for contract ID 'id' from type directory 'dir'. If
517 * only contracts of a specific set of types should be displayed,
518 * 'types' will be a sorted list of type indices of length 'ntypes'.
520 static void
521 print_contract(const char *dir, ctid_t id, verbout_t *spec,
522 int *types, int ntypes)
524 ct_stathdl_t status;
525 char hstr[100], qstr[20], nstr[20];
526 ctstate_t state;
527 int fd = 0;
528 int t;
531 * Open and obtain status.
533 if ((fd = contract_open(id, dir, "status", O_RDONLY)) == -1) {
534 if (errno == ENOENT)
535 return;
536 uu_die(gettext("could not open contract status file"));
539 if (errno = ct_status_read(fd, opt_verbose ? CTD_ALL : CTD_COMMON,
540 &status))
541 uu_die(gettext("failed to get contract status for %d"), id);
542 (void) close(fd);
545 * Unless otherwise directed, don't display dead contracts.
547 state = ct_status_get_state(status);
548 if (!opt_showall && state == CTS_DEAD) {
549 ct_status_free(status);
550 return;
554 * If we are only allowed to display certain contract types,
555 * perform that filtering here. We stash a copy of spec so we
556 * don't have to recompute it later.
558 if (types) {
559 int key = get_type(ct_status_get_type(status));
560 spec = cttypes[key].verbout;
561 if (bsearch(&key, types, ntypes, sizeof (int), int_compar) ==
562 NULL) {
563 ct_status_free(status);
564 return;
569 * Precompute those fields which have both textual and
570 * numerical values.
572 if ((state == CTS_OWNED) || (state == CTS_INHERITED))
573 (void) snprintf(hstr, sizeof (hstr), "%ld",
574 ct_status_get_holder(status));
575 else
576 (void) snprintf(hstr, sizeof (hstr), "%s", "-");
578 if ((t = ct_status_get_qtime(status)) == -1) {
579 qstr[0] = nstr[0] = '-';
580 qstr[1] = nstr[1] = '\0';
581 } else {
582 (void) snprintf(qstr, sizeof (qstr), "%d", t);
583 (void) snprintf(nstr, sizeof (nstr), "%d",
584 ct_status_get_ntime(status));
588 * Emit the contract's status.
590 (void) printf("%-7ld %-7ld %-7s %-7s %-7s %-7d %-7s %-8s\n",
591 ct_status_get_id(status),
592 ct_status_get_zoneid(status),
593 ct_status_get_type(status),
594 (state == CTS_OWNED) ? "owned" :
595 (state == CTS_INHERITED) ? "inherit" :
596 (state == CTS_ORPHAN) ? "orphan" : "dead", hstr,
597 ct_status_get_nevents(status), qstr, nstr);
600 * Emit verbose status information, if requested. If we
601 * weren't provided a verbose output spec or didn't compute it
602 * earlier, do it now.
604 if (opt_verbose) {
605 if (spec == NULL)
606 spec = cttypes[get_type(ct_status_get_type(status))].
607 verbout;
608 print_verbose(status, spec, vcommon);
611 ct_status_free(status);
615 * scan_type
617 * Display all contracts of the requested type.
619 static void
620 scan_type(int typeno)
622 DIR *dir;
623 struct dirent *de;
624 char path[PATH_MAX];
626 verbout_t *vo = cttypes[typeno].verbout;
627 const char *type = cttypes[typeno].name;
629 if (snprintf(path, PATH_MAX, CTFS_ROOT "/%s", type) >= PATH_MAX ||
630 (dir = opendir(path)) == NULL)
631 uu_die(gettext("bad contract type: %s\n"), type);
632 while ((de = readdir(dir)) != NULL) {
634 * Eliminate special files (e.g. '.', '..').
636 if (de->d_name[0] < '0' || de->d_name[0] > '9')
637 continue;
638 print_contract(type, mystrtoul(de->d_name), vo, NULL, 0);
640 (void) closedir(dir);
644 * scan_ids
646 * Display all contracts with the requested IDs.
648 static void
649 scan_ids(ctid_t *ids, int nids)
651 int i;
652 for (i = 0; i < nids; i++)
653 print_contract("all", ids[i], NULL, NULL, 0);
657 * scan_all
659 * Display the union of the requested IDs and types. So that the
660 * output is sorted by contract ID, it takes the slow road by testing
661 * each entry in /system/contract/all against its criteria. Used when
662 * the number of types is greater than 1, when we have a mixture of
663 * types and ids, or no lists were provided at all.
665 static void
666 scan_all(int *types, int ntypes, ctid_t *ids, int nids)
668 DIR *dir;
669 struct dirent *de;
670 const char *path = CTFS_ROOT "/all";
671 int key, test;
673 if ((dir = opendir(path)) == NULL)
674 uu_die(gettext("could not open %s"), path);
675 while ((de = readdir(dir)) != NULL) {
677 * Eliminate special files (e.g. '.', '..').
679 if (de->d_name[0] < '0' || de->d_name[0] > '9')
680 continue;
681 key = mystrtoul(de->d_name);
684 * If we are given IDs to look at and this contract
685 * isn't in the ID list, or if we weren't given a list
686 * if IDs but were given a list of types, provide the
687 * list of acceptable types to print_contract.
689 test = nids ? (bsearch(&key, ids, nids, sizeof (int),
690 int_compar) == NULL) : (ntypes != 0);
691 print_contract("all", key, NULL, (test ? types : NULL), ntypes);
693 (void) closedir(dir);
697 * walk_args
699 * Apply fp to each token in the comma- or space- separated argument
700 * string str and store the results in the array starting at results.
702 static int
703 walk_args(const char *str, int (*fp)(const char *), int *results)
705 char *copy, *token;
706 int count = 0;
708 if ((copy = strdup(str)) == NULL)
709 uu_die(gettext("strdup() failed"));
711 token = strtok(copy, ", ");
712 if (token == NULL) {
713 free(copy);
714 return (0);
717 do {
718 if (fp)
719 *(results++) = fp(token);
720 count++;
721 } while (token = strtok(NULL, ", "));
722 free(copy);
724 return (count);
728 * parse
730 * Parse the comma- or space- separated string str, using fp to covert
731 * the tokens to integers. Append the list of integers to the array
732 * pointed to by *idps, growing the array if necessary.
734 static int
735 parse(const char *str, int **idsp, int nids, int (*fp)(const char *fp))
737 int count;
738 int *array;
740 count = walk_args(str, NULL, NULL);
741 if (count == 0)
742 return (0);
744 if ((array = calloc(nids + count, sizeof (int))) == NULL)
745 uu_die(gettext("calloc() failed"));
747 if (*idsp) {
748 (void) memcpy(array, *idsp, nids * sizeof (int));
749 free(*idsp);
752 (void) walk_args(str, fp, array + nids);
754 *idsp = array;
755 return (count + nids);
759 * parse_ids
761 * Extract a list of ids from the comma- or space- separated string str
762 * and append them to the array *idsp, growing it if necessary.
764 static int
765 parse_ids(const char *arg, int **idsp, int nids)
767 return (parse(arg, idsp, nids, mystrtoul));
771 * parse_types
773 * Extract a list of types from the comma- or space- separated string
774 * str and append them to the array *idsp, growing it if necessary.
776 static int
777 parse_types(const char *arg, int **typesp, int ntypes)
779 return (parse(arg, typesp, ntypes, get_type));
783 * compact
785 * Sorts and removes duplicates from array. Initial size of array is
786 * in *size; final size is stored in *size.
788 static void
789 compact(int *array, int *size)
791 int i, j, last = -1;
793 qsort(array, *size, sizeof (int), int_compar);
794 for (i = j = 0; i < *size; i++) {
795 if (array[i] != last) {
796 last = array[i];
797 array[j++] = array[i];
800 *size = j;
804 main(int argc, char **argv)
806 unsigned int interval = 0, count = 1;
807 ctid_t *ids = NULL;
808 int *types = NULL;
809 int nids = 0, ntypes = 0;
810 int i, s;
812 (void) setlocale(LC_ALL, "");
813 (void) textdomain(TEXT_DOMAIN);
815 (void) uu_setpname(argv[0]);
817 while ((s = getopt(argc, argv, "ai:T:t:v")) != EOF) {
818 switch (s) {
819 case 'a':
820 opt_showall = 1;
821 break;
822 case 'i':
823 nids = parse_ids(optarg, (int **)&ids, nids);
824 break;
825 case 'T':
826 if (optarg) {
827 if (*optarg == 'u')
828 timestamp_fmt = UDATE;
829 else if (*optarg == 'd')
830 timestamp_fmt = DDATE;
831 else
832 usage();
833 } else {
834 usage();
836 break;
837 case 't':
838 ntypes = parse_types(optarg, &types, ntypes);
839 break;
840 case 'v':
841 opt_verbose = 1;
842 break;
843 default:
844 usage();
848 argc -= optind;
849 argv += optind;
851 if (argc > 2 || argc < 0)
852 usage();
854 if (argc > 0) {
855 interval = mystrtoul(argv[0]);
856 count = 0;
859 if (argc > 1) {
860 count = mystrtoul(argv[1]);
861 if (count == 0)
862 return (0);
865 if (nids)
866 compact((int *)ids, &nids);
867 if (ntypes)
868 compact(types, &ntypes);
870 for (i = 0; count == 0 || i < count; i++) {
871 if (i)
872 (void) sleep(interval);
873 if (timestamp_fmt != NODATE)
874 print_timestamp(timestamp_fmt);
875 print_header();
876 if (nids && ntypes)
877 scan_all(types, ntypes, ids, nids);
878 else if (ntypes == 1)
879 scan_type(*types);
880 else if (nids)
881 scan_ids(ids, nids);
882 else
883 scan_all(types, ntypes, ids, nids);
886 return (0);