From: deraadt@openbsd.org Date: Thu, 4 Jul 2019 16:20:10 +0000 (+0000) Subject: upstream: fatal() if getgrnam() cannot find "tty" X-Git-Tag: V_8_1_P1~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b4cc4bdc8a70bf209a274fa2b2a49c1e3c8d8a2;p=thirdparty%2Fopenssh-portable.git upstream: fatal() if getgrnam() cannot find "tty" OpenBSD-Commit-ID: d148c1c052fa0ed7d105b5428b5c1bab91630048 --- diff --git a/sshpty.c b/sshpty.c index a625e474e..9ad8e95c8 100644 --- a/sshpty.c +++ b/sshpty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshpty.c,v 1.33 2019/07/04 16:16:51 deraadt Exp $ */ +/* $OpenBSD: sshpty.c,v 1.34 2019/07/04 16:20:10 deraadt Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -171,6 +171,8 @@ pty_setowner(struct passwd *pw, const char *tty) /* Determine the group to make the owner of the tty. */ grp = getgrnam("tty"); + if (grp == NULL) + fatal("no tty group"); gid = (grp != NULL) ? grp->gr_gid : pw->pw_gid; mode = (grp != NULL) ? 0620 : 0600;