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/>.
26 #include "librpc/gen_ndr/ndr_epmapper.h"
27 #include "librpc/gen_ndr/ndr_misc.h"
28 #include "librpc/rpc/dcerpc.h"
31 #define MAX_PROTSEQ 10
35 enum dcerpc_transport_t transport
;
37 enum epm_protocol protseq
[MAX_PROTSEQ
];
39 { "ncacn_np", NCACN_NP
, 3,
40 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_SMB
, EPM_PROTOCOL_NETBIOS
}},
41 { "ncacn_ip_tcp", NCACN_IP_TCP
, 3,
42 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_TCP
, EPM_PROTOCOL_IP
} },
43 { "ncacn_http", NCACN_HTTP
, 3,
44 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_HTTP
, EPM_PROTOCOL_IP
} },
45 { "ncadg_ip_udp", NCACN_IP_UDP
, 3,
46 { EPM_PROTOCOL_NCADG
, EPM_PROTOCOL_UDP
, EPM_PROTOCOL_IP
} },
47 { "ncalrpc", NCALRPC
, 2,
48 { EPM_PROTOCOL_NCALRPC
, EPM_PROTOCOL_NAMED_PIPE
} },
49 { "ncacn_unix_stream", NCACN_UNIX_STREAM
, 2,
50 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_UNIX_DS
} },
51 { "ncadg_unix_dgram", NCADG_UNIX_DGRAM
, 2,
52 { EPM_PROTOCOL_NCADG
, EPM_PROTOCOL_UNIX_DS
} },
53 { "ncacn_at_dsp", NCACN_AT_DSP
, 3,
54 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_APPLETALK
, EPM_PROTOCOL_DSP
} },
55 { "ncadg_at_ddp", NCADG_AT_DDP
, 3,
56 { EPM_PROTOCOL_NCADG
, EPM_PROTOCOL_APPLETALK
, EPM_PROTOCOL_DDP
} },
57 { "ncacn_vns_ssp", NCACN_VNS_SPP
, 3,
58 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_STREETTALK
, EPM_PROTOCOL_VINES_SPP
} },
59 { "ncacn_vns_ipc", NCACN_VNS_IPC
, 3,
60 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_STREETTALK
, EPM_PROTOCOL_VINES_IPC
}, },
61 { "ncadg_ipx", NCADG_IPX
, 2,
62 { EPM_PROTOCOL_NCADG
, EPM_PROTOCOL_IPX
},
64 { "ncacn_spx", NCACN_SPX
, 3,
65 /* I guess some MS programmer confused the identifier for
66 * EPM_PROTOCOL_UUID (0x0D or 13) with the one for
67 * EPM_PROTOCOL_SPX (0x13) here. -- jelmer*/
68 { EPM_PROTOCOL_NCACN
, EPM_PROTOCOL_NCALRPC
, EPM_PROTOCOL_UUID
},
76 {"sign", DCERPC_SIGN
},
77 {"seal", DCERPC_SEAL
},
78 {"connect", DCERPC_CONNECT
},
79 {"spnego", DCERPC_AUTH_SPNEGO
},
80 {"ntlm", DCERPC_AUTH_NTLM
},
81 {"krb5", DCERPC_AUTH_KRB5
},
82 {"validate", DCERPC_DEBUG_VALIDATE_BOTH
},
83 {"print", DCERPC_DEBUG_PRINT_BOTH
},
84 {"padcheck", DCERPC_DEBUG_PAD_CHECK
},
85 {"bigendian", DCERPC_PUSH_BIGENDIAN
},
86 {"smb2", DCERPC_SMB2
},
87 {"hdrsign", DCERPC_HEADER_SIGNING
},
88 {"ndr64", DCERPC_NDR64
}
91 const char *epm_floor_string(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
)
93 struct ndr_syntax_id syntax
;
96 switch(epm_floor
->lhs
.protocol
) {
97 case EPM_PROTOCOL_UUID
:
98 status
= dcerpc_floor_get_lhs_data(epm_floor
, &syntax
);
99 if (NT_STATUS_IS_OK(status
)) {
100 /* lhs is used: UUID */
103 if (GUID_equal(&syntax
.uuid
, &ndr_transfer_syntax
.uuid
)) {
107 if (GUID_equal(&syntax
.uuid
, &ndr64_transfer_syntax
.uuid
)) {
111 uuidstr
= GUID_string(mem_ctx
, &syntax
.uuid
);
113 return talloc_asprintf(mem_ctx
, " uuid %s/0x%02x", uuidstr
, syntax
.if_version
);
115 return talloc_asprintf(mem_ctx
, "IPX:%s",
116 data_blob_hex_string(mem_ctx
, &epm_floor
->rhs
.uuid
.unknown
));
119 case EPM_PROTOCOL_NCACN
:
122 case EPM_PROTOCOL_NCADG
:
125 case EPM_PROTOCOL_NCALRPC
:
128 case EPM_PROTOCOL_DNET_NSP
:
131 case EPM_PROTOCOL_IP
:
132 return talloc_asprintf(mem_ctx
, "IP:%s", epm_floor
->rhs
.ip
.ipaddr
);
134 case EPM_PROTOCOL_NAMED_PIPE
:
135 return talloc_asprintf(mem_ctx
, "NAMED-PIPE:%s", epm_floor
->rhs
.named_pipe
.path
);
137 case EPM_PROTOCOL_SMB
:
138 return talloc_asprintf(mem_ctx
, "SMB:%s", epm_floor
->rhs
.smb
.unc
);
140 case EPM_PROTOCOL_UNIX_DS
:
141 return talloc_asprintf(mem_ctx
, "Unix:%s", epm_floor
->rhs
.unix_ds
.path
);
143 case EPM_PROTOCOL_NETBIOS
:
144 return talloc_asprintf(mem_ctx
, "NetBIOS:%s", epm_floor
->rhs
.netbios
.name
);
146 case EPM_PROTOCOL_NETBEUI
:
149 case EPM_PROTOCOL_SPX
:
152 case EPM_PROTOCOL_NB_IPX
:
155 case EPM_PROTOCOL_HTTP
:
156 return talloc_asprintf(mem_ctx
, "HTTP:%d", epm_floor
->rhs
.http
.port
);
158 case EPM_PROTOCOL_TCP
:
159 return talloc_asprintf(mem_ctx
, "TCP:%d", epm_floor
->rhs
.tcp
.port
);
161 case EPM_PROTOCOL_UDP
:
162 return talloc_asprintf(mem_ctx
, "UDP:%d", epm_floor
->rhs
.udp
.port
);
165 return talloc_asprintf(mem_ctx
, "UNK(%02x):", epm_floor
->lhs
.protocol
);
171 form a binding string from a binding structure
173 _PUBLIC_
char *dcerpc_binding_string(TALLOC_CTX
*mem_ctx
, const struct dcerpc_binding
*b
)
175 char *s
= talloc_strdup(mem_ctx
, "");
177 const char *t_name
= NULL
;
179 if (b
->transport
!= NCA_UNKNOWN
) {
180 t_name
= derpc_transport_string_by_transport(b
->transport
);
186 if (!GUID_all_zero(&b
->object
.uuid
)) {
187 s
= talloc_asprintf(s
, "%s@",
188 GUID_string(mem_ctx
, &b
->object
.uuid
));
191 if (t_name
!= NULL
) {
192 s
= talloc_asprintf_append_buffer(s
, "%s:", t_name
);
199 s
= talloc_asprintf_append_buffer(s
, "%s", b
->host
);
202 if (!b
->endpoint
&& !b
->options
&& !b
->flags
) {
206 s
= talloc_asprintf_append_buffer(s
, "[");
209 s
= talloc_asprintf_append_buffer(s
, "%s", b
->endpoint
);
212 /* this is a *really* inefficent way of dealing with strings,
213 but this is rarely called and the strings are always short,
215 for (i
=0;b
->options
&& b
->options
[i
];i
++) {
216 s
= talloc_asprintf_append_buffer(s
, ",%s", b
->options
[i
]);
220 for (i
=0;i
<ARRAY_SIZE(ncacn_options
);i
++) {
221 if (b
->flags
& ncacn_options
[i
].flag
) {
222 s
= talloc_asprintf_append_buffer(s
, ",%s", ncacn_options
[i
].name
);
227 s
= talloc_asprintf_append_buffer(s
, "]");
233 parse a binding string into a dcerpc_binding structure
235 _PUBLIC_ NTSTATUS
dcerpc_parse_binding(TALLOC_CTX
*mem_ctx
, const char *s
, struct dcerpc_binding
**b_out
)
237 struct dcerpc_binding
*b
;
240 int i
, j
, comma_count
;
242 b
= talloc(mem_ctx
, struct dcerpc_binding
);
244 return NT_STATUS_NO_MEMORY
;
249 if (p
&& PTR_DIFF(p
, s
) == 36) { /* 36 is the length of a UUID */
251 DATA_BLOB blob
= data_blob(s
, 36);
252 status
= GUID_from_data_blob(&blob
, &b
->object
.uuid
);
254 if (NT_STATUS_IS_ERR(status
)) {
255 DEBUG(0, ("Failed parsing UUID\n"));
261 ZERO_STRUCT(b
->object
);
264 b
->object
.if_version
= 0;
269 b
->transport
= NCA_UNKNOWN
;
271 char *type
= talloc_strndup(mem_ctx
, s
, PTR_DIFF(p
, s
));
273 return NT_STATUS_NO_MEMORY
;
276 for (i
=0;i
<ARRAY_SIZE(transports
);i
++) {
277 if (strcasecmp(type
, transports
[i
].name
) == 0) {
278 b
->transport
= transports
[i
].transport
;
283 if (i
==ARRAY_SIZE(transports
)) {
284 DEBUG(0,("Unknown dcerpc transport '%s'\n", type
));
285 return NT_STATUS_INVALID_PARAMETER
;
295 b
->host
= talloc_strndup(b
, s
, PTR_DIFF(p
, s
));
296 options
= talloc_strdup(mem_ctx
, p
+1);
297 if (options
[strlen(options
)-1] != ']') {
298 return NT_STATUS_INVALID_PARAMETER
;
300 options
[strlen(options
)-1] = 0;
302 b
->host
= talloc_strdup(b
, s
);
306 return NT_STATUS_NO_MEMORY
;
309 b
->target_hostname
= b
->host
;
313 b
->assoc_group_id
= 0;
321 comma_count
= count_chars(options
, ',');
323 b
->options
= talloc_array(b
, const char *, comma_count
+2);
325 return NT_STATUS_NO_MEMORY
;
328 for (i
=0; (p
= strchr(options
, ',')); i
++) {
329 b
->options
[i
] = talloc_strndup(b
, options
, PTR_DIFF(p
, options
));
330 if (!b
->options
[i
]) {
331 return NT_STATUS_NO_MEMORY
;
335 b
->options
[i
] = options
;
336 b
->options
[i
+1] = NULL
;
338 /* some options are pre-parsed for convenience */
339 for (i
=0;b
->options
[i
];i
++) {
340 for (j
=0;j
<ARRAY_SIZE(ncacn_options
);j
++) {
341 if (strcasecmp(ncacn_options
[j
].name
, b
->options
[i
]) == 0) {
343 b
->flags
|= ncacn_options
[j
].flag
;
344 for (k
=i
;b
->options
[k
];k
++) {
345 b
->options
[k
] = b
->options
[k
+1];
354 /* Endpoint is first option */
355 b
->endpoint
= b
->options
[0];
356 if (strlen(b
->endpoint
) == 0) b
->endpoint
= NULL
;
358 for (i
=0;b
->options
[i
];i
++) {
359 b
->options
[i
] = b
->options
[i
+1];
363 if (b
->options
[0] == NULL
)
370 _PUBLIC_ NTSTATUS
dcerpc_floor_get_lhs_data(const struct epm_floor
*epm_floor
,
371 struct ndr_syntax_id
*syntax
)
373 TALLOC_CTX
*mem_ctx
= talloc_init("floor_get_lhs_data");
374 struct ndr_pull
*ndr
;
375 enum ndr_err_code ndr_err
;
376 uint16_t if_version
=0;
378 ndr
= ndr_pull_init_blob(&epm_floor
->lhs
.lhs_data
, mem_ctx
, NULL
);
380 talloc_free(mem_ctx
);
381 return NT_STATUS_NO_MEMORY
;
383 ndr
->flags
|= LIBNDR_FLAG_NOALIGN
;
385 ndr_err
= ndr_pull_GUID(ndr
, NDR_SCALARS
| NDR_BUFFERS
, &syntax
->uuid
);
386 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
387 talloc_free(mem_ctx
);
388 return ndr_map_error2ntstatus(ndr_err
);
391 ndr_err
= ndr_pull_uint16(ndr
, NDR_SCALARS
, &if_version
);
392 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
393 talloc_free(mem_ctx
);
394 return ndr_map_error2ntstatus(ndr_err
);
397 syntax
->if_version
= if_version
;
399 talloc_free(mem_ctx
);
404 static DATA_BLOB
dcerpc_floor_pack_lhs_data(TALLOC_CTX
*mem_ctx
, const struct ndr_syntax_id
*syntax
)
406 struct ndr_push
*ndr
= ndr_push_init_ctx(mem_ctx
, NULL
);
408 ndr
->flags
|= LIBNDR_FLAG_NOALIGN
;
410 ndr_push_GUID(ndr
, NDR_SCALARS
| NDR_BUFFERS
, &syntax
->uuid
);
411 ndr_push_uint16(ndr
, NDR_SCALARS
, syntax
->if_version
);
413 return ndr_push_blob(ndr
);
416 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX
*mem_ctx
, struct epm_floor
*epm_floor
)
418 switch (epm_floor
->lhs
.protocol
) {
419 case EPM_PROTOCOL_TCP
:
420 if (epm_floor
->rhs
.tcp
.port
== 0) return NULL
;
421 return talloc_asprintf(mem_ctx
, "%d", epm_floor
->rhs
.tcp
.port
);
423 case EPM_PROTOCOL_UDP
:
424 if (epm_floor
->rhs
.udp
.port
== 0) return NULL
;
425 return talloc_asprintf(mem_ctx
, "%d", epm_floor
->rhs
.udp
.port
);
427 case EPM_PROTOCOL_HTTP
:
428 if (epm_floor
->rhs
.http
.port
== 0) return NULL
;
429 return talloc_asprintf(mem_ctx
, "%d", epm_floor
->rhs
.http
.port
);
431 case EPM_PROTOCOL_IP
:
432 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.ip
.ipaddr
);
434 case EPM_PROTOCOL_NCACN
:
437 case EPM_PROTOCOL_NCADG
:
440 case EPM_PROTOCOL_SMB
:
441 if (strlen(epm_floor
->rhs
.smb
.unc
) == 0) return NULL
;
442 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.smb
.unc
);
444 case EPM_PROTOCOL_NAMED_PIPE
:
445 if (strlen(epm_floor
->rhs
.named_pipe
.path
) == 0) return NULL
;
446 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.named_pipe
.path
);
448 case EPM_PROTOCOL_NETBIOS
:
449 if (strlen(epm_floor
->rhs
.netbios
.name
) == 0) return NULL
;
450 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.netbios
.name
);
452 case EPM_PROTOCOL_NCALRPC
:
455 case EPM_PROTOCOL_VINES_SPP
:
456 return talloc_asprintf(mem_ctx
, "%d", epm_floor
->rhs
.vines_spp
.port
);
458 case EPM_PROTOCOL_VINES_IPC
:
459 return talloc_asprintf(mem_ctx
, "%d", epm_floor
->rhs
.vines_ipc
.port
);
461 case EPM_PROTOCOL_STREETTALK
:
462 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.streettalk
.streettalk
);
464 case EPM_PROTOCOL_UNIX_DS
:
465 if (strlen(epm_floor
->rhs
.unix_ds
.path
) == 0) return NULL
;
466 return talloc_strdup(mem_ctx
, epm_floor
->rhs
.unix_ds
.path
);
468 case EPM_PROTOCOL_NULL
:
472 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor
->lhs
.protocol
));
479 static NTSTATUS
dcerpc_floor_set_rhs_data(TALLOC_CTX
*mem_ctx
,
480 struct epm_floor
*epm_floor
,
483 switch (epm_floor
->lhs
.protocol
) {
484 case EPM_PROTOCOL_TCP
:
485 epm_floor
->rhs
.tcp
.port
= atoi(data
);
488 case EPM_PROTOCOL_UDP
:
489 epm_floor
->rhs
.udp
.port
= atoi(data
);
492 case EPM_PROTOCOL_HTTP
:
493 epm_floor
->rhs
.http
.port
= atoi(data
);
496 case EPM_PROTOCOL_IP
:
497 epm_floor
->rhs
.ip
.ipaddr
= talloc_strdup(mem_ctx
, data
);
498 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.ip
.ipaddr
);
501 case EPM_PROTOCOL_NCACN
:
502 epm_floor
->rhs
.ncacn
.minor_version
= 0;
505 case EPM_PROTOCOL_NCADG
:
506 epm_floor
->rhs
.ncadg
.minor_version
= 0;
509 case EPM_PROTOCOL_SMB
:
510 epm_floor
->rhs
.smb
.unc
= talloc_strdup(mem_ctx
, data
);
511 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.smb
.unc
);
514 case EPM_PROTOCOL_NAMED_PIPE
:
515 epm_floor
->rhs
.named_pipe
.path
= talloc_strdup(mem_ctx
, data
);
516 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.named_pipe
.path
);
519 case EPM_PROTOCOL_NETBIOS
:
520 epm_floor
->rhs
.netbios
.name
= talloc_strdup(mem_ctx
, data
);
521 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.netbios
.name
);
524 case EPM_PROTOCOL_NCALRPC
:
527 case EPM_PROTOCOL_VINES_SPP
:
528 epm_floor
->rhs
.vines_spp
.port
= atoi(data
);
531 case EPM_PROTOCOL_VINES_IPC
:
532 epm_floor
->rhs
.vines_ipc
.port
= atoi(data
);
535 case EPM_PROTOCOL_STREETTALK
:
536 epm_floor
->rhs
.streettalk
.streettalk
= talloc_strdup(mem_ctx
, data
);
537 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.streettalk
.streettalk
);
540 case EPM_PROTOCOL_UNIX_DS
:
541 epm_floor
->rhs
.unix_ds
.path
= talloc_strdup(mem_ctx
, data
);
542 NT_STATUS_HAVE_NO_MEMORY(epm_floor
->rhs
.unix_ds
.path
);
545 case EPM_PROTOCOL_NULL
:
549 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor
->lhs
.protocol
));
553 return NT_STATUS_NOT_SUPPORTED
;
556 enum dcerpc_transport_t
dcerpc_transport_by_endpoint_protocol(int prot
)
560 /* Find a transport that has 'prot' as 4th protocol */
561 for (i
=0;i
<ARRAY_SIZE(transports
);i
++) {
562 if (transports
[i
].num_protocols
>= 2 &&
563 transports
[i
].protseq
[1] == prot
) {
564 return transports
[i
].transport
;
568 /* Unknown transport */
569 return (unsigned int)-1;
572 _PUBLIC_
enum dcerpc_transport_t
dcerpc_transport_by_tower(const struct epm_tower
*tower
)
576 /* Find a transport that matches this tower */
577 for (i
=0;i
<ARRAY_SIZE(transports
);i
++) {
579 if (transports
[i
].num_protocols
!= tower
->num_floors
- 2) {
583 for (j
= 0; j
< transports
[i
].num_protocols
; j
++) {
584 if (transports
[i
].protseq
[j
] != tower
->floors
[j
+2].lhs
.protocol
) {
589 if (j
== transports
[i
].num_protocols
) {
590 return transports
[i
].transport
;
594 /* Unknown transport */
595 return (unsigned int)-1;
598 _PUBLIC_
const char *derpc_transport_string_by_transport(enum dcerpc_transport_t t
)
602 for (i
=0; i
<ARRAY_SIZE(transports
); i
++) {
603 if (t
== transports
[i
].transport
) {
604 return transports
[i
].name
;
610 _PUBLIC_ NTSTATUS
dcerpc_binding_from_tower(TALLOC_CTX
*mem_ctx
,
611 struct epm_tower
*tower
,
612 struct dcerpc_binding
**b_out
)
615 struct dcerpc_binding
*binding
;
617 binding
= talloc(mem_ctx
, struct dcerpc_binding
);
618 NT_STATUS_HAVE_NO_MEMORY(binding
);
620 ZERO_STRUCT(binding
->object
);
621 binding
->options
= NULL
;
622 binding
->host
= NULL
;
623 binding
->target_hostname
= NULL
;
625 binding
->assoc_group_id
= 0;
627 binding
->transport
= dcerpc_transport_by_tower(tower
);
629 if (binding
->transport
== (unsigned int)-1) {
630 return NT_STATUS_NOT_SUPPORTED
;
633 if (tower
->num_floors
< 1) {
637 /* Set object uuid */
638 status
= dcerpc_floor_get_lhs_data(&tower
->floors
[0], &binding
->object
);
640 if (!NT_STATUS_IS_OK(status
)) {
641 DEBUG(1, ("Error pulling object uuid and version: %s", nt_errstr(status
)));
645 /* Ignore floor 1, it contains the NDR version info */
647 binding
->options
= NULL
;
650 if (tower
->num_floors
>= 4) {
651 binding
->endpoint
= dcerpc_floor_get_rhs_data(mem_ctx
, &tower
->floors
[3]);
653 binding
->endpoint
= NULL
;
656 /* Set network address */
657 if (tower
->num_floors
>= 5) {
658 binding
->host
= dcerpc_floor_get_rhs_data(mem_ctx
, &tower
->floors
[4]);
659 NT_STATUS_HAVE_NO_MEMORY(binding
->host
);
660 binding
->target_hostname
= binding
->host
;
666 _PUBLIC_ NTSTATUS
dcerpc_binding_build_tower(TALLOC_CTX
*mem_ctx
,
667 const struct dcerpc_binding
*binding
,
668 struct epm_tower
*tower
)
670 const enum epm_protocol
*protseq
= NULL
;
671 int num_protocols
= -1, i
;
675 for (i
=0;i
<ARRAY_SIZE(transports
);i
++) {
676 if (transports
[i
].transport
== binding
->transport
) {
677 protseq
= transports
[i
].protseq
;
678 num_protocols
= transports
[i
].num_protocols
;
683 if (num_protocols
== -1) {
684 DEBUG(0, ("Unable to find transport with id '%d'\n", binding
->transport
));
685 return NT_STATUS_UNSUCCESSFUL
;
688 tower
->num_floors
= 2 + num_protocols
;
689 tower
->floors
= talloc_array(mem_ctx
, struct epm_floor
, tower
->num_floors
);
692 tower
->floors
[0].lhs
.protocol
= EPM_PROTOCOL_UUID
;
694 tower
->floors
[0].lhs
.lhs_data
= dcerpc_floor_pack_lhs_data(mem_ctx
, &binding
->object
);
696 tower
->floors
[0].rhs
.uuid
.unknown
= data_blob_talloc_zero(mem_ctx
, 2);
699 tower
->floors
[1].lhs
.protocol
= EPM_PROTOCOL_UUID
;
701 tower
->floors
[1].lhs
.lhs_data
= dcerpc_floor_pack_lhs_data(mem_ctx
,
702 &ndr_transfer_syntax
);
704 tower
->floors
[1].rhs
.uuid
.unknown
= data_blob_talloc_zero(mem_ctx
, 2);
706 /* Floor 2 to num_protocols */
707 for (i
= 0; i
< num_protocols
; i
++) {
708 tower
->floors
[2 + i
].lhs
.protocol
= protseq
[i
];
709 tower
->floors
[2 + i
].lhs
.lhs_data
= data_blob_talloc(mem_ctx
, NULL
, 0);
710 ZERO_STRUCT(tower
->floors
[2 + i
].rhs
);
711 dcerpc_floor_set_rhs_data(mem_ctx
, &tower
->floors
[2 + i
], "");
714 /* The 4th floor contains the endpoint */
715 if (num_protocols
>= 2 && binding
->endpoint
) {
716 status
= dcerpc_floor_set_rhs_data(mem_ctx
, &tower
->floors
[3], binding
->endpoint
);
717 if (NT_STATUS_IS_ERR(status
)) {
722 /* The 5th contains the network address */
723 if (num_protocols
>= 3 && binding
->host
) {
724 if (is_ipaddress(binding
->host
)) {
725 status
= dcerpc_floor_set_rhs_data(mem_ctx
, &tower
->floors
[4],
728 /* note that we don't attempt to resolve the
729 name here - when we get a hostname here we
730 are in the client code, and want to put in
731 a wildcard all-zeros IP for the server to
733 status
= dcerpc_floor_set_rhs_data(mem_ctx
, &tower
->floors
[4],
736 if (NT_STATUS_IS_ERR(status
)) {