docs: mention --port in nmbd manpage.
[Samba.git] / source3 / rpc_server / rpc_handles.c
blob409299abce382db0004e81fd8c4fee69bbcbcb3d
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 "system/passwd.h" /* uid_wrapper */
24 #include "../librpc/gen_ndr/ndr_lsa.h"
25 #include "../librpc/gen_ndr/ndr_samr.h"
26 #include "auth.h"
27 #include "rpc_server/rpc_pipes.h"
28 #include "../libcli/security/security.h"
29 #include "lib/tsocket/tsocket.h"
30 #include "librpc/ndr/ndr_table.h"
32 #undef DBGC_CLASS
33 #define DBGC_CLASS DBGC_RPC_SRV
35 static struct pipes_struct *InternalPipes;
37 /* TODO
38 * the following prototypes are declared here to avoid
39 * code being moved about too much for a patch to be
40 * disrupted / less obvious.
42 * these functions, and associated functions that they
43 * call, should be moved behind a .so module-loading
44 * system _anyway_. so that's the next step...
47 int make_base_pipes_struct(TALLOC_CTX *mem_ctx,
48 struct messaging_context *msg_ctx,
49 const char *pipe_name,
50 enum dcerpc_transport_t transport,
51 bool endian, bool ncalrpc_as_system,
52 const struct tsocket_address *remote_address,
53 const struct tsocket_address *local_address,
54 struct pipes_struct **_p)
56 struct pipes_struct *p;
58 p = talloc_zero(mem_ctx, struct pipes_struct);
59 if (!p) {
60 return ENOMEM;
63 p->mem_ctx = talloc_named(p, 0, "pipe %s %p", pipe_name, p);
64 if (!p->mem_ctx) {
65 talloc_free(p);
66 return ENOMEM;
69 p->msg_ctx = msg_ctx;
70 p->transport = transport;
71 p->endian = endian;
72 p->ncalrpc_as_system = ncalrpc_as_system;
74 p->remote_address = tsocket_address_copy(remote_address, p);
75 if (p->remote_address == NULL) {
76 talloc_free(p);
77 return ENOMEM;
80 if (local_address) {
81 p->local_address = tsocket_address_copy(local_address, p);
82 if (p->local_address == NULL) {
83 talloc_free(p);
84 return ENOMEM;
88 DLIST_ADD(InternalPipes, p);
89 talloc_set_destructor(p, close_internal_rpc_pipe_hnd);
91 *_p = p;
92 return 0;
96 bool check_open_pipes(void)
98 struct pipes_struct *p;
100 for (p = InternalPipes; p != NULL; p = p->next) {
101 if (num_pipe_handles(p) != 0) {
102 return true;
105 return false;
108 /****************************************************************************
109 Close an rpc pipe.
110 ****************************************************************************/
112 int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
114 if (!p) {
115 DEBUG(0,("Invalid pipe in close_internal_rpc_pipe_hnd\n"));
116 return False;
119 /* Free the handles database. */
120 close_policy_by_pipe(p);
122 DLIST_REMOVE(InternalPipes, p);
124 return 0;
128 * Handle database - stored per pipe.
131 struct dcesrv_handle {
132 struct dcesrv_handle *prev, *next;
133 struct policy_handle wire_handle;
134 uint32_t access_granted;
135 void *data;
138 struct handle_list {
139 struct dcesrv_handle *handles; /* List of pipe handles. */
140 size_t count; /* Current number of handles. */
141 size_t pipe_ref_count; /* Number of pipe handles referring
142 * to this tree. */
145 /* This is the max handles across all instances of a pipe name. */
146 #ifndef MAX_OPEN_POLS
147 #define MAX_OPEN_POLS 2048
148 #endif
150 /****************************************************************************
151 Hack as handles need to be persisant over lsa pipe closes so long as a samr
152 pipe is open. JRA.
153 ****************************************************************************/
155 static bool is_samr_lsa_pipe(const struct ndr_syntax_id *syntax)
157 return (ndr_syntax_id_equal(syntax, &ndr_table_samr.syntax_id)
158 || ndr_syntax_id_equal(syntax, &ndr_table_lsarpc.syntax_id));
161 size_t num_pipe_handles(struct pipes_struct *p)
163 if (p->pipe_handles == NULL) {
164 return 0;
166 return p->pipe_handles->count;
169 /****************************************************************************
170 Initialise a policy handle list on a pipe. Handle list is shared between all
171 pipes of the same name.
172 ****************************************************************************/
174 bool init_pipe_handles(struct pipes_struct *p, const struct ndr_syntax_id *syntax)
176 struct pipes_struct *plist;
177 struct handle_list *hl;
179 for (plist = InternalPipes; plist; plist = plist->next) {
180 struct pipe_rpc_fns *p_ctx;
181 bool stop = false;
183 for (p_ctx = plist->contexts;
184 p_ctx != NULL;
185 p_ctx = p_ctx->next) {
186 if (ndr_syntax_id_equal(syntax, &p_ctx->syntax)) {
187 stop = true;
188 break;
190 if (is_samr_lsa_pipe(&p_ctx->syntax)
191 && is_samr_lsa_pipe(syntax)) {
193 * samr and lsa share a handle space (same process
194 * under Windows?)
196 stop = true;
197 break;
201 if (stop) {
202 break;
206 if (plist != NULL) {
207 hl = plist->pipe_handles;
208 if (hl == NULL) {
209 return false;
211 } else {
213 * First open, we have to create the handle list
215 hl = talloc_zero(NULL, struct handle_list);
216 if (hl == NULL) {
217 return false;
220 DEBUG(10,("init_pipe_handle_list: created handle list for "
221 "pipe %s\n",
222 ndr_interface_name(&syntax->uuid,
223 syntax->if_version)));
227 * One more pipe is using this list.
230 hl->pipe_ref_count++;
233 * Point this pipe at this list.
236 p->pipe_handles = hl;
238 DEBUG(10,("init_pipe_handle_list: pipe_handles ref count = %lu for "
239 "pipe %s\n", (unsigned long)p->pipe_handles->pipe_ref_count,
240 ndr_interface_name(&syntax->uuid, syntax->if_version)));
242 return True;
245 /****************************************************************************
246 find first available policy slot. creates a policy handle for you.
248 If "data_ptr" is given, this must be a talloc'ed object, create_policy_hnd
249 talloc_moves this into the handle. If the policy_hnd is closed,
250 data_ptr is TALLOC_FREE()'ed
251 ****************************************************************************/
253 static struct dcesrv_handle *create_rpc_handle_internal(struct pipes_struct *p,
254 struct policy_handle *hnd, void *data_ptr)
256 struct dcesrv_handle *rpc_hnd;
257 static uint32 pol_hnd_low = 0;
258 static uint32 pol_hnd_high = 0;
259 time_t t = time(NULL);
261 if (p->pipe_handles->count > MAX_OPEN_POLS) {
262 DEBUG(0,("create_policy_hnd: ERROR: too many handles (%d) on this pipe.\n",
263 (int)p->pipe_handles->count));
264 return NULL;
267 rpc_hnd = talloc_zero(p->pipe_handles, struct dcesrv_handle);
268 if (!rpc_hnd) {
269 DEBUG(0,("create_policy_hnd: ERROR: out of memory!\n"));
270 return NULL;
273 if (data_ptr != NULL) {
274 rpc_hnd->data = talloc_move(rpc_hnd, &data_ptr);
277 pol_hnd_low++;
278 if (pol_hnd_low == 0) {
279 pol_hnd_high++;
282 /* first bit must be null */
283 SIVAL(&rpc_hnd->wire_handle.handle_type, 0 , 0);
285 /* second bit is incrementing */
286 SIVAL(&rpc_hnd->wire_handle.uuid.time_low, 0 , pol_hnd_low);
287 SSVAL(&rpc_hnd->wire_handle.uuid.time_mid, 0 , pol_hnd_high);
288 SSVAL(&rpc_hnd->wire_handle.uuid.time_hi_and_version, 0, (pol_hnd_high >> 16));
290 /* split the current time into two 16 bit values */
292 /* something random */
293 SSVAL(rpc_hnd->wire_handle.uuid.clock_seq, 0, (t >> 16));
294 /* something random */
295 SSVAL(rpc_hnd->wire_handle.uuid.node, 0, t);
296 /* something more random */
297 SIVAL(rpc_hnd->wire_handle.uuid.node, 2, getpid());
299 DLIST_ADD(p->pipe_handles->handles, rpc_hnd);
300 p->pipe_handles->count++;
302 *hnd = rpc_hnd->wire_handle;
304 DEBUG(6, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
305 dump_data(6, (uint8_t *)hnd, sizeof(*hnd));
307 return rpc_hnd;
310 bool create_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd,
311 void *data_ptr)
313 struct dcesrv_handle *rpc_hnd;
315 rpc_hnd = create_rpc_handle_internal(p, hnd, data_ptr);
316 if (rpc_hnd == NULL) {
317 return false;
319 return true;
322 /****************************************************************************
323 find policy by handle - internal version.
324 ****************************************************************************/
326 static struct dcesrv_handle *find_policy_by_hnd_internal(struct pipes_struct *p,
327 const struct policy_handle *hnd, void **data_p)
329 struct dcesrv_handle *h;
330 unsigned int count;
332 if (data_p) {
333 *data_p = NULL;
336 count = 0;
337 for (h = p->pipe_handles->handles; h != NULL; h = h->next) {
338 if (memcmp(&h->wire_handle, hnd, sizeof(*hnd)) == 0) {
339 DEBUG(6,("Found policy hnd[%u] ", count));
340 dump_data(6, (const uint8 *)hnd, sizeof(*hnd));
341 if (data_p) {
342 *data_p = h->data;
344 return h;
346 count++;
349 DEBUG(4,("Policy not found: "));
350 dump_data(4, (const uint8_t *)hnd, sizeof(*hnd));
352 p->fault_state = DCERPC_FAULT_CONTEXT_MISMATCH;
354 return NULL;
357 /****************************************************************************
358 find policy by handle
359 ****************************************************************************/
361 bool find_policy_by_hnd(struct pipes_struct *p, const struct policy_handle *hnd,
362 void **data_p)
364 struct dcesrv_handle *rpc_hnd;
366 rpc_hnd = find_policy_by_hnd_internal(p, hnd, data_p);
367 if (rpc_hnd == NULL) {
368 return false;
370 return true;
373 /****************************************************************************
374 Close a policy.
375 ****************************************************************************/
377 bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd)
379 struct dcesrv_handle *rpc_hnd;
381 rpc_hnd = find_policy_by_hnd_internal(p, hnd, NULL);
383 if (rpc_hnd == NULL) {
384 DEBUG(3, ("Error closing policy (policy not found)\n"));
385 return false;
388 DEBUG(6,("Closed policy\n"));
390 p->pipe_handles->count--;
392 DLIST_REMOVE(p->pipe_handles->handles, rpc_hnd);
393 TALLOC_FREE(rpc_hnd);
395 return true;
398 /****************************************************************************
399 Close a pipe - free the handle set if it was the last pipe reference.
400 ****************************************************************************/
402 void close_policy_by_pipe(struct pipes_struct *p)
404 if (p->pipe_handles == NULL) {
405 return;
408 p->pipe_handles->pipe_ref_count--;
410 if (p->pipe_handles->pipe_ref_count == 0) {
412 * Last pipe open on this list - free the list.
414 TALLOC_FREE(p->pipe_handles);
416 DEBUG(10,("Deleted handle list for RPC connection %s\n",
417 ndr_interface_name(&p->contexts->syntax.uuid,
418 p->contexts->syntax.if_version)));
422 /*******************************************************************
423 Shall we allow access to this rpc? Currently this function
424 implements the 'restrict anonymous' setting by denying access to
425 anonymous users if the restrict anonymous level is > 0. Further work
426 will be checking a security descriptor to determine whether a user
427 token has enough access to access the pipe.
428 ********************************************************************/
430 bool pipe_access_check(struct pipes_struct *p)
432 /* Don't let anonymous users access this RPC if restrict
433 anonymous > 0 */
435 if (lp_restrict_anonymous() > 0) {
437 /* schannel, so we must be ok */
438 if (p->pipe_bound &&
439 (p->auth.auth_type == DCERPC_AUTH_TYPE_SCHANNEL)) {
440 return True;
443 if (security_session_user_level(p->session_info, NULL) < SECURITY_USER) {
444 return False;
448 return True;
451 void *_policy_handle_create(struct pipes_struct *p, struct policy_handle *hnd,
452 uint32_t access_granted, size_t data_size,
453 const char *type, NTSTATUS *pstatus)
455 struct dcesrv_handle *rpc_hnd;
456 void *data;
458 if (p->pipe_handles->count > MAX_OPEN_POLS) {
459 DEBUG(0, ("ERROR: Too many handles (%d) for RPC connection %s\n",
460 (int) p->pipe_handles->count,
461 ndr_interface_name(&p->contexts->syntax.uuid,
462 p->contexts->syntax.if_version)));
464 *pstatus = NT_STATUS_INSUFFICIENT_RESOURCES;
465 return NULL;
468 data = talloc_size(talloc_tos(), data_size);
469 if (data == NULL) {
470 *pstatus = NT_STATUS_NO_MEMORY;
471 return NULL;
473 talloc_set_name_const(data, type);
475 rpc_hnd = create_rpc_handle_internal(p, hnd, data);
476 if (rpc_hnd == NULL) {
477 TALLOC_FREE(data);
478 *pstatus = NT_STATUS_NO_MEMORY;
479 return NULL;
481 rpc_hnd->access_granted = access_granted;
482 *pstatus = NT_STATUS_OK;
483 return data;
486 void *_policy_handle_find(struct pipes_struct *p,
487 const struct policy_handle *hnd,
488 uint32_t access_required,
489 uint32_t *paccess_granted,
490 const char *name, const char *location,
491 NTSTATUS *pstatus)
493 struct dcesrv_handle *rpc_hnd;
494 void *data;
496 rpc_hnd = find_policy_by_hnd_internal(p, hnd, &data);
497 if (rpc_hnd == NULL) {
498 *pstatus = NT_STATUS_INVALID_HANDLE;
499 return NULL;
501 if (strcmp(name, talloc_get_name(data)) != 0) {
502 DEBUG(10, ("expected %s, got %s\n", name,
503 talloc_get_name(data)));
504 *pstatus = NT_STATUS_INVALID_HANDLE;
505 return NULL;
507 if ((access_required & rpc_hnd->access_granted) != access_required) {
508 if (geteuid() == sec_initial_uid()) {
509 DEBUG(4, ("%s: ACCESS should be DENIED (granted: "
510 "%#010x; required: %#010x)\n", location,
511 rpc_hnd->access_granted, access_required));
512 DEBUGADD(4,("but overwritten by euid == 0\n"));
513 goto okay;
515 DEBUG(2,("%s: ACCESS DENIED (granted: %#010x; required: "
516 "%#010x)\n", location, rpc_hnd->access_granted,
517 access_required));
518 *pstatus = NT_STATUS_ACCESS_DENIED;
519 return NULL;
522 okay:
523 DEBUG(10, ("found handle of type %s\n", talloc_get_name(data)));
524 if (paccess_granted != NULL) {
525 *paccess_granted = rpc_hnd->access_granted;
527 *pstatus = NT_STATUS_OK;
528 return data;