3f15eef926e80a68511c747aedb281302a40b230
[samba.git] / librpc / rpc / binding.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    dcerpc utility functions
5
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
10
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.
15
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.
20
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/>.
23 */
24
25 #include "includes.h"
26 #include "librpc/gen_ndr/ndr_epmapper.h"
27 #include "librpc/gen_ndr/ndr_misc.h"
28 #include "librpc/rpc/dcerpc.h"
29 #undef strcasecmp
30
31 #define MAX_PROTSEQ             10
32
33 static const struct {
34         const char *name;
35         enum dcerpc_transport_t transport;
36         int num_protocols;
37         enum epm_protocol protseq[MAX_PROTSEQ];
38 } transports[] = {
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 },
63         },
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 },
69         },
70 };
71
72 static const struct {
73         const char *name;
74         uint32_t flag;
75 } ncacn_options[] = {
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}
89 };
90
91 const char *epm_floor_string(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor)
92 {
93         struct ndr_syntax_id syntax;
94         NTSTATUS status;
95
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 */
101                                 char *uuidstr;
102
103                                 if (GUID_equal(&syntax.uuid, &ndr_transfer_syntax.uuid)) {
104                                         return "NDR";
105                                 } 
106
107                                 if (GUID_equal(&syntax.uuid, &ndr64_transfer_syntax.uuid)) {
108                                         return "NDR64";
109                                 } 
110
111                                 uuidstr = GUID_string(mem_ctx, &syntax.uuid);
112
113                                 return talloc_asprintf(mem_ctx, " uuid %s/0x%02x", uuidstr, syntax.if_version);
114                         } else { /* IPX */
115                                 return talloc_asprintf(mem_ctx, "IPX:%s", 
116                                                 data_blob_hex_string_upper(mem_ctx, &epm_floor->rhs.uuid.unknown));
117                         }
118
119                 case EPM_PROTOCOL_NCACN:
120                         return "RPC-C";
121
122                 case EPM_PROTOCOL_NCADG:
123                         return "RPC";
124
125                 case EPM_PROTOCOL_NCALRPC:
126                         return "NCALRPC";
127
128                 case EPM_PROTOCOL_DNET_NSP:
129                         return "DNET/NSP";
130
131                 case EPM_PROTOCOL_IP:
132                         return talloc_asprintf(mem_ctx, "IP:%s", epm_floor->rhs.ip.ipaddr);
133
134                 case EPM_PROTOCOL_NAMED_PIPE:
135                         return talloc_asprintf(mem_ctx, "NAMED-PIPE:%s", epm_floor->rhs.named_pipe.path);
136
137                 case EPM_PROTOCOL_SMB:
138                         return talloc_asprintf(mem_ctx, "SMB:%s", epm_floor->rhs.smb.unc);
139
140                 case EPM_PROTOCOL_UNIX_DS:
141                         return talloc_asprintf(mem_ctx, "Unix:%s", epm_floor->rhs.unix_ds.path);
142
143                 case EPM_PROTOCOL_NETBIOS:
144                         return talloc_asprintf(mem_ctx, "NetBIOS:%s", epm_floor->rhs.netbios.name);
145
146                 case EPM_PROTOCOL_NETBEUI:
147                         return "NETBeui";
148
149                 case EPM_PROTOCOL_SPX:
150                         return "SPX";
151
152                 case EPM_PROTOCOL_NB_IPX:
153                         return "NB_IPX";
154
155                 case EPM_PROTOCOL_HTTP:
156                         return talloc_asprintf(mem_ctx, "HTTP:%d", epm_floor->rhs.http.port);
157
158                 case EPM_PROTOCOL_TCP:
159                         return talloc_asprintf(mem_ctx, "TCP:%d", epm_floor->rhs.tcp.port);
160
161                 case EPM_PROTOCOL_UDP:
162                         return talloc_asprintf(mem_ctx, "UDP:%d", epm_floor->rhs.udp.port);
163
164                 default:
165                         return talloc_asprintf(mem_ctx, "UNK(%02x):", epm_floor->lhs.protocol);
166         }
167 }
168
169
170 /*
171   form a binding string from a binding structure
172 */
173 _PUBLIC_ char *dcerpc_binding_string(TALLOC_CTX *mem_ctx, const struct dcerpc_binding *b)
174 {
175         char *s = talloc_strdup(mem_ctx, "");
176         int i;
177         const char *t_name = NULL;
178
179         if (b->transport != NCA_UNKNOWN) {
180                 t_name = derpc_transport_string_by_transport(b->transport);
181                 if (!t_name) {
182                         return NULL;
183                 }
184         }
185
186         if (!GUID_all_zero(&b->object.uuid)) { 
187                 s = talloc_asprintf(s, "%s@",
188                                     GUID_string(mem_ctx, &b->object.uuid));
189         }
190
191         if (t_name != NULL) {
192                 s = talloc_asprintf_append_buffer(s, "%s:", t_name);
193                 if (s == NULL) {
194                         return NULL;
195                 }
196         }
197
198         if (b->host) {
199                 s = talloc_asprintf_append_buffer(s, "%s", b->host);
200         }
201
202         if (!b->endpoint && !b->options && !b->flags) {
203                 return s;
204         }
205
206         s = talloc_asprintf_append_buffer(s, "[");
207
208         if (b->endpoint) {
209                 s = talloc_asprintf_append_buffer(s, "%s", b->endpoint);
210         }
211
212         /* this is a *really* inefficent way of dealing with strings,
213            but this is rarely called and the strings are always short,
214            so I don't care */
215         for (i=0;b->options && b->options[i];i++) {
216                 s = talloc_asprintf_append_buffer(s, ",%s", b->options[i]);
217                 if (!s) return NULL;
218         }
219
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);
223                         if (!s) return NULL;
224                 }
225         }
226
227         s = talloc_asprintf_append_buffer(s, "]");
228
229         return s;
230 }
231
232 /*
233   parse a binding string into a dcerpc_binding structure
234 */
235 _PUBLIC_ NTSTATUS dcerpc_parse_binding(TALLOC_CTX *mem_ctx, const char *s, struct dcerpc_binding **b_out)
236 {
237         struct dcerpc_binding *b;
238         char *options;
239         char *p;
240         int i, j, comma_count;
241
242         b = talloc(mem_ctx, struct dcerpc_binding);
243         if (!b) {
244                 return NT_STATUS_NO_MEMORY;
245         }
246
247         p = strchr(s, '@');
248
249         if (p && PTR_DIFF(p, s) == 36) { /* 36 is the length of a UUID */
250                 NTSTATUS status;
251                 DATA_BLOB blob = data_blob(s, 36);
252                 status = GUID_from_data_blob(&blob, &b->object.uuid);
253
254                 if (NT_STATUS_IS_ERR(status)) {
255                         DEBUG(0, ("Failed parsing UUID\n"));
256                         return status;
257                 }
258
259                 s = p + 1;
260         } else {
261                 ZERO_STRUCT(b->object);
262         }
263
264         b->object.if_version = 0;
265
266         p = strchr(s, ':');
267
268         if (p == NULL) {
269                 b->transport = NCA_UNKNOWN;
270         } else {
271                 char *type = talloc_strndup(mem_ctx, s, PTR_DIFF(p, s));
272                 if (!type) {
273                         return NT_STATUS_NO_MEMORY;
274                 }
275
276                 for (i=0;i<ARRAY_SIZE(transports);i++) {
277                         if (strcasecmp(type, transports[i].name) == 0) {
278                                 b->transport = transports[i].transport;
279                                 break;
280                         }
281                 }
282
283                 if (i==ARRAY_SIZE(transports)) {
284                         DEBUG(0,("Unknown dcerpc transport '%s'\n", type));
285                         return NT_STATUS_INVALID_PARAMETER;
286                 }
287
288                 talloc_free(type);
289
290                 s = p+1;
291         }
292
293         p = strchr(s, '[');
294         if (p) {
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;
299                 }
300                 options[strlen(options)-1] = 0;
301         } else {
302                 b->host = talloc_strdup(b, s);
303                 options = NULL;
304         }
305         if (!b->host) {
306                 return NT_STATUS_NO_MEMORY;
307         }
308
309         b->target_hostname = b->host;
310
311         b->options = NULL;
312         b->flags = 0;
313         b->assoc_group_id = 0;
314         b->endpoint = NULL;
315
316         if (!options) {
317                 *b_out = b;
318                 return NT_STATUS_OK;
319         }
320
321         comma_count = count_chars(options, ',');
322
323         b->options = talloc_array(b, const char *, comma_count+2);
324         if (!b->options) {
325                 return NT_STATUS_NO_MEMORY;
326         }
327
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;
332                 }
333                 options = p+1;
334         }
335         b->options[i] = options;
336         b->options[i+1] = NULL;
337
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) {
342                                 int k;
343                                 b->flags |= ncacn_options[j].flag;
344                                 for (k=i;b->options[k];k++) {
345                                         b->options[k] = b->options[k+1];
346                                 }
347                                 i--;
348                                 break;
349                         }
350                 }
351         }
352
353         if (b->options[0]) {
354                 /* Endpoint is first option */
355                 b->endpoint = b->options[0];
356                 if (strlen(b->endpoint) == 0) b->endpoint = NULL;
357
358                 for (i=0;b->options[i];i++) {
359                         b->options[i] = b->options[i+1];
360                 }
361         }
362
363         if (b->options[0] == NULL)
364                 b->options = NULL;
365
366         *b_out = b;
367         return NT_STATUS_OK;
368 }
369
370 _PUBLIC_ NTSTATUS dcerpc_floor_get_lhs_data(const struct epm_floor *epm_floor,
371                                             struct ndr_syntax_id *syntax)
372 {
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;
377
378         ndr = ndr_pull_init_blob(&epm_floor->lhs.lhs_data, mem_ctx, NULL);
379         if (ndr == NULL) {
380                 talloc_free(mem_ctx);
381                 return NT_STATUS_NO_MEMORY;
382         }
383         ndr->flags |= LIBNDR_FLAG_NOALIGN;
384
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);
389         }
390
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);
395         }
396
397         syntax->if_version = if_version;
398
399         talloc_free(mem_ctx);
400
401         return NT_STATUS_OK;
402 }
403
404 static DATA_BLOB dcerpc_floor_pack_lhs_data(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *syntax)
405 {
406         DATA_BLOB blob;
407         struct ndr_push *ndr = ndr_push_init_ctx(mem_ctx, NULL);
408
409         ndr->flags |= LIBNDR_FLAG_NOALIGN;
410
411         ndr_push_GUID(ndr, NDR_SCALARS | NDR_BUFFERS, &syntax->uuid);
412         ndr_push_uint16(ndr, NDR_SCALARS, syntax->if_version);
413
414         blob = ndr_push_blob(ndr);
415         talloc_steal(mem_ctx, blob.data);
416         talloc_free(ndr);
417         return blob;
418 }
419
420 static DATA_BLOB dcerpc_floor_pack_rhs_if_version_data(TALLOC_CTX *mem_ctx, const struct ndr_syntax_id *syntax)
421 {
422         DATA_BLOB blob;
423         struct ndr_push *ndr = ndr_push_init_ctx(mem_ctx, NULL);
424
425         ndr->flags |= LIBNDR_FLAG_NOALIGN;
426
427         ndr_push_uint16(ndr, NDR_SCALARS, syntax->if_version >> 16);
428
429         blob = ndr_push_blob(ndr);
430         talloc_steal(mem_ctx, blob.data);
431         talloc_free(ndr);
432         return blob;
433 }
434
435 const char *dcerpc_floor_get_rhs_data(TALLOC_CTX *mem_ctx, struct epm_floor *epm_floor)
436 {
437         switch (epm_floor->lhs.protocol) {
438         case EPM_PROTOCOL_TCP:
439                 if (epm_floor->rhs.tcp.port == 0) return NULL;
440                 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.tcp.port);
441
442         case EPM_PROTOCOL_UDP:
443                 if (epm_floor->rhs.udp.port == 0) return NULL;
444                 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.udp.port);
445
446         case EPM_PROTOCOL_HTTP:
447                 if (epm_floor->rhs.http.port == 0) return NULL;
448                 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.http.port);
449
450         case EPM_PROTOCOL_IP:
451                 return talloc_strdup(mem_ctx, epm_floor->rhs.ip.ipaddr);
452
453         case EPM_PROTOCOL_NCACN:
454                 return NULL;
455
456         case EPM_PROTOCOL_NCADG:
457                 return NULL;
458
459         case EPM_PROTOCOL_SMB:
460                 if (strlen(epm_floor->rhs.smb.unc) == 0) return NULL;
461                 return talloc_strdup(mem_ctx, epm_floor->rhs.smb.unc);
462
463         case EPM_PROTOCOL_NAMED_PIPE:
464                 if (strlen(epm_floor->rhs.named_pipe.path) == 0) return NULL;
465                 return talloc_strdup(mem_ctx, epm_floor->rhs.named_pipe.path);
466
467         case EPM_PROTOCOL_NETBIOS:
468                 if (strlen(epm_floor->rhs.netbios.name) == 0) return NULL;
469                 return talloc_strdup(mem_ctx, epm_floor->rhs.netbios.name);
470
471         case EPM_PROTOCOL_NCALRPC:
472                 return NULL;
473
474         case EPM_PROTOCOL_VINES_SPP:
475                 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.vines_spp.port);
476
477         case EPM_PROTOCOL_VINES_IPC:
478                 return talloc_asprintf(mem_ctx, "%d", epm_floor->rhs.vines_ipc.port);
479
480         case EPM_PROTOCOL_STREETTALK:
481                 return talloc_strdup(mem_ctx, epm_floor->rhs.streettalk.streettalk);
482
483         case EPM_PROTOCOL_UNIX_DS:
484                 if (strlen(epm_floor->rhs.unix_ds.path) == 0) return NULL;
485                 return talloc_strdup(mem_ctx, epm_floor->rhs.unix_ds.path);
486
487         case EPM_PROTOCOL_NULL:
488                 return NULL;
489
490         default:
491                 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor->lhs.protocol));
492                 break;
493         }
494
495         return NULL;
496 }
497
498 static NTSTATUS dcerpc_floor_set_rhs_data(TALLOC_CTX *mem_ctx, 
499                                           struct epm_floor *epm_floor,  
500                                           const char *data)
501 {
502         switch (epm_floor->lhs.protocol) {
503         case EPM_PROTOCOL_TCP:
504                 epm_floor->rhs.tcp.port = atoi(data);
505                 return NT_STATUS_OK;
506
507         case EPM_PROTOCOL_UDP:
508                 epm_floor->rhs.udp.port = atoi(data);
509                 return NT_STATUS_OK;
510
511         case EPM_PROTOCOL_HTTP:
512                 epm_floor->rhs.http.port = atoi(data);
513                 return NT_STATUS_OK;
514
515         case EPM_PROTOCOL_IP:
516                 epm_floor->rhs.ip.ipaddr = talloc_strdup(mem_ctx, data);
517                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.ip.ipaddr);
518                 return NT_STATUS_OK;
519
520         case EPM_PROTOCOL_NCACN:
521                 epm_floor->rhs.ncacn.minor_version = 0;
522                 return NT_STATUS_OK;
523
524         case EPM_PROTOCOL_NCADG:
525                 epm_floor->rhs.ncadg.minor_version = 0;
526                 return NT_STATUS_OK;
527
528         case EPM_PROTOCOL_SMB:
529                 epm_floor->rhs.smb.unc = talloc_strdup(mem_ctx, data);
530                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.smb.unc);
531                 return NT_STATUS_OK;
532
533         case EPM_PROTOCOL_NAMED_PIPE:
534                 epm_floor->rhs.named_pipe.path = talloc_strdup(mem_ctx, data);
535                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.named_pipe.path);
536                 return NT_STATUS_OK;
537
538         case EPM_PROTOCOL_NETBIOS:
539                 epm_floor->rhs.netbios.name = talloc_strdup(mem_ctx, data);
540                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.netbios.name);
541                 return NT_STATUS_OK;
542
543         case EPM_PROTOCOL_NCALRPC:
544                 return NT_STATUS_OK;
545
546         case EPM_PROTOCOL_VINES_SPP:
547                 epm_floor->rhs.vines_spp.port = atoi(data);
548                 return NT_STATUS_OK;
549
550         case EPM_PROTOCOL_VINES_IPC:
551                 epm_floor->rhs.vines_ipc.port = atoi(data);
552                 return NT_STATUS_OK;
553
554         case EPM_PROTOCOL_STREETTALK:
555                 epm_floor->rhs.streettalk.streettalk = talloc_strdup(mem_ctx, data);
556                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.streettalk.streettalk);
557                 return NT_STATUS_OK;
558
559         case EPM_PROTOCOL_UNIX_DS:
560                 epm_floor->rhs.unix_ds.path = talloc_strdup(mem_ctx, data);
561                 NT_STATUS_HAVE_NO_MEMORY(epm_floor->rhs.unix_ds.path);
562                 return NT_STATUS_OK;
563
564         case EPM_PROTOCOL_NULL:
565                 return NT_STATUS_OK;
566
567         default:
568                 DEBUG(0,("Unsupported lhs protocol %d\n", epm_floor->lhs.protocol));
569                 break;
570         }
571
572         return NT_STATUS_NOT_SUPPORTED;
573 }
574
575 enum dcerpc_transport_t dcerpc_transport_by_endpoint_protocol(int prot)
576 {
577         int i;
578
579         /* Find a transport that has 'prot' as 4th protocol */
580         for (i=0;i<ARRAY_SIZE(transports);i++) {
581                 if (transports[i].num_protocols >= 2 && 
582                         transports[i].protseq[1] == prot) {
583                         return transports[i].transport;
584                 }
585         }
586
587         /* Unknown transport */
588         return (unsigned int)-1;
589 }
590
591 _PUBLIC_ enum dcerpc_transport_t dcerpc_transport_by_tower(const struct epm_tower *tower)
592 {
593         int i;
594
595         /* Find a transport that matches this tower */
596         for (i=0;i<ARRAY_SIZE(transports);i++) {
597                 int j;
598                 if (transports[i].num_protocols != tower->num_floors - 2) {
599                         continue; 
600                 }
601
602                 for (j = 0; j < transports[i].num_protocols; j++) {
603                         if (transports[i].protseq[j] != tower->floors[j+2].lhs.protocol) {
604                                 break;
605                         }
606                 }
607
608                 if (j == transports[i].num_protocols) {
609                         return transports[i].transport;
610                 }
611         }
612
613         /* Unknown transport */
614         return (unsigned int)-1;
615 }
616
617 _PUBLIC_ const char *derpc_transport_string_by_transport(enum dcerpc_transport_t t)
618 {
619         int i;
620
621         for (i=0; i<ARRAY_SIZE(transports); i++) {
622                 if (t == transports[i].transport) {
623                         return transports[i].name;
624                 }
625         }
626         return NULL;
627 }
628
629 _PUBLIC_ NTSTATUS dcerpc_binding_from_tower(TALLOC_CTX *mem_ctx, 
630                                    struct epm_tower *tower, 
631                                    struct dcerpc_binding **b_out)
632 {
633         NTSTATUS status;
634         struct dcerpc_binding *binding;
635
636         binding = talloc(mem_ctx, struct dcerpc_binding);
637         NT_STATUS_HAVE_NO_MEMORY(binding);
638
639         ZERO_STRUCT(binding->object);
640         binding->options = NULL;
641         binding->host = NULL;
642         binding->target_hostname = NULL;
643         binding->flags = 0;
644         binding->assoc_group_id = 0;
645
646         binding->transport = dcerpc_transport_by_tower(tower);
647
648         if (binding->transport == (unsigned int)-1) {
649                 return NT_STATUS_NOT_SUPPORTED;
650         }
651
652         if (tower->num_floors < 1) {
653                 return NT_STATUS_OK;
654         }
655
656         /* Set object uuid */
657         status = dcerpc_floor_get_lhs_data(&tower->floors[0], &binding->object);
658
659         if (!NT_STATUS_IS_OK(status)) {
660                 DEBUG(1, ("Error pulling object uuid and version: %s", nt_errstr(status)));     
661                 return status;
662         }
663
664         /* Ignore floor 1, it contains the NDR version info */
665
666         binding->options = NULL;
667
668         /* Set endpoint */
669         if (tower->num_floors >= 4) {
670                 binding->endpoint = dcerpc_floor_get_rhs_data(mem_ctx, &tower->floors[3]);
671         } else {
672                 binding->endpoint = NULL;
673         }
674
675         /* Set network address */
676         if (tower->num_floors >= 5) {
677                 binding->host = dcerpc_floor_get_rhs_data(mem_ctx, &tower->floors[4]);
678                 NT_STATUS_HAVE_NO_MEMORY(binding->host);
679                 binding->target_hostname = binding->host;
680         }
681         *b_out = binding;
682         return NT_STATUS_OK;
683 }
684
685 _PUBLIC_ NTSTATUS dcerpc_binding_build_tower(TALLOC_CTX *mem_ctx,
686                                              const struct dcerpc_binding *binding,
687                                              struct epm_tower *tower)
688 {
689         const enum epm_protocol *protseq = NULL;
690         int num_protocols = -1, i;
691         NTSTATUS status;
692
693         /* Find transport */
694         for (i=0;i<ARRAY_SIZE(transports);i++) {
695                 if (transports[i].transport == binding->transport) {
696                         protseq = transports[i].protseq;
697                         num_protocols = transports[i].num_protocols;
698                         break;
699                 }
700         }
701
702         if (num_protocols == -1) {
703                 DEBUG(0, ("Unable to find transport with id '%d'\n", binding->transport));
704                 return NT_STATUS_UNSUCCESSFUL;
705         }
706
707         tower->num_floors = 2 + num_protocols;
708         tower->floors = talloc_array(mem_ctx, struct epm_floor, tower->num_floors);
709
710         /* Floor 0 */
711         tower->floors[0].lhs.protocol = EPM_PROTOCOL_UUID;
712
713         tower->floors[0].lhs.lhs_data = dcerpc_floor_pack_lhs_data(tower->floors, &binding->object);
714
715         tower->floors[0].rhs.uuid.unknown = dcerpc_floor_pack_rhs_if_version_data(tower->floors, &binding->object);
716
717         /* Floor 1 */
718         tower->floors[1].lhs.protocol = EPM_PROTOCOL_UUID;
719
720         tower->floors[1].lhs.lhs_data = dcerpc_floor_pack_lhs_data(tower->floors, 
721                                                                 &ndr_transfer_syntax);
722
723         tower->floors[1].rhs.uuid.unknown = data_blob_talloc_zero(tower->floors, 2);
724
725         /* Floor 2 to num_protocols */
726         for (i = 0; i < num_protocols; i++) {
727                 tower->floors[2 + i].lhs.protocol = protseq[i];
728                 tower->floors[2 + i].lhs.lhs_data = data_blob_talloc(tower->floors, NULL, 0);
729                 ZERO_STRUCT(tower->floors[2 + i].rhs);
730                 dcerpc_floor_set_rhs_data(tower->floors, &tower->floors[2 + i], "");
731         }
732
733         /* The 4th floor contains the endpoint */
734         if (num_protocols >= 2 && binding->endpoint) {
735                 status = dcerpc_floor_set_rhs_data(tower->floors, &tower->floors[3], binding->endpoint);
736                 if (NT_STATUS_IS_ERR(status)) {
737                         return status;
738                 }
739         }
740
741         /* The 5th contains the network address */
742         if (num_protocols >= 3 && binding->host) {
743                 if (is_ipaddress(binding->host)) {
744                         status = dcerpc_floor_set_rhs_data(tower->floors, &tower->floors[4], 
745                                                            binding->host);
746                 } else {
747                         /* note that we don't attempt to resolve the
748                            name here - when we get a hostname here we
749                            are in the client code, and want to put in
750                            a wildcard all-zeros IP for the server to
751                            fill in */
752                         status = dcerpc_floor_set_rhs_data(tower->floors, &tower->floors[4], 
753                                                            "0.0.0.0");
754                 }
755                 if (NT_STATUS_IS_ERR(status)) {
756                         return status;
757                 }
758         }
759
760         return NT_STATUS_OK;
761 }