summaryrefslogtreecommitdiff
path: root/usr.bin/who
diff options
context:
space:
mode:
authorRicardo Mestre <mestre@cvs.openbsd.org>2021-11-11 08:42:32 +0000
committerRicardo Mestre <mestre@cvs.openbsd.org>2021-11-11 08:42:32 +0000
commita604d3bebe42d713fdaa41696bb95494b04ddccd (patch)
tree7ecbb9af2b82760a6c39cc0f2555770bd8765fad /usr.bin/who
parentd2d4b581940a96e3816bfced32ea21d9a49798d8 (diff)
There's no need to call pledge(2) so many times, or on many places, with the
same promises, just call it once before the switch case while at the same time hoisting one unveil(2) so they are all grouped. The call to pledge(2) on file() can also be simplified since "stdio rpath getpw" will already be activated when we reach it. OK deraadt@
Diffstat (limited to 'usr.bin/who')
-rw-r--r--usr.bin/who/who.c22
1 files changed, 9 insertions, 13 deletions
diff --git a/usr.bin/who/who.c b/usr.bin/who/who.c
index 13e911eccd0..587865c2b3d 100644
--- a/usr.bin/who/who.c
+++ b/usr.bin/who/who.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: who.c,v 1.31 2021/11/10 15:06:24 schwarze Exp $ */
+/* $OpenBSD: who.c,v 1.32 2021/11/11 08:42:31 mestre Exp $ */
/* $NetBSD: who.c,v 1.4 1994/12/07 04:28:49 jtc Exp $ */
/*
@@ -125,10 +125,15 @@ main(int argc, char *argv[])
if (unveil(_PATH_DEV, "r") == -1)
err(1, "unveil %s", _PATH_DEV);
}
+ if (argc == 1) {
+ if (unveil(*argv, "r") == -1)
+ err(1, "unveil %s", *argv);
+ }
+ if (pledge("stdio rpath getpw", NULL) == -1)
+ err(1, "pledge");
+
switch (argc) {
case 0: /* who */
- if (pledge("stdio rpath getpw", NULL) == -1)
- err(1, "pledge");
ufp = file(_PATH_UTMP);
if (only_current_term) {
@@ -155,10 +160,6 @@ main(int argc, char *argv[])
}
break;
case 1: /* who utmp_file */
- if (unveil(*argv, "r") == -1)
- err(1, "unveil %s", *argv);
- if (pledge("stdio rpath getpw", NULL) == -1)
- err(1, "pledge");
ufp = file(*argv);
if (only_current_term) {
@@ -184,8 +185,6 @@ main(int argc, char *argv[])
}
break;
case 2: /* who am i */
- if (pledge("stdio rpath getpw", NULL) == -1)
- err(1, "pledge");
ufp = file(_PATH_UTMP);
who_am_i(ufp);
break;
@@ -301,10 +300,7 @@ file(char *name)
err(1, "%s", name);
/* NOTREACHED */
}
- if (show_term || show_idle) {
- if (pledge("stdio rpath getpw", NULL) == -1)
- err(1, "pledge");
- } else {
+ if (!show_term && !show_idle) {
if (pledge("stdio getpw", NULL) == -1)
err(1, "pledge");
}