6cf9b8e
diff -up openssh-7.4p1/gss-serv-krb5.c.GSSAPIEnablek5users openssh-7.4p1/gss-serv-krb5.c
6cf9b8e
--- openssh-7.4p1/gss-serv-krb5.c.GSSAPIEnablek5users	2016-12-23 15:18:40.615216100 +0100
6cf9b8e
+++ openssh-7.4p1/gss-serv-krb5.c	2016-12-23 15:18:40.628216102 +0100
6cf9b8e
@@ -279,7 +279,6 @@ ssh_gssapi_krb5_cmdok(krb5_principal pri
140e5ca
 	FILE *fp;
140e5ca
 	char file[MAXPATHLEN];
580f986
 	char line[BUFSIZ] = "";
140e5ca
-	char kuser[65]; /* match krb5_kuserok() */
140e5ca
 	struct stat st;
140e5ca
 	struct passwd *pw = the_authctxt->pw;
140e5ca
 	int found_principal = 0;
6cf9b8e
@@ -288,7 +287,7 @@ ssh_gssapi_krb5_cmdok(krb5_principal pri
140e5ca
 
140e5ca
 	snprintf(file, sizeof(file), "%s/.k5users", pw->pw_dir);
140e5ca
 	/* If both .k5login and .k5users DNE, self-login is ok. */
140e5ca
-	if (!k5login_exists && (access(file, F_OK) == -1)) {
140e5ca
+	if ( !options.enable_k5users || (!k5login_exists && (access(file, F_OK) == -1))) {
140e5ca
                 return ssh_krb5_kuserok(krb_context, principal, luser,
140e5ca
                                         k5login_exists);
140e5ca
 	}
6cf9b8e
diff -up openssh-7.4p1/servconf.c.GSSAPIEnablek5users openssh-7.4p1/servconf.c
6cf9b8e
--- openssh-7.4p1/servconf.c.GSSAPIEnablek5users	2016-12-23 15:18:40.615216100 +0100
6cf9b8e
+++ openssh-7.4p1/servconf.c	2016-12-23 15:35:36.354401156 +0100
6cf9b8e
@@ -168,6 +168,7 @@ initialize_server_options(ServerOptions
1900351
 	options->fingerprint_hash = -1;
6cf9b8e
 	options->disable_forwarding = -1;
140e5ca
 	options->use_kuserok = -1;
140e5ca
+	options->enable_k5users = -1;
140e5ca
 }
140e5ca
 
132f8f8
 /* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
6cf9b8e
@@ -345,6 +346,8 @@ fill_default_server_options(ServerOption
6cf9b8e
 		options->disable_forwarding = 0;
3f55133
 	if (options->use_kuserok == -1)
3f55133
 		options->use_kuserok = 1;
6cf9b8e
+	if (options->enable_k5users == -1)
6cf9b8e
+		options->enable_k5users = 0;
6cf9b8e
 
6cf9b8e
 	assemble_algorithms(options);
3f55133
 
6cf9b8e
@@ -418,7 +421,7 @@ typedef enum {
132f8f8
 	sHostbasedUsesNameFromPacketOnly, sHostbasedAcceptedKeyTypes,
3f55133
 	sHostKeyAlgorithms,
132f8f8
 	sClientAliveInterval, sClientAliveCountMax, sAuthorizedKeysFile,
140e5ca
-	sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor,
140e5ca
+	sGssAuthentication, sGssCleanupCreds, sGssEnablek5users, sGssStrictAcceptor,
140e5ca
 	sGssKeyEx, sGssStoreRekey, sAcceptEnv, sPermitTunnel,
140e5ca
 	sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
140e5ca
 	sUsePrivilegeSeparation, sAllowAgentForwarding,
6cf9b8e
@@ -497,12 +500,14 @@ static struct {
140e5ca
 	{ "gssapistrictacceptorcheck", sGssStrictAcceptor, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapikeyexchange", sGssKeyEx, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapistorecredentialsonrekey", sGssStoreRekey, SSHCFG_GLOBAL },
140e5ca
+	{ "gssapienablek5users", sGssEnablek5users, SSHCFG_ALL },
140e5ca
 #else
140e5ca
 	{ "gssapiauthentication", sUnsupported, SSHCFG_ALL },
140e5ca
 	{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapistrictacceptorcheck", sUnsupported, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapikeyexchange", sUnsupported, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapistorecredentialsonrekey", sUnsupported, SSHCFG_GLOBAL },
140e5ca
+	{ "gssapienablek5users", sUnsupported, SSHCFG_ALL },
140e5ca
 #endif
140e5ca
 	{ "gssusesessionccache", sUnsupported, SSHCFG_GLOBAL },
140e5ca
 	{ "gssapiusesessioncredcache", sUnsupported, SSHCFG_GLOBAL },
6cf9b8e
@@ -1653,6 +1658,10 @@ process_server_config_line(ServerOptions
140e5ca
 		intptr = &options->use_kuserok;
140e5ca
 		goto parse_flag;
140e5ca
 
140e5ca
+	case sGssEnablek5users:
140e5ca
+		intptr = &options->enable_k5users;
140e5ca
+		goto parse_flag;
140e5ca
+
140e5ca
 	case sPermitOpen:
140e5ca
 		arg = strdelim(&cp;;
140e5ca
 		if (!arg || *arg == '\0')
6cf9b8e
@@ -2026,6 +2035,7 @@ copy_set_server_options(ServerOptions *d
140e5ca
 	M_CP_INTOPT(ip_qos_interactive);
140e5ca
 	M_CP_INTOPT(ip_qos_bulk);
140e5ca
 	M_CP_INTOPT(use_kuserok);
140e5ca
+	M_CP_INTOPT(enable_k5users);
140e5ca
 	M_CP_INTOPT(rekey_limit);
140e5ca
 	M_CP_INTOPT(rekey_interval);
140e5ca
 
6cf9b8e
@@ -2320,6 +2330,7 @@ dump_config(ServerOptions *o)
140e5ca
 	dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
1900351
 	dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);
140e5ca
 	dump_cfg_fmtint(sKerberosUseKuserok, o->use_kuserok);
140e5ca
+	dump_cfg_fmtint(sGssEnablek5users, o->enable_k5users);
140e5ca
 
140e5ca
 	/* string arguments */
140e5ca
 	dump_cfg_string(sPidFile, o->pid_file);
6cf9b8e
diff -up openssh-7.4p1/servconf.h.GSSAPIEnablek5users openssh-7.4p1/servconf.h
6cf9b8e
--- openssh-7.4p1/servconf.h.GSSAPIEnablek5users	2016-12-23 15:18:40.616216100 +0100
6cf9b8e
+++ openssh-7.4p1/servconf.h	2016-12-23 15:18:40.629216102 +0100
6cf9b8e
@@ -174,7 +174,8 @@ typedef struct {
140e5ca
 
140e5ca
 	int	num_permitted_opens;
140e5ca
 
140e5ca
-	int	use_kuserok;
140e5ca
+	int		use_kuserok;
140e5ca
+	int		enable_k5users;
140e5ca
 	char   *chroot_directory;
140e5ca
 	char   *revoked_keys_file;
140e5ca
 	char   *trusted_user_ca_keys;
6cf9b8e
diff -up openssh-7.4p1/sshd_config.5.GSSAPIEnablek5users openssh-7.4p1/sshd_config.5
6cf9b8e
--- openssh-7.4p1/sshd_config.5.GSSAPIEnablek5users	2016-12-23 15:18:40.630216103 +0100
6cf9b8e
+++ openssh-7.4p1/sshd_config.5	2016-12-23 15:36:21.607408435 +0100
6cf9b8e
@@ -628,6 +628,12 @@ Specifies whether to automatically destr
13073f8
 on logout.
140e5ca
 The default is
6cf9b8e
 .Cm yes .
140e5ca
+.It Cm GSSAPIEnablek5users
140e5ca
+Specifies whether to look at .k5users file for GSSAPI authentication
140e5ca
+access control. Further details are described in
140e5ca
+.Xr ksu 1 .
140e5ca
+The default is
6cf9b8e
+.Cm no .
6cf9b8e
 .It Cm GSSAPIKeyExchange
6cf9b8e
 Specifies whether key exchange based on GSSAPI is allowed. GSSAPI key exchange
6cf9b8e
 doesn't rely on ssh keys to verify host identity.
6cf9b8e
diff -up openssh-7.4p1/sshd_config.GSSAPIEnablek5users openssh-7.4p1/sshd_config
6cf9b8e
--- openssh-7.4p1/sshd_config.GSSAPIEnablek5users	2016-12-23 15:18:40.616216100 +0100
6cf9b8e
+++ openssh-7.4p1/sshd_config	2016-12-23 15:18:40.631216103 +0100
6cf9b8e
@@ -80,6 +80,7 @@ GSSAPIAuthentication yes
535d341
 GSSAPICleanupCredentials no
535d341
 #GSSAPIStrictAcceptorCheck yes
535d341
 #GSSAPIKeyExchange no
535d341
+#GSSAPIEnablek5users no
535d341
 
535d341
 # Set this to 'yes' to enable PAM authentication, account processing,
535d341
 # and session processing. If this is enabled, PAM authentication will