Blame SOURCES/0026-pam-add-pam_gssapi_check_upn-option.patch

8ad293
From fffe3169bb490c4b010b168c639aa6f9b2ec0c52 Mon Sep 17 00:00:00 2001
8ad293
From: =?UTF-8?q?Pavel=20B=C5=99ezina?= <pbrezina@redhat.com>
8ad293
Date: Thu, 10 Dec 2020 22:05:30 +0100
8ad293
Subject: [PATCH 26/27] pam: add pam_gssapi_check_upn option
8ad293
8ad293
:config: Added `pam_gssapi_check_upn` to enforce authentication
8ad293
  only with principal that can be associated with target user.
8ad293
8ad293
Reviewed-by: Robbie Harwood <rharwood@redhat.com>
8ad293
Reviewed-by: Sumit Bose <sbose@redhat.com>
8ad293
---
8ad293
 src/confdb/confdb.c                  | 10 ++++++++++
8ad293
 src/confdb/confdb.h                  |  2 ++
8ad293
 src/config/SSSDConfig/sssdoptions.py |  1 +
8ad293
 src/config/SSSDConfigTest.py         |  6 ++++--
8ad293
 src/config/cfg_rules.ini             |  3 +++
8ad293
 src/config/etc/sssd.api.conf         |  2 ++
8ad293
 src/db/sysdb_subdomains.c            | 12 ++++++++++++
8ad293
 src/man/sssd.conf.5.xml              | 26 ++++++++++++++++++++++++++
8ad293
 src/responder/pam/pamsrv.c           |  9 +++++++++
8ad293
 src/responder/pam/pamsrv.h           |  1 +
8ad293
 10 files changed, 70 insertions(+), 2 deletions(-)
8ad293
8ad293
diff --git a/src/confdb/confdb.c b/src/confdb/confdb.c
8ad293
index 7f1956d6d..2881ce5da 100644
8ad293
--- a/src/confdb/confdb.c
8ad293
+++ b/src/confdb/confdb.c
8ad293
@@ -1593,6 +1593,16 @@ static int confdb_get_domain_internal(struct confdb_ctx *cdb,
8ad293
         }
8ad293
     }
8ad293
 
8ad293
+    tmp = ldb_msg_find_attr_as_string(res->msgs[0], CONFDB_PAM_GSSAPI_CHECK_UPN,
8ad293
+                                      NULL);
8ad293
+    if (tmp != NULL) {
8ad293
+        domain->gssapi_check_upn = talloc_strdup(domain, tmp);
8ad293
+        if (domain->gssapi_check_upn == NULL) {
8ad293
+            ret = ENOMEM;
8ad293
+            goto done;
8ad293
+        }
8ad293
+    }
8ad293
+
8ad293
     domain->has_views = false;
8ad293
     domain->view_name = NULL;
8ad293
 
8ad293
diff --git a/src/confdb/confdb.h b/src/confdb/confdb.h
8ad293
index 7a3bc8bb5..036f9ecad 100644
8ad293
--- a/src/confdb/confdb.h
8ad293
+++ b/src/confdb/confdb.h
8ad293
@@ -145,6 +145,7 @@
8ad293
 #define CONFDB_PAM_P11_URI "p11_uri"
8ad293
 #define CONFDB_PAM_INITGROUPS_SCHEME "pam_initgroups_scheme"
8ad293
 #define CONFDB_PAM_GSSAPI_SERVICES "pam_gssapi_services"
8ad293
+#define CONFDB_PAM_GSSAPI_CHECK_UPN "pam_gssapi_check_upn"
8ad293
 
8ad293
 /* SUDO */
8ad293
 #define CONFDB_SUDO_CONF_ENTRY "config/sudo"
8ad293
@@ -435,6 +436,7 @@ struct sss_domain_info {
8ad293
 
8ad293
     /* List of PAM services that are allowed to authenticate with GSSAPI. */
8ad293
     char **gssapi_services;
8ad293
+    char *gssapi_check_upn; /* true | false | NULL */
8ad293
 };
8ad293
 
8ad293
 /**
8ad293
diff --git a/src/config/SSSDConfig/sssdoptions.py b/src/config/SSSDConfig/sssdoptions.py
8ad293
index f59fe8d9f..5da52a937 100644
8ad293
--- a/src/config/SSSDConfig/sssdoptions.py
8ad293
+++ b/src/config/SSSDConfig/sssdoptions.py
8ad293
@@ -105,6 +105,7 @@ class SSSDOptions(object):
8ad293
         'p11_uri': _('PKCS#11 URI to restrict the selection of devices for Smartcard authentication'),
8ad293
         'pam_initgroups_scheme' : _('When shall the PAM responder force an initgroups request'),
8ad293
         'pam_gssapi_services' : _('List of PAM services that are allowed to authenticate with GSSAPI.'),
8ad293
+        'pam_gssapi_check_upn' : _('Whether to match authenticated UPN with target user'),
8ad293
 
8ad293
         # [sudo]
8ad293
         'sudo_timed': _('Whether to evaluate the time-based attributes in sudo rules'),
8ad293
diff --git a/src/config/SSSDConfigTest.py b/src/config/SSSDConfigTest.py
8ad293
index 21fffe1b6..ea4e4f6c9 100755
8ad293
--- a/src/config/SSSDConfigTest.py
8ad293
+++ b/src/config/SSSDConfigTest.py
8ad293
@@ -654,7 +654,8 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase):
8ad293
             're_expression',
8ad293
             'cached_auth_timeout',
8ad293
             'auto_private_groups',
8ad293
-            'pam_gssapi_services']
8ad293
+            'pam_gssapi_services',
8ad293
+            'pam_gssapi_check_upn']
8ad293
 
8ad293
         self.assertTrue(type(options) == dict,
8ad293
                         "Options should be a dictionary")
8ad293
@@ -1032,7 +1033,8 @@ class SSSDConfigTestSSSDDomain(unittest.TestCase):
8ad293
             're_expression',
8ad293
             'cached_auth_timeout',
8ad293
             'auto_private_groups',
8ad293
-            'pam_gssapi_services']
8ad293
+            'pam_gssapi_services',
8ad293
+            'pam_gssapi_check_upn']
8ad293
 
8ad293
         self.assertTrue(type(options) == dict,
8ad293
                         "Options should be a dictionary")
8ad293
diff --git a/src/config/cfg_rules.ini b/src/config/cfg_rules.ini
8ad293
index c6dfd5648..6642c6321 100644
8ad293
--- a/src/config/cfg_rules.ini
8ad293
+++ b/src/config/cfg_rules.ini
8ad293
@@ -140,6 +140,7 @@ option = p11_wait_for_card_timeout
8ad293
 option = p11_uri
8ad293
 option = pam_initgroups_scheme
8ad293
 option = pam_gssapi_services
8ad293
+option = pam_gssapi_check_upn
8ad293
 
8ad293
 [rule/allowed_sudo_options]
8ad293
 validator = ini_allowed_options
8ad293
@@ -439,6 +440,7 @@ option = full_name_format
8ad293
 option = re_expression
8ad293
 option = auto_private_groups
8ad293
 option = pam_gssapi_services
8ad293
+option = pam_gssapi_check_upn
8ad293
 
8ad293
 #Entry cache timeouts
8ad293
 option = entry_cache_user_timeout
8ad293
@@ -834,6 +836,7 @@ option = ad_site
8ad293
 option = use_fully_qualified_names
8ad293
 option = auto_private_groups
8ad293
 option = pam_gssapi_services
8ad293
+option = pam_gssapi_check_upn
8ad293
 
8ad293
 [rule/sssd_checks]
8ad293
 validator = sssd_checks
8ad293
diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf
8ad293
index f46f3c46d..d3cad7380 100644
8ad293
--- a/src/config/etc/sssd.api.conf
8ad293
+++ b/src/config/etc/sssd.api.conf
8ad293
@@ -81,6 +81,7 @@ p11_wait_for_card_timeout = int, None, false
8ad293
 p11_uri = str, None, false
8ad293
 pam_initgroups_scheme = str, None, false
8ad293
 pam_gssapi_services = str, None, false
8ad293
+pam_gssapi_check_upn = bool, None, false
8ad293
 
8ad293
 [sudo]
8ad293
 # sudo service
8ad293
@@ -201,6 +202,7 @@ full_name_format = str, None, false
8ad293
 re_expression = str, None, false
8ad293
 auto_private_groups = str, None, false
8ad293
 pam_gssapi_services = str, None, false
8ad293
+pam_gssapi_check_upn = bool, None, false
8ad293
 
8ad293
 #Entry cache timeouts
8ad293
 entry_cache_user_timeout = int, None, false
8ad293
diff --git a/src/db/sysdb_subdomains.c b/src/db/sysdb_subdomains.c
8ad293
index bfc6df0f5..03ba12164 100644
8ad293
--- a/src/db/sysdb_subdomains.c
8ad293
+++ b/src/db/sysdb_subdomains.c
8ad293
@@ -254,6 +254,18 @@ check_subdom_config_file(struct confdb_ctx *confdb,
8ad293
         goto done;
8ad293
     }
8ad293
 
8ad293
+    /* allow to set pam_gssapi_check_upn */
8ad293
+    ret = confdb_get_string(confdb, subdomain, sd_conf_path,
8ad293
+                            CONFDB_PAM_GSSAPI_CHECK_UPN,
8ad293
+                            subdomain->parent->gssapi_check_upn,
8ad293
+                            &subdomain->gssapi_check_upn);
8ad293
+    if (ret != EOK) {
8ad293
+        DEBUG(SSSDBG_OP_FAILURE,
8ad293
+              "Failed to get %s option for the subdomain: %s\n",
8ad293
+              CONFDB_PAM_GSSAPI_CHECK_UPN, subdomain->name);
8ad293
+        goto done;
8ad293
+    }
8ad293
+
8ad293
     ret = EOK;
8ad293
 done:
8ad293
     talloc_free(tmp_ctx);
8ad293
diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml
8ad293
index db9dd4677..d637e2eaa 100644
8ad293
--- a/src/man/sssd.conf.5.xml
8ad293
+++ b/src/man/sssd.conf.5.xml
8ad293
@@ -1735,6 +1735,31 @@ pam_gssapi_services = sudo, sudo-i
8ad293
                         </para>
8ad293
                     </listitem>
8ad293
                 </varlistentry>
8ad293
+                <varlistentry>
8ad293
+                    <term>pam_gssapi_check_upn</term>
8ad293
+                    <listitem>
8ad293
+                        <para>
8ad293
+                            If True, SSSD will require that the Kerberos user
8ad293
+                            principal that successfully authenticated through
8ad293
+                            GSSAPI can be associated with the user who is being
8ad293
+                            authenticated. Authentication will fail if the check
8ad293
+                            fails.
8ad293
+                        </para>
8ad293
+                        <para>
8ad293
+                            If False, every user that is able to obtained
8ad293
+                            required service ticket will be authenticated.
8ad293
+                        </para>
8ad293
+                        <para>
8ad293
+                            Note: This option can also be set per-domain which
8ad293
+                            overwrites the value in [pam] section. It can also
8ad293
+                            be set for trusted domain which overwrites the value
8ad293
+                            in the domain section.
8ad293
+                        </para>
8ad293
+                        <para>
8ad293
+                            Default: True
8ad293
+                        </para>
8ad293
+                    </listitem>
8ad293
+                </varlistentry>
8ad293
             </variablelist>
8ad293
         </refsect2>
8ad293
 
8ad293
@@ -3810,6 +3835,7 @@ ldap_user_extra_attrs = phone:telephoneNumber
8ad293
             <para>ad_site,</para>
8ad293
             <para>use_fully_qualified_names</para>
8ad293
             <para>pam_gssapi_services</para>
8ad293
+            <para>pam_gssapi_check_upn</para>
8ad293
         <para>
8ad293
             For more details about these options see their individual description
8ad293
             in the manual page.
8ad293
diff --git a/src/responder/pam/pamsrv.c b/src/responder/pam/pamsrv.c
8ad293
index 0492569c7..0db2824ff 100644
8ad293
--- a/src/responder/pam/pamsrv.c
8ad293
+++ b/src/responder/pam/pamsrv.c
8ad293
@@ -348,6 +348,15 @@ static int pam_process_init(TALLOC_CTX *mem_ctx,
8ad293
         }
8ad293
     }
8ad293
 
8ad293
+    ret = confdb_get_bool(pctx->rctx->cdb, CONFDB_PAM_CONF_ENTRY,
8ad293
+                          CONFDB_PAM_GSSAPI_CHECK_UPN, true,
8ad293
+                          &pctx->gssapi_check_upn);
8ad293
+    if (ret != EOK) {
8ad293
+        DEBUG(SSSDBG_FATAL_FAILURE, "Failed to read %s [%d]: %s\n",
8ad293
+              CONFDB_PAM_GSSAPI_CHECK_UPN, ret, sss_strerror(ret));
8ad293
+        goto done;
8ad293
+    }
8ad293
+
8ad293
     /* The responder is initialized. Now tell it to the monitor. */
8ad293
     ret = sss_monitor_service_init(rctx, rctx->ev, SSS_BUS_PAM,
8ad293
                                    SSS_PAM_SBUS_SERVICE_NAME,
8ad293
diff --git a/src/responder/pam/pamsrv.h b/src/responder/pam/pamsrv.h
8ad293
index 730dee288..bf4dd75b0 100644
8ad293
--- a/src/responder/pam/pamsrv.h
8ad293
+++ b/src/responder/pam/pamsrv.h
8ad293
@@ -65,6 +65,7 @@ struct pam_ctx {
8ad293
 
8ad293
     /* List of PAM services that are allowed to authenticate with GSSAPI. */
8ad293
     char **gssapi_services;
8ad293
+    bool gssapi_check_upn;
8ad293
 };
8ad293
 
8ad293
 struct pam_auth_req {
8ad293
-- 
8ad293
2.21.3
8ad293