2 * 'Guest' password backend for samba
3 * Copyright (C) Jelmer Vernooij 2002
4 * Copyright (C) Andrew Bartlett 2003
6 * This program is free software; you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc., 675
18 * Mass Ave, Cambridge, MA 02139, USA.
23 /******************************************************************
24 Lookup a name in the SAM database
25 ******************************************************************/
27 static NTSTATUS
guestsam_getsampwnam (struct pdb_methods
*methods
, SAM_ACCOUNT
*sam_account
, const char *sname
)
29 const char *guest_account
= lp_guestaccount();
31 if (!sam_account
|| !sname
) {
32 DEBUG(0,("invalid name specified"));
33 return NT_STATUS_UNSUCCESSFUL
;
36 if (!(guest_account
&& *guest_account
)) {
37 DEBUG(1, ("NULL guest account!?!?\n"));
38 return NT_STATUS_UNSUCCESSFUL
;
42 DEBUG(0,("invalid methods\n"));
43 return NT_STATUS_UNSUCCESSFUL
;
45 if (!strequal(guest_account
, sname
)) {
46 return NT_STATUS_NO_SUCH_USER
;
49 pdb_fill_default_sam(sam_account
);
51 if (!pdb_set_username(sam_account
, guest_account
, PDB_SET
))
52 return NT_STATUS_UNSUCCESSFUL
;
54 if (!pdb_set_fullname(sam_account
, guest_account
, PDB_SET
))
55 return NT_STATUS_UNSUCCESSFUL
;
57 if (!pdb_set_domain(sam_account
, get_global_sam_name(), PDB_DEFAULT
))
58 return NT_STATUS_UNSUCCESSFUL
;
60 if (!pdb_set_acct_ctrl(sam_account
, ACB_NORMAL
, PDB_DEFAULT
))
61 return NT_STATUS_UNSUCCESSFUL
;
63 if (!pdb_set_user_sid_from_rid(sam_account
, DOMAIN_USER_RID_GUEST
, PDB_DEFAULT
))
64 return NT_STATUS_UNSUCCESSFUL
;
66 if (!pdb_set_group_sid_from_rid(sam_account
, DOMAIN_GROUP_RID_GUESTS
, PDB_DEFAULT
))
67 return NT_STATUS_UNSUCCESSFUL
;
73 /***************************************************************************
75 **************************************************************************/
77 static NTSTATUS
guestsam_getsampwrid (struct pdb_methods
*methods
,
78 SAM_ACCOUNT
*sam_account
, uint32 rid
)
80 if (rid
!= DOMAIN_USER_RID_GUEST
) {
81 return NT_STATUS_NO_SUCH_USER
;
85 return NT_STATUS_INVALID_PARAMETER
;
88 return guestsam_getsampwnam (methods
, sam_account
, lp_guestaccount());
91 static NTSTATUS
guestsam_getsampwsid(struct pdb_methods
*my_methods
, SAM_ACCOUNT
* user
, const DOM_SID
*sid
)
94 if (!sid_peek_check_rid(get_global_sam_sid(), sid
, &rid
))
95 return NT_STATUS_NO_SUCH_USER
;
97 return guestsam_getsampwrid(my_methods
, user
, rid
);
101 /***************************************************************************
102 Updates a SAM_ACCOUNT
104 This isn't a particulary practical option for pdb_guest. We certainly don't
105 want to twidde the filesystem, so what should we do?
107 Current plan is to transparently add the account. It should appear
108 as if the pdb_guest version was modified, but its actually stored somehwere.
109 ****************************************************************************/
111 static NTSTATUS
guestsam_update_sam_account (struct pdb_methods
*methods
, SAM_ACCOUNT
*newpwd
)
113 return methods
->parent
->pdb_add_sam_account(methods
->parent
, newpwd
);
116 NTSTATUS
pdb_init_guestsam(PDB_CONTEXT
*pdb_context
, PDB_METHODS
**pdb_method
, const char *location
)
121 DEBUG(0, ("invalid pdb_context specified\n"));
122 return NT_STATUS_UNSUCCESSFUL
;
125 if (!NT_STATUS_IS_OK(nt_status
= make_pdb_methods(pdb_context
->mem_ctx
, pdb_method
))) {
129 (*pdb_method
)->name
= "guestsam";
131 (*pdb_method
)->getsampwnam
= guestsam_getsampwnam
;
132 (*pdb_method
)->getsampwsid
= guestsam_getsampwsid
;
133 (*pdb_method
)->update_sam_account
= guestsam_update_sam_account
;
135 /* we should do no group mapping here */
136 (*pdb_method
)->getgrsid
= pdb_nop_getgrsid
;
137 (*pdb_method
)->getgrgid
= pdb_nop_getgrgid
;
138 (*pdb_method
)->getgrnam
= pdb_nop_getgrnam
;
139 (*pdb_method
)->add_group_mapping_entry
= pdb_nop_add_group_mapping_entry
;
140 (*pdb_method
)->update_group_mapping_entry
= pdb_nop_update_group_mapping_entry
;
141 (*pdb_method
)->delete_group_mapping_entry
= pdb_nop_delete_group_mapping_entry
;
142 (*pdb_method
)->enum_group_mapping
= pdb_nop_enum_group_mapping
;
145 /* There's not very much to initialise here */
149 NTSTATUS
pdb_guest_init(void)
151 return smb_register_passdb(PASSDB_INTERFACE_VERSION
, "guest", pdb_init_guestsam
);