]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/ipcs.c
wdctl: remove printing from main()
[thirdparty/util-linux.git] / sys-utils / ipcs.c
1 /* Original author unknown, may be "krishna balasub@cis.ohio-state.edu" */
2 /*
3 * Modified Sat Oct 9 10:55:28 1993 for 0.99.13
4 *
5 * Patches from Mike Jagdis (jaggy@purplet.demon.co.uk) applied Wed Feb 8
6 * 12:12:21 1995 by faith@cs.unc.edu to print numeric uids if no passwd file
7 * entry.
8 *
9 * Patch from arnolds@ifns.de (Heinz-Ado Arnolds) applied Mon Jul 1 19:30:41
10 * 1996 by janl@math.uio.no to add code missing in case PID: clauses.
11 *
12 * Patched to display the key field -- hy@picksys.com 12/18/96
13 *
14 * 1999-02-22 Arkadiusz Miƛkiewicz <misiek@pld.ORG.PL>
15 * - added Native Language Support
16 */
17
18 #include <errno.h>
19 #include <getopt.h>
20
21 #include "c.h"
22 #include "nls.h"
23 #include "closestream.h"
24
25 #include "ipcutils.h"
26
27 enum output_formats {
28 NOTSPECIFIED,
29 LIMITS,
30 STATUS,
31 CREATOR,
32 TIME,
33 PID
34 };
35 enum {
36 OPT_HUMAN = CHAR_MAX + 1
37 };
38
39 static void do_shm (char format, int unit);
40 static void print_shm (int id, int unit);
41 static void do_sem (char format);
42 static void print_sem (int id);
43 static void do_msg (char format, int unit);
44 static void print_msg (int id, int unit);
45
46 /* we read time as int64_t from /proc, so cast... */
47 #define xctime(_x) ctime((time_t *) (_x))
48
49 static void __attribute__((__noreturn__)) usage(void)
50 {
51 FILE *out = stdout;
52 fputs(USAGE_HEADER, out);
53 fprintf(out, _(" %1$s [resource-option...] [output-option]\n"
54 " %1$s -m|-q|-s -i <id>\n"), program_invocation_short_name);
55
56 fputs(USAGE_SEPARATOR, out);
57 fputs(_("Show information on IPC facilities.\n"), out);
58
59 fputs(USAGE_OPTIONS, out);
60 fputs(_(" -i, --id <id> print details on resource identified by <id>\n"), out);
61 printf(USAGE_HELP_OPTIONS(16));
62
63 fputs(USAGE_SEPARATOR, out);
64 fputs(_("Resource options:\n"), out);
65 fputs(_(" -m, --shmems shared memory segments\n"), out);
66 fputs(_(" -q, --queues message queues\n"), out);
67 fputs(_(" -s, --semaphores semaphores\n"), out);
68 fputs(_(" -a, --all all (default)\n"), out);
69
70 fputs(USAGE_SEPARATOR, out);
71 fputs(_("Output options:\n"), out);
72 fputs(_(" -t, --time show attach, detach and change times\n"), out);
73 fputs(_(" -p, --pid show PIDs of creator and last operator\n"), out);
74 fputs(_(" -c, --creator show creator and owner\n"), out);
75 fputs(_(" -l, --limits show resource limits\n"), out);
76 fputs(_(" -u, --summary show status summary\n"), out);
77 fputs(_(" --human show sizes in human-readable format\n"), out);
78 fputs(_(" -b, --bytes show sizes in bytes\n"), out);
79 printf(USAGE_MAN_TAIL("ipcs(1)"));
80
81 exit(EXIT_SUCCESS);
82 }
83
84 int main (int argc, char **argv)
85 {
86 int opt, msg = 0, shm = 0, sem = 0, id = 0, specific = 0;
87 char format = NOTSPECIFIED;
88 int unit = IPC_UNIT_DEFAULT;
89 static const struct option longopts[] = {
90 {"id", required_argument, NULL, 'i'},
91 {"queues", no_argument, NULL, 'q'},
92 {"shmems", no_argument, NULL, 'm'},
93 {"semaphores", no_argument, NULL, 's'},
94 {"all", no_argument, NULL, 'a'},
95 {"time", no_argument, NULL, 't'},
96 {"pid", no_argument, NULL, 'p'},
97 {"creator", no_argument, NULL, 'c'},
98 {"limits", no_argument, NULL, 'l'},
99 {"summary", no_argument, NULL, 'u'},
100 {"human", no_argument, NULL, OPT_HUMAN},
101 {"bytes", no_argument, NULL, 'b'},
102 {"version", no_argument, NULL, 'V'},
103 {"help", no_argument, NULL, 'h'},
104 {NULL, 0, NULL, 0}
105 };
106 char options[] = "i:qmsatpclubVh";
107
108 setlocale(LC_ALL, "");
109 bindtextdomain(PACKAGE, LOCALEDIR);
110 textdomain(PACKAGE);
111 close_stdout_atexit();
112
113 while ((opt = getopt_long(argc, argv, options, longopts, NULL)) != -1) {
114 switch (opt) {
115 case 'i':
116 id = atoi (optarg);
117 specific = 1;
118 break;
119 case 'a':
120 msg = shm = sem = 1;
121 break;
122 case 'q':
123 msg = 1;
124 break;
125 case 'm':
126 shm = 1;
127 break;
128 case 's':
129 sem = 1;
130 break;
131 case 't':
132 format = TIME;
133 break;
134 case 'c':
135 format = CREATOR;
136 break;
137 case 'p':
138 format = PID;
139 break;
140 case 'l':
141 format = LIMITS;
142 break;
143 case 'u':
144 format = STATUS;
145 break;
146 case OPT_HUMAN:
147 unit = IPC_UNIT_HUMAN;
148 break;
149 case 'b':
150 unit = IPC_UNIT_BYTES;
151 break;
152
153 case 'h':
154 usage();
155 case 'V':
156 print_version(EXIT_SUCCESS);
157 default:
158 errtryhelp(EXIT_FAILURE);
159 }
160 }
161
162 if (specific && (msg + shm + sem != 1))
163 errx (EXIT_FAILURE,
164 _("when using an ID, a single resource must be specified"));
165 if (specific) {
166 if (msg)
167 print_msg (id, unit);
168 if (shm)
169 print_shm (id, unit);
170 if (sem)
171 print_sem (id);
172 } else {
173 if (!msg && !shm && !sem)
174 msg = shm = sem = 1;
175 printf ("\n");
176 if (msg) {
177 do_msg (format, unit);
178 printf ("\n");
179 }
180 if (shm) {
181 do_shm (format, unit);
182 printf ("\n");
183 }
184 if (sem) {
185 do_sem (format);
186 printf ("\n");
187 }
188 }
189 return EXIT_SUCCESS;
190 }
191
192 static void do_shm (char format, int unit)
193 {
194 struct passwd *pw;
195 struct shm_data *shmds, *shmdsp;
196
197 switch (format) {
198 case LIMITS:
199 {
200 struct ipc_limits lim;
201 uint64_t tmp, pgsz = getpagesize();
202
203 if (ipc_shm_get_limits(&lim)) {
204 printf (_("unable to fetch shared memory limits\n"));
205 return;
206 }
207 printf (_("------ Shared Memory Limits --------\n"));
208 printf (_("max number of segments = %ju\n"), lim.shmmni);
209 ipc_print_size(unit == IPC_UNIT_DEFAULT ? IPC_UNIT_KB : unit,
210 _("max seg size"), lim.shmmax, "\n", 0);
211
212 tmp = (uint64_t) lim.shmall * pgsz;
213 /* overflow handling, at least we don't print ridiculous small values */
214 if (lim.shmall != 0 && tmp / lim.shmall != pgsz) {
215 tmp = UINT64_MAX - (UINT64_MAX % pgsz);
216 }
217 ipc_print_size(unit == IPC_UNIT_DEFAULT ? IPC_UNIT_KB : unit,
218 _("max total shared memory"), tmp, "\n", 0);
219 ipc_print_size(unit == IPC_UNIT_DEFAULT ? IPC_UNIT_BYTES : unit,
220 _("min seg size"), lim.shmmin, "\n", 0);
221 return;
222 }
223 case STATUS:
224 {
225 int maxid;
226 struct shmid_ds shmbuf;
227 struct shm_info *shm_info;
228
229 maxid = shmctl (0, SHM_INFO, &shmbuf);
230 shm_info = (struct shm_info *) &shmbuf;
231 if (maxid < 0) {
232 printf (_("kernel not configured for shared memory\n"));
233 return;
234 }
235
236 printf (_("------ Shared Memory Status --------\n"));
237 /*
238 * TRANSLATORS: This output format is maintained for backward
239 * compatibility as ipcs is used in scripts. For consistency
240 * with the rest, the translated form can follow this model:
241 *
242 * "segments allocated = %d\n"
243 * "pages allocated = %ld\n"
244 * "pages resident = %ld\n"
245 * "pages swapped = %ld\n"
246 * "swap performance = %ld attempts, %ld successes\n"
247 */
248 printf (_("segments allocated %d\n"
249 "pages allocated %ld\n"
250 "pages resident %ld\n"
251 "pages swapped %ld\n"
252 "Swap performance: %ld attempts\t %ld successes\n"),
253 shm_info->used_ids,
254 shm_info->shm_tot,
255 shm_info->shm_rss,
256 shm_info->shm_swp,
257 shm_info->swap_attempts, shm_info->swap_successes);
258 return;
259 }
260
261 /*
262 * Headers only
263 */
264 case CREATOR:
265 printf (_("------ Shared Memory Segment Creators/Owners --------\n"));
266 printf ("%-10s %-10s %-10s %-10s %-10s %-10s\n",
267 _("shmid"),_("perms"),_("cuid"),_("cgid"),_("uid"),_("gid"));
268 break;
269
270 case TIME:
271 printf (_("------ Shared Memory Attach/Detach/Change Times --------\n"));
272 printf ("%-10s %-10s %-20s %-20s %-20s\n",
273 _("shmid"),_("owner"),_("attached"),_("detached"),
274 _("changed"));
275 break;
276
277 case PID:
278 printf (_("------ Shared Memory Creator/Last-op PIDs --------\n"));
279 printf ("%-10s %-10s %-10s %-10s\n",
280 _("shmid"),_("owner"),_("cpid"),_("lpid"));
281 break;
282
283 default:
284 printf (_("------ Shared Memory Segments --------\n"));
285 printf ("%-10s %-10s %-10s %-10s %-10s %-10s %-12s\n",
286 _("key"),_("shmid"),_("owner"),_("perms"),
287 unit == IPC_UNIT_HUMAN ? _("size") : _("bytes"),
288 _("nattch"),_("status"));
289 break;
290 }
291
292 /*
293 * Print data
294 */
295 if (ipc_shm_get_info(-1, &shmds) < 1)
296 return;
297
298 for (shmdsp = shmds; shmdsp->next != NULL; shmdsp = shmdsp->next) {
299 if (format == CREATOR) {
300 ipc_print_perms(stdout, &shmdsp->shm_perm);
301 continue;
302 }
303 pw = getpwuid(shmdsp->shm_perm.uid);
304 switch (format) {
305 case TIME:
306 if (pw)
307 printf ("%-10d %-10.10s", shmdsp->shm_perm.id, pw->pw_name);
308 else
309 printf ("%-10d %-10u", shmdsp->shm_perm.id, shmdsp->shm_perm.uid);
310 /* ctime uses static buffer: use separate calls */
311 printf(" %-20.16s", shmdsp->shm_atim
312 ? xctime(&shmdsp->shm_atim) + 4 : _("Not set"));
313 printf(" %-20.16s", shmdsp->shm_dtim
314 ? xctime(&shmdsp->shm_dtim) + 4 : _("Not set"));
315 printf(" %-20.16s\n", shmdsp->shm_ctim
316 ? xctime(&shmdsp->shm_ctim) + 4 : _("Not set"));
317 break;
318 case PID:
319 if (pw)
320 printf ("%-10d %-10.10s", shmdsp->shm_perm.id, pw->pw_name);
321 else
322 printf ("%-10d %-10u", shmdsp->shm_perm.id, shmdsp->shm_perm.uid);
323 printf (" %-10u %-10u\n",
324 shmdsp->shm_cprid, shmdsp->shm_lprid);
325 break;
326
327 default:
328 printf("0x%08x ", shmdsp->shm_perm.key);
329 if (pw)
330 printf ("%-10d %-10.10s", shmdsp->shm_perm.id, pw->pw_name);
331 else
332 printf ("%-10d %-10u", shmdsp->shm_perm.id, shmdsp->shm_perm.uid);
333 printf (" %-10o ", shmdsp->shm_perm.mode & 0777);
334
335 if (unit == IPC_UNIT_HUMAN)
336 ipc_print_size(unit, NULL, shmdsp->shm_segsz, " ", 6);
337 else
338 ipc_print_size(unit, NULL, shmdsp->shm_segsz, NULL, -10);
339
340 printf (" %-10ju %-6s %-6s\n",
341 shmdsp->shm_nattch,
342 shmdsp->shm_perm.mode & SHM_DEST ? _("dest") : " ",
343 shmdsp->shm_perm.mode & SHM_LOCKED ? _("locked") : " ");
344 break;
345 }
346 }
347
348 ipc_shm_free_info(shmds);
349 return;
350 }
351
352 static void do_sem (char format)
353 {
354 struct passwd *pw;
355 struct sem_data *semds, *semdsp;
356
357 switch (format) {
358 case LIMITS:
359 {
360 struct ipc_limits lim;
361
362 if (ipc_sem_get_limits(&lim)) {
363 printf (_("unable to fetch semaphore limits\n"));
364 return;
365 }
366 printf (_("------ Semaphore Limits --------\n"));
367 printf (_("max number of arrays = %d\n"), lim.semmni);
368 printf (_("max semaphores per array = %d\n"), lim.semmsl);
369 printf (_("max semaphores system wide = %d\n"), lim.semmns);
370 printf (_("max ops per semop call = %d\n"), lim.semopm);
371 printf (_("semaphore max value = %u\n"), lim.semvmx);
372 return;
373 }
374 case STATUS:
375 {
376 struct seminfo seminfo;
377 union semun arg;
378 arg.array = (ushort *) (void *) &seminfo;
379 if (semctl (0, 0, SEM_INFO, arg) < 0) {
380 printf (_("kernel not configured for semaphores\n"));
381 return;
382 }
383 printf (_("------ Semaphore Status --------\n"));
384 printf (_("used arrays = %d\n"), seminfo.semusz);
385 printf (_("allocated semaphores = %d\n"), seminfo.semaem);
386 return;
387 }
388
389 case CREATOR:
390 printf (_("------ Semaphore Arrays Creators/Owners --------\n"));
391 printf ("%-10s %-10s %-10s %-10s %-10s %-10s\n",
392 _("semid"),_("perms"),_("cuid"),_("cgid"),_("uid"),_("gid"));
393 break;
394
395 case TIME:
396 printf (_("------ Semaphore Operation/Change Times --------\n"));
397 printf ("%-8s %-10s %-26.24s %-26.24s\n",
398 _("semid"),_("owner"),_("last-op"),_("last-changed"));
399 break;
400
401 case PID:
402 break;
403
404 default:
405 printf (_("------ Semaphore Arrays --------\n"));
406 printf ("%-10s %-10s %-10s %-10s %-10s\n",
407 _("key"),_("semid"),_("owner"),_("perms"),_("nsems"));
408 break;
409 }
410
411 /*
412 * Print data
413 */
414 if (ipc_sem_get_info(-1, &semds) < 1)
415 return;
416
417 for (semdsp = semds; semdsp->next != NULL; semdsp = semdsp->next) {
418 if (format == CREATOR) {
419 ipc_print_perms(stdout, &semdsp->sem_perm);
420 continue;
421 }
422 pw = getpwuid(semdsp->sem_perm.uid);
423 switch (format) {
424 case TIME:
425 if (pw)
426 printf ("%-8d %-10.10s", semdsp->sem_perm.id, pw->pw_name);
427 else
428 printf ("%-8d %-10u", semdsp->sem_perm.id, semdsp->sem_perm.uid);
429 printf (" %-26.24s", semdsp->sem_otime
430 ? xctime(&semdsp->sem_otime) : _("Not set"));
431 printf (" %-26.24s\n", semdsp->sem_ctime
432 ? xctime( &semdsp->sem_ctime) : _("Not set"));
433 break;
434 case PID:
435 break;
436
437 default:
438 printf("0x%08x ", semdsp->sem_perm.key);
439 if (pw)
440 printf ("%-10d %-10.10s", semdsp->sem_perm.id, pw->pw_name);
441 else
442 printf ("%-10d %-10u", semdsp->sem_perm.id, semdsp->sem_perm.uid);
443 printf (" %-10o %-10ju\n",
444 semdsp->sem_perm.mode & 0777,
445 semdsp->sem_nsems);
446 break;
447 }
448 }
449
450 ipc_sem_free_info(semds);
451 return;
452 }
453
454 static void do_msg (char format, int unit)
455 {
456 struct passwd *pw;
457 struct msg_data *msgds, *msgdsp;
458
459 switch (format) {
460 case LIMITS:
461 {
462 struct ipc_limits lim;
463
464 if (ipc_msg_get_limits(&lim)) {
465 printf (_("unable to fetch message limits\n"));
466 return;
467 }
468 printf (_("------ Messages Limits --------\n"));
469 printf (_("max queues system wide = %d\n"), lim.msgmni);
470 ipc_print_size(unit == IPC_UNIT_DEFAULT ? IPC_UNIT_BYTES : unit,
471 _("max size of message"), lim.msgmax, "\n", 0);
472 ipc_print_size(unit == IPC_UNIT_DEFAULT ? IPC_UNIT_BYTES : unit,
473 _("default max size of queue"), lim.msgmnb, "\n", 0);
474 return;
475 }
476 case STATUS:
477 {
478 struct msginfo msginfo;
479 if (msgctl (0, MSG_INFO, (struct msqid_ds *) (void *) &msginfo) < 0) {
480 printf (_("kernel not configured for message queues\n"));
481 return;
482 }
483 printf (_("------ Messages Status --------\n"));
484 #ifndef __FreeBSD_kernel__
485 printf (_("allocated queues = %d\n"), msginfo.msgpool);
486 printf (_("used headers = %d\n"), msginfo.msgmap);
487 #endif
488 ipc_print_size(unit, _("used space"), msginfo.msgtql,
489 unit == IPC_UNIT_DEFAULT ? _(" bytes\n") : "\n", 0);
490 return;
491 }
492 case CREATOR:
493 printf (_("------ Message Queues Creators/Owners --------\n"));
494 printf ("%-10s %-10s %-10s %-10s %-10s %-10s\n",
495 _("msqid"),_("perms"),_("cuid"),_("cgid"),_("uid"),_("gid"));
496 break;
497
498 case TIME:
499 printf (_("------ Message Queues Send/Recv/Change Times --------\n"));
500 printf ("%-8s %-10s %-20s %-20s %-20s\n",
501 _("msqid"),_("owner"),_("send"),_("recv"),_("change"));
502 break;
503
504 case PID:
505 printf (_("------ Message Queues PIDs --------\n"));
506 printf ("%-10s %-10s %-10s %-10s\n",
507 _("msqid"),_("owner"),_("lspid"),_("lrpid"));
508 break;
509
510 default:
511 printf (_("------ Message Queues --------\n"));
512 printf ("%-10s %-10s %-10s %-10s %-12s %-12s\n",
513 _("key"), _("msqid"), _("owner"), _("perms"),
514 unit == IPC_UNIT_HUMAN ? _("size") : _("used-bytes"),
515 _("messages"));
516 break;
517 }
518
519 /*
520 * Print data
521 */
522 if (ipc_msg_get_info(-1, &msgds) < 1)
523 return;
524
525 for (msgdsp = msgds; msgdsp->next != NULL; msgdsp = msgdsp->next) {
526 if (format == CREATOR) {
527 ipc_print_perms(stdout, &msgdsp->msg_perm);
528 continue;
529 }
530 pw = getpwuid(msgdsp->msg_perm.uid);
531 switch (format) {
532 case TIME:
533 if (pw)
534 printf ("%-8d %-10.10s", msgdsp->msg_perm.id, pw->pw_name);
535 else
536 printf ("%-8d %-10u", msgdsp->msg_perm.id, msgdsp->msg_perm.uid);
537 printf (" %-20.16s", msgdsp->q_stime
538 ? xctime(&msgdsp->q_stime) + 4 : _("Not set"));
539 printf (" %-20.16s", msgdsp->q_rtime
540 ? xctime(&msgdsp->q_rtime) + 4 : _("Not set"));
541 printf (" %-20.16s\n", msgdsp->q_ctime
542 ? xctime(&msgdsp->q_ctime) + 4 : _("Not set"));
543 break;
544 case PID:
545 if (pw)
546 printf ("%-8d %-10.10s", msgdsp->msg_perm.id, pw->pw_name);
547 else
548 printf ("%-8d %-10u", msgdsp->msg_perm.id, msgdsp->msg_perm.uid);
549 printf (" %5d %5d\n",
550 msgdsp->q_lspid, msgdsp->q_lrpid);
551 break;
552
553 default:
554 printf( "0x%08x ",msgdsp->msg_perm.key );
555 if (pw)
556 printf ("%-10d %-10.10s", msgdsp->msg_perm.id, pw->pw_name);
557 else
558 printf ("%-10d %-10u", msgdsp->msg_perm.id, msgdsp->msg_perm.uid);
559 printf (" %-10o ", msgdsp->msg_perm.mode & 0777);
560
561 if (unit == IPC_UNIT_HUMAN)
562 ipc_print_size(unit, NULL, msgdsp->q_cbytes, " ", 6);
563 else
564 ipc_print_size(unit, NULL, msgdsp->q_cbytes, NULL, -12);
565
566 printf (" %-12ju\n", msgdsp->q_qnum);
567 break;
568 }
569 }
570
571 ipc_msg_free_info(msgds);
572 return;
573 }
574
575 static void print_shm(int shmid, int unit)
576 {
577 struct shm_data *shmdata;
578
579 if (ipc_shm_get_info(shmid, &shmdata) < 1) {
580 warnx(_("id %d not found"), shmid);
581 return;
582 }
583
584 printf(_("\nShared memory Segment shmid=%d\n"), shmid);
585 printf(_("uid=%u\tgid=%u\tcuid=%u\tcgid=%u\n"),
586 shmdata->shm_perm.uid, shmdata->shm_perm.gid,
587 shmdata->shm_perm.cuid, shmdata->shm_perm.cgid);
588 printf(_("mode=%#o\taccess_perms=%#o\n"), shmdata->shm_perm.mode,
589 shmdata->shm_perm.mode & 0777);
590 ipc_print_size(unit, unit == IPC_UNIT_HUMAN ? _("size=") : _("bytes="),
591 shmdata->shm_segsz, "\t", 0);
592 printf(_("lpid=%u\tcpid=%u\tnattch=%jd\n"),
593 shmdata->shm_lprid, shmdata->shm_cprid,
594 shmdata->shm_nattch);
595 printf(_("att_time=%-26.24s\n"),
596 shmdata->shm_atim ? xctime(&(shmdata->shm_atim)) : _("Not set"));
597 printf(_("det_time=%-26.24s\n"),
598 shmdata->shm_dtim ? xctime(&shmdata->shm_dtim) : _("Not set"));
599 printf(_("change_time=%-26.24s\n"), xctime(&shmdata->shm_ctim));
600 printf("\n");
601
602 ipc_shm_free_info(shmdata);
603 }
604
605 static void print_msg(int msgid, int unit)
606 {
607 struct msg_data *msgdata;
608
609 if (ipc_msg_get_info(msgid, &msgdata) < 1) {
610 warnx(_("id %d not found"), msgid);
611 return;
612 }
613
614 printf(_("\nMessage Queue msqid=%d\n"), msgid);
615 printf(_("uid=%u\tgid=%u\tcuid=%u\tcgid=%u\tmode=%#o\n"),
616 msgdata->msg_perm.uid, msgdata->msg_perm.gid,
617 msgdata->msg_perm.cuid, msgdata->msg_perm.cgid,
618 msgdata->msg_perm.mode);
619 ipc_print_size(unit, unit == IPC_UNIT_HUMAN ? _("csize=") : _("cbytes="),
620 msgdata->q_cbytes, "\t", 0);
621 ipc_print_size(unit, unit == IPC_UNIT_HUMAN ? _("qsize=") : _("qbytes="),
622 msgdata->q_qbytes, "\t", 0);
623 printf("qnum=%jd\tlspid=%d\tlrpid=%d\n",
624 msgdata->q_qnum,
625 msgdata->q_lspid, msgdata->q_lrpid);
626 printf(_("send_time=%-26.24s\n"),
627 msgdata->q_stime ? xctime(&msgdata->q_stime) : _("Not set"));
628 printf(_("rcv_time=%-26.24s\n"),
629 msgdata->q_rtime ? xctime(&msgdata->q_rtime) : _("Not set"));
630 printf(_("change_time=%-26.24s\n"),
631 msgdata->q_ctime ? xctime(&msgdata->q_ctime) : _("Not set"));
632 printf("\n");
633
634 ipc_msg_free_info(msgdata);
635 }
636
637 static void print_sem(int semid)
638 {
639 struct sem_data *semdata;
640 size_t i;
641
642 if (ipc_sem_get_info(semid, &semdata) < 1) {
643 warnx(_("id %d not found"), semid);
644 return;
645 }
646
647 printf(_("\nSemaphore Array semid=%d\n"), semid);
648 printf(_("uid=%u\t gid=%u\t cuid=%u\t cgid=%u\n"),
649 semdata->sem_perm.uid, semdata->sem_perm.gid,
650 semdata->sem_perm.cuid, semdata->sem_perm.cgid);
651 printf(_("mode=%#o, access_perms=%#o\n"),
652 semdata->sem_perm.mode, semdata->sem_perm.mode & 0777);
653 printf(_("nsems = %ju\n"), semdata->sem_nsems);
654 printf(_("otime = %-26.24s\n"),
655 semdata->sem_otime ? xctime(&semdata->sem_otime) : _("Not set"));
656 printf(_("ctime = %-26.24s\n"), xctime(&semdata->sem_ctime));
657
658 printf("%-10s %-10s %-10s %-10s %-10s\n",
659 _("semnum"), _("value"), _("ncount"), _("zcount"), _("pid"));
660
661 for (i = 0; i < semdata->sem_nsems; i++) {
662 struct sem_elem *e = &semdata->elements[i];
663 printf("%-10zu %-10d %-10d %-10d %-10d\n",
664 i, e->semval, e->ncount, e->zcount, e->pid);
665 }
666 printf("\n");
667 ipc_sem_free_info(semdata);
668 }