Blame SOURCES/autofs-5.0.9-amd-lookup-update-lookup-nisplus-to-handle-amd-keys.patch

304803
autofs-5.0.9 - amd lookup update lookup nisplus to handle amd keys
304803
304803
From: Ian Kent <raven@themaw.net>
304803
304803
304803
---
304803
 modules/lookup_nisplus.c |  208 +++++++++++++++++++++++++++++++++++++++++++---
304803
 1 file changed, 196 insertions(+), 12 deletions(-)
304803
304803
diff --git a/modules/lookup_nisplus.c b/modules/lookup_nisplus.c
304803
index 42c9ccc..e9444c9 100644
304803
--- a/modules/lookup_nisplus.c
304803
+++ b/modules/lookup_nisplus.c
304803
@@ -243,7 +243,19 @@ int lookup_read_map(struct autofs_point *ap, time_t age, void *context)
304803
 		if (*key == '+')
304803
 			continue;
304803
 
304803
-		s_key = sanitize_path(key, len, ap->type, ap->logopt);
304803
+		if (!(source->flags & MAP_FLAG_FORMAT_AMD))
304803
+			s_key = sanitize_path(key, len, ap->type, ap->logopt);
304803
+		else {
304803
+			if (!strcmp(key, "/defaults")) {
304803
+				mapent = ENTRY_VAL(this, 1);
304803
+				cache_writelock(mc);
304803
+				cache_update(mc, source, key, mapent, age);
304803
+				cache_unlock(mc);
304803
+				continue;
304803
+			}
304803
+			/* Don't fail on "/" in key => type == 0 */
304803
+			s_key = sanitize_path(key, len, 0, ap->logopt);
304803
+		}
304803
 		if (!s_key)
304803
 			continue;
304803
 
304803
@@ -322,6 +334,66 @@ static int lookup_one(struct autofs_point *ap,
304803
 	return ret;
304803
 }
304803
 
304803
+static int match_key(struct autofs_point *ap,
304803
+		     struct map_source *source,
304803
+		     const char *key, int key_len,
304803
+		     struct lookup_context *ctxt)
304803
+{
304803
+	char buf[MAX_ERR_BUF];
304803
+	char *lkp_key;
304803
+	char *prefix;
304803
+	int ret;
304803
+
304803
+	ret = lookup_one(ap, source, key, key_len, ctxt);
304803
+	if (ret < 0)
304803
+		return ret;
304803
+	if (ret == CHE_OK || ret == CHE_UPDATED)
304803
+		return ret;
304803
+
304803
+	if (!(source->flags & MAP_FLAG_FORMAT_AMD))
304803
+		return CHE_FAIL;
304803
+
304803
+	lkp_key = strdup(key);
304803
+	if (!lkp_key) {
304803
+		char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
304803
+		error(ap->logopt, MODPREFIX "strdup: %s", estr);
304803
+		return CHE_FAIL;
304803
+	}
304803
+
304803
+	ret = CHE_MISSING;
304803
+
304803
+	/*
304803
+	 * Now strip successive directory components and try a
304803
+	 * match against map entries ending with a wildcard and
304803
+	 * finally try the wilcard entry itself.
304803
+	 */
304803
+	while ((prefix = strrchr(lkp_key, '/'))) {
304803
+		char *match;
304803
+		size_t len;
304803
+		*prefix = '\0';
304803
+		len = strlen(lkp_key) + 3;
304803
+		match = malloc(len);
304803
+		if (!match) {
304803
+			char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
304803
+			error(ap->logopt, MODPREFIX "malloc: %s", estr);
304803
+			ret = CHE_FAIL;
304803
+			goto done;
304803
+		}
304803
+		len--;
304803
+		strcpy(match, lkp_key);
304803
+		strcat(match, "/*");
304803
+		ret = lookup_one(ap, source, match, len, ctxt);
304803
+		free(match);
304803
+		if (ret < 0)
304803
+			goto done;
304803
+		if (ret == CHE_OK || ret == CHE_UPDATED)
304803
+			goto done;
304803
+	}
304803
+done:
304803
+	free(lkp_key);
304803
+	return ret;
304803
+}
304803
+
304803
 static int lookup_wild(struct autofs_point *ap,
304803
 		       struct map_source *source, struct lookup_context *ctxt)
304803
 {
304803
@@ -374,6 +446,59 @@ static int lookup_wild(struct autofs_point *ap,
304803
 	return ret;
304803
 }
304803
 
304803
+static int lookup_amd_defaults(struct autofs_point *ap,
304803
+			       struct map_source *source,
304803
+			       struct lookup_context *ctxt)
304803
+{
304803
+	struct mapent_cache *mc = source->mc;
304803
+	char *tablename;
304803
+	nis_result *result;
304803
+	nis_object *this;
304803
+	char *mapent;
304803
+	char buf[MAX_ERR_BUF];
304803
+	int cur_state;
304803
+	int ret;
304803
+
304803
+	pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state);
304803
+	tablename = malloc(9 + strlen(ctxt->mapname) +
304803
+			   strlen(ctxt->domainname) + 20);
304803
+	if (!tablename) {
304803
+		char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
304803
+		logerr(MODPREFIX "malloc: %s", estr);
304803
+		pthread_setcancelstate(cur_state, NULL);
304803
+		return CHE_FAIL;
304803
+	}
304803
+	sprintf(tablename, "[key=/defaults],%s.org_dir.%s",
304803
+		ctxt->mapname, ctxt->domainname);
304803
+
304803
+	result = nis_list(tablename, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL);
304803
+	if (result->status != NIS_SUCCESS && result->status != NIS_S_SUCCESS) {
304803
+		nis_error rs = result->status;
304803
+		nis_freeresult(result);
304803
+		free(tablename);
304803
+		pthread_setcancelstate(cur_state, NULL);
304803
+		if (rs == NIS_NOTFOUND ||
304803
+		    rs == NIS_S_NOTFOUND ||
304803
+		    rs == NIS_PARTIAL)
304803
+			return CHE_MISSING;
304803
+
304803
+		return -rs;
304803
+	}
304803
+
304803
+	this = NIS_RES_OBJECT(result);
304803
+	mapent = ENTRY_VAL(this, 1);
304803
+
304803
+	cache_writelock(mc);
304803
+	ret = cache_update(mc, source, "/defaults", mapent, time(NULL));
304803
+	cache_unlock(mc);
304803
+
304803
+	nis_freeresult(result);
304803
+	free(tablename);
304803
+	pthread_setcancelstate(cur_state, NULL);
304803
+
304803
+	return ret;
304803
+}
304803
+
304803
 static int check_map_indirect(struct autofs_point *ap,
304803
 			      struct map_source *source,
304803
 			      char *key, int key_len,
304803
@@ -387,8 +512,17 @@ static int check_map_indirect(struct autofs_point *ap,
304803
 
304803
 	mc = source->mc;
304803
 
304803
+	if (source->flags & MAP_FLAG_FORMAT_AMD) {
304803
+		/* Check for a /defaults entry to update the map source */
304803
+		if (lookup_amd_defaults(ap, source, ctxt) == CHE_FAIL) {
304803
+			warn(ap->logopt, MODPREFIX
304803
+			     "error getting /defaults from map %s",
304803
+			     ctxt->mapname);
304803
+		}
304803
+	}
304803
+
304803
 	/* check map and if change is detected re-read map */
304803
-	ret = lookup_one(ap, source, key, key_len, ctxt);
304803
+	ret = match_key(ap, source, key, key_len, ctxt);
304803
 	if (ret == CHE_FAIL)
304803
 		return NSS_STATUS_NOTFOUND;
304803
 
304803
@@ -397,9 +531,16 @@ static int check_map_indirect(struct autofs_point *ap,
304803
 		 * If the server is down and the entry exists in the cache
304803
 		 * and belongs to this map return success and use the entry.
304803
 		 */
304803
-		exists = cache_lookup(mc, key);
304803
-		if (exists && exists->source == source)
304803
+		cache_readlock(mc);
304803
+		if (source->flags & MAP_FLAG_FORMAT_AMD)
304803
+			exists = match_cached_key(ap, MODPREFIX, source, key);
304803
+		else
304803
+			exists = cache_lookup(mc, key);
304803
+		if (exists && exists->source == source) {
304803
+			cache_unlock(mc);
304803
 			return NSS_STATUS_SUCCESS;
304803
+		}
304803
+		cache_unlock(mc);
304803
 
304803
 		warn(ap->logopt,
304803
 		     MODPREFIX "lookup for %s failed: %s",
304803
@@ -418,6 +559,10 @@ static int check_map_indirect(struct autofs_point *ap,
304803
 		}
304803
 		me = cache_lookup_next(mc, me);
304803
 	}
304803
+	if (source->flags & MAP_FLAG_FORMAT_AMD)
304803
+		exists = match_cached_key(ap, MODPREFIX, source, key);
304803
+	else
304803
+		exists = cache_lookup_distinct(mc, key);
304803
 	exists = cache_lookup_distinct(mc, key);
304803
 	/* Not found in the map but found in the cache */
304803
 	if (exists && exists->source == source && ret & CHE_MISSING) {
304803
@@ -474,9 +619,11 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
304803
 	struct mapent_cache *mc;
304803
 	char key[KEY_MAX_LEN + 1];
304803
 	int key_len;
304803
+	char *lkp_key;
304803
 	char *mapent = NULL;
304803
 	int mapent_len;
304803
 	struct mapent *me;
304803
+	char buf[MAX_ERR_BUF];
304803
 	int status;
304803
 	int ret = 1;
304803
 
304803
@@ -488,9 +635,18 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
304803
 
304803
 	debug(ap->logopt, MODPREFIX "looking up %s", name);
304803
 
304803
-	key_len = snprintf(key, KEY_MAX_LEN + 1, "%s", name);
304803
-	if (key_len > KEY_MAX_LEN)
304803
-		return NSS_STATUS_NOTFOUND;
304803
+	if (!(source->flags & MAP_FLAG_FORMAT_AMD)) {
304803
+		key_len = snprintf(key, KEY_MAX_LEN + 1, "%s", name);
304803
+		if (key_len > KEY_MAX_LEN)
304803
+			return NSS_STATUS_NOTFOUND;
304803
+	} else {
304803
+		key_len = expandamdent(name, NULL, NULL);
304803
+		if (key_len > KEY_MAX_LEN)
304803
+			return NSS_STATUS_NOTFOUND;
304803
+		memset(key, 0, KEY_MAX_LEN + 1);
304803
+		expandamdent(name, key, NULL);
304803
+		debug(ap->logopt, MODPREFIX "expanded key: \"%s\"", key);
304803
+	}
304803
 
304803
 	/* Check if we recorded a mount fail for this key anywhere */
304803
 	me = lookup_source_mapent(ap, key, LKP_DISTINCT);
304803
@@ -524,21 +680,30 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
304803
 	 * we never know about it.
304803
 	 */
304803
 	if (ap->type == LKP_INDIRECT && *key != '/') {
304803
-		char *lkp_key;
304803
-
304803
 		cache_readlock(mc);
304803
 		me = cache_lookup_distinct(mc, key);
304803
 		if (me && me->multi)
304803
 			lkp_key = strdup(me->multi->key);
304803
-		else
304803
+		else if (!ap->pref)
304803
 			lkp_key = strdup(key);
304803
+		else {
304803
+			lkp_key = malloc(strlen(ap->pref) + strlen(key) + 1);
304803
+			if (lkp_key) {
304803
+				strcpy(lkp_key, ap->pref);
304803
+				strcat(lkp_key, key);
304803
+			}
304803
+		}
304803
 		cache_unlock(mc);
304803
 
304803
-		if (!lkp_key)
304803
+		if (!lkp_key) {
304803
+			char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
304803
+			error(ap->logopt, MODPREFIX "malloc: %s", estr);
304803
 			return NSS_STATUS_UNKNOWN;
304803
+		}
304803
 
304803
 		status = check_map_indirect(ap, source,
304803
 					    lkp_key, strlen(lkp_key), ctxt);
304803
+		free(lkp_key);
304803
 		if (status)
304803
 			return status;
304803
 	}
304803
@@ -555,7 +720,25 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
304803
 		cache_readlock(mc);
304803
 	else
304803
 		cache_writelock(mc);
304803
-	me = cache_lookup(mc, key);
304803
+
304803
+	if (!ap->pref)
304803
+		lkp_key = strdup(key);
304803
+	else {
304803
+		lkp_key = malloc(strlen(ap->pref) + strlen(key) + 1);
304803
+		if (lkp_key) {
304803
+			strcpy(lkp_key, ap->pref);
304803
+			strcat(lkp_key, key);
304803
+		}
304803
+	}
304803
+
304803
+	if (!lkp_key) {
304803
+		char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
304803
+		error(ap->logopt, MODPREFIX "malloc: %s", estr);
304803
+		cache_unlock(mc);
304803
+		return NSS_STATUS_UNKNOWN;
304803
+	}
304803
+
304803
+	me = match_cached_key(ap, MODPREFIX, source, lkp_key);
304803
 	/* Stale mapent => check for entry in alternate source or wildcard */
304803
 	if (me && !me->mapent) {
304803
 		while ((me = cache_lookup_key_next(me)))
304803
@@ -583,6 +766,7 @@ int lookup_mount(struct autofs_point *ap, const char *name, int name_len, void *
304803
 		}
304803
 	}
304803
 	cache_unlock(mc);
304803
+	free(lkp_key);
304803
 
304803
 	if (!mapent)
304803
 		return NSS_STATUS_TRYAGAIN;