2012-09-14 20:18:22 +00:00
|
|
|
diff -up openssh-6.1p1/auth-krb5.c.kuserok openssh-6.1p1/auth-krb5.c
|
|
|
|
--- openssh-6.1p1/auth-krb5.c.kuserok 2012-09-14 21:08:16.941496194 +0200
|
|
|
|
+++ openssh-6.1p1/auth-krb5.c 2012-09-14 21:08:17.063496896 +0200
|
|
|
|
@@ -55,6 +55,20 @@
|
2011-09-07 13:12:54 +00:00
|
|
|
|
|
|
|
extern ServerOptions options;
|
|
|
|
|
|
|
|
+int
|
|
|
|
+ssh_krb5_kuserok(krb5_context krb5_ctx, krb5_principal krb5_user, const char *client)
|
|
|
|
+{
|
|
|
|
+ if (options.use_kuserok)
|
|
|
|
+ return krb5_kuserok(krb5_ctx, krb5_user, client);
|
|
|
|
+ else {
|
|
|
|
+ char kuser[65];
|
|
|
|
+
|
|
|
|
+ if (krb5_aname_to_localname(krb5_ctx, krb5_user, sizeof(kuser), kuser))
|
|
|
|
+ return 0;
|
|
|
|
+ return strcmp(kuser, client) == 0;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static int
|
|
|
|
krb5_init(void *context)
|
|
|
|
{
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -147,7 +161,7 @@ auth_krb5_password(Authctxt *authctxt, c
|
2011-09-07 13:12:54 +00:00
|
|
|
if (problem)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
- if (!krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user, client)) {
|
|
|
|
+ if (!ssh_krb5_kuserok(authctxt->krb5_ctx, authctxt->krb5_user, client)) {
|
|
|
|
problem = -1;
|
|
|
|
goto out;
|
|
|
|
}
|
2012-09-14 20:18:22 +00:00
|
|
|
diff -up openssh-6.1p1/gss-serv-krb5.c.kuserok openssh-6.1p1/gss-serv-krb5.c
|
|
|
|
--- openssh-6.1p1/gss-serv-krb5.c.kuserok 2012-09-14 21:08:17.019496642 +0200
|
|
|
|
+++ openssh-6.1p1/gss-serv-krb5.c 2012-09-14 21:08:17.065496906 +0200
|
2011-09-07 13:12:54 +00:00
|
|
|
@@ -68,6 +68,7 @@ static int ssh_gssapi_krb5_cmdok(krb5_pr
|
|
|
|
int);
|
|
|
|
|
|
|
|
static krb5_context krb_context = NULL;
|
|
|
|
+extern int ssh_krb5_kuserok(krb5_context, krb5_principal, const char *);
|
|
|
|
|
|
|
|
/* Initialise the krb5 library, for the stuff that GSSAPI won't do */
|
|
|
|
|
|
|
|
@@ -115,7 +116,7 @@ ssh_gssapi_krb5_userok(ssh_gssapi_client
|
|
|
|
/* NOTE: .k5login and .k5users must opened as root, not the user,
|
|
|
|
* because if they are on a krb5-protected filesystem, user credentials
|
|
|
|
* to access these files aren't available yet. */
|
|
|
|
- if (krb5_kuserok(krb_context, princ, luser) && k5login_exists) {
|
|
|
|
+ if (ssh_krb5_kuserok(krb_context, princ, luser) && k5login_exists) {
|
|
|
|
retval = 1;
|
|
|
|
logit("Authorized to %s, krb5 principal %s (krb5_kuserok)",
|
|
|
|
luser, (char *)client->displayname.value);
|
2012-09-14 20:18:22 +00:00
|
|
|
diff -up openssh-6.1p1/servconf.c.kuserok openssh-6.1p1/servconf.c
|
|
|
|
--- openssh-6.1p1/servconf.c.kuserok 2012-09-14 21:08:16.989496471 +0200
|
|
|
|
+++ openssh-6.1p1/servconf.c 2012-09-14 21:09:30.864868698 +0200
|
|
|
|
@@ -152,6 +152,7 @@ initialize_server_options(ServerOptions
|
2011-09-07 13:12:54 +00:00
|
|
|
options->ip_qos_interactive = -1;
|
|
|
|
options->ip_qos_bulk = -1;
|
2012-09-14 20:18:22 +00:00
|
|
|
options->version_addendum = NULL;
|
2011-09-07 13:12:54 +00:00
|
|
|
+ options->use_kuserok = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -301,6 +302,8 @@ fill_default_server_options(ServerOption
|
|
|
|
options->version_addendum = xstrdup("");
|
2011-09-07 13:12:54 +00:00
|
|
|
if (options->show_patchlevel == -1)
|
2012-09-14 20:18:22 +00:00
|
|
|
options->show_patchlevel = 0;
|
2011-09-07 13:12:54 +00:00
|
|
|
+ if (options->use_kuserok == -1)
|
|
|
|
+ options->use_kuserok = 1;
|
|
|
|
|
|
|
|
/* Turn privilege separation on by default */
|
|
|
|
if (use_privsep == -1)
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -327,7 +330,7 @@ typedef enum {
|
2011-09-07 13:12:54 +00:00
|
|
|
sPermitRootLogin, sLogFacility, sLogLevel,
|
|
|
|
sRhostsRSAAuthentication, sRSAAuthentication,
|
|
|
|
sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup,
|
|
|
|
- sKerberosGetAFSToken,
|
|
|
|
+ sKerberosGetAFSToken, sKerberosUseKuserok,
|
|
|
|
sKerberosTgtPassing, sChallengeResponseAuthentication,
|
|
|
|
sPasswordAuthentication, sKbdInteractiveAuthentication,
|
|
|
|
sListenAddress, sAddressFamily,
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -399,11 +402,13 @@ static struct {
|
2011-09-07 13:12:54 +00:00
|
|
|
#else
|
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
#endif
|
|
|
|
+ { "kerberosusekuserok", sKerberosUseKuserok, SSHCFG_ALL },
|
|
|
|
#else
|
|
|
|
{ "kerberosauthentication", sUnsupported, SSHCFG_ALL },
|
|
|
|
{ "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
+ { "kerberosusekuserok", sUnsupported, SSHCFG_ALL },
|
|
|
|
#endif
|
|
|
|
{ "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL },
|
|
|
|
{ "afstokenpassing", sUnsupported, SSHCFG_GLOBAL },
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -1486,6 +1491,10 @@ process_server_config_line(ServerOptions
|
2011-09-07 13:12:54 +00:00
|
|
|
*activep = value;
|
|
|
|
break;
|
|
|
|
|
|
|
|
+ case sKerberosUseKuserok:
|
|
|
|
+ intptr = &options->use_kuserok;
|
|
|
|
+ goto parse_flag;
|
|
|
|
+
|
|
|
|
case sPermitOpen:
|
|
|
|
arg = strdelim(&cp);
|
|
|
|
if (!arg || *arg == '\0')
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -1769,6 +1778,7 @@ copy_set_server_options(ServerOptions *d
|
2011-09-07 13:12:54 +00:00
|
|
|
M_CP_INTOPT(max_authtries);
|
|
|
|
M_CP_INTOPT(ip_qos_interactive);
|
|
|
|
M_CP_INTOPT(ip_qos_bulk);
|
|
|
|
+ M_CP_INTOPT(use_kuserok);
|
|
|
|
|
|
|
|
/* See comment in servconf.h */
|
|
|
|
COPY_MATCH_STRING_OPTS();
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -2005,6 +2015,7 @@ dump_config(ServerOptions *o)
|
2011-09-07 13:12:54 +00:00
|
|
|
dump_cfg_fmtint(sUseDNS, o->use_dns);
|
|
|
|
dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding);
|
|
|
|
dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep);
|
|
|
|
+ dump_cfg_fmtint(sKerberosUseKuserok, o->use_kuserok);
|
|
|
|
|
|
|
|
/* string arguments */
|
|
|
|
dump_cfg_string(sPidFile, o->pid_file);
|
2012-09-14 20:18:22 +00:00
|
|
|
diff -up openssh-6.1p1/servconf.h.kuserok openssh-6.1p1/servconf.h
|
|
|
|
--- openssh-6.1p1/servconf.h.kuserok 2012-09-14 21:08:16.990496476 +0200
|
|
|
|
+++ openssh-6.1p1/servconf.h 2012-09-14 21:08:17.071496942 +0200
|
|
|
|
@@ -169,6 +169,7 @@ typedef struct {
|
2011-09-07 13:12:54 +00:00
|
|
|
|
|
|
|
int num_permitted_opens;
|
|
|
|
|
|
|
|
+ int use_kuserok;
|
|
|
|
char *chroot_directory;
|
|
|
|
char *revoked_keys_file;
|
|
|
|
char *trusted_user_ca_keys;
|
2012-09-14 20:18:22 +00:00
|
|
|
diff -up openssh-6.1p1/sshd_config.kuserok openssh-6.1p1/sshd_config
|
|
|
|
--- openssh-6.1p1/sshd_config.kuserok 2012-09-14 21:08:17.002496545 +0200
|
|
|
|
+++ openssh-6.1p1/sshd_config 2012-09-14 21:08:17.074496957 +0200
|
|
|
|
@@ -79,6 +79,7 @@ ChallengeResponseAuthentication no
|
|
|
|
#KerberosOrLocalPasswd yes
|
|
|
|
#KerberosTicketCleanup yes
|
|
|
|
#KerberosGetAFSToken no
|
|
|
|
+#KerberosUseKuserok yes
|
|
|
|
|
|
|
|
# GSSAPI options
|
|
|
|
#GSSAPIAuthentication no
|
|
|
|
diff -up openssh-6.1p1/sshd_config.5.kuserok openssh-6.1p1/sshd_config.5
|
|
|
|
--- openssh-6.1p1/sshd_config.5.kuserok 2012-09-14 21:08:17.004496556 +0200
|
|
|
|
+++ openssh-6.1p1/sshd_config.5 2012-09-14 21:08:17.073496952 +0200
|
|
|
|
@@ -618,6 +618,10 @@ Specifies whether to automatically destr
|
2011-09-07 13:12:54 +00:00
|
|
|
file on logout.
|
|
|
|
The default is
|
|
|
|
.Dq yes .
|
|
|
|
+.It Cm KerberosUseKuserok
|
|
|
|
+Specifies whether to look at .k5login file for user's aliases.
|
|
|
|
+The default is
|
|
|
|
+.Dq yes .
|
|
|
|
.It Cm KexAlgorithms
|
|
|
|
Specifies the available KEX (Key Exchange) algorithms.
|
|
|
|
Multiple algorithms must be comma-separated.
|
2012-09-14 20:18:22 +00:00
|
|
|
@@ -767,6 +771,7 @@ Available keywords are
|
2011-09-07 13:12:54 +00:00
|
|
|
.Cm HostbasedUsesNameFromPacketOnly ,
|
|
|
|
.Cm KbdInteractiveAuthentication ,
|
|
|
|
.Cm KerberosAuthentication ,
|
|
|
|
+.Cm KerberosUseKuserok ,
|
|
|
|
.Cm MaxAuthTries ,
|
|
|
|
.Cm MaxSessions ,
|
|
|
|
.Cm PubkeyAuthentication ,
|