s3:libsmb: add tstream_is_cli_np()
[Samba/gebeck_regimport.git] / source3 / rpc_server / rpc_handles.c
blob481bb56ee7aa0154493a86b1a5138475498dc65f
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.
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.
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/>.
22 #include "includes.h"
23 #include "../librpc/gen_ndr/ndr_lsa.h"
24 #include "../librpc/gen_ndr/ndr_samr.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_RPC_SRV
30 * Handle database - stored per pipe.
33 struct dcesrv_handle {
34 struct dcesrv_handle *prev, *next;
35 struct policy_handle wire_handle;
36 uint32_t access_granted;
37 void *data;
40 struct handle_list {
41 struct dcesrv_handle *handles; /* List of pipe handles. */
42 size_t count; /* Current number of handles. */
43 size_t pipe_ref_count; /* Number of pipe handles referring
44 * to this tree. */
47 /* This is the max handles across all instances of a pipe name. */
48 #ifndef MAX_OPEN_POLS
49 #define MAX_OPEN_POLS 2048
50 #endif
52 /****************************************************************************
53 Hack as handles need to be persisant over lsa pipe closes so long as a samr
54 pipe is open. JRA.
55 ****************************************************************************/
57 static bool is_samr_lsa_pipe(const struct ndr_syntax_id *syntax)
59 return (ndr_syntax_id_equal(syntax, &ndr_table_samr.syntax_id)
60 || ndr_syntax_id_equal(syntax, &ndr_table_lsarpc.syntax_id));
63 size_t num_pipe_handles(struct pipes_struct *p)
65 if (p->pipe_handles == NULL) {
66 return 0;
68 return p->pipe_handles->count;
71 /****************************************************************************
72 Initialise a policy handle list on a pipe. Handle list is shared between all
73 pipes of the same name.
74 ****************************************************************************/
76 bool init_pipe_handles(struct pipes_struct *p, const struct ndr_syntax_id *syntax)
78 struct pipes_struct *plist;
79 struct handle_list *hl;
81 for (plist = get_first_internal_pipe();
82 plist;
83 plist = get_next_internal_pipe(plist)) {
84 if (ndr_syntax_id_equal(syntax, &plist->syntax)) {
85 break;
87 if (is_samr_lsa_pipe(&plist->syntax)
88 && is_samr_lsa_pipe(syntax)) {
90 * samr and lsa share a handle space (same process
91 * under Windows?)
93 break;
97 if (plist != NULL) {
98 hl = plist->pipe_handles;
99 if (hl == NULL) {
100 return false;
102 } else {
104 * First open, we have to create the handle list
106 hl = talloc_zero(NULL, struct handle_list);
107 if (hl == NULL) {
108 return false;
111 DEBUG(10,("init_pipe_handle_list: created handle list for "
112 "pipe %s\n",
113 get_pipe_name_from_syntax(talloc_tos(), syntax)));
117 * One more pipe is using this list.
120 hl->pipe_ref_count++;
123 * Point this pipe at this list.
126 p->pipe_handles = hl;
128 DEBUG(10,("init_pipe_handle_list: pipe_handles ref count = %lu for "
129 "pipe %s\n", (unsigned long)p->pipe_handles->pipe_ref_count,
130 get_pipe_name_from_syntax(talloc_tos(), syntax)));
132 return True;
135 /****************************************************************************
136 find first available policy slot. creates a policy handle for you.
138 If "data_ptr" is given, this must be a talloc'ed object, create_policy_hnd
139 talloc_moves this into the handle. If the policy_hnd is closed,
140 data_ptr is TALLOC_FREE()'ed
141 ****************************************************************************/
143 static struct dcesrv_handle *create_rpc_handle_internal(struct pipes_struct *p,
144 struct policy_handle *hnd, void *data_ptr)
146 struct dcesrv_handle *rpc_hnd;
147 static uint32 pol_hnd_low = 0;
148 static uint32 pol_hnd_high = 0;
149 time_t t = time(NULL);
151 if (p->pipe_handles->count > MAX_OPEN_POLS) {
152 DEBUG(0,("create_policy_hnd: ERROR: too many handles (%d) on this pipe.\n",
153 (int)p->pipe_handles->count));
154 return NULL;
157 rpc_hnd = talloc_zero(p->pipe_handles, struct dcesrv_handle);
158 if (!rpc_hnd) {
159 DEBUG(0,("create_policy_hnd: ERROR: out of memory!\n"));
160 return NULL;
163 if (data_ptr != NULL) {
164 rpc_hnd->data = talloc_move(rpc_hnd, &data_ptr);
167 pol_hnd_low++;
168 if (pol_hnd_low == 0) {
169 pol_hnd_high++;
172 /* first bit must be null */
173 SIVAL(&rpc_hnd->wire_handle.handle_type, 0 , 0);
175 /* second bit is incrementing */
176 SIVAL(&rpc_hnd->wire_handle.uuid.time_low, 0 , pol_hnd_low);
177 SSVAL(&rpc_hnd->wire_handle.uuid.time_mid, 0 , pol_hnd_high);
178 SSVAL(&rpc_hnd->wire_handle.uuid.time_hi_and_version, 0, (pol_hnd_high >> 16));
180 /* split the current time into two 16 bit values */
182 /* something random */
183 SSVAL(rpc_hnd->wire_handle.uuid.clock_seq, 0, (t >> 16));
184 /* something random */
185 SSVAL(rpc_hnd->wire_handle.uuid.node, 0, t);
186 /* something more random */
187 SIVAL(rpc_hnd->wire_handle.uuid.node, 2, sys_getpid());
189 DLIST_ADD(p->pipe_handles->handles, rpc_hnd);
190 p->pipe_handles->count++;
192 *hnd = rpc_hnd->wire_handle;
194 DEBUG(4, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
195 dump_data(4, (uint8_t *)hnd, sizeof(*hnd));
197 return rpc_hnd;
200 bool create_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd,
201 void *data_ptr)
203 struct dcesrv_handle *rpc_hnd;
205 rpc_hnd = create_rpc_handle_internal(p, hnd, data_ptr);
206 if (rpc_hnd == NULL) {
207 return false;
209 return true;
212 /****************************************************************************
213 find policy by handle - internal version.
214 ****************************************************************************/
216 static struct dcesrv_handle *find_policy_by_hnd_internal(struct pipes_struct *p,
217 const struct policy_handle *hnd, void **data_p)
219 struct dcesrv_handle *h;
220 unsigned int count;
222 if (data_p) {
223 *data_p = NULL;
226 count = 0;
227 for (h = p->pipe_handles->handles; h != NULL; h = h->next) {
228 if (memcmp(&h->wire_handle, hnd, sizeof(*hnd)) == 0) {
229 DEBUG(4,("Found policy hnd[%u] ", count));
230 dump_data(4, (uint8 *)hnd, sizeof(*hnd));
231 if (data_p) {
232 *data_p = h->data;
234 return h;
236 count++;
239 DEBUG(4,("Policy not found: "));
240 dump_data(4, (uint8_t *)hnd, sizeof(*hnd));
242 p->bad_handle_fault_state = true;
244 return NULL;
247 /****************************************************************************
248 find policy by handle
249 ****************************************************************************/
251 bool find_policy_by_hnd(struct pipes_struct *p, const struct policy_handle *hnd,
252 void **data_p)
254 struct dcesrv_handle *rpc_hnd;
256 rpc_hnd = find_policy_by_hnd_internal(p, hnd, data_p);
257 if (rpc_hnd == NULL) {
258 return false;
260 return true;
263 /****************************************************************************
264 Close a policy.
265 ****************************************************************************/
267 bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd)
269 struct dcesrv_handle *rpc_hnd;
271 rpc_hnd = find_policy_by_hnd_internal(p, hnd, NULL);
273 if (rpc_hnd == NULL) {
274 DEBUG(3, ("Error closing policy (policy not found)\n"));
275 return false;
278 DEBUG(3,("Closed policy\n"));
280 p->pipe_handles->count--;
282 DLIST_REMOVE(p->pipe_handles->handles, rpc_hnd);
283 TALLOC_FREE(rpc_hnd);
285 return true;
288 /****************************************************************************
289 Close a pipe - free the handle set if it was the last pipe reference.
290 ****************************************************************************/
292 void close_policy_by_pipe(struct pipes_struct *p)
294 p->pipe_handles->pipe_ref_count--;
296 if (p->pipe_handles->pipe_ref_count == 0) {
298 * Last pipe open on this list - free the list.
300 TALLOC_FREE(p->pipe_handles);
302 DEBUG(10,("close_policy_by_pipe: deleted handle list for "
303 "pipe %s\n",
304 get_pipe_name_from_syntax(talloc_tos(), &p->syntax)));
308 /*******************************************************************
309 Shall we allow access to this rpc? Currently this function
310 implements the 'restrict anonymous' setting by denying access to
311 anonymous users if the restrict anonymous level is > 0. Further work
312 will be checking a security descriptor to determine whether a user
313 token has enough access to access the pipe.
314 ********************************************************************/
316 bool pipe_access_check(struct pipes_struct *p)
318 /* Don't let anonymous users access this RPC if restrict
319 anonymous > 0 */
321 if (lp_restrict_anonymous() > 0) {
323 /* schannel, so we must be ok */
324 if (p->pipe_bound &&
325 (p->auth.auth_type == DCERPC_AUTH_TYPE_SCHANNEL)) {
326 return True;
329 if (p->server_info->guest) {
330 return False;
334 return True;
337 void *_policy_handle_create(struct pipes_struct *p, struct policy_handle *hnd,
338 uint32_t access_granted, size_t data_size,
339 const char *type, NTSTATUS *pstatus)
341 struct dcesrv_handle *rpc_hnd;
342 void *data;
344 if (p->pipe_handles->count > MAX_OPEN_POLS) {
345 DEBUG(0, ("policy_handle_create: ERROR: too many handles (%d) "
346 "on pipe %s.\n", (int)p->pipe_handles->count,
347 get_pipe_name_from_syntax(talloc_tos(), &p->syntax)));
348 *pstatus = NT_STATUS_INSUFFICIENT_RESOURCES;
349 return NULL;
352 data = talloc_size(talloc_tos(), data_size);
353 if (data == NULL) {
354 *pstatus = NT_STATUS_NO_MEMORY;
355 return NULL;
357 talloc_set_name_const(data, type);
359 rpc_hnd = create_rpc_handle_internal(p, hnd, data);
360 if (rpc_hnd == NULL) {
361 TALLOC_FREE(data);
362 *pstatus = NT_STATUS_NO_MEMORY;
363 return NULL;
365 rpc_hnd->access_granted = access_granted;
366 *pstatus = NT_STATUS_OK;
367 return data;
370 void *_policy_handle_find(struct pipes_struct *p,
371 const struct policy_handle *hnd,
372 uint32_t access_required,
373 uint32_t *paccess_granted,
374 const char *name, const char *location,
375 NTSTATUS *pstatus)
377 struct dcesrv_handle *rpc_hnd;
378 void *data;
380 rpc_hnd = find_policy_by_hnd_internal(p, hnd, &data);
381 if (rpc_hnd == NULL) {
382 *pstatus = NT_STATUS_INVALID_HANDLE;
383 return NULL;
385 if (strcmp(name, talloc_get_name(data)) != 0) {
386 DEBUG(10, ("expected %s, got %s\n", name,
387 talloc_get_name(data)));
388 *pstatus = NT_STATUS_INVALID_HANDLE;
389 return NULL;
391 if ((access_required & rpc_hnd->access_granted) != access_required) {
392 if (geteuid() == sec_initial_uid()) {
393 DEBUG(4, ("%s: ACCESS should be DENIED (granted: "
394 "%#010x; required: %#010x)\n", location,
395 rpc_hnd->access_granted, access_required));
396 DEBUGADD(4,("but overwritten by euid == 0\n"));
397 goto okay;
399 DEBUG(2,("%s: ACCESS DENIED (granted: %#010x; required: "
400 "%#010x)\n", location, rpc_hnd->access_granted,
401 access_required));
402 *pstatus = NT_STATUS_ACCESS_DENIED;
403 return NULL;
406 okay:
407 DEBUG(10, ("found handle of type %s\n", talloc_get_name(data)));
408 if (paccess_granted != NULL) {
409 *paccess_granted = rpc_hnd->access_granted;
411 *pstatus = NT_STATUS_OK;
412 return data;