diff options
Diffstat (limited to 'server/responder/nss/nsssrv_nc.h')
-rw-r--r-- | server/responder/nss/nsssrv_nc.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/server/responder/nss/nsssrv_nc.h b/server/responder/nss/nsssrv_nc.h new file mode 100644 index 00000000..acc9170c --- /dev/null +++ b/server/responder/nss/nsssrv_nc.h @@ -0,0 +1,46 @@ +/* + SSSD + + NSS Responder + + Copyright (C) Simo Sorce <ssorce@redhat.com> 2008 + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + +#ifndef _NSS_NEG_CACHE_H_ +#define _NSS_NEG_CACHE_H_ + +struct nss_nc_ctx; + +/* init the in memory negative cache */ +int nss_ncache_init(TALLOC_CTX *memctx, struct nss_nc_ctx **_ctx); + +/* check if the user is expired according to the passed in time to live */ +int nss_ncache_check_user(struct nss_nc_ctx *ctx, int ttl, + const char *domain, const char *name); +int nss_ncache_check_group(struct nss_nc_ctx *ctx, int ttl, + const char *domain, const char *name); +int nss_ncache_check_uid(struct nss_nc_ctx *ctx, int ttl, uid_t uid); +int nss_ncache_check_gid(struct nss_nc_ctx *ctx, int ttl, gid_t gid); + +/* add a new neg-cache entry setting the timestamp to "now" */ +int nss_ncache_set_user(struct nss_nc_ctx *ctx, + const char *domain, const char *name); +int nss_ncache_set_group(struct nss_nc_ctx *ctx, + const char *domain, const char *name); +int nss_ncache_set_uid(struct nss_nc_ctx *ctx, uid_t uid); +int nss_ncache_set_gid(struct nss_nc_ctx *ctx, gid_t gid); + +#endif /* _NSS_NEG_CACHE_H_ */ |