Skip to content

Commit

Permalink
Merge branch 'RADSECPROXY-77' into maint-1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Aug 2, 2017
2 parents b5da34a + 6c8491b commit c00a039
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
14 changes: 11 additions & 3 deletions radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -744,8 +744,11 @@ int msmppdecrypt(uint8_t *text, uint8_t len, uint8_t *shared, uint8_t sharedlen,
}

struct realm *newrealmref(struct realm *r) {
if (r)
if (r) {
pthread_mutex_lock(&r->refmutex);
r->refcount++;
pthread_mutex_unlock(&r->refmutex);
}
return r;
}

Expand Down Expand Up @@ -2122,12 +2125,16 @@ void freerealm(struct realm *realm) {
if (!realm)
return;
debug(DBG_DBG, "freerealm: called with refcount %d", realm->refcount);
if (--realm->refcount)
pthread_mutex_lock(&realm->refmutex);
--realm->refcount;
pthread_mutex_unlock(&realm->refmutex);
if (realm->refcount)
return;

free(realm->name);
free(realm->message);
regfree(&realm->regex);
pthread_mutex_destroy(&realm->refmutex);
pthread_mutex_destroy(&realm->mutex);
/* if refcount == 0, all subrealms gone */
list_destroy(realm->subrealms);
Expand Down Expand Up @@ -2183,7 +2190,8 @@ struct realm *addrealm(struct list *realmlist, char *value, char **servers, char
}
memset(realm, 0, sizeof(struct realm));

if (pthread_mutex_init(&realm->mutex, NULL)) {
if (pthread_mutex_init(&realm->mutex, NULL) ||
pthread_mutex_init(&realm->refmutex, NULL)) {
debugerrno(errno, DBG_ERR, "mutex init failed");
free(realm);
realm = NULL;
Expand Down
1 change: 1 addition & 0 deletions radsecproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ struct realm {
uint8_t accresp;
regex_t regex;
uint32_t refcount;
pthread_mutex_t refmutex;
pthread_mutex_t mutex;
struct realm *parent;
struct list *subrealms;
Expand Down

0 comments on commit c00a039

Please sign in to comment.