73 lines
2.1 KiB
Diff
73 lines
2.1 KiB
Diff
autofs-5.1.0 - add return check in ldap check_map_indirect()
|
|
|
|
From: Ian Kent <ikent@redhat.com>
|
|
|
|
Fix not checking return from pthread_mutex_lock/pthread_mutex_unlock in
|
|
modules/lookup_ldap.c:check_map_indirect().
|
|
---
|
|
CHANGELOG | 1 +
|
|
modules/lookup_ldap.c | 17 +++++++++++++----
|
|
2 files changed, 14 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/CHANGELOG b/CHANGELOG
|
|
index dfbaeb1..d7d161f 100644
|
|
--- a/CHANGELOG
|
|
+++ b/CHANGELOG
|
|
@@ -14,6 +14,7 @@
|
|
- fix leak in get_network_proximity().
|
|
- fix buffer size checks in merge_options().
|
|
- check amd lex buffer len before copy.
|
|
+- add return check in ldap check_map_indirect().
|
|
|
|
04/06/2014 autofs-5.1.0
|
|
=======================
|
|
diff --git a/modules/lookup_ldap.c b/modules/lookup_ldap.c
|
|
index 5c16063..ac2ef30 100644
|
|
--- a/modules/lookup_ldap.c
|
|
+++ b/modules/lookup_ldap.c
|
|
@@ -3420,12 +3420,15 @@ static int check_map_indirect(struct autofs_point *ap,
|
|
time_t now = time(NULL);
|
|
time_t t_last_read;
|
|
int ret, cur_state;
|
|
+ int status;
|
|
|
|
mc = source->mc;
|
|
|
|
pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cur_state);
|
|
|
|
- pthread_mutex_lock(&ap->entry->current_mutex);
|
|
+ status = pthread_mutex_lock(&ap->entry->current_mutex);
|
|
+ if (status)
|
|
+ fatal(status);
|
|
if (is_amd_format) {
|
|
unsigned long timestamp = get_amd_timestamp(ctxt);
|
|
if (timestamp > ctxt->timestamp) {
|
|
@@ -3445,7 +3448,9 @@ static int check_map_indirect(struct autofs_point *ap,
|
|
ctxt->check_defaults = 0;
|
|
}
|
|
}
|
|
- pthread_mutex_unlock(&ap->entry->current_mutex);
|
|
+ status = pthread_mutex_unlock(&ap->entry->current_mutex);
|
|
+ if (status)
|
|
+ fatal(status);
|
|
|
|
ret = match_key(ap, source, key, key_len, ctxt);
|
|
if (ret == CHE_FAIL) {
|
|
@@ -3490,10 +3495,14 @@ static int check_map_indirect(struct autofs_point *ap,
|
|
}
|
|
cache_unlock(mc);
|
|
|
|
- pthread_mutex_lock(&ap->entry->current_mutex);
|
|
+ status = pthread_mutex_lock(&ap->entry->current_mutex);
|
|
+ if (status)
|
|
+ fatal(status);
|
|
if (t_last_read > ap->exp_runfreq && ret & CHE_UPDATED)
|
|
source->stale = 1;
|
|
- pthread_mutex_unlock(&ap->entry->current_mutex);
|
|
+ status = pthread_mutex_unlock(&ap->entry->current_mutex);
|
|
+ if (status)
|
|
+ fatal(status);
|
|
}
|
|
|
|
cache_readlock(mc);
|