Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-gmake3
[ira/wip.git] / source4 / librpc / rpc / dcerpc_util.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 "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"
34
35 /*
36   find a dcerpc call on an interface by name
37 */
38 const struct ndr_interface_call *dcerpc_iface_find_call(const struct ndr_interface_table *iface,
39                                                         const char *name)
40 {
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];
45                 }
46         }
47         return NULL;
48 }
49
50 /* 
51    push a ncacn_packet into a blob, potentially with auth info
52 */
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)
57 {
58         struct ndr_push *ndr;
59         enum ndr_err_code ndr_err;
60
61         ndr = ndr_push_init_ctx(mem_ctx, iconv_convenience);
62         if (!ndr) {
63                 return NT_STATUS_NO_MEMORY;
64         }
65
66         if (!(pkt->drep[0] & DCERPC_DREP_LE)) {
67                 ndr->flags |= LIBNDR_FLAG_BIGENDIAN;
68         }
69
70         if (pkt->pfc_flags & DCERPC_PFC_FLAG_OBJECT_UUID) {
71                 ndr->flags |= LIBNDR_FLAG_OBJECT_PRESENT;
72         }
73
74         if (auth_info) {
75                 pkt->auth_length = auth_info->credentials.length;
76         } else {
77                 pkt->auth_length = 0;
78         }
79
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);
83         }
84
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);
89                 }
90         }
91
92         *blob = ndr_push_blob(ndr);
93
94         /* fill in the frag length */
95         dcerpc_set_frag_length(blob, blob->length);
96
97         return NT_STATUS_OK;
98 }
99
100
101 struct epm_map_binding_state {
102         struct dcerpc_binding *binding;
103         const struct ndr_interface_table *table;
104         struct dcerpc_pipe *pipe;
105         struct policy_handle handle;
106         struct GUID guid;
107         struct epm_twr_t twr;
108         struct epm_twr_t *twr_r;
109         struct epm_Map r;
110 };
111
112
113 static void continue_epm_recv_binding(struct composite_context *ctx);
114 static void continue_epm_map(struct rpc_request *req);
115
116
117 /*
118   Stage 2 of epm_map_binding: Receive connected rpc pipe and send endpoint
119   mapping rpc request
120 */
121 static void continue_epm_recv_binding(struct composite_context *ctx)
122 {
123         struct rpc_request *map_req;
124
125         struct composite_context *c = talloc_get_type(ctx->async.private_data,
126                                                       struct composite_context);
127         struct epm_map_binding_state *s = talloc_get_type(c->private_data,
128                                                           struct epm_map_binding_state);
129
130         /* receive result of rpc pipe connect request */
131         c->status = dcerpc_pipe_connect_b_recv(ctx, c, &s->pipe);
132         if (!composite_is_ok(c)) return;
133
134         s->pipe->conn->flags |= DCERPC_NDR_REF_ALLOC;
135
136         /* prepare requested binding parameters */
137         s->binding->object         = s->table->syntax_id;
138
139         c->status = dcerpc_binding_build_tower(s->pipe, s->binding, &s->twr.tower);
140         if (!composite_is_ok(c)) return;
141         
142         /* with some nice pretty paper around it of course */
143         s->r.in.object        = &s->guid;
144         s->r.in.map_tower     = &s->twr;
145         s->r.in.entry_handle  = &s->handle;
146         s->r.in.max_towers    = 1;
147         s->r.out.entry_handle = &s->handle;
148
149         /* send request for an endpoint mapping - a rpc request on connected pipe */
150         map_req = dcerpc_epm_Map_send(s->pipe, c, &s->r);
151         if (composite_nomem(map_req, c)) return;
152         
153         composite_continue_rpc(c, map_req, continue_epm_map, c);
154 }
155
156
157 /*
158   Stage 3 of epm_map_binding: Receive endpoint mapping and provide binding details
159 */
160 static void continue_epm_map(struct rpc_request *req)
161 {
162         struct composite_context *c = talloc_get_type(req->async.private_data,
163                                                       struct composite_context);
164         struct epm_map_binding_state *s = talloc_get_type(c->private_data,
165                                                           struct epm_map_binding_state);
166
167         /* receive result of a rpc request */
168         c->status = dcerpc_ndr_request_recv(req);
169         if (!composite_is_ok(c)) return;
170
171         /* check the details */
172         if (s->r.out.result != 0 || *s->r.out.num_towers != 1) {
173                 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
174                 return;
175         }
176         
177         s->twr_r = s->r.out.towers[0].twr;
178         if (s->twr_r == NULL) {
179                 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
180                 return;
181         }
182
183         if (s->twr_r->tower.num_floors != s->twr.tower.num_floors ||
184             s->twr_r->tower.floors[3].lhs.protocol != s->twr.tower.floors[3].lhs.protocol) {
185                 composite_error(c, NT_STATUS_PORT_UNREACHABLE);
186                 return;
187         }
188
189         /* get received endpoint */
190         s->binding->endpoint = talloc_reference(s->binding,
191                                                 dcerpc_floor_get_rhs_data(c, &s->twr_r->tower.floors[3]));
192         if (composite_nomem(s->binding->endpoint, c)) return;
193
194         composite_done(c);
195 }
196
197
198 /*
199   Request for endpoint mapping of dcerpc binding - try to request for endpoint
200   unless there is default one.
201 */
202 struct composite_context *dcerpc_epm_map_binding_send(TALLOC_CTX *mem_ctx,
203                                                       struct dcerpc_binding *binding,
204                                                       const struct ndr_interface_table *table,
205                                                       struct event_context *ev,
206                                                       struct loadparm_context *lp_ctx)
207 {
208         struct composite_context *c;
209         struct epm_map_binding_state *s;
210         struct composite_context *pipe_connect_req;
211         struct cli_credentials *anon_creds;
212
213         NTSTATUS status;
214         struct dcerpc_binding *epmapper_binding;
215         int i;
216
217         if (ev == NULL) {
218                 return NULL;
219         }
220
221         /* composite context allocation and setup */
222         c = composite_create(mem_ctx, ev);
223         if (c == NULL) {
224                 return NULL;
225         }
226
227         s = talloc_zero(c, struct epm_map_binding_state);
228         if (composite_nomem(s, c)) return c;
229         c->private_data = s;
230
231         s->binding = binding;
232         s->table   = table;
233
234         /* anonymous credentials for rpc connection used to get endpoint mapping */
235         anon_creds = cli_credentials_init(mem_ctx);
236         cli_credentials_set_anonymous(anon_creds);
237
238         /*
239           First, check if there is a default endpoint specified in the IDL
240         */
241         if (table != NULL) {
242                 struct dcerpc_binding *default_binding;
243
244                 /* Find one of the default pipes for this interface */
245                 for (i = 0; i < table->endpoints->count; i++) {
246                         status = dcerpc_parse_binding(mem_ctx, table->endpoints->names[i], &default_binding);
247
248                         if (NT_STATUS_IS_OK(status)) {
249                                 if (binding->transport == NCA_UNKNOWN) 
250                                         binding->transport = default_binding->transport;
251                                 if (default_binding->transport == binding->transport && 
252                                         default_binding->endpoint) {
253                                         binding->endpoint = talloc_reference(binding, default_binding->endpoint);
254                                         talloc_free(default_binding);
255
256                                         composite_done(c);
257                                         return c;
258
259                                 } else {
260                                         talloc_free(default_binding);
261                                 }
262                         }
263                 }
264         }
265
266         epmapper_binding = talloc_zero(c, struct dcerpc_binding);
267         if (composite_nomem(epmapper_binding, c)) return c;
268
269         /* basic endpoint mapping data */
270         epmapper_binding->transport             = binding->transport;
271         epmapper_binding->host                  = talloc_reference(epmapper_binding, binding->host);
272         epmapper_binding->target_hostname       = epmapper_binding->host;
273         epmapper_binding->options               = NULL;
274         epmapper_binding->flags                 = 0;
275         epmapper_binding->assoc_group_id        = 0;
276         epmapper_binding->endpoint              = NULL;
277
278         /* initiate rpc pipe connection */
279         pipe_connect_req = dcerpc_pipe_connect_b_send(c, epmapper_binding, 
280                                                       &ndr_table_epmapper,
281                                                       anon_creds, c->event_ctx,
282                                                       lp_ctx);
283         if (composite_nomem(pipe_connect_req, c)) return c;
284         
285         composite_continue(c, pipe_connect_req, continue_epm_recv_binding, c);
286         return c;
287 }
288
289
290 /*
291   Receive result of endpoint mapping request
292  */
293 NTSTATUS dcerpc_epm_map_binding_recv(struct composite_context *c)
294 {
295         NTSTATUS status = composite_wait(c);
296         
297         talloc_free(c);
298         return status;
299 }
300
301
302 /*
303   Get endpoint mapping for rpc connection
304 */
305 _PUBLIC_ NTSTATUS dcerpc_epm_map_binding(TALLOC_CTX *mem_ctx, struct dcerpc_binding *binding,
306                                 const struct ndr_interface_table *table, struct event_context *ev,
307                                 struct loadparm_context *lp_ctx)
308 {
309         struct composite_context *c;
310
311         c = dcerpc_epm_map_binding_send(mem_ctx, binding, table, ev, lp_ctx);
312         return dcerpc_epm_map_binding_recv(c);
313 }
314
315
316 struct pipe_auth_state {
317         struct dcerpc_pipe *pipe;
318         struct dcerpc_binding *binding;
319         const struct ndr_interface_table *table;
320         struct loadparm_context *lp_ctx;
321         struct cli_credentials *credentials;
322 };
323
324
325 static void continue_auth_schannel(struct composite_context *ctx);
326 static void continue_auth(struct composite_context *ctx);
327 static void continue_auth_none(struct composite_context *ctx);
328 static void continue_ntlmssp_connection(struct composite_context *ctx);
329 static void continue_spnego_after_wrong_pass(struct composite_context *ctx);
330
331
332 /*
333   Stage 2 of pipe_auth: Receive result of schannel bind request
334 */
335 static void continue_auth_schannel(struct composite_context *ctx)
336 {
337         struct composite_context *c = talloc_get_type(ctx->async.private_data,
338                                                       struct composite_context);
339
340         c->status = dcerpc_bind_auth_schannel_recv(ctx);
341         if (!composite_is_ok(c)) return;
342
343         composite_done(c);
344 }
345
346
347 /*
348   Stage 2 of pipe_auth: Receive result of authenticated bind request
349 */
350 static void continue_auth(struct composite_context *ctx)
351 {
352         struct composite_context *c = talloc_get_type(ctx->async.private_data,
353                                                       struct composite_context);
354
355         c->status = dcerpc_bind_auth_recv(ctx);
356         if (!composite_is_ok(c)) return;
357         
358         composite_done(c);
359 }
360 /*
361   Stage 2 of pipe_auth: Receive result of authenticated bind request, but handle fallbacks:
362   SPNEGO -> NTLMSSP
363 */
364 static void continue_auth_auto(struct composite_context *ctx)
365 {
366         struct composite_context *c = talloc_get_type(ctx->async.private_data,
367                                                       struct composite_context);
368         struct pipe_auth_state *s = talloc_get_type(c->private_data, struct pipe_auth_state);
369         struct composite_context *sec_conn_req;
370
371         c->status = dcerpc_bind_auth_recv(ctx);
372         if (NT_STATUS_EQUAL(c->status, NT_STATUS_INVALID_PARAMETER)) {
373                 /*
374                  * Retry with NTLMSSP auth as fallback
375                  * send a request for secondary rpc connection
376                  */
377                 sec_conn_req = dcerpc_secondary_connection_send(s->pipe,
378                                                                 s->binding);
379                 composite_continue(c, sec_conn_req, continue_ntlmssp_connection, c);
380                 return;
381         } else if (NT_STATUS_EQUAL(c->status, NT_STATUS_LOGON_FAILURE)) {
382                 if (cli_credentials_wrong_password(s->credentials)) {
383                         /*
384                          * Retry SPNEGO with a better password
385                          * send a request for secondary rpc connection
386                          */
387                         sec_conn_req = dcerpc_secondary_connection_send(s->pipe,
388                                                                         s->binding);
389                         composite_continue(c, sec_conn_req, continue_spnego_after_wrong_pass, c);
390                         return;
391                 }
392         }
393
394         if (!composite_is_ok(c)) return;
395
396         composite_done(c);
397 }
398
399 /*
400   Stage 3 of pipe_auth (fallback to NTLMSSP case): Receive secondary
401   rpc connection (the first one can't be used any more, due to the
402   bind nak) and perform authenticated bind request
403 */
404 static void continue_ntlmssp_connection(struct composite_context *ctx)
405 {
406         struct composite_context *c;
407         struct pipe_auth_state *s;
408         struct composite_context *auth_req;
409         struct dcerpc_pipe *p2;
410
411         c = talloc_get_type(ctx->async.private_data, struct composite_context);
412         s = talloc_get_type(c->private_data, struct pipe_auth_state);
413
414         /* receive secondary rpc connection */
415         c->status = dcerpc_secondary_connection_recv(ctx, &p2);
416         if (!composite_is_ok(c)) return;
417
418         talloc_steal(s, p2);
419         talloc_steal(p2, s->pipe);
420         s->pipe = p2;
421
422         /* initiate a authenticated bind */
423         auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
424                                          s->credentials, s->lp_ctx,
425                                          DCERPC_AUTH_TYPE_NTLMSSP,
426                                          dcerpc_auth_level(s->pipe->conn),
427                                          s->table->authservices->names[0]);
428         composite_continue(c, auth_req, continue_auth, c);
429 }
430
431 /*
432   Stage 3 of pipe_auth (retry on wrong password): Receive secondary
433   rpc connection (the first one can't be used any more, due to the
434   bind nak) and perform authenticated bind request
435 */
436 static void continue_spnego_after_wrong_pass(struct composite_context *ctx)
437 {
438         struct composite_context *c;
439         struct pipe_auth_state *s;
440         struct composite_context *auth_req;
441         struct dcerpc_pipe *p2;
442
443         c = talloc_get_type(ctx->async.private_data, struct composite_context);
444         s = talloc_get_type(c->private_data, struct pipe_auth_state);
445
446         /* receive secondary rpc connection */
447         c->status = dcerpc_secondary_connection_recv(ctx, &p2);
448         if (!composite_is_ok(c)) return;
449
450         talloc_steal(s, p2);
451         talloc_steal(p2, s->pipe);
452         s->pipe = p2;
453
454         /* initiate a authenticated bind */
455         auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
456                                          s->credentials, s->lp_ctx, DCERPC_AUTH_TYPE_SPNEGO,
457                                          dcerpc_auth_level(s->pipe->conn),
458                                          s->table->authservices->names[0]);
459         composite_continue(c, auth_req, continue_auth, c);
460 }
461
462
463 /*
464   Stage 2 of pipe_auth: Receive result of non-authenticated bind request
465 */
466 static void continue_auth_none(struct composite_context *ctx)
467 {
468         struct composite_context *c = talloc_get_type(ctx->async.private_data,
469                                                       struct composite_context);
470
471         c->status = dcerpc_bind_auth_none_recv(ctx);
472         if (!composite_is_ok(c)) return;
473         
474         composite_done(c);
475 }
476
477
478 /*
479   Request to perform an authenticated bind if required. Authentication
480   is determined using credentials passed and binding flags.
481 */
482 struct composite_context *dcerpc_pipe_auth_send(struct dcerpc_pipe *p, 
483                                                 struct dcerpc_binding *binding,
484                                                 const struct ndr_interface_table *table,
485                                                 struct cli_credentials *credentials,
486                                                 struct loadparm_context *lp_ctx)
487 {
488         struct composite_context *c;
489         struct pipe_auth_state *s;
490         struct composite_context *auth_schannel_req;
491         struct composite_context *auth_req;
492         struct composite_context *auth_none_req;
493         struct dcerpc_connection *conn;
494         uint8_t auth_type;
495
496         /* composite context allocation and setup */
497         c = composite_create(p, p->conn->event_ctx);
498         if (c == NULL) return NULL;
499
500         s = talloc_zero(c, struct pipe_auth_state);
501         if (composite_nomem(s, c)) return c;
502         c->private_data = s;
503
504         /* store parameters in state structure */
505         s->binding      = binding;
506         s->table        = table;
507         s->credentials  = credentials;
508         s->pipe         = p;
509         s->lp_ctx       = lp_ctx;
510
511         conn = s->pipe->conn;
512         conn->flags = binding->flags;
513         
514         /* remember the binding string for possible secondary connections */
515         conn->binding_string = dcerpc_binding_string(p, binding);
516
517         if (cli_credentials_is_anonymous(s->credentials)) {
518                 auth_none_req = dcerpc_bind_auth_none_send(c, s->pipe, s->table);
519                 composite_continue(c, auth_none_req, continue_auth_none, c);
520                 return c;
521         }
522
523         if ((binding->flags & DCERPC_SCHANNEL) &&
524             !cli_credentials_get_netlogon_creds(s->credentials)) {
525                 /* If we don't already have netlogon credentials for
526                  * the schannel bind, then we have to get these
527                  * first */
528                 auth_schannel_req = dcerpc_bind_auth_schannel_send(c, s->pipe, s->table,
529                                                                    s->credentials, s->lp_ctx,
530                                                                    dcerpc_auth_level(conn));
531                 composite_continue(c, auth_schannel_req, continue_auth_schannel, c);
532                 return c;
533         }
534
535         /*
536          * we rely on the already authenticated CIFS connection
537          * if not doing sign or seal
538          */
539         if (conn->transport.transport == NCACN_NP &&
540             !(s->binding->flags & (DCERPC_SIGN|DCERPC_SEAL))) {
541                 auth_none_req = dcerpc_bind_auth_none_send(c, s->pipe, s->table);
542                 composite_continue(c, auth_none_req, continue_auth_none, c);
543                 return c;
544         }
545
546
547         /* Perform an authenticated DCE-RPC bind
548          */
549         if (!(conn->flags & (DCERPC_SIGN|DCERPC_SEAL))) {
550                 /*
551                   we are doing an authenticated connection,
552                   but not using sign or seal. We must force
553                   the CONNECT dcerpc auth type as a NONE auth
554                   type doesn't allow authentication
555                   information to be passed.
556                 */
557                 conn->flags |= DCERPC_CONNECT;
558         }
559
560         if (s->binding->flags & DCERPC_AUTH_SPNEGO) {
561                 auth_type = DCERPC_AUTH_TYPE_SPNEGO;
562
563         } else if (s->binding->flags & DCERPC_AUTH_KRB5) {
564                 auth_type = DCERPC_AUTH_TYPE_KRB5;
565
566         } else if (s->binding->flags & DCERPC_SCHANNEL) {
567                 auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
568
569         } else if (s->binding->flags & DCERPC_AUTH_NTLM) {
570                 auth_type = DCERPC_AUTH_TYPE_NTLMSSP;
571
572         } else {
573                 /* try SPNEGO with fallback to NTLMSSP */
574                 auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
575                                                  s->credentials, s->lp_ctx, DCERPC_AUTH_TYPE_SPNEGO,
576                                                  dcerpc_auth_level(conn),
577                                                  s->table->authservices->names[0]);
578                 composite_continue(c, auth_req, continue_auth_auto, c);
579                 return c;
580         }
581
582         auth_req = dcerpc_bind_auth_send(c, s->pipe, s->table,
583                                          s->credentials, s->lp_ctx, auth_type,
584                                          dcerpc_auth_level(conn),
585                                          s->table->authservices->names[0]);
586         composite_continue(c, auth_req, continue_auth, c);
587         return c;
588 }
589
590
591 /*
592   Receive result of authenticated bind request on dcerpc pipe
593
594   This returns *p, which may be different to the one originally
595   supllied, as it rebinds to a new pipe due to authentication fallback
596
597 */
598 NTSTATUS dcerpc_pipe_auth_recv(struct composite_context *c, TALLOC_CTX *mem_ctx, 
599                                struct dcerpc_pipe **p)
600 {
601         NTSTATUS status;
602
603         struct pipe_auth_state *s = talloc_get_type(c->private_data,
604                                                     struct pipe_auth_state);
605         status = composite_wait(c);
606         if (!NT_STATUS_IS_OK(status)) {
607                 char *uuid_str = GUID_string(s->pipe, &s->table->syntax_id.uuid);
608                 DEBUG(0, ("Failed to bind to uuid %s - %s\n", uuid_str, nt_errstr(status)));
609                 talloc_free(uuid_str);
610         } else {
611                 talloc_steal(mem_ctx, s->pipe);
612                 *p = s->pipe;
613         }
614
615         talloc_free(c);
616         return status;
617 }
618
619
620 /* 
621    Perform an authenticated bind if needed - sync version
622
623    This may change *p, as it rebinds to a new pipe due to authentication fallback
624 */
625 _PUBLIC_ NTSTATUS dcerpc_pipe_auth(TALLOC_CTX *mem_ctx,
626                           struct dcerpc_pipe **p, 
627                           struct dcerpc_binding *binding,
628                           const struct ndr_interface_table *table,
629                           struct cli_credentials *credentials,
630                           struct loadparm_context *lp_ctx)
631 {
632         struct composite_context *c;
633
634         c = dcerpc_pipe_auth_send(*p, binding, table, credentials, lp_ctx);
635         return dcerpc_pipe_auth_recv(c, mem_ctx, p);
636 }
637
638
639 NTSTATUS dcerpc_generic_session_key(struct dcerpc_connection *c,
640                                     DATA_BLOB *session_key)
641 {
642         /* this took quite a few CPU cycles to find ... */
643         session_key->data = discard_const_p(unsigned char, "SystemLibraryDTC");
644         session_key->length = 16;
645         return NT_STATUS_OK;
646 }
647
648 /*
649   fetch the user session key - may be default (above) or the SMB session key
650 */
651 _PUBLIC_ NTSTATUS dcerpc_fetch_session_key(struct dcerpc_pipe *p,
652                                   DATA_BLOB *session_key)
653 {
654         return p->conn->security_state.session_key(p->conn, session_key);
655 }
656
657
658 /*
659   log a rpc packet in a format suitable for ndrdump. This is especially useful
660   for sealed packets, where ethereal cannot easily see the contents
661
662   this triggers on a debug level of >= 10
663 */
664 _PUBLIC_ void dcerpc_log_packet(const struct ndr_interface_table *ndr,
665                        uint32_t opnum, uint32_t flags, 
666                        DATA_BLOB *pkt)
667 {
668         const int num_examples = 20;
669         int i;
670
671         if (DEBUGLEVEL < 10) return;
672
673         for (i=0;i<num_examples;i++) {
674                 char *name=NULL;
675                 asprintf(&name, "%s/rpclog/%s-%u.%d.%s", 
676                          lp_lockdir(global_loadparm), ndr->name, opnum, i,
677                          (flags&NDR_IN)?"in":"out");
678                 if (name == NULL) {
679                         return;
680                 }
681                 if (!file_exist(name)) {
682                         if (file_save(name, pkt->data, pkt->length)) {
683                                 DEBUG(10,("Logged rpc packet to %s\n", name));
684                         }
685                         free(name);
686                         break;
687                 }
688                 free(name);
689         }
690 }
691
692
693
694 /*
695   create a secondary context from a primary connection
696
697   this uses dcerpc_alter_context() to create a new dcerpc context_id
698 */
699 _PUBLIC_ NTSTATUS dcerpc_secondary_context(struct dcerpc_pipe *p, 
700                                   struct dcerpc_pipe **pp2,
701                                   const struct ndr_interface_table *table)
702 {
703         NTSTATUS status;
704         struct dcerpc_pipe *p2;
705         
706         p2 = talloc_zero(p, struct dcerpc_pipe);
707         if (p2 == NULL) {
708                 return NT_STATUS_NO_MEMORY;
709         }
710         p2->conn = talloc_reference(p2, p->conn);
711         p2->request_timeout = p->request_timeout;
712
713         p2->context_id = ++p->conn->next_context_id;
714
715         p2->syntax = table->syntax_id;
716
717         p2->transfer_syntax = ndr_transfer_syntax;
718
719         p2->binding = talloc_reference(p2, p->binding);
720
721         status = dcerpc_alter_context(p2, p2, &p2->syntax, &p2->transfer_syntax);
722         if (!NT_STATUS_IS_OK(status)) {
723                 talloc_free(p2);
724                 return status;
725         }
726
727         *pp2 = p2;
728
729         return NT_STATUS_OK;
730 }