2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/gss-serv-krb5.c.GSSAPIEnablek5users openssh-7.4p1/gss-serv-krb5.c
|
|
|
|
--- openssh-7.4p1/gss-serv-krb5.c.GSSAPIEnablek5users 2016-12-23 15:18:40.615216100 +0100
|
|
|
|
+++ openssh-7.4p1/gss-serv-krb5.c 2016-12-23 15:18:40.628216102 +0100
|
|
|
|
@@ -279,7 +279,6 @@ ssh_gssapi_krb5_cmdok(krb5_principal pri
|
2015-01-14 14:24:52 +00:00
|
|
|
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;
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -288,7 +287,7 @@ ssh_gssapi_krb5_cmdok(krb5_principal pri
|
2015-01-14 14:24:52 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/servconf.c.GSSAPIEnablek5users openssh-7.4p1/servconf.c
|
|
|
|
--- openssh-7.4p1/servconf.c.GSSAPIEnablek5users 2016-12-23 15:18:40.615216100 +0100
|
|
|
|
+++ openssh-7.4p1/servconf.c 2016-12-23 15:35:36.354401156 +0100
|
|
|
|
@@ -168,6 +168,7 @@ initialize_server_options(ServerOptions
|
2015-01-20 12:18:45 +00:00
|
|
|
options->fingerprint_hash = -1;
|
2017-01-02 14:42:13 +00:00
|
|
|
options->disable_forwarding = -1;
|
2015-01-14 14:24:52 +00:00
|
|
|
options->use_kuserok = -1;
|
|
|
|
+ options->enable_k5users = -1;
|
|
|
|
}
|
|
|
|
|
2015-03-20 13:56:04 +00:00
|
|
|
/* Returns 1 if a string option is unset or set to "none" or 0 otherwise. */
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -345,6 +346,8 @@ fill_default_server_options(ServerOption
|
|
|
|
options->disable_forwarding = 0;
|
2015-08-13 15:43:12 +00:00
|
|
|
if (options->use_kuserok == -1)
|
|
|
|
options->use_kuserok = 1;
|
2017-01-02 14:42:13 +00:00
|
|
|
+ if (options->enable_k5users == -1)
|
|
|
|
+ options->enable_k5users = 0;
|
|
|
|
|
|
|
|
assemble_algorithms(options);
|
2015-08-13 15:43:12 +00:00
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -418,7 +421,7 @@ typedef enum {
|
2015-03-20 13:56:04 +00:00
|
|
|
sHostbasedUsesNameFromPacketOnly, sHostbasedAcceptedKeyTypes,
|
2015-08-13 15:43:12 +00:00
|
|
|
sHostKeyAlgorithms,
|
2015-03-20 13:56:04 +00:00
|
|
|
sClientAliveInterval, sClientAliveCountMax, sAuthorizedKeysFile,
|
2015-01-14 14:24:52 +00:00
|
|
|
- sGssAuthentication, sGssCleanupCreds, sGssStrictAcceptor,
|
|
|
|
+ sGssAuthentication, sGssCleanupCreds, sGssEnablek5users, sGssStrictAcceptor,
|
|
|
|
sGssKeyEx, sGssStoreRekey, sAcceptEnv, sPermitTunnel,
|
|
|
|
sMatch, sPermitOpen, sForceCommand, sChrootDirectory,
|
|
|
|
sUsePrivilegeSeparation, sAllowAgentForwarding,
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -497,12 +500,14 @@ 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 },
|
|
|
|
{ "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 },
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -1653,6 +1658,10 @@ process_server_config_line(ServerOptions
|
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')
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -2026,6 +2035,7 @@ copy_set_server_options(ServerOptions *d
|
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);
|
|
|
|
|
2017-01-02 14:42:13 +00:00
|
|
|
@@ -2320,6 +2330,7 @@ dump_config(ServerOptions *o)
|
2017-03-20 14:55:43 +00:00
|
|
|
dump_cfg_fmtint(sStreamLocalBindUnlink, o->fwd_opts.streamlocal_bind_unlink);
|
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);
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/servconf.h.GSSAPIEnablek5users openssh-7.4p1/servconf.h
|
|
|
|
--- openssh-7.4p1/servconf.h.GSSAPIEnablek5users 2016-12-23 15:18:40.616216100 +0100
|
|
|
|
+++ openssh-7.4p1/servconf.h 2016-12-23 15:18:40.629216102 +0100
|
|
|
|
@@ -174,7 +174,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;
|
2017-01-02 14:42:13 +00:00
|
|
|
diff -up openssh-7.4p1/sshd_config.5.GSSAPIEnablek5users openssh-7.4p1/sshd_config.5
|
|
|
|
--- openssh-7.4p1/sshd_config.5.GSSAPIEnablek5users 2016-12-23 15:18:40.630216103 +0100
|
|
|
|
+++ openssh-7.4p1/sshd_config.5 2016-12-23 15:36:21.607408435 +0100
|
|
|
|
@@ -628,6 +628,12 @@ Specifies whether to automatically destr
|
2016-02-19 13:42:33 +00:00
|
|
|
on logout.
|
2015-01-14 14:24:52 +00:00
|
|
|
The default is
|
2017-01-02 14:42:13 +00:00
|
|
|
.Cm yes .
|
2015-01-14 14:24:52 +00:00
|
|
|
+.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
|
2017-01-02 14:42:13 +00:00
|
|
|
+.Cm no .
|
|
|
|
.It Cm GSSAPIKeyExchange
|
|
|
|
Specifies whether key exchange based on GSSAPI is allowed. GSSAPI key exchange
|
|
|
|
doesn't rely on ssh keys to verify host identity.
|
|
|
|
diff -up openssh-7.4p1/sshd_config.GSSAPIEnablek5users openssh-7.4p1/sshd_config
|
|
|
|
--- openssh-7.4p1/sshd_config.GSSAPIEnablek5users 2016-12-23 15:18:40.616216100 +0100
|
|
|
|
+++ openssh-7.4p1/sshd_config 2016-12-23 15:18:40.631216103 +0100
|
|
|
|
@@ -80,6 +80,7 @@ GSSAPIAuthentication yes
|
2015-06-24 12:11:59 +00:00
|
|
|
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
|