Blame SOURCES/libnfsidmap-0.25-nobody.patch

dd15d1
commit f139de79d91e7773b5b98fe5aca5570f77c7aee9
dd15d1
Author: Christian Seiler <christian@iwakd.de>
dd15d1
Date:   Wed Aug 13 12:42:14 2014 -0400
dd15d1
dd15d1
    libnfsidmap: respect Nobody-User/Nobody-Group
dd15d1
    
dd15d1
    Previous behavior of libnfsidmap was to do a name lookup of
dd15d1
    nobody@DEFAULTDOMAIN (for both user and group), which does not match
dd15d1
    the behavior of rpc.idmapd.
dd15d1
    
dd15d1
    This patch makes libnfsidmap respect Nobody-User/Nobody-Group for
dd15d1
    lookups, thus making the nfsidmap utility properly handle the case if
dd15d1
    nobody@DEFAULTDOMAIN does not directly map to any user/group on the
dd15d1
    system.
dd15d1
    
dd15d1
    Signed-off-by: Christian Seiler <christian@iwakd.de>
dd15d1
    Signed-off-by: Steve Dickson <steved@redhat.com>
dd15d1
dd15d1
diff --git a/libnfsidmap.c b/libnfsidmap.c
dd15d1
index 92bc493..ec5c141 100644
dd15d1
--- a/libnfsidmap.c
dd15d1
+++ b/libnfsidmap.c
dd15d1
@@ -62,6 +62,8 @@ static struct conf_list *local_realms;
dd15d1
 int idmap_verbosity = 0;
dd15d1
 static struct mapping_plugin **nfs4_plugins = NULL;
dd15d1
 static struct mapping_plugin **gss_plugins = NULL;
dd15d1
+uid_t nobody_uid = (uid_t)-1;
dd15d1
+gid_t nobody_gid = (gid_t)-1;
dd15d1
 
dd15d1
 #ifndef PATH_PLUGINS
dd15d1
 #define PATH_PLUGINS "/usr/lib/libnfsidmap"
dd15d1
@@ -228,6 +230,7 @@ int nfs4_init_name_mapping(char *conffile)
dd15d1
 	int ret = -ENOENT;
dd15d1
 	int dflt = 0;
dd15d1
 	struct conf_list *nfs4_methods, *gss_methods;
dd15d1
+	char *nobody_user, *nobody_group;
dd15d1
 
dd15d1
 	/* XXX: need to be able to reload configurations... */
dd15d1
 	if (nfs4_plugins) /* already succesfully initialized */
dd15d1
@@ -324,6 +327,49 @@ int nfs4_init_name_mapping(char *conffile)
dd15d1
 		if (load_plugins(gss_methods, &gss_plugins) == -1)
dd15d1
 			goto out;
dd15d1
 	}
dd15d1
+
dd15d1
+	nobody_user = conf_get_str("Mapping", "Nobody-User");
dd15d1
+	if (nobody_user) {
dd15d1
+		size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX);
dd15d1
+		struct passwd *buf;
dd15d1
+		struct passwd *pw = NULL;
dd15d1
+		int err;
dd15d1
+
dd15d1
+		buf = malloc(sizeof(*buf) + buflen);
dd15d1
+		if (buf) {
dd15d1
+			err = getpwnam_r(nobody_user, buf, ((char *)buf) + sizeof(*buf), buflen, &pw;;
dd15d1
+			if (err == 0 && pw != NULL)
dd15d1
+				nobody_uid = pw->pw_uid;
dd15d1
+			else
dd15d1
+				IDMAP_LOG(1, ("libnfsidmap: Nobody-User (%s) not found: %s\n", 
dd15d1
+					nobody_user, strerror(errno)));
dd15d1
+			free(buf);
dd15d1
+		} else
dd15d1
+			IDMAP_LOG(0,("libnfsidmap: Nobody-User: no memory : %s\n", 
dd15d1
+					nobody_user, strerror(errno)));
dd15d1
+	}
dd15d1
+
dd15d1
+	nobody_group = conf_get_str("Mapping", "Nobody-Group");
dd15d1
+	if (nobody_group) {
dd15d1
+		size_t buflen = sysconf(_SC_GETGR_R_SIZE_MAX);
dd15d1
+		struct group *buf;
dd15d1
+		struct group *gr = NULL;
dd15d1
+		int err;
dd15d1
+
dd15d1
+		buf = malloc(sizeof(*buf) + buflen);
dd15d1
+		if (buf) {
dd15d1
+			err = getgrnam_r(nobody_group, buf, ((char *)buf) + sizeof(*buf), buflen, &gr);
dd15d1
+			if (err == 0 && gr != NULL)
dd15d1
+				nobody_gid = gr->gr_gid;
dd15d1
+			else
dd15d1
+				IDMAP_LOG(1, ("libnfsidmap: Nobody-Group (%s) not found: %s\n", 
dd15d1
+					nobody_group, strerror(errno)));
dd15d1
+			free(buf);
dd15d1
+		} else
dd15d1
+			IDMAP_LOG(0,("libnfsidmap: Nobody-Group: no memory : %s\n", 
dd15d1
+					nobody_group, strerror(errno)));
dd15d1
+	}
dd15d1
+
dd15d1
 	ret = 0;
dd15d1
 out:
dd15d1
 	if (ret) {
dd15d1
@@ -453,6 +499,18 @@ static int set_id_to_nobody(int *id, int is_uid)
dd15d1
 	int rc = 0;
dd15d1
 	const char name[] = "nobody@";
dd15d1
 	char nobody[strlen(name) + strlen(get_default_domain()) + 1];
dd15d1
+
dd15d1
+	/* First try to see whether a Nobody-User/Nobody-Group was
dd15d1
+         * configured, before we try to do a full lookup for the
dd15d1
+         * NFS nobody user. */
dd15d1
+	if (is_uid && nobody_uid != (uid_t)-1) {
dd15d1
+		*id = (int)nobody_uid;
dd15d1
+		return 0;
dd15d1
+	} else if (!is_uid && nobody_gid != (gid_t)-1) {
dd15d1
+		*id = (int)nobody_gid;
dd15d1
+		return 0;
dd15d1
+	}
dd15d1
+
dd15d1
 	strcpy(nobody, name);
dd15d1
 	strcat(nobody, get_default_domain());
dd15d1