RIP BOOL. Convert BOOL -> bool. I found a few interesting
[amitay/samba.git] / source3 / rpc_server / srv_lsa_hnd.c
1 /* 
2  *  Unix SMB/CIFS implementation.
3  *  RPC Pipe client / server routines
4  *  Copyright (C) Andrew Tridgell              1992-1997,
5  *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6  *  Copyright (C) Jeremy Allison                           2001.
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 3 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, see <http://www.gnu.org/licenses/>.
20  */
21
22 #include "includes.h"
23
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_RPC_SRV
26
27 /* This is the max handles across all instances of a pipe name. */
28 #ifndef MAX_OPEN_POLS
29 #define MAX_OPEN_POLS 1024
30 #endif
31
32 /****************************************************************************
33  Hack as handles need to be persisant over lsa pipe closes so long as a samr
34  pipe is open. JRA.
35 ****************************************************************************/
36
37 static bool is_samr_lsa_pipe(const char *pipe_name)
38 {
39         return (strstr(pipe_name, "samr") || strstr(pipe_name, "lsa"));
40 }
41
42 /****************************************************************************
43  Initialise a policy handle list on a pipe. Handle list is shared between all
44  pipes of the same name.
45 ****************************************************************************/
46
47 bool init_pipe_handle_list(pipes_struct *p, const char *pipe_name)
48 {
49         pipes_struct *plist = get_first_internal_pipe();
50         struct handle_list *hl = NULL;
51
52         for (plist = get_first_internal_pipe(); plist; plist = get_next_internal_pipe(plist)) {
53                 if (strequal( plist->name, pipe_name) ||
54                                 (is_samr_lsa_pipe(plist->name) && is_samr_lsa_pipe(pipe_name))) {
55                         if (!plist->pipe_handles) {
56                                 pstring msg;
57                                 slprintf(msg, sizeof(msg)-1, "init_pipe_handles: NULL pipe_handle pointer in pipe %s",
58                                                 pipe_name );
59                                 smb_panic(msg);
60                         }
61                         hl = plist->pipe_handles;
62                         break;
63                 }
64         }
65
66         if (!hl) {
67                 /*
68                  * No handle list for this pipe (first open of pipe).
69                  * Create list.
70                  */
71
72                 if ((hl = SMB_MALLOC_P(struct handle_list)) == NULL)
73                         return False;
74                 ZERO_STRUCTP(hl);
75
76                 DEBUG(10,("init_pipe_handles: created handle list for pipe %s\n", pipe_name ));
77         }
78
79         /*
80          * One more pipe is using this list.
81          */
82
83         hl->pipe_ref_count++;
84
85         /*
86          * Point this pipe at this list.
87          */
88
89         p->pipe_handles = hl;
90
91         DEBUG(10,("init_pipe_handles: pipe_handles ref count = %lu for pipe %s\n",
92                   (unsigned long)p->pipe_handles->pipe_ref_count, pipe_name ));
93
94         return True;
95 }
96
97 /****************************************************************************
98   find first available policy slot.  creates a policy handle for you.
99 ****************************************************************************/
100
101 bool create_policy_hnd(pipes_struct *p, POLICY_HND *hnd, void (*free_fn)(void *), void *data_ptr)
102 {
103         static uint32 pol_hnd_low  = 0;
104         static uint32 pol_hnd_high = 0;
105         time_t t = time(NULL);
106
107         struct policy *pol;
108
109         if (p->pipe_handles->count > MAX_OPEN_POLS) {
110                 DEBUG(0,("create_policy_hnd: ERROR: too many handles (%d) on this pipe.\n",
111                                 (int)p->pipe_handles->count));
112                 return False;
113         }
114
115         pol = SMB_MALLOC_P(struct policy);
116         if (!pol) {
117                 DEBUG(0,("create_policy_hnd: ERROR: out of memory!\n"));
118                 return False;
119         }
120
121         ZERO_STRUCTP(pol);
122
123         pol->data_ptr = data_ptr;
124         pol->free_fn = free_fn;
125
126         pol_hnd_low++;
127         if (pol_hnd_low == 0)
128                 (pol_hnd_high)++;
129
130         SIVAL(&pol->pol_hnd.handle_type, 0 , 0);  /* first bit must be null */
131         SIVAL(&pol->pol_hnd.uuid.time_low, 0 , pol_hnd_low ); /* second bit is incrementing */
132         SSVAL(&pol->pol_hnd.uuid.time_mid, 0 , pol_hnd_high); /* second bit is incrementing */
133         SSVAL(&pol->pol_hnd.uuid.time_hi_and_version, 0 , (pol_hnd_high>>16)); /* second bit is incrementing */
134
135         /* split the current time into two 16 bit values */
136
137         SSVAL(pol->pol_hnd.uuid.clock_seq, 0, (t>>16)); /* something random */
138         SSVAL(pol->pol_hnd.uuid.node, 0, t); /* something random */
139
140         SIVAL(pol->pol_hnd.uuid.node, 2, sys_getpid()); /* something more random */
141
142         DLIST_ADD(p->pipe_handles->Policy, pol);
143         p->pipe_handles->count++;
144
145         *hnd = pol->pol_hnd;
146         
147         DEBUG(4,("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
148         dump_data(4, (uint8 *)hnd, sizeof(*hnd));
149
150         return True;
151 }
152
153 /****************************************************************************
154   find policy by handle - internal version.
155 ****************************************************************************/
156
157 static struct policy *find_policy_by_hnd_internal(pipes_struct *p, POLICY_HND *hnd, void **data_p)
158 {
159         struct policy *pol;
160         size_t i;
161
162         if (data_p)
163                 *data_p = NULL;
164
165         for (i = 0, pol=p->pipe_handles->Policy;pol;pol=pol->next, i++) {
166                 if (memcmp(&pol->pol_hnd, hnd, sizeof(*hnd)) == 0) {
167                         DEBUG(4,("Found policy hnd[%d] ", (int)i));
168                         dump_data(4, (uint8 *)hnd, sizeof(*hnd));
169                         if (data_p)
170                                 *data_p = pol->data_ptr;
171                         return pol;
172                 }
173         }
174
175         DEBUG(4,("Policy not found: "));
176         dump_data(4, (uint8 *)hnd, sizeof(*hnd));
177
178         p->bad_handle_fault_state = True;
179
180         return NULL;
181 }
182
183 /****************************************************************************
184   find policy by handle
185 ****************************************************************************/
186
187 bool find_policy_by_hnd(pipes_struct *p, POLICY_HND *hnd, void **data_p)
188 {
189         return find_policy_by_hnd_internal(p, hnd, data_p) == NULL ? False : True;
190 }
191
192 /****************************************************************************
193   Close a policy.
194 ****************************************************************************/
195
196 bool close_policy_hnd(pipes_struct *p, POLICY_HND *hnd)
197 {
198         struct policy *pol = find_policy_by_hnd_internal(p, hnd, NULL);
199
200         if (!pol) {
201                 DEBUG(3,("Error closing policy\n"));
202                 return False;
203         }
204
205         DEBUG(3,("Closed policy\n"));
206
207         if (pol->free_fn && pol->data_ptr)
208                 (*pol->free_fn)(pol->data_ptr);
209
210         p->pipe_handles->count--;
211
212         DLIST_REMOVE(p->pipe_handles->Policy, pol);
213
214         ZERO_STRUCTP(pol);
215
216         SAFE_FREE(pol);
217
218         return True;
219 }
220
221 /****************************************************************************
222  Close a pipe - free the handle list if it was the last pipe reference.
223 ****************************************************************************/
224
225 void close_policy_by_pipe(pipes_struct *p)
226 {
227         p->pipe_handles->pipe_ref_count--;
228
229         if (p->pipe_handles->pipe_ref_count == 0) {
230                 /*
231                  * Last pipe open on this list - free the list.
232                  */
233                 while (p->pipe_handles->Policy)
234                         close_policy_hnd(p, &p->pipe_handles->Policy->pol_hnd);
235
236                 p->pipe_handles->Policy = NULL;
237                 p->pipe_handles->count = 0;
238
239                 SAFE_FREE(p->pipe_handles);
240                 DEBUG(10,("close_policy_by_pipe: deleted handle list for pipe %s\n", p->name ));
241         }
242 }
243
244 /*******************************************************************
245 Shall we allow access to this rpc?  Currently this function
246 implements the 'restrict anonymous' setting by denying access to
247 anonymous users if the restrict anonymous level is > 0.  Further work
248 will be checking a security descriptor to determine whether a user
249 token has enough access to access the pipe.
250 ********************************************************************/
251
252 bool pipe_access_check(pipes_struct *p)
253 {
254         /* Don't let anonymous users access this RPC if restrict
255            anonymous > 0 */
256
257         if (lp_restrict_anonymous() > 0) {
258                 user_struct *user = get_valid_user_struct(p->vuid);
259
260                 /* schannel, so we must be ok */
261                 if (p->pipe_bound && (p->auth.auth_type == PIPE_AUTH_TYPE_SCHANNEL)) {
262                         return True;
263                 }
264
265                 if (!user) {
266                         DEBUG(3, ("invalid vuid %d\n", p->vuid));
267                         return False;
268                 }
269
270                 if (user->guest) {
271                         return False;
272                 }
273         }
274
275         return True;
276 }