summaryrefslogtreecommitdiff
path: root/usr.sbin/user/user.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2010-07-26 10:55:18 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2010-07-26 10:55:18 +0000
commitbf436919aa5f41dcc86d9933547b7d128151bde3 (patch)
tree5097dc3cdd2d8f114ba9597ed4141cfe76baa4c7 /usr.sbin/user/user.c
parentee1ef654703a2d302b8e4a7e08ab96ca73f4c09a (diff)
- use warnx instead of warn when skipping large lines, as errno is
nonsensical in that case (and usually zero). - when altering the groups file, preserve a single "+" line instead of complaining it is incorrect and removing it. ok fgsch@ millert@ ray@
Diffstat (limited to 'usr.sbin/user/user.c')
-rw-r--r--usr.sbin/user/user.c40
1 files changed, 24 insertions, 16 deletions
diff --git a/usr.sbin/user/user.c b/usr.sbin/user/user.c
index 4a6a6d0e61c..2e850d68c58 100644
--- a/usr.sbin/user/user.c
+++ b/usr.sbin/user/user.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: user.c,v 1.77 2009/02/08 11:37:43 chl Exp $ */
+/* $OpenBSD: user.c,v 1.78 2010/07/26 10:55:17 miod Exp $ */
/* $NetBSD: user.c,v 1.69 2003/04/14 17:40:07 agc Exp $ */
/*
@@ -429,23 +429,31 @@ modify_gid(char *group, char *newent)
if (cc > 0 && buf[cc - 1] != '\n' && !feof(from)) {
while (fgetc(from) != '\n' && !feof(from))
cc++;
- warn("%s: line `%s' too long (%d bytes), skipping",
+ warnx("%s: line `%s' too long (%d bytes), skipping",
_PATH_GROUP, buf, cc);
continue;
}
if ((colon = strchr(buf, ':')) == NULL) {
- warn("badly formed entry `%s'", buf);
- continue;
- }
- entc = (int)(colon - buf);
- if (entc == groupc && strncmp(group, buf, entc) == 0) {
- if (newent == NULL) {
+ /*
+ * The only valid entry with no column is the all-YP
+ * line.
+ */
+ if (strcmp(buf, "+\n") != 0) {
+ warnx("badly formed entry `%.*s'", cc - 1, buf);
continue;
- } else {
- cc = strlcpy(buf, newent, sizeof(buf));
- if (cc >= sizeof(buf)) {
- warnx("group `%s' entry too long", newent);
- return (0);
+ }
+ } else {
+ entc = (int)(colon - buf);
+ if (entc == groupc && strncmp(group, buf, entc) == 0) {
+ if (newent == NULL) {
+ continue;
+ } else {
+ cc = strlcpy(buf, newent, sizeof(buf));
+ if (cc >= sizeof(buf)) {
+ warnx("group `%s' entry too long",
+ newent);
+ return (0);
+ }
}
}
}
@@ -533,7 +541,7 @@ append_group(char *user, int ngroups, const char **groups)
if (cc > 0 && buf[cc - 1] != '\n' && !feof(from)) {
while (fgetc(from) != '\n' && !feof(from))
cc++;
- warn("%s: line `%s' too long (%d bytes), skipping",
+ warnx("%s: line `%s' too long (%d bytes), skipping",
_PATH_GROUP, buf, cc);
continue;
}
@@ -1245,7 +1253,7 @@ rm_user_from_groups(char *login_name)
if (cc > 0 && buf[cc - 1] != '\n' && !feof(from)) {
while (fgetc(from) != '\n' && !feof(from))
cc++;
- warn("%s: line `%s' too long (%d bytes), skipping",
+ warnx("%s: line `%s' too long (%d bytes), skipping",
_PATH_GROUP, buf, cc);
continue;
}
@@ -1320,7 +1328,7 @@ is_local(char *name, const char *file)
if (cc > 0 && buf[cc - 1] != '\n' && !feof(fp)) {
while (fgetc(fp) != '\n' && !feof(fp))
cc++;
- warn("%s: line `%s' too long (%d bytes), skipping",
+ warnx("%s: line `%s' too long (%d bytes), skipping",
file, buf, cc);
continue;
}