s3: Replace a use of cli_errstr
[Samba.git] / source3 / winbindd / idmap_nss.c
blob1c49e76078aa55f94e0c446fbc4d7724ec5fe451
1 /*
2 Unix SMB/CIFS implementation.
4 idmap NSS backend
6 Copyright (C) Simo Sorce 2006
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "winbindd.h"
24 #include "nsswitch/winbind_client.h"
25 #include "idmap.h"
27 #undef DBGC_CLASS
28 #define DBGC_CLASS DBGC_IDMAP
30 /*****************************
31 Initialise idmap database.
32 *****************************/
34 static NTSTATUS idmap_nss_int_init(struct idmap_domain *dom)
36 return NT_STATUS_OK;
39 /**********************************
40 lookup a set of unix ids.
41 **********************************/
43 static NTSTATUS idmap_nss_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
45 int i;
47 /* initialize the status to avoid suprise */
48 for (i = 0; ids[i]; i++) {
49 ids[i]->status = ID_UNKNOWN;
52 for (i = 0; ids[i]; i++) {
53 struct passwd *pw;
54 struct group *gr;
55 const char *name;
56 enum lsa_SidType type;
57 bool ret;
59 switch (ids[i]->xid.type) {
60 case ID_TYPE_UID:
61 pw = getpwuid((uid_t)ids[i]->xid.id);
63 if (!pw) {
64 ids[i]->status = ID_UNMAPPED;
65 continue;
67 name = pw->pw_name;
68 break;
69 case ID_TYPE_GID:
70 gr = getgrgid((gid_t)ids[i]->xid.id);
72 if (!gr) {
73 ids[i]->status = ID_UNMAPPED;
74 continue;
76 name = gr->gr_name;
77 break;
78 default: /* ?? */
79 ids[i]->status = ID_UNKNOWN;
80 continue;
83 /* by default calls to winbindd are disabled
84 the following call will not recurse so this is safe */
85 (void)winbind_on();
86 /* Lookup name from PDC using lsa_lookup_names() */
87 ret = winbind_lookup_name(dom->name, name, ids[i]->sid, &type);
88 (void)winbind_off();
90 if (!ret) {
91 /* TODO: how do we know if the name is really not mapped,
92 * or something just failed ? */
93 ids[i]->status = ID_UNMAPPED;
94 continue;
97 switch (type) {
98 case SID_NAME_USER:
99 if (ids[i]->xid.type == ID_TYPE_UID) {
100 ids[i]->status = ID_MAPPED;
102 break;
104 case SID_NAME_DOM_GRP:
105 case SID_NAME_ALIAS:
106 case SID_NAME_WKN_GRP:
107 if (ids[i]->xid.type == ID_TYPE_GID) {
108 ids[i]->status = ID_MAPPED;
110 break;
112 default:
113 ids[i]->status = ID_UNKNOWN;
114 break;
117 return NT_STATUS_OK;
120 /**********************************
121 lookup a set of sids.
122 **********************************/
124 static NTSTATUS idmap_nss_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
126 int i;
128 /* initialize the status to avoid suprise */
129 for (i = 0; ids[i]; i++) {
130 ids[i]->status = ID_UNKNOWN;
133 for (i = 0; ids[i]; i++) {
134 struct group *gr;
135 enum lsa_SidType type;
136 char *name = NULL;
137 bool ret;
139 /* by default calls to winbindd are disabled
140 the following call will not recurse so this is safe */
141 (void)winbind_on();
142 ret = winbind_lookup_sid(talloc_tos(), ids[i]->sid, NULL,
143 (const char **)&name, &type);
144 (void)winbind_off();
146 if (!ret) {
147 /* TODO: how do we know if the name is really not mapped,
148 * or something just failed ? */
149 ids[i]->status = ID_UNMAPPED;
150 continue;
153 switch (type) {
154 case SID_NAME_USER: {
155 struct passwd *pw;
157 /* this will find also all lower case name and use username level */
159 pw = Get_Pwnam_alloc(talloc_tos(), name);
160 if (pw) {
161 ids[i]->xid.id = pw->pw_uid;
162 ids[i]->xid.type = ID_TYPE_UID;
163 ids[i]->status = ID_MAPPED;
165 TALLOC_FREE(pw);
166 break;
169 case SID_NAME_DOM_GRP:
170 case SID_NAME_ALIAS:
171 case SID_NAME_WKN_GRP:
173 gr = getgrnam(name);
174 if (gr) {
175 ids[i]->xid.id = gr->gr_gid;
176 ids[i]->xid.type = ID_TYPE_GID;
177 ids[i]->status = ID_MAPPED;
179 break;
181 default:
182 ids[i]->status = ID_UNKNOWN;
183 break;
185 TALLOC_FREE(name);
187 return NT_STATUS_OK;
190 /**********************************
191 Close the idmap tdb instance
192 **********************************/
194 static struct idmap_methods nss_methods = {
196 .init = idmap_nss_int_init,
197 .unixids_to_sids = idmap_nss_unixids_to_sids,
198 .sids_to_unixids = idmap_nss_sids_to_unixids,
201 NTSTATUS idmap_nss_init(void)
203 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "nss", &nss_methods);