[PATCH] passdb: handle UPN in lookup_name correctly

Ralph Wuerthner ralphw at de.ibm.com
Mon Feb 11 09:41:06 UTC 2019


Hi List!

Please see attached patchset:
The fix for Samba bugzilla 13312 (commit 1775ac8aa4) caused a regression 
when looking up names in UPN notation: Because winbind_lookup_name is 
called with lp_workgroup as domain name the lookup is now failing and 
the SID for an unmapped Unix user is returned by lookup_name. Fixed by 
calling winbind_lookup_name with an empty domain name in case the name 
is in UPN notation.

The patchset already passed a CI run: 
https://gitlab.com/samba-team/devel/samba/pipelines/46689980

-- 
Regards

    Ralph Wuerthner
-------------- next part --------------
From db42aa3c9bab29f8ebc24af704235316091a9944 Mon Sep 17 00:00:00 2001
From: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
Date: Wed, 12 Dec 2018 11:26:10 +0100
Subject: [PATCH 1/3] passdb: Add debug code to print result of lookup_name
 query

Signed-off-by: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
---
 source3/passdb/lookup_sid.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c
index 6bda783..382b9ec 100644
--- a/source3/passdb/lookup_sid.c
+++ b/source3/passdb/lookup_sid.c
@@ -86,6 +86,7 @@ bool lookup_name(TALLOC_CTX *mem_ctx,
 	struct dom_sid sid;
 	enum lsa_SidType type;
 	TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
+	struct dom_sid_buf buf;
 
 	if (tmp_ctx == NULL) {
 		DEBUG(0, ("talloc_new failed\n"));
@@ -386,6 +387,11 @@ bool lookup_name(TALLOC_CTX *mem_ctx,
 		return false;
 	}
 
+	DEBUG(10,("lookup_name results: sid=%s domain=%s (%s)\n",
+		  dom_sid_str_buf(&sid, &buf),
+		  domain,
+		  sid_type_lookup(type)));
+
 	/*
 	 * Hand over the results to the talloc context we've been given.
 	 */
-- 
2.7.4


From 900ce7f09768718348e03bf91ac40ebaf6c37a0e Mon Sep 17 00:00:00 2001
From: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
Date: Fri, 30 Nov 2018 17:32:51 +0100
Subject: [PATCH 2/3] passdb: handle UPN in lookup_name correctly

The fix for Samba bugzilla 13312 (commit 1775ac8aa4) caused a regression when
looking up names in UPN notation: Because winbind_lookup_name is called with
lp_workgroup as domain name the lookup is now failing and the SID for an
unmapped Unix user is returned by lookup_name.
Fixed by calling winbind_lookup_name with an empty domain name in case the
name is in UPN notation.

Signed-off-by: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
---
 source3/passdb/lookup_sid.c | 37 +++++++++++++++++++++++++++++++++----
 1 file changed, 33 insertions(+), 4 deletions(-)

diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c
index 382b9ec..f86c51c 100644
--- a/source3/passdb/lookup_sid.c
+++ b/source3/passdb/lookup_sid.c
@@ -65,6 +65,20 @@ static bool lookup_unix_group_name(const char *name, struct dom_sid *sid)
 	return sid_compose(sid, &global_sid_Unix_Groups, grp->gr_gid);
 }
 
+static bool lookup_upn(TALLOC_CTX *mem_ctx,
+		       const char *name,
+		       struct dom_sid *sid,
+		       const char **domain,
+		       enum lsa_SidType *type)
+{
+	if (!winbind_lookup_name("", name, sid, type)) {
+		return false;
+	}
+	*domain = talloc_strdup(mem_ctx, lp_workgroup());
+
+	return true;
+}
+
 /*****************************************************************
  Dissect a user-provided name into domain, name, sid and type.
 
@@ -315,10 +329,25 @@ bool lookup_name(TALLOC_CTX *mem_ctx,
 	/* If we are not a DC, we have to ask in our primary domain. Let
 	 * winbind do that. */
 
-	if (!IS_DC &&
-	    (winbind_lookup_name(lp_workgroup(), name, &sid, &type))) {
-		domain = talloc_strdup(tmp_ctx, lp_workgroup());
-		goto ok;
+	if (!IS_DC) {
+		if (strchr_m(name, '@')) {
+			/* UPN */
+			if (lookup_upn(tmp_ctx,
+				       name,
+				       &sid,
+				       &domain,
+				       &type)) {
+				goto ok;
+			}
+		} else {
+			if (winbind_lookup_name(lp_workgroup(),
+						name,
+						&sid,
+						&type)) {
+			domain = talloc_strdup(tmp_ctx, lp_workgroup());
+			goto ok;
+			}
+		}
 	}
 
 	/* 9. Trusted domains */
-- 
2.7.4


From bb49812dfe75edfcf9a99bca7ec7bccf960e5b3a Mon Sep 17 00:00:00 2001
From: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
Date: Thu, 7 Feb 2019 13:06:17 +0100
Subject: [PATCH 3/3] passdb: query domain name when looking up UPN names

The user could be member of a different domain, so query the domain name.

Signed-off-by: Ralph Wuerthner <ralph.wuerthner at de.ibm.com>
---
 source3/passdb/lookup_sid.c | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c
index f86c51c..f26427c 100644
--- a/source3/passdb/lookup_sid.c
+++ b/source3/passdb/lookup_sid.c
@@ -71,12 +71,19 @@ static bool lookup_upn(TALLOC_CTX *mem_ctx,
 		       const char **domain,
 		       enum lsa_SidType *type)
 {
+	struct dom_sid *domain_sid = NULL;
+	enum lsa_SidType tmp;
+	NTSTATUS status;
+
 	if (!winbind_lookup_name("", name, sid, type)) {
 		return false;
 	}
-	*domain = talloc_strdup(mem_ctx, lp_workgroup());
+	status = dom_sid_split_rid(mem_ctx, sid, &domain_sid, NULL);
+	if (!NT_STATUS_IS_OK(status)) {
+		return false;
+	}
 
-	return true;
+	return winbind_lookup_sid(mem_ctx, domain_sid, domain, NULL, &tmp);
 }
 
 /*****************************************************************
-- 
2.7.4



More information about the samba-technical mailing list