r13244: Allow control of the location of the Samba3-compatible winbindd pipe
[samba.git] / source4 / winbind / wb_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3    Main winbindd server routines
4
5    Copyright (C) Stefan Metzmacher      2005
6    Copyright (C) Andrew Tridgell        2005
7    
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 2 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "nsswitch/winbindd_nss.h"
24
25
26
27 #define WINBINDD_SAMBA3_SOCKET "pipe"
28 /* the privileged socket is in smbd_tmp_dir() */
29 #define WINBINDD_SAMBA3_PRIVILEGED_SOCKET "winbind_pipe"
30
31 /* this struct stores global data for the winbind task */
32 struct wbsrv_service {
33         struct task_server *task;
34
35         const struct dom_sid *primary_sid;
36         struct wbsrv_domain *domains;
37 };
38
39 struct wbsrv_samconn {
40         struct wbsrv_domain *domain;
41         void *private_data;
42
43         struct composite_context (*seqnum_send)(struct wbsrv_samconn *);
44         NTSTATUS (*seqnum_recv)(struct composite_context *, uint64_t *);
45 };
46
47 struct wb_dom_info {
48         const char *name;
49         const char *dns_name;
50         const struct dom_sid *sid;
51
52         const char *dc_name;
53         const char *dc_dns_name;
54         const char *dc_address;
55 };
56
57 struct wbsrv_domain {
58         struct wbsrv_domain *next, *prev;
59
60         struct wb_dom_info *info;
61
62         struct dcerpc_pipe *lsa_pipe;
63         struct policy_handle *lsa_policy;
64         uint8_t lsa_auth_type;
65
66         struct dcerpc_pipe *samr_pipe;
67         struct policy_handle *samr_handle;
68         struct policy_handle *domain_handle;
69
70         struct ldap_connection *ldap_conn;
71
72         struct dcerpc_pipe *netlogon_pipe;
73         struct cli_credentials *schannel_creds;
74 };
75
76 /*
77   state of a listen socket and it's protocol information
78 */
79 struct wbsrv_listen_socket {
80         const char *socket_path;
81         struct wbsrv_service *service;
82         BOOL privileged;
83 };
84
85 /*
86   state of an open winbind connection
87 */
88 struct wbsrv_connection {
89         /* stream connection we belong to */
90         struct stream_connection *conn;
91
92         /* the listening socket we belong to, it holds protocol hooks */
93         struct wbsrv_listen_socket *listen_socket;
94
95         /* storage for protocol specific data */
96         void *protocol_private_data;
97
98         /* how many calls are pending */
99         uint32_t pending_calls;
100
101         struct packet_context *packet;
102 };
103
104 #define WBSRV_SAMBA3_SET_STRING(dest, src) do { \
105         strncpy(dest, src, sizeof(dest)-1);\
106 } while(0)
107
108 /*
109   state of one request
110
111   NOTE about async replies:
112    if the backend wants to reply later:
113
114    - it should set the WBSRV_CALL_FLAGS_REPLY_ASYNC flag, and may set a 
115      talloc_destructor on the this structure or on the private_data (if it's a
116      talloc child of this structure), so that wbsrv_terminate_connection
117      called by another call clean up the whole connection correct.
118    - When the backend is ready to reply it should call wbsrv_send_reply(call),
119      wbsrv_send_reply implies talloc_free(call), so the backend should use 
120      talloc_reference(call), if it needs it later. 
121    - If wbsrv_send_reply doesn't return NT_STATUS_OK, the backend function 
122      should call, wbsrv_terminate_connection(call->wbconn, nt_errstr(status));
123      return;
124
125 */
126 struct wbsrv_samba3_call {
127 #define WBSRV_CALL_FLAGS_REPLY_ASYNC 0x00000001
128         uint32_t flags;
129
130         /* the connection the call belongs to */
131         struct wbsrv_connection *wbconn;
132
133         /* the backend should use this event context */
134         struct event_context *event_ctx;
135
136         /* here the backend can store stuff like composite_context's ... */
137         void *private_data;
138
139         /* the request structure of the samba3 protocol */
140         struct winbindd_request request;
141         
142         /* the response structure of the samba3 protocol*/
143         struct winbindd_response response;
144 };
145
146 struct netr_LMSessionKey;
147 struct netr_UserSessionKey;
148
149 #include "winbind/wb_proto.h"