2 Unix SMB/CIFS implementation.
4 Password and authentication handling by wbclient
6 Copyright (C) Andrew Bartlett 2002
7 Copyright (C) Jelmer Vernooij 2002
8 Copyright (C) Simo Sorce 2003
9 Copyright (C) Volker Lendecke 2006
10 Copyright (C) Dan Sledz 2009
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 /* This passdb module retrieves full passdb information for local users and
27 * groups from a wbclient compatible daemon.
29 * The purpose of this module is to defer all SAM authorization information
30 * storage and retrieval to a wbc compatible daemon.
32 * This passdb backend is most useful when used in conjunction with auth_wbc.
34 * A few current limitations of this module are:
35 * - read only interface
41 /***************************************************************************
42 Default implementations of some functions.
43 ****************************************************************************/
44 static NTSTATUS
_pdb_wbc_sam_getsampw(struct pdb_methods
*methods
,
46 const struct passwd
*pwd
)
48 NTSTATUS result
= NT_STATUS_OK
;
51 return NT_STATUS_NO_SUCH_USER
;
53 memset(user
, 0, sizeof(user
));
55 /* Can we really get away with this little of information */
56 user
->methods
= methods
;
57 result
= samu_set_unix(user
, pwd
);
62 static NTSTATUS
pdb_wbc_sam_getsampwnam(struct pdb_methods
*methods
, struct samu
*user
, const char *sname
)
64 return _pdb_wbc_sam_getsampw(methods
, user
, winbind_getpwnam(sname
));
67 static NTSTATUS
pdb_wbc_sam_getsampwsid(struct pdb_methods
*methods
, struct samu
*user
, const DOM_SID
*sid
)
69 return _pdb_wbc_sam_getsampw(methods
, user
, winbind_getpwsid(sid
));
72 static bool pdb_wbc_sam_uid_to_sid(struct pdb_methods
*methods
, uid_t uid
,
75 return winbind_uid_to_sid(sid
, uid
);
78 static bool pdb_wbc_sam_gid_to_sid(struct pdb_methods
*methods
, gid_t gid
,
81 return winbind_gid_to_sid(sid
, gid
);
84 static NTSTATUS
pdb_wbc_sam_enum_group_members(struct pdb_methods
*methods
,
87 uint32
**pp_member_rids
,
88 size_t *p_num_members
)
90 return NT_STATUS_NOT_IMPLEMENTED
;
93 static NTSTATUS
pdb_wbc_sam_enum_group_memberships(struct pdb_methods
*methods
,
101 const char *username
= pdb_get_username(user
);
104 if (!winbind_get_groups(mem_ctx
, username
, &num_groups
, pp_gids
)) {
105 return NT_STATUS_NO_SUCH_USER
;
107 *p_num_groups
= num_groups
;
109 if (*p_num_groups
== 0) {
110 smb_panic("primary group missing");
113 *pp_sids
= TALLOC_ARRAY(mem_ctx
, DOM_SID
, *p_num_groups
);
115 if (*pp_sids
== NULL
) {
116 TALLOC_FREE(*pp_gids
);
117 return NT_STATUS_NO_MEMORY
;
120 for (i
=0; i
< *p_num_groups
; i
++) {
121 gid_to_sid(&(*pp_sids
)[i
], (*pp_gids
)[i
]);
127 static NTSTATUS
pdb_wbc_sam_lookup_rids(struct pdb_methods
*methods
,
128 const DOM_SID
*domain_sid
,
132 enum lsa_SidType
*attrs
)
134 NTSTATUS result
= NT_STATUS_OK
;
136 char **account_names
= NULL
;
137 enum lsa_SidType
*attr_list
= NULL
;
140 if (!winbind_lookup_rids(talloc_tos(), domain_sid
, num_rids
, rids
,
141 (const char **)&domain
,
142 (const char ***)&account_names
, &attr_list
))
144 result
= NT_STATUS_NONE_MAPPED
;
148 memcpy(attrs
, attr_list
, num_rids
* sizeof(enum lsa_SidType
));
150 for (i
=0; i
<num_rids
; i
++) {
151 if (attrs
[i
] == SID_NAME_UNKNOWN
) {
154 names
[i
] = talloc_strdup(names
, account_names
[i
]);
155 if (names
[i
] == NULL
) {
156 result
= NT_STATUS_NO_MEMORY
;
164 TALLOC_FREE(account_names
);
166 TALLOC_FREE(attr_list
);
170 static NTSTATUS
pdb_wbc_sam_get_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t *value
)
172 return NT_STATUS_UNSUCCESSFUL
;
175 static NTSTATUS
pdb_wbc_sam_set_account_policy(struct pdb_methods
*methods
, enum pdb_policy_type type
, uint32_t value
)
177 return NT_STATUS_UNSUCCESSFUL
;
180 static bool pdb_wbc_sam_search_groups(struct pdb_methods
*methods
,
181 struct pdb_search
*search
)
186 static bool pdb_wbc_sam_search_aliases(struct pdb_methods
*methods
,
187 struct pdb_search
*search
,
194 static bool pdb_wbc_sam_get_trusteddom_pw(struct pdb_methods
*methods
,
198 time_t *pass_last_set_time
)
204 static bool pdb_wbc_sam_set_trusteddom_pw(struct pdb_methods
*methods
,
212 static bool pdb_wbc_sam_del_trusteddom_pw(struct pdb_methods
*methods
,
218 static NTSTATUS
pdb_wbc_sam_enum_trusteddoms(struct pdb_methods
*methods
,
221 struct trustdom_info
***domains
)
223 return NT_STATUS_NOT_IMPLEMENTED
;
226 static bool _make_group_map(struct pdb_methods
*methods
, const char *domain
, const char *name
, enum lsa_SidType name_type
, gid_t gid
, DOM_SID
*sid
, GROUP_MAP
*map
)
228 snprintf(map
->nt_name
, sizeof(map
->nt_name
), "%s%c%s",
229 domain
, *lp_winbind_separator(), name
);
230 map
->sid_name_use
= name_type
;
236 static NTSTATUS
pdb_wbc_sam_getgrsid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
239 NTSTATUS result
= NT_STATUS_OK
;
242 enum lsa_SidType name_type
;
245 if (!winbind_lookup_sid(talloc_tos(), &sid
, (const char **)&domain
,
246 (const char **) &name
, &name_type
)) {
247 result
= NT_STATUS_NO_SUCH_GROUP
;
251 if ((name_type
!= SID_NAME_DOM_GRP
) &&
252 (name_type
!= SID_NAME_DOMAIN
) &&
253 (name_type
!= SID_NAME_ALIAS
) &&
254 (name_type
!= SID_NAME_WKN_GRP
)) {
255 result
= NT_STATUS_NO_SUCH_GROUP
;
259 if (!winbind_sid_to_gid(&gid
, &sid
)) {
260 result
= NT_STATUS_NO_SUCH_GROUP
;
264 if (!_make_group_map(methods
, domain
, name
, name_type
, gid
, &sid
, map
)) {
265 result
= NT_STATUS_NO_SUCH_GROUP
;
275 static NTSTATUS
pdb_wbc_sam_getgrgid(struct pdb_methods
*methods
, GROUP_MAP
*map
,
278 NTSTATUS result
= NT_STATUS_OK
;
282 enum lsa_SidType name_type
;
284 if (!winbind_gid_to_sid(&sid
, gid
)) {
285 result
= NT_STATUS_NO_SUCH_GROUP
;
289 if (!winbind_lookup_sid(talloc_tos(), &sid
, (const char **)&domain
,
290 (const char **)&name
, &name_type
)) {
291 result
= NT_STATUS_NO_SUCH_GROUP
;
295 if ((name_type
!= SID_NAME_DOM_GRP
) &&
296 (name_type
!= SID_NAME_DOMAIN
) &&
297 (name_type
!= SID_NAME_ALIAS
) &&
298 (name_type
!= SID_NAME_WKN_GRP
)) {
299 result
= NT_STATUS_NO_SUCH_GROUP
;
303 if (!_make_group_map(methods
, domain
, name
, name_type
, gid
, &sid
, map
)) {
304 result
= NT_STATUS_NO_SUCH_GROUP
;
315 static NTSTATUS
pdb_wbc_sam_getgrnam(struct pdb_methods
*methods
, GROUP_MAP
*map
,
318 NTSTATUS result
= NT_STATUS_OK
;
319 const char *domain
= "";
322 enum lsa_SidType name_type
;
324 if (!winbind_lookup_name(domain
, name
, &sid
, &name_type
)) {
325 result
= NT_STATUS_NO_SUCH_GROUP
;
329 if ((name_type
!= SID_NAME_DOM_GRP
) &&
330 (name_type
!= SID_NAME_DOMAIN
) &&
331 (name_type
!= SID_NAME_ALIAS
) &&
332 (name_type
!= SID_NAME_WKN_GRP
)) {
333 result
= NT_STATUS_NO_SUCH_GROUP
;
337 if (!winbind_sid_to_gid(&gid
, &sid
)) {
338 result
= NT_STATUS_NO_SUCH_GROUP
;
342 if (!_make_group_map(methods
, domain
, name
, name_type
, gid
, &sid
, map
)) {
343 result
= NT_STATUS_NO_SUCH_GROUP
;
352 static NTSTATUS
pdb_wbc_sam_enum_group_mapping(struct pdb_methods
*methods
,
353 const DOM_SID
*sid
, enum lsa_SidType sid_name_use
,
354 GROUP_MAP
**pp_rmap
, size_t *p_num_entries
,
357 return NT_STATUS_NOT_IMPLEMENTED
;
360 static NTSTATUS
pdb_wbc_sam_get_aliasinfo(struct pdb_methods
*methods
,
362 struct acct_info
*info
)
364 return NT_STATUS_NOT_IMPLEMENTED
;
367 static NTSTATUS
pdb_wbc_sam_enum_aliasmem(struct pdb_methods
*methods
,
368 const DOM_SID
*alias
,
370 DOM_SID
**pp_members
,
371 size_t *p_num_members
)
373 return NT_STATUS_NOT_IMPLEMENTED
;
376 static NTSTATUS
pdb_wbc_sam_alias_memberships(struct pdb_methods
*methods
,
378 const DOM_SID
*domain_sid
,
379 const DOM_SID
*members
,
381 uint32
**pp_alias_rids
,
382 size_t *p_num_alias_rids
)
384 if (!winbind_get_sid_aliases(mem_ctx
, domain_sid
,
385 members
, num_members
, pp_alias_rids
, p_num_alias_rids
))
386 return NT_STATUS_UNSUCCESSFUL
;
391 static NTSTATUS
pdb_init_wbc_sam(struct pdb_methods
**pdb_method
, const char *location
)
395 if (!NT_STATUS_IS_OK(result
= make_pdb_method( pdb_method
))) {
399 (*pdb_method
)->name
= "wbc_sam";
401 (*pdb_method
)->getsampwnam
= pdb_wbc_sam_getsampwnam
;
402 (*pdb_method
)->getsampwsid
= pdb_wbc_sam_getsampwsid
;
404 (*pdb_method
)->getgrsid
= pdb_wbc_sam_getgrsid
;
405 (*pdb_method
)->getgrgid
= pdb_wbc_sam_getgrgid
;
406 (*pdb_method
)->getgrnam
= pdb_wbc_sam_getgrnam
;
407 (*pdb_method
)->enum_group_mapping
= pdb_wbc_sam_enum_group_mapping
;
408 (*pdb_method
)->enum_group_members
= pdb_wbc_sam_enum_group_members
;
409 (*pdb_method
)->enum_group_memberships
= pdb_wbc_sam_enum_group_memberships
;
410 (*pdb_method
)->get_aliasinfo
= pdb_wbc_sam_get_aliasinfo
;
411 (*pdb_method
)->enum_aliasmem
= pdb_wbc_sam_enum_aliasmem
;
412 (*pdb_method
)->enum_alias_memberships
= pdb_wbc_sam_alias_memberships
;
413 (*pdb_method
)->lookup_rids
= pdb_wbc_sam_lookup_rids
;
414 (*pdb_method
)->get_account_policy
= pdb_wbc_sam_get_account_policy
;
415 (*pdb_method
)->set_account_policy
= pdb_wbc_sam_set_account_policy
;
416 (*pdb_method
)->uid_to_sid
= pdb_wbc_sam_uid_to_sid
;
417 (*pdb_method
)->gid_to_sid
= pdb_wbc_sam_gid_to_sid
;
419 (*pdb_method
)->search_groups
= pdb_wbc_sam_search_groups
;
420 (*pdb_method
)->search_aliases
= pdb_wbc_sam_search_aliases
;
422 (*pdb_method
)->get_trusteddom_pw
= pdb_wbc_sam_get_trusteddom_pw
;
423 (*pdb_method
)->set_trusteddom_pw
= pdb_wbc_sam_set_trusteddom_pw
;
424 (*pdb_method
)->del_trusteddom_pw
= pdb_wbc_sam_del_trusteddom_pw
;
425 (*pdb_method
)->enum_trusteddoms
= pdb_wbc_sam_enum_trusteddoms
;
427 (*pdb_method
)->private_data
= NULL
;
428 (*pdb_method
)->free_private_data
= NULL
;
433 NTSTATUS
pdb_wbc_sam_init(void)
435 return smb_register_passdb(PASSDB_INTERFACE_VERSION
, "wbc_sam", pdb_init_wbc_sam
);