Further fix for 6449
[Samba.git] / source / librpc / rpc / dcerpc_util.c
blob3b8768ccc21452b51bcfdf7f2f8cdad4783bca67
1 /*
2 Unix SMB/CIFS implementation.
4 dcerpc utility functions
6 Copyright (C) Andrew Tridgell 2003
7 Copyright (C) Jelmer Vernooij 2004
8 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
9 Copyright (C) Rafal Szczesniak 2006
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "includes.h"
26 #include "lib/events/events.h"
27 #include "libcli/composite/composite.h"
28 #include "librpc/gen_ndr/ndr_epmapper_c.h"
29 #include "librpc/gen_ndr/ndr_dcerpc.h"
30 #include "librpc/gen_ndr/ndr_misc.h"
31 #include "librpc/rpc/dcerpc_proto.h"
32 #include "auth/credentials/credentials.h"
33 #include "param/param.h"
36 find a dcerpc call on an interface by name
38 const struct ndr_interface_call *dcerpc_iface_find_call(const struct ndr_interface_table *iface,
39 const char *name)
41 int i;
42 for (i=0;i<iface->num_calls;i++) {
43 if (strcmp(iface->calls[i].name, name) == 0) {
44 return &iface->calls[i];
47 return NULL;
50 /*
51 push a ncacn_packet into a blob, potentially with auth info
53 NTSTATUS ncacn_push_auth(DATA_BLOB *blob, TALLOC_CTX *mem_ctx,
54 struct smb_iconv_convenience *iconv_convenience,
55 struct ncacn_packet *pkt,
56 struct dcerpc_auth *auth_info)
58 struct ndr_push *ndr;
59 enum ndr_err_code ndr_err;
61 ndr = ndr_push_init_ctx(mem_ctx, iconv_convenience);
62 if (!ndr) {
63 return NT_STATUS_NO_MEMORY;
66 if (!(pkt->drep[0] & DCERPC_DREP_LE)) {
67 ndr->flags |= LIBNDR_FLAG_BIGENDIAN;
70 if (pkt->pfc_flags & DCERPC_PFC_FLAG_OBJECT_UUID) {
71 ndr->flags |= LIBNDR_FLAG_OBJECT_PRESENT;
74 if (auth_info) {
75 pkt->auth_length = auth_info->credentials.length;
76 } else {
77 pkt->auth_length = 0;
80 ndr_err = ndr_push_ncacn_packet(ndr, NDR_SCALARS|NDR_BUFFERS, pkt);
81 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
82 return ndr_map_error2ntstatus(ndr_err);
85 if (auth_info) {
86 ndr_err = ndr_push_dcerpc_auth(ndr, NDR_SCALARS|NDR_BUFFERS, auth_info);
87 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
88 return ndr_map_error2ntstatus(ndr_err);
92 *blob = ndr_push_blob(ndr);
94 /* fill in the frag length */
95 dcerpc_set_frag_length(blob, blob->length);
97 return NT_STATUS_OK;
100 #define MAX_PROTSEQ 10
102 static const struct {
103 const char *name;
104 enum dcerpc_transport_t transport;
105 int num_protocols;
106 enum epm_protocol protseq[MAX_PROTSEQ];
107 } transports[] = {
108 { "ncacn_np", NCACN_NP, 3,
109 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_SMB, EPM_PROTOCOL_NETBIOS }},
110 { "ncacn_ip_tcp", NCACN_IP_TCP, 3,
111 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_TCP, EPM_PROTOCOL_IP } },
112 { "ncacn_http", NCACN_HTTP, 3,
113 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_HTTP, EPM_PROTOCOL_IP } },
114 { "ncadg_ip_udp", NCACN_IP_UDP, 3,
115 { EPM_PROTOCOL_NCADG, EPM_PROTOCOL_UDP, EPM_PROTOCOL_IP } },
116 { "ncalrpc", NCALRPC, 2,
117 { EPM_PROTOCOL_NCALRPC, EPM_PROTOCOL_PIPE } },
118 { "ncacn_unix_stream", NCACN_UNIX_STREAM, 2,
119 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_UNIX_DS } },
120 { "ncadg_unix_dgram", NCADG_UNIX_DGRAM, 2,
121 { EPM_PROTOCOL_NCADG, EPM_PROTOCOL_UNIX_DS } },
122 { "ncacn_at_dsp", NCACN_AT_DSP, 3,
123 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_APPLETALK, EPM_PROTOCOL_DSP } },
124 { "ncadg_at_ddp", NCADG_AT_DDP, 3,
125 { EPM_PROTOCOL_NCADG, EPM_PROTOCOL_APPLETALK, EPM_PROTOCOL_DDP } },
126 { "ncacn_vns_ssp", NCACN_VNS_SPP, 3,
127 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_STREETTALK, EPM_PROTOCOL_VINES_SPP } },
128 { "ncacn_vns_ipc", NCACN_VNS_IPC, 3,
129 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_STREETTALK, EPM_PROTOCOL_VINES_IPC }, },
130 { "ncadg_ipx", NCADG_IPX, 2,
131 { EPM_PROTOCOL_NCADG, EPM_PROTOCOL_IPX },
133 { "ncacn_spx", NCACN_SPX, 3,
134 /* I guess some MS programmer confused the identifier for
135 * EPM_PROTOCOL_UUID (0x0D or 13) with the one for
136 * EPM_PROTOCOL_SPX (0x13) here. -- jelmer*/
137 { EPM_PROTOCOL_NCACN, EPM_PROTOCOL_NCALRPC, EPM_PROTOCOL_UUID },
141 static const struct {
142 const char *name;
143 uint32_t flag;
144 } ncacn_options[] = {
145 {"sign", DCERPC_SIGN},
146 {"seal", DCERPC_SEAL},
147 {"connect", DCERPC_CONNECT},
148 {"spnego", DCERPC_AUTH_SPNEGO},
149 {"ntlm", DCERPC_AUTH_NTLM},
150 {"krb5", DCERPC_AUTH_KRB5},
151 {"validate", DCERPC_DEBUG_VALIDATE_BOTH},
152 {"print", DCERPC_DEBUG_PRINT_BOTH},
153 {"padcheck", DCERPC_DEBUG_PAD_CHECK},
154 {"bigendian", DCERPC_PUSH_BIGENDIAN},
155 {"smb2", DCERPC_SMB2}
158 const char *epm_floor_string(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor)
160 struct ndr_syntax_id syntax;
161 NTSTATUS status;
163 switch(epm_floor->lhs.protocol) {
164 case EPM_PROTOCOL_UUID:
165 status = dcerpc_floor_get_lhs_data(epm_floor, &syntax);
166 if (NT_STATUS_IS_OK(status)) {
167 /* lhs is used: UUID */
168 char *uuidstr;
170 if (GUID_equal(&syntax.uuid, &ndr_transfer_syntax.uuid)) {
171 return "NDR";
174 if (GUID_equal(&syntax.uuid, &ndr64_transfer_syntax.uuid)) {
175 return "NDR64";
178 uuidstr = GUID_string(mem_ctx, &syntax.uuid);
180 return talloc_asprintf(mem_ctx, " uuid %s/0x%02x", uuidstr, syntax.if_version);
181 } else { /* IPX */
182 return talloc_asprintf(mem_ctx, "IPX:%s",
183 data_blob_hex_string(mem_ctx, &epm_floor->rhs.uuid.unknown));
186 case EPM_PROTOCOL_NCACN:
187 return "RPC-C";
189 case EPM_PROTOCOL_NCADG:
190 return "RPC";
192 case EPM_PROTOCOL_NCALRPC:
193 return "NCALRPC";
195 case EPM_PROTOCOL_DNET_NSP:
196 return "DNET/NSP";
198 case EPM_PROTOCOL_IP:
199 return talloc_asprintf(mem_ctx, "IP:%s", epm_floor->rhs.ip.ipaddr);
201 case EPM_PROTOCOL_PIPE:
202 return talloc_asprintf(mem_ctx, "PIPE:%s", epm_floor->rhs.pipe.path);
204 case EPM_PROTOCOL_SMB:
205 return talloc_asprintf(mem_ctx, "SMB:%s", epm_floor->rhs.smb.unc);
207 case EPM_PROTOCOL_UNIX_DS:
208 return talloc_asprintf(mem_ctx, "Unix:%s", epm_floor->rhs.unix_ds.path);
210 case EPM_PROTOCOL_NETBIOS:
211 return talloc_asprintf(mem_ctx, "NetBIOS:%s", epm_floor->rhs.netbios.name);
213 case EPM_PROTOCOL_NETBEUI:
214 return "NETBeui";
216 case EPM_PROTOCOL_SPX:
217 return "SPX";
219 case EPM_PROTOCOL_NB_IPX:
220 return "NB_IPX";
222 case EPM_PROTOCOL_HTTP:
223 return talloc_asprintf(mem_ctx, "HTTP:%d", epm_floor->rhs.http.port);
225 case EPM_PROTOCOL_TCP:
226 return talloc_asprintf(mem_ctx, "TCP:%d", epm_floor->rhs.tcp.port);
228 case EPM_PROTOCOL_UDP:
229 return talloc_asprintf(mem_ctx, "UDP:%d", epm_floor->rhs.udp.port);
231 default:
232 return talloc_asprintf(mem_ctx, "UNK(%02x):", epm_floor->lhs.protocol);
238 form a binding string from a binding structure
240 _PUBLIC_ char *dcerpc_binding_string(TALLOC_CTX *mem_ctx, const struct dcerpc_binding *b)
242 char *s = talloc_strdup(mem_ctx, "");
243 int i;
244 const char *t_name = NULL;
246 if (b->transport != NCA_UNKNOWN) {
247 for (i=0;i<ARRAY_SIZE(transports);i++) {
248 if (transports[i].transport == b->transport) {
249 t_name = transports[i].name;
252 if (!t_name) {
253 return NULL;
257 if (!GUID_all_zero(&b->object.uuid)) {
258 s = talloc_asprintf(s, "%s@",
259 GUID_string(mem_ctx, &b->object.uuid));
262 if (t_name != NULL) {
263 s = talloc_asprintf_append_buffer(s, "%s:", t_name);
264 if (s == NULL) {
265 return NULL;
269 if (b->host) {
270 s = talloc_asprintf_append_buffer(s, "%s", b->host);
273 if (!b->endpoint && !b->options && !b->flags) {
274 return s;
277 s = talloc_asprintf_append_buffer(s, "[");
279 if (b->endpoint) {
280 s = talloc_asprintf_append_buffer(s, "%s", b->endpoint);
283 /* this is a *really* inefficent way of dealing with strings,
284 but this is rarely called and the strings are always short,
285 so I don't care */
286 for (i=0;b->options && b->options[i];i++) {
287 s = talloc_asprintf_append_buffer(s, ",%s", b->options[i]);
288 if (!s) return NULL;
291 for (i=0;i<ARRAY_SIZE(ncacn_options);i++) {
292 if (b->flags & ncacn_options[i].flag) {
293 s = talloc_asprintf_append_buffer(s, ",%s", ncacn_options[i].name);
294 if (!s) return NULL;
298 s = talloc_asprintf_append_buffer(s, "]");
300 return s;
304 parse a binding string into a dcerpc_binding structure
306 _PUBLIC_ NTSTATUS dcerpc_parse_binding(TALLOC_CTX *mem_ctx, const char *s, struct dcerpc_binding **b_out)
308 struct dcerpc_binding *b;
309 char *options;
310 char *p;
311 int i, j, comma_count;
313 b = talloc(mem_ctx, struct dcerpc_binding);
314 if (!b) {
315 return NT_STATUS_NO_MEMORY;
318 p = strchr(s, '@');
320 if (p && PTR_DIFF(p, s) == 36) { /* 36 is the length of a UUID */
321 NTSTATUS status;
323 status = GUID_from_string(s, &b->object.uuid);
325 if (NT_STATUS_IS_ERR(status)) {
326 DEBUG(0, ("Failed parsing UUID\n"));
327 return status;
330 s = p + 1;
331 } else {
332 ZERO_STRUCT(b->object);
335 b->object.if_version = 0;
337 p = strchr(s, ':');
339 if (p == NULL) {
340 b->transport = NCA_UNKNOWN;
341 } else {
342 char *type = talloc_strndup(mem_ctx, s, PTR_DIFF(p, s));
343 if (!type) {
344 return NT_STATUS_NO_MEMORY;
347 for (i=0;i<ARRAY_SIZE(transports);i++) {
348 if (strcasecmp(type, transports[i].name) == 0) {
349 b->transport = transports[i].transport;
350 break;
354 if (i==ARRAY_SIZE(transports)) {
355 DEBUG(0,("Unknown dcerpc transport '%s'\n", type));
356 return NT_STATUS_INVALID_PARAMETER;
359 talloc_free(type);
361 s = p+1;
364 p = strchr(s, '[');
365 if (p) {
366 b->host = talloc_strndup(b, s, PTR_DIFF(p, s));
367 options = talloc_strdup(mem_ctx, p+1);
368 if (options[strlen(options)-1] != ']') {
369 return NT_STATUS_INVALID_PARAMETER;
371 options[strlen(options)-1] = 0;
372 } else {
373 b->host = talloc_strdup(b, s);
374 options = NULL;
376 if (!b->host) {
377 return NT_STATUS_NO_MEMORY;
380 b->target_hostname = b->host;
382 b->options = NULL;
383 b->flags = 0;
384 b->assoc_group_id = 0;
385 b->endpoint = NULL;
387 if (!options) {
388 *b_out = b;
389 return NT_STATUS_OK;
392 comma_count = count_chars(options, ',');
394 b->options = talloc_array(b, const char *, comma_count+2);
395 if (!b->options) {
396 return NT_STATUS_NO_MEMORY;
399 for (i=0; (p = strchr(options, ',')); i++) {
400 b->options[i] = talloc_strndup(b, options, PTR_DIFF(p, options));
401 if (!b->options[i]) {
402 return NT_STATUS_NO_MEMORY;
404 options = p+1;
406 b->options[i] = options;
407 b->options[i+1] = NULL;
409 /* some options are pre-parsed for convenience */
410 for (i=0;b->options[i];i++) {
411 for (j=0;j<ARRAY_SIZE(ncacn_options);j++) {
412 if (strcasecmp(ncacn_options[j].name, b->options[i]) == 0) {
413 int k;
414 b->flags |= ncacn_options[j].flag;
415 for (k=i;b->options[k];k++) {
416 b->options[k] = b->options[k+1];
418 i--;
419 break;
424 if (b->options[0]) {
425 /* Endpoint is first option */
426 b->endpoint = b->options[0];
427 if (strlen(b->endpoint) == 0) b->endpoint = NULL;
429 for (i=0;b->options[i];i++) {
430 b->options[i] = b->options[i+1];
434 if (b->options[0] == NULL)
435 b->options = NULL;
437 *b_out = b;
438 return NT_STATUS_OK;
441 _PUBLIC_ NTSTATUS dcerpc_floor_get_lhs_data(struct epm_floor *epm_floor, struct ndr_syntax_id *syntax)
443 TALLOC_CTX *mem_ctx = talloc_init("floor_get_lhs_data");
444 struct ndr_pull *ndr = ndr_pull_init_blob(&epm_floor->lhs.lhs_data, mem_ctx, NULL);
445 enum ndr_err_code ndr_err;
446 uint16_t if_version=0;
448 ndr->flags |= LIBNDR_FLAG_NOALIGN;
450 ndr_err = ndr_pull_GUID(ndr, NDR_SCALARS | NDR_BUFFERS, &syntax->uuid);
451 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
452 talloc_free(mem_ctx);
453 return ndr_map_error2ntstatus(ndr_err);
456 ndr_err = ndr_pull_uint16(ndr, NDR_SCALARS, &if_version);
457 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
458 talloc_free(mem_ctx);
459 return ndr_map_error2ntstatus(ndr_err);
462 syntax->if_version = if_version;
464 talloc_free(mem_ctx);
466 return NT_STATUS_OK;
469 static DATA_BLOB dcerpc_floor_pack_lhs_data(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *syntax)
471 struct ndr_push *ndr = ndr_push_init_ctx(mem_ctx, NULL);
473 ndr->flags |= LIBNDR_FLAG_NOALIGN;
475 ndr_push_GUID(ndr, NDR_SCALARS | NDR_BUFFERS, &syntax->uuid);
476 ndr_push_uint16(ndr, NDR_SCALARS, syntax->if_version);
478 return ndr_push_blob(ndr);
481 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor)
483 switch (epm_floor->lhs.protocol) {
484 case EPM_PROTOCOL_TCP:
485 if (epm_floor->rhs.tcp.port == 0) return NULL;
486 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.tcp.port);
488 case EPM_PROTOCOL_UDP:
489 if (epm_floor->rhs.udp.port == 0) return NULL;
490 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.udp.port);
492 case EPM_PROTOCOL_HTTP:
493 if (epm_floor->rhs.http.port == 0) return NULL;
494 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.http.port);
496 case EPM_PROTOCOL_IP:
497 return talloc_strdup(mem_ctx, epm_floor->rhs.ip.ipaddr);
499 case EPM_PROTOCOL_NCACN:
500 return NULL;
502 case EPM_PROTOCOL_NCADG:
503 return NULL;
505 case EPM_PROTOCOL_SMB:
506 if (strlen(epm_floor->rhs.smb.unc) == 0) return NULL;
507 return talloc_strdup(mem_ctx, epm_floor->rhs.smb.unc);
509 case EPM_PROTOCOL_PIPE:
510 if (strlen(epm_floor->rhs.pipe.path) == 0) return NULL;
511 return talloc_strdup(mem_ctx, epm_floor->rhs.pipe.path);
513 case EPM_PROTOCOL_NETBIOS:
514 if (strlen(epm_floor->rhs.netbios.name) == 0) return NULL;
515 return talloc_strdup(mem_ctx, epm_floor->rhs.netbios.name);
517 case EPM_PROTOCOL_NCALRPC:
518 return NULL;
520 case EPM_PROTOCOL_VINES_SPP:
521 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.vines_spp.port);
523 case EPM_PROTOCOL_VINES_IPC:
524 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.vines_ipc.port);
526 case EPM_PROTOCOL_STREETTALK:
527 return talloc_strdup(mem_ctx, epm_floor->rhs.streettalk.streettalk);
529 case EPM_PROTOCOL_UNIX_DS:
530 if (strlen(epm_floor->rhs.unix_ds.path) == 0) return NULL;
531 return talloc_strdup(mem_ctx, epm_floor->rhs.unix_ds.path);
533 case EPM_PROTOCOL_NULL:
534 return NULL;
536 default:
537 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor->lhs.protocol));
538 break;
541 return NULL;
544 static NTSTATUS dcerpc_floor_set_rhs_data(TALLOC_CTX *mem_ctx,
545 struct epm_floor *epm_floor,
546 const char *data)
548 switch (epm_floor->lhs.protocol) {
549 case EPM_PROTOCOL_TCP:
550 epm_floor->rhs.tcp.port = atoi(data);
551 return NT_STATUS_OK;
553 case EPM_PROTOCOL_UDP:
554 epm_floor->rhs.udp.port = atoi(data);
555 return NT_STATUS_OK;
557 case EPM_PROTOCOL_HTTP:
558 epm_floor->rhs.http.port = atoi(data);
559 return NT_STATUS_OK;
561 case EPM_PROTOCOL_IP:
562 epm_floor->rhs.ip.ipaddr = talloc_strdup(mem_ctx, data);
563 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.ip.ipaddr);
564 return NT_STATUS_OK;
566 case EPM_PROTOCOL_NCACN:
567 epm_floor->rhs.ncacn.minor_version = 0;
568 return NT_STATUS_OK;
570 case EPM_PROTOCOL_NCADG:
571 epm_floor->rhs.ncadg.minor_version = 0;
572 return NT_STATUS_OK;
574 case EPM_PROTOCOL_SMB:
575 epm_floor->rhs.smb.unc = talloc_strdup(mem_ctx, data);
576 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.smb.unc);
577 return NT_STATUS_OK;
579 case EPM_PROTOCOL_PIPE:
580 epm_floor->rhs.pipe.path = talloc_strdup(mem_ctx, data);
581 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.pipe.path);
582 return NT_STATUS_OK;
584 case EPM_PROTOCOL_NETBIOS:
585 epm_floor->rhs.netbios.name = talloc_strdup(mem_ctx, data);
586 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.netbios.name);
587 return NT_STATUS_OK;
589 case EPM_PROTOCOL_NCALRPC:
590 return NT_STATUS_OK;
592 case EPM_PROTOCOL_VINES_SPP:
593 epm_floor->rhs.vines_spp.port = atoi(data);
594 return NT_STATUS_OK;
596 case EPM_PROTOCOL_VINES_IPC:
597 epm_floor->rhs.vines_ipc.port = atoi(data);
598 return NT_STATUS_OK;
600 case EPM_PROTOCOL_STREETTALK:
601 epm_floor->rhs.streettalk.streettalk = talloc_strdup(mem_ctx, data);
602 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.streettalk.streettalk);
603 return NT_STATUS_OK;
605 case EPM_PROTOCOL_UNIX_DS:
606 epm_floor->rhs.unix_ds.path = talloc_strdup(mem_ctx, data);
607 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.unix_ds.path);
608 return NT_STATUS_OK;
610 case EPM_PROTOCOL_NULL:
611 return NT_STATUS_OK;
613 default:
614 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor->lhs.protocol));
615 break;
618 return NT_STATUS_NOT_SUPPORTED;
621 enum dcerpc_transport_t dcerpc_transport_by_endpoint_protocol(int prot)
623 int i;
625 /* Find a transport that has 'prot' as 4th protocol */
626 for (i=0;i<ARRAY_SIZE(transports);i++) {
627 if (transports[i].num_protocols >= 2 &&
628 transports[i].protseq[1] == prot) {
629 return transports[i].transport;
633 /* Unknown transport */
634 return (unsigned int)-1;
637 _PUBLIC_ enum dcerpc_transport_t dcerpc_transport_by_tower(struct epm_tower *tower)
639 int i;
641 /* Find a transport that matches this tower */
642 for (i=0;i<ARRAY_SIZE(transports);i++) {
643 int j;
644 if (transports[i].num_protocols != tower->num_floors - 2) {
645 continue;
648 for (j = 0; j < transports[i].num_protocols; j++) {
649 if (transports[i].protseq[j] != tower->floors[j+2].lhs.protocol) {
650 break;
654 if (j == transports[i].num_protocols) {
655 return transports[i].transport;
659 /* Unknown transport */
660 return (unsigned int)-1;
663 _PUBLIC_ NTSTATUS dcerpc_binding_from_tower(TALLOC_CTX *mem_ctx,
664 struct epm_tower *tower,
665 struct dcerpc_binding **b_out)
667 NTSTATUS status;
668 struct dcerpc_binding *binding;
670 binding = talloc(mem_ctx, struct dcerpc_binding);
671 NT_STATUS_HAVE_NO_MEMORY(binding);
673 ZERO_STRUCT(binding->object);
674 binding->options = NULL;
675 binding->host = NULL;
676 binding->target_hostname = NULL;
677 binding->flags = 0;
678 binding->assoc_group_id = 0;
680 binding->transport = dcerpc_transport_by_tower(tower);
682 if (binding->transport == (unsigned int)-1) {
683 return NT_STATUS_NOT_SUPPORTED;
686 if (tower->num_floors < 1) {
687 return NT_STATUS_OK;
690 /* Set object uuid */
691 status = dcerpc_floor_get_lhs_data(&tower->floors[0], &binding->object);
693 if (!NT_STATUS_IS_OK(status)) {
694 DEBUG(1, ("Error pulling object uuid and version: %s", nt_errstr(status)));
695 return status;
698 /* Ignore floor 1, it contains the NDR version info */
700 binding->options = NULL;
702 /* Set endpoint */
703 if (tower->num_floors >= 4) {
704 binding->endpoint = dcerpc_floor_get_rhs_data(mem_ctx, &tower->floors[3]);
705 } else {
706 binding->endpoint = NULL;
709 /* Set network address */
710 if (tower->num_floors >= 5) {
711 binding->host = dcerpc_floor_get_rhs_data(mem_ctx, &tower->floors[4]);
712 NT_STATUS_HAVE_NO_MEMORY(binding->host);
713 binding->target_hostname = binding->host;
715 *b_out = binding;
716 return NT_STATUS_OK;
719 _PUBLIC_ NTSTATUS dcerpc_binding_build_tower(TALLOC_CTX *mem_ctx, struct dcerpc_binding *binding, struct epm_tower *tower)
721 const enum epm_protocol *protseq = NULL;
722 int num_protocols = -1, i;
723 NTSTATUS status;
725 /* Find transport */
726 for (i=0;i<ARRAY_SIZE(transports);i++) {
727 if (transports[i].transport == binding->transport) {
728 protseq = transports[i].protseq;
729 num_protocols = transports[i].num_protocols;
730 break;
734 if (num_protocols == -1) {
735 DEBUG(0, ("Unable to find transport with id '%d'\n", binding->transport));
736 return NT_STATUS_UNSUCCESSFUL;
739 tower->num_floors = 2 + num_protocols;
740 tower->floors = talloc_array(mem_ctx, struct epm_floor, tower->num_floors);
742 /* Floor 0 */
743 tower->floors[0].lhs.protocol = EPM_PROTOCOL_UUID;
745 tower->floors[0].lhs.lhs_data = dcerpc_floor_pack_lhs_data(mem_ctx, &binding->object);
747 tower->floors[0].rhs.uuid.unknown = data_blob_talloc_zero(mem_ctx, 2);
749 /* Floor 1 */
750 tower->floors[1].lhs.protocol = EPM_PROTOCOL_UUID;
752 tower->floors[1].lhs.lhs_data = dcerpc_floor_pack_lhs_data(mem_ctx,
753 &ndr_transfer_syntax);
755 tower->floors[1].rhs.uuid.unknown = data_blob_talloc_zero(mem_ctx, 2);
757 /* Floor 2 to num_protocols */
758 for (i = 0; i < num_protocols; i++) {
759 tower->floors[2 + i].lhs.protocol = protseq[i];
760 tower->floors[2 + i].lhs.lhs_data = data_blob_talloc(mem_ctx, NULL, 0);
761 ZERO_STRUCT(tower->floors[2 + i].rhs);
762 dcerpc_floor_set_rhs_data(mem_ctx, &tower->floors[2 + i], "");
765 /* The 4th floor contains the endpoint */
766 if (num_protocols >= 2 && binding->endpoint) {
767 status = dcerpc_floor_set_rhs_data(mem_ctx, &tower->floors[3], binding->endpoint);
768 if (NT_STATUS_IS_ERR(status)) {
769 return status;
773 /* The 5th contains the network address */
774 if (num_protocols >= 3 && binding->host) {
775 if (is_ipaddress(binding->host)) {
776 status = dcerpc_floor_set_rhs_data(mem_ctx, &tower->floors[4],
777 binding->host);
778 } else {
779 /* note that we don't attempt to resolve the
780 name here - when we get a hostname here we
781 are in the client code, and want to put in
782 a wildcard all-zeros IP for the server to
783 fill in */
784 status = dcerpc_floor_set_rhs_data(mem_ctx, &tower->floors[4],
785 "0.0.0.0");
787 if (NT_STATUS_IS_ERR(status)) {
788 return status;
792 return NT_STATUS_OK;
796 struct epm_map_binding_state {
797 struct dcerpc_binding *binding;
798 const struct ndr_interface_table *table;
799 struct dcerpc_pipe *pipe;
800 struct policy_handle handle;
801 struct GUID guid;
802 struct epm_twr_t twr;
803 struct epm_twr_t *twr_r;
804 struct epm_Map r;
808 static void continue_epm_recv_binding(struct composite_context *ctx);
809 static void continue_epm_map(struct rpc_request *req);
813 Stage 2 of epm_map_binding: Receive connected rpc pipe and send endpoint
814 mapping rpc request
816 static void continue_epm_recv_binding(struct composite_context *ctx)
818 struct rpc_request *map_req;
820 struct composite_context *c = talloc_get_type(ctx->async.private_data,
821 struct composite_context);
822 struct epm_map_binding_state *s = talloc_get_type(c->private_data,
823 struct epm_map_binding_state);
825 /* receive result of rpc pipe connect request */
826 c->status = dcerpc_pipe_connect_b_recv(ctx, c, &s->pipe);
827 if (!composite_is_ok(c)) return;
829 s->pipe->conn->flags |= DCERPC_NDR_REF_ALLOC;
831 /* prepare requested binding parameters */
832 s->binding->object = s->table->syntax_id;
834 c->status = dcerpc_binding_build_tower(s->pipe, s->binding, &s->twr.tower);
835 if (!composite_is_ok(c)) return;
837 /* with some nice pretty paper around it of course */
838 s->r.in.object = &s->guid;
839 s->r.in.map_tower = &s->twr;
840 s->r.in.entry_handle = &s->handle;
841 s->r.in.max_towers = 1;
842 s->r.out.entry_handle = &s->handle;
844 /* send request for an endpoint mapping - a rpc request on connected pipe */
845 map_req = dcerpc_epm_Map_send(s->pipe, c, &s->r);
846 if (composite_nomem(map_req, c)) return;
848 composite_continue_rpc(c, map_req, continue_epm_map, c);
853 Stage 3 of epm_map_binding: Receive endpoint mapping and provide binding details
855 static void continue_epm_map(struct rpc_request *req)
857 struct composite_context *c = talloc_get_type(req->async.private_data,
858 struct composite_context);
859 struct epm_map_binding_state *s = talloc_get_type(c->private_data,
860 struct epm_map_binding_state);
862 /* receive result of a rpc request */
863 c->status = dcerpc_ndr_request_recv(req);
864 if (!composite_is_ok(c)) return;
866 /* check the details */
867 if (s->r.out.result != 0 || *s->r.out.num_towers != 1) {
868 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
869 return;
872 s->twr_r = s->r.out.towers[0].twr;
873 if (s->twr_r == NULL) {
874 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
875 return;
878 if (s->twr_r->tower.num_floors != s->twr.tower.num_floors ||
879 s->twr_r->tower.floors[3].lhs.protocol != s->twr.tower.floors[3].lhs.protocol) {
880 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
881 return;
884 /* get received endpoint */
885 s->binding->endpoint = talloc_reference(s->binding,
886 dcerpc_floor_get_rhs_data(c, &s->twr_r->tower.floors[3]));
887 if (composite_nomem(s->binding->endpoint, c)) return;
889 composite_done(c);
894 Request for endpoint mapping of dcerpc binding - try to request for endpoint
895 unless there is default one.
897 struct composite_context *dcerpc_epm_map_binding_send(TALLOC_CTX *mem_ctx,
898 struct dcerpc_binding *binding,
899 const struct ndr_interface_table *table,
900 struct event_context *ev,
901 struct loadparm_context *lp_ctx)
903 struct composite_context *c;
904 struct epm_map_binding_state *s;
905 struct composite_context *pipe_connect_req;
906 struct cli_credentials *anon_creds;
907 struct event_context *new_ev = NULL;
909 NTSTATUS status;
910 struct dcerpc_binding *epmapper_binding;
911 int i;
913 /* Try to find event context in memory context in case passed
914 * event_context (argument) was NULL. If there's none, just
915 * create a new one.
917 if (ev == NULL) {
918 ev = event_context_find(mem_ctx);
919 if (ev == NULL) {
920 new_ev = event_context_init(mem_ctx);
921 if (new_ev == NULL) return NULL;
922 ev = new_ev;
926 /* composite context allocation and setup */
927 c = composite_create(mem_ctx, ev);
928 if (c == NULL) {
929 talloc_free(new_ev);
930 return NULL;
932 talloc_steal(c, new_ev);
934 s = talloc_zero(c, struct epm_map_binding_state);
935 if (composite_nomem(s, c)) return c;
936 c->private_data = s;
938 s->binding = binding;
939 s->table = table;
941 /* anonymous credentials for rpc connection used to get endpoint mapping */
942 anon_creds = cli_credentials_init(mem_ctx);
943 cli_credentials_set_event_context(anon_creds, ev);
944 cli_credentials_set_anonymous(anon_creds);
947 First, check if there is a default endpoint specified in the IDL
949 if (table != NULL) {
950 struct dcerpc_binding *default_binding;
952 /* Find one of the default pipes for this interface */
953 for (i = 0; i < table->endpoints->count; i++) {
954 status = dcerpc_parse_binding(mem_ctx, table->endpoints->names[i], &default_binding);
956 if (NT_STATUS_IS_OK(status)) {
957 if (binding->transport == NCA_UNKNOWN)
958 binding->transport = default_binding->transport;
959 if (default_binding->transport == binding->transport &&
960 default_binding->endpoint) {
961 binding->endpoint = talloc_reference(binding, default_binding->endpoint);
962 talloc_free(default_binding);
964 composite_done(c);
965 return c;
967 } else {
968 talloc_free(default_binding);
974 epmapper_binding = talloc_zero(c, struct dcerpc_binding);
975 if (composite_nomem(epmapper_binding, c)) return c;
977 /* basic endpoint mapping data */
978 epmapper_binding->transport = binding->transport;
979 epmapper_binding->host = talloc_reference(epmapper_binding, binding->host);
980 epmapper_binding->target_hostname = epmapper_binding->host;
981 epmapper_binding->options = NULL;
982 epmapper_binding->flags = 0;
983 epmapper_binding->assoc_group_id = 0;
984 epmapper_binding->endpoint = NULL;
986 /* initiate rpc pipe connection */
987 pipe_connect_req = dcerpc_pipe_connect_b_send(c, epmapper_binding,
988 &ndr_table_epmapper,
989 anon_creds, c->event_ctx,
990 lp_ctx);
991 if (composite_nomem(pipe_connect_req, c)) return c;
993 composite_continue(c, pipe_connect_req, continue_epm_recv_binding, c);
994 return c;
999 Receive result of endpoint mapping request
1001 NTSTATUS dcerpc_epm_map_binding_recv(struct composite_context *c)
1003 NTSTATUS status = composite_wait(c);
1005 talloc_free(c);
1006 return status;
1011 Get endpoint mapping for rpc connection
1013 _PUBLIC_ NTSTATUS dcerpc_epm_map_binding(TALLOC_CTX *mem_ctx, struct dcerpc_binding *binding,
1014 const struct ndr_interface_table *table, struct event_context *ev,
1015 struct loadparm_context *lp_ctx)
1017 struct composite_context *c;
1019 c = dcerpc_epm_map_binding_send(mem_ctx, binding, table, ev, lp_ctx);
1020 return dcerpc_epm_map_binding_recv(c);
1024 struct pipe_auth_state {
1025 struct dcerpc_pipe *pipe;
1026 struct dcerpc_binding *binding;
1027 const struct ndr_interface_table *table;
1028 struct loadparm_context *lp_ctx;
1029 struct cli_credentials *credentials;
1033 static void continue_auth_schannel(struct composite_context *ctx);
1034 static void continue_auth(struct composite_context *ctx);
1035 static void continue_auth_none(struct composite_context *ctx);
1036 static void continue_ntlmssp_connection(struct composite_context *ctx);
1037 static void continue_spnego_after_wrong_pass(struct composite_context *ctx);
1041 Stage 2 of pipe_auth: Receive result of schannel bind request
1043 static void continue_auth_schannel(struct composite_context *ctx)
1045 struct composite_context *c = talloc_get_type(ctx->async.private_data,
1046 struct composite_context);
1048 c->status = dcerpc_bind_auth_schannel_recv(ctx);
1049 if (!composite_is_ok(c)) return;
1051 composite_done(c);
1056 Stage 2 of pipe_auth: Receive result of authenticated bind request
1058 static void continue_auth(struct composite_context *ctx)
1060 struct composite_context *c = talloc_get_type(ctx->async.private_data,
1061 struct composite_context);
1063 c->status = dcerpc_bind_auth_recv(ctx);
1064 if (!composite_is_ok(c)) return;
1066 composite_done(c);
1069 Stage 2 of pipe_auth: Receive result of authenticated bind request, but handle fallbacks:
1070 SPNEGO -> NTLMSSP
1072 static void continue_auth_auto(struct composite_context *ctx)
1074 struct composite_context *c = talloc_get_type(ctx->async.private_data,
1075 struct composite_context);
1076 struct pipe_auth_state *s = talloc_get_type(c->private_data, struct pipe_auth_state);
1077 struct composite_context *sec_conn_req;
1079 c->status = dcerpc_bind_auth_recv(ctx);
1080 if (NT_STATUS_EQUAL(c->status, NT_STATUS_INVALID_PARAMETER)) {
1082 * Retry with NTLMSSP auth as fallback
1083 * send a request for secondary rpc connection
1085 sec_conn_req = dcerpc_secondary_connection_send(s->pipe,
1086 s->binding);
1087 composite_continue(c, sec_conn_req, continue_ntlmssp_connection, c);
1088 return;
1089 } else if (NT_STATUS_EQUAL(c->status, NT_STATUS_LOGON_FAILURE)) {
1090 if (cli_credentials_wrong_password(s->credentials)) {
1092 * Retry SPNEGO with a better password
1093 * send a request for secondary rpc connection
1095 sec_conn_req = dcerpc_secondary_connection_send(s->pipe,
1096 s->binding);
1097 composite_continue(c, sec_conn_req, continue_spnego_after_wrong_pass, c);
1098 return;
1102 if (!composite_is_ok(c)) return;
1104 composite_done(c);
1108 Stage 3 of pipe_auth (fallback to NTLMSSP case): Receive secondary
1109 rpc connection (the first one can't be used any more, due to the
1110 bind nak) and perform authenticated bind request
1112 static void continue_ntlmssp_connection(struct composite_context *ctx)
1114 struct composite_context *c;
1115 struct pipe_auth_state *s;
1116 struct composite_context *auth_req;
1117 struct dcerpc_pipe *p2;
1119 c = talloc_get_type(ctx->async.private_data, struct composite_context);
1120 s = talloc_get_type(c->private_data, struct pipe_auth_state);
1122 /* receive secondary rpc connection */
1123 c->status = dcerpc_secondary_connection_recv(ctx, &p2);
1124 if (!composite_is_ok(c)) return;
1126 talloc_steal(s, p2);
1127 talloc_steal(p2, s->pipe);
1128 s->pipe = p2;
1130 /* initiate a authenticated bind */
1131 auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
1132 s->credentials, s->lp_ctx,
1133 DCERPC_AUTH_TYPE_NTLMSSP,
1134 dcerpc_auth_level(s->pipe->conn),
1135 s->table->authservices->names[0]);
1136 composite_continue(c, auth_req, continue_auth, c);
1140 Stage 3 of pipe_auth (retry on wrong password): Receive secondary
1141 rpc connection (the first one can't be used any more, due to the
1142 bind nak) and perform authenticated bind request
1144 static void continue_spnego_after_wrong_pass(struct composite_context *ctx)
1146 struct composite_context *c;
1147 struct pipe_auth_state *s;
1148 struct composite_context *auth_req;
1149 struct dcerpc_pipe *p2;
1151 c = talloc_get_type(ctx->async.private_data, struct composite_context);
1152 s = talloc_get_type(c->private_data, struct pipe_auth_state);
1154 /* receive secondary rpc connection */
1155 c->status = dcerpc_secondary_connection_recv(ctx, &p2);
1156 if (!composite_is_ok(c)) return;
1158 talloc_steal(s, p2);
1159 talloc_steal(p2, s->pipe);
1160 s->pipe = p2;
1162 /* initiate a authenticated bind */
1163 auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
1164 s->credentials, s->lp_ctx, DCERPC_AUTH_TYPE_SPNEGO,
1165 dcerpc_auth_level(s->pipe->conn),
1166 s->table->authservices->names[0]);
1167 composite_continue(c, auth_req, continue_auth, c);
1172 Stage 2 of pipe_auth: Receive result of non-authenticated bind request
1174 static void continue_auth_none(struct composite_context *ctx)
1176 struct composite_context *c = talloc_get_type(ctx->async.private_data,
1177 struct composite_context);
1179 c->status = dcerpc_bind_auth_none_recv(ctx);
1180 if (!composite_is_ok(c)) return;
1182 composite_done(c);
1187 Request to perform an authenticated bind if required. Authentication
1188 is determined using credentials passed and binding flags.
1190 struct composite_context *dcerpc_pipe_auth_send(struct dcerpc_pipe *p,
1191 struct dcerpc_binding *binding,
1192 const struct ndr_interface_table *table,
1193 struct cli_credentials *credentials,
1194 struct loadparm_context *lp_ctx)
1196 struct composite_context *c;
1197 struct pipe_auth_state *s;
1198 struct composite_context *auth_schannel_req;
1199 struct composite_context *auth_req;
1200 struct composite_context *auth_none_req;
1201 struct dcerpc_connection *conn;
1202 uint8_t auth_type;
1204 /* composite context allocation and setup */
1205 c = composite_create(p, p->conn->event_ctx);
1206 if (c == NULL) return NULL;
1208 s = talloc_zero(c, struct pipe_auth_state);
1209 if (composite_nomem(s, c)) return c;
1210 c->private_data = s;
1212 /* store parameters in state structure */
1213 s->binding = binding;
1214 s->table = table;
1215 s->credentials = credentials;
1216 s->pipe = p;
1217 s->lp_ctx = lp_ctx;
1219 conn = s->pipe->conn;
1220 conn->flags = binding->flags;
1222 /* remember the binding string for possible secondary connections */
1223 conn->binding_string = dcerpc_binding_string(p, binding);
1225 if (cli_credentials_is_anonymous(s->credentials)) {
1226 auth_none_req = dcerpc_bind_auth_none_send(c, s->pipe, s->table);
1227 composite_continue(c, auth_none_req, continue_auth_none, c);
1228 return c;
1231 if ((binding->flags & DCERPC_SCHANNEL) &&
1232 !cli_credentials_get_netlogon_creds(s->credentials)) {
1233 /* If we don't already have netlogon credentials for
1234 * the schannel bind, then we have to get these
1235 * first */
1236 auth_schannel_req = dcerpc_bind_auth_schannel_send(c, s->pipe, s->table,
1237 s->credentials, s->lp_ctx,
1238 dcerpc_auth_level(conn));
1239 composite_continue(c, auth_schannel_req, continue_auth_schannel, c);
1240 return c;
1244 * we rely on the already authenticated CIFS connection
1245 * if not doing sign or seal
1247 if (conn->transport.transport == NCACN_NP &&
1248 !(s->binding->flags & (DCERPC_SIGN|DCERPC_SEAL))) {
1249 auth_none_req = dcerpc_bind_auth_none_send(c, s->pipe, s->table);
1250 composite_continue(c, auth_none_req, continue_auth_none, c);
1251 return c;
1255 /* Perform an authenticated DCE-RPC bind
1257 if (!(conn->flags & (DCERPC_SIGN|DCERPC_SEAL))) {
1259 we are doing an authenticated connection,
1260 but not using sign or seal. We must force
1261 the CONNECT dcerpc auth type as a NONE auth
1262 type doesn't allow authentication
1263 information to be passed.
1265 conn->flags |= DCERPC_CONNECT;
1268 if (s->binding->flags & DCERPC_AUTH_SPNEGO) {
1269 auth_type = DCERPC_AUTH_TYPE_SPNEGO;
1271 } else if (s->binding->flags & DCERPC_AUTH_KRB5) {
1272 auth_type = DCERPC_AUTH_TYPE_KRB5;
1274 } else if (s->binding->flags & DCERPC_SCHANNEL) {
1275 auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
1277 } else if (s->binding->flags & DCERPC_AUTH_NTLM) {
1278 auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
1280 } else {
1281 /* try SPNEGO with fallback to NTLMSSP */
1282 auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
1283 s->credentials, s->lp_ctx, DCERPC_AUTH_TYPE_SPNEGO,
1284 dcerpc_auth_level(conn),
1285 s->table->authservices->names[0]);
1286 composite_continue(c, auth_req, continue_auth_auto, c);
1287 return c;
1290 auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
1291 s->credentials, s->lp_ctx, auth_type,
1292 dcerpc_auth_level(conn),
1293 s->table->authservices->names[0]);
1294 composite_continue(c, auth_req, continue_auth, c);
1295 return c;
1300 Receive result of authenticated bind request on dcerpc pipe
1302 This returns *p, which may be different to the one originally
1303 supllied, as it rebinds to a new pipe due to authentication fallback
1306 NTSTATUS dcerpc_pipe_auth_recv(struct composite_context *c, TALLOC_CTX *mem_ctx,
1307 struct dcerpc_pipe **p)
1309 NTSTATUS status;
1311 struct pipe_auth_state *s = talloc_get_type(c->private_data,
1312 struct pipe_auth_state);
1313 status = composite_wait(c);
1314 if (!NT_STATUS_IS_OK(status)) {
1315 char *uuid_str = GUID_string(s->pipe, &s->table->syntax_id.uuid);
1316 DEBUG(0, ("Failed to bind to uuid %s - %s\n", uuid_str, nt_errstr(status)));
1317 talloc_free(uuid_str);
1318 } else {
1319 talloc_steal(mem_ctx, s->pipe);
1320 *p = s->pipe;
1323 talloc_free(c);
1324 return status;
1329 Perform an authenticated bind if needed - sync version
1331 This may change *p, as it rebinds to a new pipe due to authentication fallback
1333 _PUBLIC_ NTSTATUS dcerpc_pipe_auth(TALLOC_CTX *mem_ctx,
1334 struct dcerpc_pipe **p,
1335 struct dcerpc_binding *binding,
1336 const struct ndr_interface_table *table,
1337 struct cli_credentials *credentials,
1338 struct loadparm_context *lp_ctx)
1340 struct composite_context *c;
1342 c = dcerpc_pipe_auth_send(*p, binding, table, credentials, lp_ctx);
1343 return dcerpc_pipe_auth_recv(c, mem_ctx, p);
1347 NTSTATUS dcerpc_generic_session_key(struct dcerpc_connection *c,
1348 DATA_BLOB *session_key)
1350 /* this took quite a few CPU cycles to find ... */
1351 session_key->data = discard_const_p(unsigned char, "SystemLibraryDTC");
1352 session_key->length = 16;
1353 return NT_STATUS_OK;
1357 fetch the user session key - may be default (above) or the SMB session key
1359 _PUBLIC_ NTSTATUS dcerpc_fetch_session_key(struct dcerpc_pipe *p,
1360 DATA_BLOB *session_key)
1362 return p->conn->security_state.session_key(p->conn, session_key);
1367 log a rpc packet in a format suitable for ndrdump. This is especially useful
1368 for sealed packets, where ethereal cannot easily see the contents
1370 this triggers on a debug level of >= 10
1372 _PUBLIC_ void dcerpc_log_packet(const struct ndr_interface_table *ndr,
1373 uint32_t opnum, uint32_t flags,
1374 DATA_BLOB *pkt)
1376 const int num_examples = 20;
1377 int i;
1379 if (DEBUGLEVEL < 10) return;
1381 for (i=0;i<num_examples;i++) {
1382 char *name=NULL;
1383 asprintf(&name, "%s/rpclog/%s-%u.%d.%s",
1384 lp_lockdir(global_loadparm), ndr->name, opnum, i,
1385 (flags&NDR_IN)?"in":"out");
1386 if (name == NULL) {
1387 return;
1389 if (!file_exist(name)) {
1390 if (file_save(name, pkt->data, pkt->length)) {
1391 DEBUG(10,("Logged rpc packet to %s\n", name));
1393 free(name);
1394 break;
1396 free(name);
1403 create a secondary context from a primary connection
1405 this uses dcerpc_alter_context() to create a new dcerpc context_id
1407 _PUBLIC_ NTSTATUS dcerpc_secondary_context(struct dcerpc_pipe *p,
1408 struct dcerpc_pipe **pp2,
1409 const struct ndr_interface_table *table)
1411 NTSTATUS status;
1412 struct dcerpc_pipe *p2;
1414 p2 = talloc_zero(p, struct dcerpc_pipe);
1415 if (p2 == NULL) {
1416 return NT_STATUS_NO_MEMORY;
1418 p2->conn = talloc_reference(p2, p->conn);
1419 p2->request_timeout = p->request_timeout;
1421 p2->context_id = ++p->conn->next_context_id;
1423 p2->syntax = table->syntax_id;
1425 p2->transfer_syntax = ndr_transfer_syntax;
1427 p2->binding = talloc_reference(p2, p->binding);
1429 status = dcerpc_alter_context(p2, p2, &p2->syntax, &p2->transfer_syntax);
1430 if (!NT_STATUS_IS_OK(status)) {
1431 talloc_free(p2);
1432 return status;
1435 *pp2 = p2;
1437 return NT_STATUS_OK;