summaryrefslogtreecommitdiffstats
path: root/src/responder/nss/nsssrv_netgroup.h
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-07-29 14:45:35 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-08-08 11:13:41 +0200
commit6eb816852316f878e5c7aaac9b4ec7578621852a (patch)
tree4af76746c85cab9c4e42232e8a2016fd2bd4c858 /src/responder/nss/nsssrv_netgroup.h
parent2f23a9ced7b8f208e58aacc6689eff362c38db1e (diff)
downloadsssd-6eb816852316f878e5c7aaac9b4ec7578621852a.tar.gz
sssd-6eb816852316f878e5c7aaac9b4ec7578621852a.tar.xz
sssd-6eb816852316f878e5c7aaac9b4ec7578621852a.zip
NSS: allow removing entries from netgroup hash table
There is a timed desctructor in the nss responder that, when the entry timeout passes, removes the netgroup from the hash table while the netgroup is freed. This patch adds a hash delete callback so that if the netgroup is removed from the hash table with hash_delete, its hash table pointer will be invalidated. Later, when the entry is being freed, the destructor won't attempt to remove it from the hash table.
Diffstat (limited to 'src/responder/nss/nsssrv_netgroup.h')
-rw-r--r--src/responder/nss/nsssrv_netgroup.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/responder/nss/nsssrv_netgroup.h b/src/responder/nss/nsssrv_netgroup.h
index ed345c434..a909abed3 100644
--- a/src/responder/nss/nsssrv_netgroup.h
+++ b/src/responder/nss/nsssrv_netgroup.h
@@ -31,4 +31,6 @@ int nss_cmd_setnetgrent(struct cli_ctx *cctx);
int nss_cmd_getnetgrent(struct cli_ctx *cctx);
int nss_cmd_endnetgrent(struct cli_ctx *cctx);
+void netgroup_hash_delete_cb(hash_entry_t *item,
+ hash_destroy_enum deltype, void *pvt);
#endif /* NSSRV_NETGROUP_H_ */