]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - bin/pkill/pkill.c
MFC r254134:
[FreeBSD/stable/9.git] / bin / pkill / pkill.c
1 /*      $NetBSD: pkill.c,v 1.16 2005/10/10 22:13:20 kleink Exp $        */
2
3 /*-
4  * Copyright (c) 2002 The NetBSD Foundation, Inc.
5  * Copyright (c) 2005 Pawel Jakub Dawidek <pjd@FreeBSD.org>
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Andrew Doran.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/sysctl.h>
39 #include <sys/proc.h>
40 #include <sys/queue.h>
41 #include <sys/stat.h>
42 #include <sys/time.h>
43 #include <sys/user.h>
44
45 #include <assert.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <limits.h>
49 #include <paths.h>
50 #include <string.h>
51 #include <unistd.h>
52 #include <signal.h>
53 #include <regex.h>
54 #include <ctype.h>
55 #include <fcntl.h>
56 #include <kvm.h>
57 #include <err.h>
58 #include <pwd.h>
59 #include <grp.h>
60 #include <errno.h>
61 #include <locale.h>
62
63 #define STATUS_MATCH    0
64 #define STATUS_NOMATCH  1
65 #define STATUS_BADUSAGE 2
66 #define STATUS_ERROR    3
67
68 #define MIN_PID 5
69 #define MAX_PID 99999
70
71 /* Ignore system-processes (if '-S' flag is not specified) and myself. */
72 #define PSKIP(kp)       ((kp)->ki_pid == mypid ||                       \
73                          (!kthreads && ((kp)->ki_flag & P_KTHREAD) != 0))
74
75 enum listtype {
76         LT_GENERIC,
77         LT_USER,
78         LT_GROUP,
79         LT_TTY,
80         LT_PGRP,
81         LT_JID,
82         LT_SID,
83         LT_CLASS
84 };
85
86 struct list {
87         SLIST_ENTRY(list) li_chain;
88         long    li_number;
89         char    *li_name;
90 };
91
92 SLIST_HEAD(listhead, list);
93
94 static struct kinfo_proc *plist;
95 static char     *selected;
96 static const char *delim = "\n";
97 static int      nproc;
98 static int      pgrep;
99 static int      signum = SIGTERM;
100 static int      newest;
101 static int      oldest;
102 static int      interactive;
103 static int      inverse;
104 static int      longfmt;
105 static int      matchargs;
106 static int      fullmatch;
107 static int      kthreads;
108 static int      cflags = REG_EXTENDED;
109 static int      quiet;
110 static kvm_t    *kd;
111 static pid_t    mypid;
112
113 static struct listhead euidlist = SLIST_HEAD_INITIALIZER(euidlist);
114 static struct listhead ruidlist = SLIST_HEAD_INITIALIZER(ruidlist);
115 static struct listhead rgidlist = SLIST_HEAD_INITIALIZER(rgidlist);
116 static struct listhead pgrplist = SLIST_HEAD_INITIALIZER(pgrplist);
117 static struct listhead ppidlist = SLIST_HEAD_INITIALIZER(ppidlist);
118 static struct listhead tdevlist = SLIST_HEAD_INITIALIZER(tdevlist);
119 static struct listhead sidlist = SLIST_HEAD_INITIALIZER(sidlist);
120 static struct listhead jidlist = SLIST_HEAD_INITIALIZER(jidlist);
121 static struct listhead classlist = SLIST_HEAD_INITIALIZER(classlist);
122
123 static void     usage(void) __attribute__((__noreturn__));
124 static int      killact(const struct kinfo_proc *);
125 static int      grepact(const struct kinfo_proc *);
126 static void     makelist(struct listhead *, enum listtype, char *);
127 static int      takepid(const char *, int);
128
129 int
130 main(int argc, char **argv)
131 {
132         char buf[_POSIX2_LINE_MAX], *mstr, **pargv, *p, *q, *pidfile;
133         const char *execf, *coref;
134         int ancestors, debug_opt, did_action;
135         int i, ch, bestidx, rv, criteria, pidfromfile, pidfilelock;
136         size_t jsz;
137         int (*action)(const struct kinfo_proc *);
138         struct kinfo_proc *kp;
139         struct list *li;
140         struct timeval best_tval;
141         regex_t reg;
142         regmatch_t regmatch;
143         pid_t pid;
144
145         setlocale(LC_ALL, "");
146
147         if (strcmp(getprogname(), "pgrep") == 0) {
148                 action = grepact;
149                 pgrep = 1;
150         } else {
151                 action = killact;
152                 p = argv[1];
153
154                 if (argc > 1 && p[0] == '-') {
155                         p++;
156                         i = (int)strtol(p, &q, 10);
157                         if (*q == '\0') {
158                                 signum = i;
159                                 argv++;
160                                 argc--;
161                         } else {
162                                 if (strncasecmp(p, "SIG", 3) == 0)
163                                         p += 3;
164                                 for (i = 1; i < NSIG; i++)
165                                         if (strcasecmp(sys_signame[i], p) == 0)
166                                                 break;
167                                 if (i != NSIG) {
168                                         signum = i;
169                                         argv++;
170                                         argc--;
171                                 }
172                         }
173                 }
174         }
175
176         ancestors = 0;
177         criteria = 0;
178         debug_opt = 0;
179         pidfile = NULL;
180         pidfilelock = 0;
181         quiet = 0;
182         execf = NULL;
183         coref = _PATH_DEVNULL;
184
185         while ((ch = getopt(argc, argv, "DF:G:ILM:N:P:SU:ac:d:fg:ij:lnoqs:t:u:vx")) != -1)
186                 switch (ch) {
187                 case 'D':
188                         debug_opt++;
189                         break;
190                 case 'F':
191                         pidfile = optarg;
192                         criteria = 1;
193                         break;
194                 case 'G':
195                         makelist(&rgidlist, LT_GROUP, optarg);
196                         criteria = 1;
197                         break;
198                 case 'I':
199                         if (pgrep)
200                                 usage();
201                         interactive = 1;
202                         break;
203                 case 'L':
204                         pidfilelock = 1;
205                         break;
206                 case 'M':
207                         coref = optarg;
208                         break;
209                 case 'N':
210                         execf = optarg;
211                         break;
212                 case 'P':
213                         makelist(&ppidlist, LT_GENERIC, optarg);
214                         criteria = 1;
215                         break;
216                 case 'S':
217                         if (!pgrep)
218                                 usage();
219                         kthreads = 1;
220                         break;
221                 case 'U':
222                         makelist(&ruidlist, LT_USER, optarg);
223                         criteria = 1;
224                         break;
225                 case 'a':
226                         ancestors++;
227                         break;
228                 case 'c':
229                         makelist(&classlist, LT_CLASS, optarg);
230                         criteria = 1;
231                         break;
232                 case 'd':
233                         if (!pgrep)
234                                 usage();
235                         delim = optarg;
236                         break;
237                 case 'f':
238                         matchargs = 1;
239                         break;
240                 case 'g':
241                         makelist(&pgrplist, LT_PGRP, optarg);
242                         criteria = 1;
243                         break;
244                 case 'i':
245                         cflags |= REG_ICASE;
246                         break;
247                 case 'j':
248                         makelist(&jidlist, LT_JID, optarg);
249                         criteria = 1;
250                         break;
251                 case 'l':
252                         longfmt = 1;
253                         break;
254                 case 'n':
255                         newest = 1;
256                         criteria = 1;
257                         break;
258                 case 'o':
259                         oldest = 1;
260                         criteria = 1;
261                         break;
262                 case 'q':
263                         if (!pgrep)
264                                 usage();
265                         quiet = 1;
266                         break;
267                 case 's':
268                         makelist(&sidlist, LT_SID, optarg);
269                         criteria = 1;
270                         break;
271                 case 't':
272                         makelist(&tdevlist, LT_TTY, optarg);
273                         criteria = 1;
274                         break;
275                 case 'u':
276                         makelist(&euidlist, LT_USER, optarg);
277                         criteria = 1;
278                         break;
279                 case 'v':
280                         inverse = 1;
281                         break;
282                 case 'x':
283                         fullmatch = 1;
284                         break;
285                 default:
286                         usage();
287                         /* NOTREACHED */
288                 }
289
290         argc -= optind;
291         argv += optind;
292         if (argc != 0)
293                 criteria = 1;
294         if (!criteria)
295                 usage();
296         if (newest && oldest)
297                 errx(STATUS_ERROR, "Options -n and -o are mutually exclusive");
298         if (pidfile != NULL)
299                 pidfromfile = takepid(pidfile, pidfilelock);
300         else {
301                 if (pidfilelock) {
302                         errx(STATUS_ERROR,
303                             "Option -L doesn't make sense without -F");
304                 }
305                 pidfromfile = -1;
306         }
307
308         mypid = getpid();
309
310         /*
311          * Retrieve the list of running processes from the kernel.
312          */
313         kd = kvm_openfiles(execf, coref, NULL, O_RDONLY, buf);
314         if (kd == NULL)
315                 errx(STATUS_ERROR, "Cannot open kernel files (%s)", buf);
316
317         /*
318          * Use KERN_PROC_PROC instead of KERN_PROC_ALL, since we
319          * just want processes and not individual kernel threads.
320          */
321         plist = kvm_getprocs(kd, KERN_PROC_PROC, 0, &nproc);
322         if (plist == NULL) {
323                 errx(STATUS_ERROR, "Cannot get process list (%s)",
324                     kvm_geterr(kd));
325         }
326
327         /*
328          * Allocate memory which will be used to keep track of the
329          * selection.
330          */
331         if ((selected = malloc(nproc)) == NULL) {
332                 err(STATUS_ERROR, "Cannot allocate memory for %d processes",
333                     nproc);
334         }
335         memset(selected, 0, nproc);
336
337         /*
338          * Refine the selection.
339          */
340         for (; *argv != NULL; argv++) {
341                 if ((rv = regcomp(&reg, *argv, cflags)) != 0) {
342                         regerror(rv, &reg, buf, sizeof(buf));
343                         errx(STATUS_BADUSAGE,
344                             "Cannot compile regular expression `%s' (%s)",
345                             *argv, buf);
346                 }
347
348                 for (i = 0, kp = plist; i < nproc; i++, kp++) {
349                         if (PSKIP(kp)) {
350                                 if (debug_opt > 0)
351                                     fprintf(stderr, "* Skipped %5d %3d %s\n",
352                                         kp->ki_pid, kp->ki_uid, kp->ki_comm);
353                                 continue;
354                         }
355
356                         if (matchargs &&
357                             (pargv = kvm_getargv(kd, kp, 0)) != NULL) {
358                                 jsz = 0;
359                                 while (jsz < sizeof(buf) && *pargv != NULL) {
360                                         jsz += snprintf(buf + jsz,
361                                             sizeof(buf) - jsz,
362                                             pargv[1] != NULL ? "%s " : "%s",
363                                             pargv[0]);
364                                         pargv++;
365                                 }
366                                 mstr = buf;
367                         } else
368                                 mstr = kp->ki_comm;
369
370                         rv = regexec(&reg, mstr, 1, &regmatch, 0);
371                         if (rv == 0) {
372                                 if (fullmatch) {
373                                         if (regmatch.rm_so == 0 &&
374                                             regmatch.rm_eo ==
375                                             (off_t)strlen(mstr))
376                                                 selected[i] = 1;
377                                 } else
378                                         selected[i] = 1;
379                         } else if (rv != REG_NOMATCH) {
380                                 regerror(rv, &reg, buf, sizeof(buf));
381                                 errx(STATUS_ERROR,
382                                     "Regular expression evaluation error (%s)",
383                                     buf);
384                         }
385                         if (debug_opt > 1) {
386                                 const char *rv_res = "NoMatch";
387                                 if (selected[i])
388                                         rv_res = "Matched";
389                                 fprintf(stderr, "* %s %5d %3d %s\n", rv_res,
390                                     kp->ki_pid, kp->ki_uid, mstr);
391                         }
392                 }
393
394                 regfree(&reg);
395         }
396
397         for (i = 0, kp = plist; i < nproc; i++, kp++) {
398                 if (PSKIP(kp))
399                         continue;
400
401                 if (pidfromfile >= 0 && kp->ki_pid != pidfromfile) {
402                         selected[i] = 0;
403                         continue;
404                 }
405
406                 SLIST_FOREACH(li, &ruidlist, li_chain)
407                         if (kp->ki_ruid == (uid_t)li->li_number)
408                                 break;
409                 if (SLIST_FIRST(&ruidlist) != NULL && li == NULL) {
410                         selected[i] = 0;
411                         continue;
412                 }
413
414                 SLIST_FOREACH(li, &rgidlist, li_chain)
415                         if (kp->ki_rgid == (gid_t)li->li_number)
416                                 break;
417                 if (SLIST_FIRST(&rgidlist) != NULL && li == NULL) {
418                         selected[i] = 0;
419                         continue;
420                 }
421
422                 SLIST_FOREACH(li, &euidlist, li_chain)
423                         if (kp->ki_uid == (uid_t)li->li_number)
424                                 break;
425                 if (SLIST_FIRST(&euidlist) != NULL && li == NULL) {
426                         selected[i] = 0;
427                         continue;
428                 }
429
430                 SLIST_FOREACH(li, &ppidlist, li_chain)
431                         if (kp->ki_ppid == (pid_t)li->li_number)
432                                 break;
433                 if (SLIST_FIRST(&ppidlist) != NULL && li == NULL) {
434                         selected[i] = 0;
435                         continue;
436                 }
437
438                 SLIST_FOREACH(li, &pgrplist, li_chain)
439                         if (kp->ki_pgid == (pid_t)li->li_number)
440                                 break;
441                 if (SLIST_FIRST(&pgrplist) != NULL && li == NULL) {
442                         selected[i] = 0;
443                         continue;
444                 }
445
446                 SLIST_FOREACH(li, &tdevlist, li_chain) {
447                         if (li->li_number == -1 &&
448                             (kp->ki_flag & P_CONTROLT) == 0)
449                                 break;
450                         if (kp->ki_tdev == (dev_t)li->li_number)
451                                 break;
452                 }
453                 if (SLIST_FIRST(&tdevlist) != NULL && li == NULL) {
454                         selected[i] = 0;
455                         continue;
456                 }
457
458                 SLIST_FOREACH(li, &sidlist, li_chain)
459                         if (kp->ki_sid == (pid_t)li->li_number)
460                                 break;
461                 if (SLIST_FIRST(&sidlist) != NULL && li == NULL) {
462                         selected[i] = 0;
463                         continue;
464                 }
465
466                 SLIST_FOREACH(li, &jidlist, li_chain) {
467                         /* A particular jail ID, including 0 (not in jail) */
468                         if (kp->ki_jid == (int)li->li_number)
469                                 break;
470                         /* Any jail */
471                         if (kp->ki_jid > 0 && li->li_number == -1)
472                                 break;
473                 }
474                 if (SLIST_FIRST(&jidlist) != NULL && li == NULL) {
475                         selected[i] = 0;
476                         continue;
477                 }
478
479                 SLIST_FOREACH(li, &classlist, li_chain) {
480                         /*
481                          * We skip P_SYSTEM processes to match ps(1) output.
482                          */
483                         if ((kp->ki_flag & P_SYSTEM) == 0 &&
484                             kp->ki_loginclass != NULL &&
485                             strcmp(kp->ki_loginclass, li->li_name) == 0)
486                                 break;
487                 }
488                 if (SLIST_FIRST(&classlist) != NULL && li == NULL) {
489                         selected[i] = 0;
490                         continue;
491                 }
492
493                 if (argc == 0)
494                         selected[i] = 1;
495         }
496
497         if (!ancestors) {
498                 pid = mypid;
499                 while (pid) {
500                         for (i = 0, kp = plist; i < nproc; i++, kp++) {
501                                 if (PSKIP(kp))
502                                         continue;
503                                 if (kp->ki_pid == pid) {
504                                         selected[i] = 0;
505                                         pid = kp->ki_ppid;
506                                         break;
507                                 }
508                         }
509                         if (i == nproc) {
510                                 if (pid == mypid)
511                                         pid = getppid();
512                                 else
513                                         break;  /* Maybe we're in a jail ? */
514                         }
515                 }
516         }
517
518         if (newest || oldest) {
519                 best_tval.tv_sec = 0;
520                 best_tval.tv_usec = 0;
521                 bestidx = -1;
522
523                 for (i = 0, kp = plist; i < nproc; i++, kp++) {
524                         if (!selected[i])
525                                 continue;
526                         if (bestidx == -1) {
527                                 /* The first entry of the list which matched. */
528                                 ;
529                         } else if (timercmp(&kp->ki_start, &best_tval, >)) {
530                                 /* This entry is newer than previous "best". */
531                                 if (oldest)     /* but we want the oldest */
532                                         continue;
533                         } else {
534                                 /* This entry is older than previous "best". */
535                                 if (newest)     /* but we want the newest */
536                                         continue;
537                         }
538                         /* This entry is better than previous "best" entry. */
539                         best_tval.tv_sec = kp->ki_start.tv_sec;
540                         best_tval.tv_usec = kp->ki_start.tv_usec;
541                         bestidx = i;
542                 }
543
544                 memset(selected, 0, nproc);
545                 if (bestidx != -1)
546                         selected[bestidx] = 1;
547         }
548
549         /*
550          * Take the appropriate action for each matched process, if any.
551          */
552         did_action = 0;
553         for (i = 0, rv = 0, kp = plist; i < nproc; i++, kp++) {
554                 if (PSKIP(kp))
555                         continue;
556                 if (selected[i]) {
557                         if (longfmt && !pgrep) {
558                                 did_action = 1;
559                                 printf("kill -%d %d\n", signum, kp->ki_pid);
560                         }
561                         if (inverse)
562                                 continue;
563                 } else if (!inverse)
564                         continue;
565                 rv |= (*action)(kp);
566         }
567         if (!did_action && !pgrep && longfmt)
568                 fprintf(stderr,
569                     "No matching processes belonging to you were found\n");
570
571         exit(rv ? STATUS_MATCH : STATUS_NOMATCH);
572 }
573
574 static void
575 usage(void)
576 {
577         const char *ustr;
578
579         if (pgrep)
580                 ustr = "[-LSfilnoqvx] [-d delim]";
581         else
582                 ustr = "[-signal] [-ILfilnovx]";
583
584         fprintf(stderr,
585                 "usage: %s %s [-F pidfile] [-G gid] [-M core] [-N system]\n"
586                 "             [-P ppid] [-U uid] [-c class] [-g pgrp] [-j jid]\n"
587                 "             [-s sid] [-t tty] [-u euid] pattern ...\n",
588                 getprogname(), ustr);
589
590         exit(STATUS_BADUSAGE);
591 }
592
593 static void
594 show_process(const struct kinfo_proc *kp)
595 {
596         char **argv;
597
598         if (quiet) {
599                 assert(pgrep);
600                 return;
601         }
602         if ((longfmt || !pgrep) && matchargs &&
603             (argv = kvm_getargv(kd, kp, 0)) != NULL) {
604                 printf("%d ", (int)kp->ki_pid);
605                 for (; *argv != NULL; argv++) {
606                         printf("%s", *argv);
607                         if (argv[1] != NULL)
608                                 putchar(' ');
609                 }
610         } else if (longfmt || !pgrep)
611                 printf("%d %s", (int)kp->ki_pid, kp->ki_comm);
612         else
613                 printf("%d", (int)kp->ki_pid);
614 }
615
616 static int
617 killact(const struct kinfo_proc *kp)
618 {
619         int ch, first;
620
621         if (interactive) {
622                 /*
623                  * Be careful, ask before killing.
624                  */
625                 printf("kill ");
626                 show_process(kp);
627                 printf("? ");
628                 fflush(stdout);
629                 first = ch = getchar();
630                 while (ch != '\n' && ch != EOF)
631                         ch = getchar();
632                 if (first != 'y' && first != 'Y')
633                         return (1);
634         }
635         if (kill(kp->ki_pid, signum) == -1) {
636                 /* 
637                  * Check for ESRCH, which indicates that the process
638                  * disappeared between us matching it and us
639                  * signalling it; don't issue a warning about it.
640                  */
641                 if (errno != ESRCH)
642                         warn("signalling pid %d", (int)kp->ki_pid);
643                 /*
644                  * Return 0 to indicate that the process should not be
645                  * considered a match, since we didn't actually get to
646                  * signal it.
647                  */
648                 return (0);
649         }
650         return (1);
651 }
652
653 static int
654 grepact(const struct kinfo_proc *kp)
655 {
656
657         show_process(kp);
658         if (!quiet)
659                 printf("%s", delim);
660         return (1);
661 }
662
663 static void
664 makelist(struct listhead *head, enum listtype type, char *src)
665 {
666         struct list *li;
667         struct passwd *pw;
668         struct group *gr;
669         struct stat st;
670         const char *cp;
671         char *sp, *ep, buf[MAXPATHLEN];
672         int empty;
673
674         empty = 1;
675
676         while ((sp = strsep(&src, ",")) != NULL) {
677                 if (*sp == '\0')
678                         usage();
679
680                 if ((li = malloc(sizeof(*li))) == NULL) {
681                         err(STATUS_ERROR, "Cannot allocate %zu bytes",
682                             sizeof(*li));
683                 }
684
685                 SLIST_INSERT_HEAD(head, li, li_chain);
686                 empty = 0;
687
688                 if (type != LT_CLASS)
689                         li->li_number = (uid_t)strtol(sp, &ep, 0);
690
691                 if (type != LT_CLASS && *ep == '\0') {
692                         switch (type) {
693                         case LT_PGRP:
694                                 if (li->li_number == 0)
695                                         li->li_number = getpgrp();
696                                 break;
697                         case LT_SID:
698                                 if (li->li_number == 0)
699                                         li->li_number = getsid(mypid);
700                                 break;
701                         case LT_JID:
702                                 if (li->li_number < 0)
703                                         errx(STATUS_BADUSAGE,
704                                              "Negative jail ID `%s'", sp);
705                                 /* For compatibility with old -j */
706                                 if (li->li_number == 0)
707                                         li->li_number = -1;     /* any jail */
708                                 break;
709                         case LT_TTY:
710                                 if (li->li_number < 0)
711                                         errx(STATUS_BADUSAGE,
712                                              "Negative /dev/pts tty `%s'", sp);
713                                 snprintf(buf, sizeof(buf), _PATH_DEV "pts/%s",
714                                     sp);
715                                 if (stat(buf, &st) != -1)
716                                         goto foundtty;
717                                 if (errno == ENOENT)
718                                         errx(STATUS_BADUSAGE, "No such tty: `"
719                                             _PATH_DEV "pts/%s'", sp);
720                                 err(STATUS_ERROR, "Cannot access `"
721                                     _PATH_DEV "pts/%s'", sp);
722                                 break;
723                         default:
724                                 break;
725                         }
726                         continue;
727                 }
728
729                 switch (type) {
730                 case LT_USER:
731                         if ((pw = getpwnam(sp)) == NULL)
732                                 errx(STATUS_BADUSAGE, "Unknown user `%s'", sp);
733                         li->li_number = pw->pw_uid;
734                         break;
735                 case LT_GROUP:
736                         if ((gr = getgrnam(sp)) == NULL)
737                                 errx(STATUS_BADUSAGE, "Unknown group `%s'", sp);
738                         li->li_number = gr->gr_gid;
739                         break;
740                 case LT_TTY:
741                         if (strcmp(sp, "-") == 0) {
742                                 li->li_number = -1;
743                                 break;
744                         } else if (strcmp(sp, "co") == 0) {
745                                 cp = "console";
746                         } else {
747                                 cp = sp;
748                         }
749
750                         snprintf(buf, sizeof(buf), _PATH_DEV "%s", cp);
751                         if (stat(buf, &st) != -1)
752                                 goto foundtty;
753
754                         snprintf(buf, sizeof(buf), _PATH_DEV "tty%s", cp);
755                         if (stat(buf, &st) != -1)
756                                 goto foundtty;
757
758                         if (errno == ENOENT)
759                                 errx(STATUS_BADUSAGE, "No such tty: `%s'", sp);
760                         err(STATUS_ERROR, "Cannot access `%s'", sp);
761
762 foundtty:               if ((st.st_mode & S_IFCHR) == 0)
763                                 errx(STATUS_BADUSAGE, "Not a tty: `%s'", sp);
764
765                         li->li_number = st.st_rdev;
766                         break;
767                 case LT_JID:
768                         if (strcmp(sp, "none") == 0)
769                                 li->li_number = 0;
770                         else if (strcmp(sp, "any") == 0)
771                                 li->li_number = -1;
772                         else if (*ep != '\0')
773                                 errx(STATUS_BADUSAGE,
774                                      "Invalid jail ID `%s'", sp);
775                         break;
776                 case LT_CLASS:
777                         li->li_number = -1;
778                         li->li_name = strdup(sp);
779                         if (li->li_name == NULL)
780                                 err(STATUS_ERROR, "Cannot allocate memory");
781                         break;
782                 default:
783                         usage();
784                 }
785         }
786
787         if (empty)
788                 usage();
789 }
790
791 static int
792 takepid(const char *pidfile, int pidfilelock)
793 {
794         char *endp, line[BUFSIZ];
795         FILE *fh;
796         long rval;
797
798         fh = fopen(pidfile, "r");
799         if (fh == NULL)
800                 err(STATUS_ERROR, "Cannot open pidfile `%s'", pidfile);
801
802         if (pidfilelock) {
803                 /*
804                  * If we can lock pidfile, this means that daemon is not
805                  * running, so would be better not to kill some random process.
806                  */
807                 if (flock(fileno(fh), LOCK_EX | LOCK_NB) == 0) {
808                         (void)fclose(fh);
809                         errx(STATUS_ERROR, "File '%s' can be locked", pidfile);
810                 } else {
811                         if (errno != EWOULDBLOCK) {
812                                 errx(STATUS_ERROR,
813                                     "Error while locking file '%s'", pidfile);
814                         }
815                 }
816         }
817
818         if (fgets(line, sizeof(line), fh) == NULL) {
819                 if (feof(fh)) {
820                         (void)fclose(fh);
821                         errx(STATUS_ERROR, "Pidfile `%s' is empty", pidfile);
822                 }
823                 (void)fclose(fh);
824                 err(STATUS_ERROR, "Cannot read from pid file `%s'", pidfile);
825         }
826         (void)fclose(fh);
827
828         rval = strtol(line, &endp, 10);
829         if (*endp != '\0' && !isspace((unsigned char)*endp))
830                 errx(STATUS_ERROR, "Invalid pid in file `%s'", pidfile);
831         else if (rval < MIN_PID || rval > MAX_PID)
832                 errx(STATUS_ERROR, "Invalid pid in file `%s'", pidfile);
833         return (rval);
834 }