535d341
diff -up openssh/gss-serv-krb5.c.GSSAPIEnablek5users openssh/gss-serv-krb5.c
535d341
--- openssh/gss-serv-krb5.c.GSSAPIEnablek5users	2015-06-24 11:40:03.716448353 +0200
535d341
+++ openssh/gss-serv-krb5.c	2015-06-24 11:40:03.739448295 +0200
132f8f8
@@ -260,7 +260,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;
132f8f8
@@ -269,7 +268,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
 	}
535d341
diff -up openssh/servconf.c.GSSAPIEnablek5users openssh/servconf.c
535d341
--- openssh/servconf.c.GSSAPIEnablek5users	2015-06-24 11:40:03.728448323 +0200
535d341
+++ openssh/servconf.c	2015-06-24 11:40:03.740448292 +0200
535d341
@@ -171,6 +171,7 @@ initialize_server_options(ServerOptions
140e5ca
 	options->version_addendum = NULL;
1900351
 	options->fingerprint_hash = -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. */
535d341
@@ -353,6 +354,8 @@ fill_default_server_options(ServerOption
1900351
 		options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
140e5ca
 	if (options->use_kuserok == -1)
140e5ca
 		options->use_kuserok = 1;
140e5ca
+	if (options->enable_k5users == -1)
140e5ca
+		options->enable_k5users = 0;
140e5ca
 	/* Turn privilege separation on by default */
140e5ca
 	if (use_privsep == -1)
1900351
 		use_privsep = PRIVSEP_NOSANDBOX;
535d341
@@ -412,7 +415,7 @@ typedef enum {
140e5ca
 	sBanner, sShowPatchLevel, sUseDNS, sHostbasedAuthentication,
132f8f8
 	sHostbasedUsesNameFromPacketOnly, sHostbasedAcceptedKeyTypes,
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,
535d341
@@ -490,12 +493,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 },
535d341
@@ -1663,6 +1668,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')
535d341
@@ -2018,6 +2027,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
 
535d341
@@ -2300,6 +2310,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);
535d341
diff -up openssh/servconf.h.GSSAPIEnablek5users openssh/servconf.h
535d341
--- openssh/servconf.h.GSSAPIEnablek5users	2015-06-24 11:40:03.717448351 +0200
535d341
+++ openssh/servconf.h	2015-06-24 11:40:03.740448292 +0200
535d341
@@ -179,7 +179,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;
535d341
diff -up openssh/sshd_config.5.GSSAPIEnablek5users openssh/sshd_config.5
535d341
--- openssh/sshd_config.5.GSSAPIEnablek5users	2015-06-24 11:40:03.741448290 +0200
535d341
+++ openssh/sshd_config.5	2015-06-24 11:40:40.707354263 +0200
535d341
@@ -628,6 +628,12 @@ on logout.
140e5ca
 The default is
140e5ca
 .Dq yes .
140e5ca
 Note that this option applies to protocol version 2 only.
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
140e5ca
+.Dq no .
140e5ca
 .It Cm GSSAPIStrictAcceptorCheck
535d341
 Determines whether to be strict about the identity of the GSSAPI acceptor
535d341
 a client authenticates against.
535d341
diff -up openssh/sshd_config.GSSAPIEnablek5users openssh/sshd_config
535d341
--- openssh/sshd_config.GSSAPIEnablek5users	2015-06-24 11:40:03.717448351 +0200
535d341
+++ openssh/sshd_config	2015-06-24 11:40:03.740448292 +0200
535d341
@@ -94,6 +94,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