2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000
7 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
9 This library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Lesser General Public
11 License as published by the Free Software Foundation; either
12 version 3 of the License, or (at your option) any later version.
14 This library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Library General Public License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #include "nsswitch/winbind_struct_protocol.h"
27 #include "nsswitch/libwbclient/wbclient.h"
28 #include "librpc/gen_ndr/wbint.h"
34 #ifdef HAVE_SYS_MMAN_H
39 #define DBGC_CLASS DBGC_WINBIND
41 #define WB_REPLACE_CHAR '_'
48 enum lsa_SidType type
;
51 struct winbindd_cli_state
{
52 struct winbindd_cli_state
*prev
, *next
; /* Linked list pointers */
53 int sock
; /* Open socket from client */
54 pid_t pid
; /* pid of client */
55 time_t last_access
; /* Time of last access (read or write) */
56 bool privileged
; /* Is the client 'privileged' */
58 TALLOC_CTX
*mem_ctx
; /* memory per request */
59 NTSTATUS (*recv_fn
)(struct tevent_req
*req
,
60 struct winbindd_response
*presp
);
61 struct winbindd_request
*request
; /* Request from client */
62 struct tevent_queue
*out_queue
;
63 struct winbindd_response
*response
; /* Respose to client */
64 bool getpwent_initialized
; /* Has getpwent_state been
66 bool getgrent_initialized
; /* Has getgrent_state been
68 struct getent_state
*getgrent_state
; /* State for getgrent() */
70 struct getpwent_state
*pwent_state
; /* State for getpwent() */
71 struct getgrent_state
*grent_state
; /* State for getgrent() */
74 /* State between get{pw,gr}ent() calls */
77 struct getent_state
*prev
, *next
;
79 uint32 sam_entry_index
, num_sam_entries
;
84 struct getpwent_state
{
85 struct winbindd_domain
*domain
;
88 struct wbint_userinfo
*users
;
91 struct getgrent_state
{
92 struct winbindd_domain
*domain
;
95 struct wbint_Principal
*groups
;
98 /* Storage for cached getpwent() user entries */
100 struct getpwent_user
{
101 fstring name
; /* Account name */
102 fstring gecos
; /* User information */
103 fstring homedir
; /* User Home Directory */
104 fstring shell
; /* User Login Shell */
105 DOM_SID user_sid
; /* NT user and primary group SIDs */
109 /* Our connection to the DC */
111 struct winbindd_cm_conn
{
112 struct cli_state
*cli
;
114 struct rpc_pipe_client
*samr_pipe
;
115 struct policy_handle sam_connect_handle
, sam_domain_handle
;
117 struct rpc_pipe_client
*lsa_pipe
;
118 struct rpc_pipe_client
*lsa_pipe_tcp
;
119 struct policy_handle lsa_policy
;
121 struct rpc_pipe_client
*netlogon_pipe
;
124 struct winbindd_async_request
;
128 struct winbindd_domain
;
130 struct winbindd_child_dispatch_table
{
132 enum winbindd_cmd struct_cmd
;
133 enum winbindd_result (*struct_fn
)(struct winbindd_domain
*domain
,
134 struct winbindd_cli_state
*state
);
137 struct winbindd_child
{
138 struct winbindd_child
*next
, *prev
;
141 struct winbindd_domain
*domain
;
145 struct tevent_queue
*queue
;
146 struct rpc_pipe_client
*rpccli
;
148 struct timed_event
*lockout_policy_event
;
149 struct timed_event
*machine_password_change_event
;
151 const struct winbindd_child_dispatch_table
*table
;
154 /* Structures to hold per domain information */
156 struct winbindd_domain
{
157 fstring name
; /* Domain name (NetBIOS) */
158 fstring alt_name
; /* alt Domain name, if any (FQDN for ADS) */
159 fstring forest_name
; /* Name of the AD forest we're in */
160 DOM_SID sid
; /* SID for this domain */
161 uint32 domain_flags
; /* Domain flags from netlogon.h */
162 uint32 domain_type
; /* Domain type from netlogon.h */
163 uint32 domain_trust_attribs
; /* Trust attribs from netlogon.h */
164 bool initialized
; /* Did we already ask for the domain mode? */
165 bool native_mode
; /* is this a win2k domain in native mode ? */
166 bool active_directory
; /* is this a win2k active directory ? */
167 bool primary
; /* is this our primary domain ? */
168 bool internal
; /* BUILTIN and member SAM */
169 bool online
; /* is this domain available ? */
170 time_t startup_time
; /* When we set "startup" true. */
171 bool startup
; /* are we in the first 30 seconds after startup_time ? */
173 bool can_do_samlogon_ex
; /* Due to the lack of finer control what type
174 * of DC we have, let us try to do a
175 * credential-chain less samlogon_ex call
176 * with AD and schannel. If this fails with
177 * DCERPC_FAULT_OP_RNG_ERROR, then set this
178 * to False. This variable is around so that
179 * we don't have to try _ex every time. */
181 bool can_do_ncacn_ip_tcp
;
183 /* Lookup methods for this domain (LDAP or RPC) */
184 struct winbindd_methods
*methods
;
186 /* the backend methods are used by the cache layer to find the right
188 struct winbindd_methods
*backend
;
190 /* Private data for the backends (used for connection cache) */
195 * idmap config settings, used to tell the idmap child which
196 * special domain config to use for a mapping
198 bool have_idmap_config
;
199 uint32_t id_range_low
, id_range_high
;
202 pid_t dc_probe_pid
; /* Child we're using to detect the DC. */
204 struct sockaddr_storage dcaddr
;
206 /* Sequence number stuff */
208 time_t last_seq_check
;
209 uint32 sequence_number
;
210 NTSTATUS last_status
;
212 /* The smb connection */
214 struct winbindd_cm_conn conn
;
216 /* The child pid we're talking to */
218 struct winbindd_child child
;
220 /* Callback we use to try put us back online. */
222 uint32 check_online_timeout
;
223 struct timed_event
*check_online_event
;
225 /* Linked list info */
227 struct winbindd_domain
*prev
, *next
;
230 /* per-domain methods. This is how LDAP vs RPC is selected
232 struct winbindd_methods
{
233 /* does this backend provide a consistent view of the data? (ie. is the primary group
237 /* get a list of users, returning a wbint_userinfo for each one */
238 NTSTATUS (*query_user_list
)(struct winbindd_domain
*domain
,
241 struct wbint_userinfo
**info
);
243 /* get a list of domain groups */
244 NTSTATUS (*enum_dom_groups
)(struct winbindd_domain
*domain
,
247 struct acct_info
**info
);
249 /* get a list of domain local groups */
250 NTSTATUS (*enum_local_groups
)(struct winbindd_domain
*domain
,
253 struct acct_info
**info
);
255 /* convert one user or group name to a sid */
256 NTSTATUS (*name_to_sid
)(struct winbindd_domain
*domain
,
258 const char *domain_name
,
262 enum lsa_SidType
*type
);
264 /* convert a sid to a user or group name */
265 NTSTATUS (*sid_to_name
)(struct winbindd_domain
*domain
,
270 enum lsa_SidType
*type
);
272 NTSTATUS (*rids_to_names
)(struct winbindd_domain
*domain
,
274 const DOM_SID
*domain_sid
,
279 enum lsa_SidType
**types
);
281 /* lookup user info for a given SID */
282 NTSTATUS (*query_user
)(struct winbindd_domain
*domain
,
284 const DOM_SID
*user_sid
,
285 struct wbint_userinfo
*user_info
);
287 /* lookup all groups that a user is a member of. The backend
288 can also choose to lookup by username or rid for this
290 NTSTATUS (*lookup_usergroups
)(struct winbindd_domain
*domain
,
292 const DOM_SID
*user_sid
,
293 uint32
*num_groups
, DOM_SID
**user_gids
);
295 /* Lookup all aliases that the sids delivered are member of. This is
296 * to implement 'domain local groups' correctly */
297 NTSTATUS (*lookup_useraliases
)(struct winbindd_domain
*domain
,
302 uint32
**alias_rids
);
304 /* find all members of the group with the specified group_rid */
305 NTSTATUS (*lookup_groupmem
)(struct winbindd_domain
*domain
,
307 const DOM_SID
*group_sid
,
308 enum lsa_SidType type
,
310 DOM_SID
**sid_mem
, char ***names
,
311 uint32
**name_types
);
313 /* return the current global sequence number */
314 NTSTATUS (*sequence_number
)(struct winbindd_domain
*domain
, uint32
*seq
);
316 /* return the lockout policy */
317 NTSTATUS (*lockout_policy
)(struct winbindd_domain
*domain
,
319 struct samr_DomInfo12
*lockout_policy
);
321 /* return the lockout policy */
322 NTSTATUS (*password_policy
)(struct winbindd_domain
*domain
,
324 struct samr_DomInfo1
*password_policy
);
326 /* enumerate trusted domains */
327 NTSTATUS (*trusted_domains
)(struct winbindd_domain
*domain
,
335 /* Filled out by IDMAP backends */
336 struct winbindd_idmap_methods
{
337 /* Called when backend is first loaded */
340 bool (*get_sid_from_uid
)(uid_t uid
, DOM_SID
*sid
);
341 bool (*get_sid_from_gid
)(gid_t gid
, DOM_SID
*sid
);
343 bool (*get_uid_from_sid
)(DOM_SID
*sid
, uid_t
*uid
);
344 bool (*get_gid_from_sid
)(DOM_SID
*sid
, gid_t
*gid
);
346 /* Called when backend is unloaded */
348 /* Called to dump backend status */
349 void (*status
)(void);
352 /* Data structures for dealing with the trusted domain cache */
354 struct winbindd_tdc_domain
{
355 const char *domain_name
;
356 const char *dns_name
;
359 uint32 trust_attribs
;
363 /* Switch for listing users or groups */
369 struct WINBINDD_MEMORY_CREDS
{
370 struct WINBINDD_MEMORY_CREDS
*next
, *prev
;
371 const char *username
; /* lookup key. */
375 uint8_t *nt_hash
; /* Base pointer for the following 2 */
380 struct WINBINDD_CCACHE_ENTRY
{
381 struct WINBINDD_CCACHE_ENTRY
*next
, *prev
;
382 const char *principal_name
;
385 const char *username
;
387 struct WINBINDD_MEMORY_CREDS
*cred_ptr
;
393 struct timed_event
*event
;
396 #include "winbindd/winbindd_proto.h"
398 #define WINBINDD_ESTABLISH_LOOP 30
399 #define WINBINDD_RESCAN_FREQ lp_winbind_cache_time()
400 #define WINBINDD_PAM_AUTH_KRB5_RENEW_TIME 2592000 /* one month */
401 #define DOM_SEQUENCE_NONE ((uint32)-1)
403 #define IS_DOMAIN_OFFLINE(x) ( lp_winbind_offline_logon() && \
404 ( get_global_winbindd_state_offline() \
406 #define IS_DOMAIN_ONLINE(x) (!IS_DOMAIN_OFFLINE(x))
408 #endif /* _WINBINDD_H */