Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 885843 Details for
Bug 1086887
"key not found" in nis auto.home
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch - fix wildcard key lookup
autofs-5.1.0-beta1-fix-wildcard-key-lookup.patch (text/plain), 5.47 KB, created by
Ian Kent
on 2014-04-13 10:50:38 UTC
(
hide
)
Description:
Patch - fix wildcard key lookup
Filename:
MIME Type:
Creator:
Ian Kent
Created:
2014-04-13 10:50:38 UTC
Size:
5.47 KB
patch
obsolete
>autofs-5.1.0-beta1 - fix wildcard key lookup > >From: Ian Kent <raven@themaw.net> > >The changes to key matching caused wildcard key lookups for autofs >format maps to fail. >--- > CHANGELOG | 1 + > modules/lookup_ldap.c | 10 ++++------ > modules/lookup_nisplus.c | 11 +++++------ > modules/lookup_program.c | 4 ++-- > modules/lookup_yp.c | 6 ++---- > 5 files changed, 14 insertions(+), 18 deletions(-) > >diff --git a/CHANGELOG b/CHANGELOG >index f44f6f5..8c1da44 100644 >--- a/CHANGELOG >+++ b/CHANGELOG >@@ -6,6 +6,7 @@ > - inadvertantly drop from initial series. > - amd lookup update lookup hesiod to handle amd keys > - inadvertantly drop from initial series. >+- fix wildcard key lookup. > > 28/03/2014 autofs-5.0.9 > ======================= >diff --git a/modules/lookup_ldap.c b/modules/lookup_ldap.c >index 833cb86..dac346c 100644 >--- a/modules/lookup_ldap.c >+++ b/modules/lookup_ldap.c >@@ -3349,12 +3349,9 @@ static int match_key(struct autofs_point *ap, > else > ret = lookup_one(ap, source, key, key_len, ctxt); > >- if (ret == CHE_OK || ret == CHE_UPDATED) >+ if (ret == CHE_OK || ret == CHE_UPDATED || !is_amd_format) > return ret; > >- if (!is_amd_format) >- return CHE_FAIL; >- > lkp_key = strdup(key); > if (!lkp_key) { > char *estr = strerror_r(errno, buf, MAX_ERR_BUF); >@@ -3399,6 +3396,7 @@ static int check_map_indirect(struct autofs_point *ap, > char *key, int key_len, > struct lookup_context *ctxt) > { >+ unsigned int is_amd_format = source->flags & MAP_FLAG_FORMAT_AMD; > struct mapent_cache *mc; > struct mapent *me; > time_t now = time(NULL); >@@ -3410,7 +3408,7 @@ static int check_map_indirect(struct autofs_point *ap, > pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state); > > pthread_mutex_lock(&ap->entry->current_mutex); >- if (source->flags & MAP_FLAG_FORMAT_AMD) { >+ if (is_amd_format) { > unsigned long timestamp = get_amd_timestamp(ctxt); > if (timestamp > ctxt->timestamp) { > ctxt->timestamp = timestamp; >@@ -3457,7 +3455,7 @@ static int check_map_indirect(struct autofs_point *ap, > } > pthread_setcancelstate(cur_state, NULL); > >- if (!(source->flags & MAP_FLAG_FORMAT_AMD)) { >+ if (!is_amd_format) { > /* > * Check for map change and update as needed for > * following cache lookup. >diff --git a/modules/lookup_nisplus.c b/modules/lookup_nisplus.c >index e9444c9..db1b162 100644 >--- a/modules/lookup_nisplus.c >+++ b/modules/lookup_nisplus.c >@@ -339,6 +339,7 @@ static int match_key(struct autofs_point *ap, > const char *key, int key_len, > struct lookup_context *ctxt) > { >+ unsigned int is_amd_format = source->flags & MAP_FLAG_FORMAT_AMD; > char buf[MAX_ERR_BUF]; > char *lkp_key; > char *prefix; >@@ -347,12 +348,9 @@ static int match_key(struct autofs_point *ap, > ret = lookup_one(ap, source, key, key_len, ctxt); > if (ret < 0) > return ret; >- if (ret == CHE_OK || ret == CHE_UPDATED) >+ if (ret == CHE_OK || ret == CHE_UPDATED || is_amd_format) > return ret; > >- if (!(source->flags & MAP_FLAG_FORMAT_AMD)) >- return CHE_FAIL; >- > lkp_key = strdup(key); > if (!lkp_key) { > char *estr = strerror_r(errno, buf, MAX_ERR_BUF); >@@ -504,6 +502,7 @@ static int check_map_indirect(struct autofs_point *ap, > char *key, int key_len, > struct lookup_context *ctxt) > { >+ unsigned int is_amd_format = source->flags & MAP_FLAG_FORMAT_AMD; > struct mapent_cache *mc; > struct mapent *me, *exists; > time_t now = time(NULL); >@@ -512,7 +511,7 @@ static int check_map_indirect(struct autofs_point *ap, > > mc = source->mc; > >- if (source->flags & MAP_FLAG_FORMAT_AMD) { >+ if (is_amd_format) { > /* Check for a /defaults entry to update the map source */ > if (lookup_amd_defaults(ap, source, ctxt) == CHE_FAIL) { > warn(ap->logopt, MODPREFIX >@@ -559,7 +558,7 @@ static int check_map_indirect(struct autofs_point *ap, > } > me = cache_lookup_next(mc, me); > } >- if (source->flags & MAP_FLAG_FORMAT_AMD) >+ if (is_amd_format) > exists = match_cached_key(ap, MODPREFIX, source, key); > else > exists = cache_lookup_distinct(mc, key); >diff --git a/modules/lookup_program.c b/modules/lookup_program.c >index 08d14ff..aae0ec0 100644 >--- a/modules/lookup_program.c >+++ b/modules/lookup_program.c >@@ -382,7 +382,7 @@ static int match_key(struct autofs_point *ap, > char *prefix; > int ret; > >- if (source->flags & MAP_FLAG_FORMAT_AMD) { >+ if (is_amd_format) { > ret = lookup_amd_defaults(ap, source, ctxt); > if (ret != NSS_STATUS_SUCCESS) { > warn(ap->logopt, >@@ -420,7 +420,7 @@ static int match_key(struct autofs_point *ap, > ment = lookup_one(ap, lkp_key, lkp_len, ctxt); > if (ment) { > char *start = ment; >- if (source->flags & MAP_FLAG_FORMAT_AMD) { >+ if (is_amd_format) { > start = ment + lkp_len; > while (isblank(*start)) > start++; >diff --git a/modules/lookup_yp.c b/modules/lookup_yp.c >index 146e39e..fcf470a 100644 >--- a/modules/lookup_yp.c >+++ b/modules/lookup_yp.c >@@ -457,6 +457,7 @@ static int match_key(struct autofs_point *ap, > const char *key, int key_len, > struct lookup_context *ctxt) > { >+ unsigned int is_amd_format = source->flags & MAP_FLAG_FORMAT_AMD; > char buf[MAX_ERR_BUF]; > char *lkp_key; > char *prefix; >@@ -465,12 +466,9 @@ static int match_key(struct autofs_point *ap, > ret = lookup_one(ap, source, key, strlen(key), ctxt); > if (ret < 0) > return ret; >- if (ret == CHE_OK || ret == CHE_UPDATED) >+ if (ret == CHE_OK || ret == CHE_UPDATED || !is_amd_format) > return ret; > >- if (!(source->flags & MAP_FLAG_FORMAT_AMD)) >- return CHE_FAIL; >- > lkp_key = strdup(key); > if (!lkp_key) { > char *estr = strerror_r(errno, buf, MAX_ERR_BUF);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1086887
:
885513
|
885514
|
885841
|
885842
| 885843 |
885844