sss_nss_idmap 2.11.0
sss_nss_idmap.h
1/*
2 SSSD
3
4 NSS Responder ID-mapping interface
5
6 Authors:
7 Sumit Bose <sbose@redhat.com>
8
9 Copyright (C) 2013 Red Hat
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
23*/
24
25#ifndef SSS_NSS_IDMAP_H_
26#define SSS_NSS_IDMAP_H_
27
28#include <stdint.h>
29#include <sys/types.h>
30#include <pwd.h>
31#include <grp.h>
32
36enum sss_id_type {
37 SSS_ID_TYPE_NOT_SPECIFIED = 0,
38 SSS_ID_TYPE_UID,
39 SSS_ID_TYPE_GID,
40 SSS_ID_TYPE_BOTH /* used for user or magic private groups */
41};
42
43struct sss_nss_kv {
44 char *key;
45 char *value;
46};
47
65int sss_nss_getsidbyname(const char *fq_name, char **sid,
66 enum sss_id_type *type);
67
79int sss_nss_getsidbyusername(const char *fq_name,
80 char **sid,
81 enum sss_id_type *type);
82
94int sss_nss_getsidbygroupname(const char *fq_name,
95 char **sid,
96 enum sss_id_type *type);
97
109int sss_nss_getsidbyid(uint32_t id, char **sid, enum sss_id_type *type);
110
122int sss_nss_getsidbyuid(uint32_t uid, char **sid, enum sss_id_type *type);
123
135int sss_nss_getsidbygid(uint32_t id, char **sid, enum sss_id_type *type);
136
148int sss_nss_getnamebysid(const char *sid, char **fq_name,
149 enum sss_id_type *type);
150
161int sss_nss_getidbysid(const char *sid, uint32_t *id,
162 enum sss_id_type *id_type);
163
182int sss_nss_getorigbyname(const char *fq_name, struct sss_nss_kv **kv_list,
183 enum sss_id_type *type);
184
203int sss_nss_getorigbyusername(const char *fq_name, struct sss_nss_kv **kv_list,
204 enum sss_id_type *type);
205
224int sss_nss_getorigbygroupname(const char *fq_name, struct sss_nss_kv **kv_list,
225 enum sss_id_type *type);
226
239int sss_nss_getnamebycert(const char *cert, char **fq_name,
240 enum sss_id_type *type);
241
254int sss_nss_getlistbycert(const char *cert, char ***fq_name,
255 enum sss_id_type **type);
256
263void sss_nss_free_kv(struct sss_nss_kv *kv_list);
264
268
269#define SSS_NSS_EX_FLAG_NO_FLAGS 0
270
274#define SSS_NSS_EX_FLAG_NO_CACHE (1 << 0)
275
279#define SSS_NSS_EX_FLAG_INVALIDATE_CACHE (1 << 1)
280
281#ifdef IPA_389DS_PLUGIN_HELPER_CALLS
282
302int sss_nss_getpwnam_timeout(const char *name, struct passwd *pwd,
303 char *buffer, size_t buflen,
304 struct passwd **result,
305 uint32_t flags, unsigned int timeout);
306
326int sss_nss_getpwuid_timeout(uid_t uid, struct passwd *pwd,
327 char *buffer, size_t buflen,
328 struct passwd **result,
329 uint32_t flags, unsigned int timeout);
330
350int sss_nss_getgrnam_timeout(const char *name, struct group *grp,
351 char *buffer, size_t buflen, struct group **result,
352 uint32_t flags, unsigned int timeout);
353
373int sss_nss_getgrgid_timeout(gid_t gid, struct group *grp,
374 char *buffer, size_t buflen, struct group **result,
375 uint32_t flags, unsigned int timeout);
376
402int sss_nss_getgrouplist_timeout(const char *name, gid_t group,
403 gid_t *groups, int *ngroups,
404 uint32_t flags, unsigned int timeout);
425int sss_nss_getsidbyname_timeout(const char *fq_name, unsigned int timeout,
426 char **sid, enum sss_id_type *type);
427
440int sss_nss_getsidbyusername_timeout(const char *fq_name,
441 unsigned int timeout,
442 char **sid,
443 enum sss_id_type *type);
444
457int sss_nss_getsidbygroupname_timeout(const char *fq_name,
458 unsigned int timeout,
459 char **sid,
460 enum sss_id_type *type);
461
474int sss_nss_getsidbyid_timeout(uint32_t id, unsigned int timeout,
475 char **sid, enum sss_id_type *type);
488int sss_nss_getsidbyuid_timeout(uint32_t uid, unsigned int timeout,
489 char **sid, enum sss_id_type *type);
490
503int sss_nss_getsidbygid_timeout(uint32_t gid, unsigned int timeout,
504 char **sid, enum sss_id_type *type);
505
506
519int sss_nss_getnamebysid_timeout(const char *sid, unsigned int timeout,
520 char **fq_name, enum sss_id_type *type);
521
533int sss_nss_getidbysid_timeout(const char *sid, unsigned int timeout,
534 uint32_t *id, enum sss_id_type *id_type);
535
557int sss_nss_getorigbyname_timeout(const char *fq_name, unsigned int timeout,
558 struct sss_nss_kv **kv_list,
559 enum sss_id_type *type);
560
582int sss_nss_getorigbyusername_timeout(const char *fq_name, unsigned int timeout,
583 struct sss_nss_kv **kv_list,
584 enum sss_id_type *type);
585
607int sss_nss_getorigbygroupname_timeout(const char *fq_name, unsigned int timeout,
608 struct sss_nss_kv **kv_list,
609 enum sss_id_type *type);
610
624int sss_nss_getnamebycert_timeout(const char *cert, unsigned int timeout,
625 char **fq_name, enum sss_id_type *type);
626
640int sss_nss_getlistbycert_timeout(const char *cert, unsigned int timeout,
641 char ***fq_name, enum sss_id_type **type);
642
643#endif /* IPA_389DS_PLUGIN_HELPER_CALLS */
644#endif /* SSS_NSS_IDMAP_H_ */