2015-01-14 14:24:52 +00:00
|
|
|
diff --git a/gss-serv-krb5.c b/gss-serv-krb5.c
|
2015-01-20 12:18:45 +00:00
|
|
|
index 961c564..0fcfd7b 100644
|
2015-01-14 14:24:52 +00:00
|
|
|
--- a/gss-serv-krb5.c
|
|
|
|
+++ b/gss-serv-krb5.c
|
|
|
|
@@ -260,7 +260,6 @@ ssh_gssapi_krb5_cmdok(krb5_principal principal, const char *name,
|
|
|
|
FILE *fp;
|
|
|
|
char file[MAXPATHLEN];
|
2015-01-30 13:27:43 +00:00
|
|
|
char line[BUFSIZ] = "";
|
2015-01-14 14:24:52 +00:00
|
|
|
- char kuser[65]; /* match krb5_kuserok() */
|
|
|
|
struct stat st;
|
|
|
|
struct passwd *pw = the_authctxt->pw;
|
|
|
|
int found_principal = 0;
|
|
|
|
@@ -269,7 +268,7 @@ ssh_gssapi_krb5_cmdok(krb5_principal principal, const char *name,
|
|
|
|
|
|
|
|
snprintf(file, sizeof(file), "%s/.k5users", pw->pw_dir);
|
|
|
|
/* If both .k5login and .k5users DNE, self-login is ok. */
|
|
|
|
- if (!k5login_exists && (access(file, F_OK) == -1)) {
|
|
|
|
+ if ( !options.enable_k5users || (!k5login_exists && (access(file, F_OK) == -1))) {
|
|
|
|
return ssh_krb5_kuserok(krb_context, principal, luser,
|
|
|
|
k5login_exists);
|
|
|
|
}
|
|
|
|
diff --git a/servconf.c b/servconf.c
|
2015-01-20 12:18:45 +00:00
|
|
|
index e4164b1..87a311b 100644
|
2015-01-14 14:24:52 +00:00
|
|
|
--- a/servconf.c
|
|
|
|
+++ b/servconf.c
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -164,6 +164,7 @@ initialize_server_options(ServerOptions *options)
|
2015-01-14 14:24:52 +00:00
|
|
|
options->version_addendum = NULL;
|
2015-01-20 12:18:45 +00:00
|
|
|
options->fingerprint_hash = -1;
|
2015-01-14 14:24:52 +00:00
|
|
|
options->use_kuserok = -1;
|
|
|
|
+ options->enable_k5users = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -331,6 +332,8 @@ fill_default_server_options(ServerOptions *options)
|
|
|
|
options->fingerprint_hash = SSH_FP_HASH_DEFAULT;
|
2015-01-14 14:24:52 +00:00
|
|
|
if (options->use_kuserok == -1)
|
|
|
|
options->use_kuserok = 1;
|
|
|
|
+ if (options->enable_k5users == -1)
|
|
|
|
+ options->enable_k5users = 0;
|
|
|
|
/* Turn privilege separation on by default */
|
|
|
|
if (use_privsep == -1)
|
2015-01-20 12:18:45 +00:00
|
|
|
use_privsep = PRIVSEP_NOSANDBOX;
|
|
|
|
@@ -371,7 +374,7 @@ typedef enum {
|
2015-01-14 14:24:52 +00:00
|
|
|
sBanner, sShowPatchLevel, sUseDNS, sHostbasedAuthentication,
|
|
|
|
sHostbasedUsesNameFromPacketOnly, sClientAliveInterval,
|
|
|
|
sClientAliveCountMax, sAuthorizedKeysFile,
|
|
|
|
- sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor,
|
|
|
|
+ sGssAuthentication, sGssCleanupCreds, sGssEnablek5users, sGssStrictAcceptor,
|
|
|
|
sGssKeyEx, sGssStoreRekey, sAcceptEnv, sPermitTunnel,
|
|
|
|
sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
|
|
|
|
sUsePrivilegeSeparation, sAllowAgentForwarding,
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -447,6 +450,7 @@ static struct {
|
2015-01-14 14:24:52 +00:00
|
|
|
{ "gssapistrictacceptorcheck", sGssStrictAcceptor, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapikeyexchange", sGssKeyEx, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapistorecredentialsonrekey", sGssStoreRekey, SSHCFG_GLOBAL },
|
|
|
|
+ { "gssapienablek5users", sGssEnablek5users, SSHCFG_ALL },
|
|
|
|
#else
|
|
|
|
{ "gssapiauthentication", sUnsupported, SSHCFG_ALL },
|
|
|
|
{ "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL },
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -454,6 +458,7 @@ static struct {
|
2015-01-14 14:24:52 +00:00
|
|
|
{ "gssapistrictacceptorcheck", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapikeyexchange", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapistorecredentialsonrekey", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
+ { "gssapienablek5users", sUnsupported, SSHCFG_ALL },
|
|
|
|
#endif
|
|
|
|
{ "gssusesessionccache", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "gssapiusesessioncredcache", sUnsupported, SSHCFG_GLOBAL },
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -1566,6 +1571,10 @@ process_server_config_line(ServerOptions *options, char *line,
|
2015-01-14 14:24:52 +00:00
|
|
|
intptr = &options->use_kuserok;
|
|
|
|
goto parse_flag;
|
|
|
|
|
|
|
|
+ case sGssEnablek5users:
|
|
|
|
+ intptr = &options->enable_k5users;
|
|
|
|
+ goto parse_flag;
|
|
|
|
+
|
|
|
|
case sPermitOpen:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -1884,6 +1893,7 @@ copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth)
|
2015-01-14 14:24:52 +00:00
|
|
|
M_CP_INTOPT(ip_qos_interactive);
|
|
|
|
M_CP_INTOPT(ip_qos_bulk);
|
|
|
|
M_CP_INTOPT(use_kuserok);
|
|
|
|
+ M_CP_INTOPT(enable_k5users);
|
|
|
|
M_CP_INTOPT(rekey_limit);
|
|
|
|
M_CP_INTOPT(rekey_interval);
|
|
|
|
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -2143,6 +2153,7 @@ dump_config(ServerOptions *o)
|
2015-01-14 14:24:52 +00:00
|
|
|
dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
|
2015-01-20 12:18:45 +00:00
|
|
|
dump_cfg_fmtint(sFingerprintHash, o->fingerprint_hash);
|
2015-01-14 14:24:52 +00:00
|
|
|
dump_cfg_fmtint(sKerberosUseKuserok, o->use_kuserok);
|
|
|
|
+ dump_cfg_fmtint(sGssEnablek5users, o->enable_k5users);
|
|
|
|
|
|
|
|
/* string arguments */
|
|
|
|
dump_cfg_string(sPidFile, o->pid_file);
|
|
|
|
diff --git a/servconf.h b/servconf.h
|
2015-01-20 12:18:45 +00:00
|
|
|
index cf2a505..070a8ed 100644
|
2015-01-14 14:24:52 +00:00
|
|
|
--- a/servconf.h
|
|
|
|
+++ b/servconf.h
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -175,7 +175,8 @@ typedef struct {
|
2015-01-14 14:24:52 +00:00
|
|
|
|
|
|
|
int num_permitted_opens;
|
|
|
|
|
|
|
|
- int use_kuserok;
|
|
|
|
+ int use_kuserok;
|
|
|
|
+ int enable_k5users;
|
|
|
|
char *chroot_directory;
|
|
|
|
char *revoked_keys_file;
|
|
|
|
char *trusted_user_ca_keys;
|
|
|
|
diff --git a/sshd_config b/sshd_config
|
2015-01-20 12:18:45 +00:00
|
|
|
index 0d9454d..e731de1 100644
|
2015-01-14 14:24:52 +00:00
|
|
|
--- a/sshd_config
|
|
|
|
+++ b/sshd_config
|
|
|
|
@@ -94,6 +94,7 @@ GSSAPIAuthentication yes
|
|
|
|
GSSAPICleanupCredentials no
|
|
|
|
#GSSAPIStrictAcceptorCheck yes
|
|
|
|
#GSSAPIKeyExchange no
|
|
|
|
+#GSSAPIEnablek5users no
|
|
|
|
|
|
|
|
# Set this to 'yes' to enable PAM authentication, account processing,
|
|
|
|
# and session processing. If this is enabled, PAM authentication will
|
|
|
|
diff --git a/sshd_config.5 b/sshd_config.5
|
2015-01-20 12:18:45 +00:00
|
|
|
index eb4dd9e..ce1229b 100644
|
2015-01-14 14:24:52 +00:00
|
|
|
--- a/sshd_config.5
|
|
|
|
+++ b/sshd_config.5
|
2015-01-20 12:18:45 +00:00
|
|
|
@@ -548,6 +548,12 @@ on logout.
|
2015-01-14 14:24:52 +00:00
|
|
|
The default is
|
|
|
|
.Dq yes .
|
|
|
|
Note that this option applies to protocol version 2 only.
|
|
|
|
+.It Cm GSSAPIEnablek5users
|
|
|
|
+Specifies whether to look at .k5users file for GSSAPI authentication
|
|
|
|
+access control. Further details are described in
|
|
|
|
+.Xr ksu 1 .
|
|
|
|
+The default is
|
|
|
|
+.Dq no .
|
|
|
|
.It Cm GSSAPIStrictAcceptorCheck
|
|
|
|
Determines whether to be strict about the identity of the GSSAPI acceptor
|
|
|
|
a client authenticates against. If
|