s3: Slightly simplify is_stat_open
[Samba/gebeck_regimport.git] / source4 / librpc / rpc / dcerpc_smb.c
blobe718725a74e97964ef2fbfbf3ab4b40e6331b7f0
1 /*
2 Unix SMB/CIFS implementation.
4 dcerpc over SMB transport
6 Copyright (C) Tim Potter 2003
7 Copyright (C) Andrew Tridgell 2003
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "includes.h"
24 #include "libcli/raw/libcliraw.h"
25 #include "libcli/composite/composite.h"
26 #include "librpc/rpc/dcerpc.h"
27 #include "librpc/rpc/dcerpc_proto.h"
28 #include "librpc/rpc/rpc_common.h"
29 #include "../libcli/smb/smbXcli_base.h"
31 /* transport private information used by SMB pipe transport */
32 struct smb_private {
33 uint16_t fnum;
34 struct smbcli_tree *tree;
35 DATA_BLOB session_key;
36 const char *server_name;
37 bool dead;
42 tell the dcerpc layer that the transport is dead
44 static void pipe_dead(struct dcecli_connection *c, NTSTATUS status)
46 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
48 if (smb->dead) {
49 return;
52 smb->dead = true;
54 if (NT_STATUS_EQUAL(NT_STATUS_UNSUCCESSFUL, status)) {
55 status = NT_STATUS_UNEXPECTED_NETWORK_ERROR;
58 if (NT_STATUS_EQUAL(NT_STATUS_OK, status)) {
59 status = NT_STATUS_END_OF_FILE;
62 if (c->transport.recv_data) {
63 c->transport.recv_data(c, NULL, status);
68 /*
69 this holds the state of an in-flight call
71 struct smb_read_state {
72 struct dcecli_connection *c;
73 struct smbcli_request *req;
74 size_t received;
75 DATA_BLOB data;
76 union smb_read *io;
80 called when a read request has completed
82 static void smb_read_callback(struct smbcli_request *req)
84 struct dcecli_connection *c;
85 struct smb_private *smb;
86 struct smb_read_state *state;
87 union smb_read *io;
88 uint16_t frag_length;
89 NTSTATUS status;
91 state = talloc_get_type(req->async.private_data, struct smb_read_state);
92 smb = talloc_get_type(state->c->transport.private_data, struct smb_private);
93 io = state->io;
94 c = state->c;
96 status = smb_raw_read_recv(state->req, io);
97 if (NT_STATUS_IS_ERR(status)) {
98 talloc_free(state);
99 pipe_dead(c, status);
100 return;
103 state->received += io->readx.out.nread;
105 if (state->received < 16) {
106 DEBUG(0,("dcerpc_smb: short packet (length %d) in read callback!\n",
107 (int)state->received));
108 talloc_free(state);
109 pipe_dead(c, NT_STATUS_INFO_LENGTH_MISMATCH);
110 return;
113 frag_length = dcerpc_get_frag_length(&state->data);
115 if (frag_length <= state->received) {
116 DATA_BLOB data = state->data;
117 data.length = state->received;
118 talloc_steal(state->c, data.data);
119 talloc_free(state);
120 c->transport.recv_data(c, &data, NT_STATUS_OK);
121 return;
124 /* initiate another read request, as we only got part of a fragment */
125 state->data.data = talloc_realloc(state, state->data.data, uint8_t, frag_length);
127 io->readx.in.mincnt = MIN(state->c->srv_max_xmit_frag,
128 frag_length - state->received);
129 io->readx.in.maxcnt = io->readx.in.mincnt;
130 io->readx.out.data = state->data.data + state->received;
132 state->req = smb_raw_read_send(smb->tree, io);
133 if (state->req == NULL) {
134 talloc_free(state);
135 pipe_dead(c, NT_STATUS_NO_MEMORY);
136 return;
139 state->req->async.fn = smb_read_callback;
140 state->req->async.private_data = state;
144 trigger a read request from the server, possibly with some initial
145 data in the read buffer
147 static NTSTATUS send_read_request_continue(struct dcecli_connection *c, DATA_BLOB *blob)
149 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
150 union smb_read *io;
151 struct smb_read_state *state;
152 struct smbcli_request *req;
154 state = talloc(smb, struct smb_read_state);
155 if (state == NULL) {
156 return NT_STATUS_NO_MEMORY;
159 state->c = c;
160 if (blob == NULL) {
161 state->received = 0;
162 state->data = data_blob_talloc(state, NULL, 0x2000);
163 } else {
164 uint32_t frag_length = blob->length>=16?
165 dcerpc_get_frag_length(blob):0x2000;
166 state->received = blob->length;
167 state->data = data_blob_talloc(state, NULL, frag_length);
168 if (!state->data.data) {
169 talloc_free(state);
170 return NT_STATUS_NO_MEMORY;
172 memcpy(state->data.data, blob->data, blob->length);
175 state->io = talloc(state, union smb_read);
177 io = state->io;
178 io->generic.level = RAW_READ_READX;
179 io->readx.in.file.fnum = smb->fnum;
180 io->readx.in.mincnt = state->data.length - state->received;
181 io->readx.in.maxcnt = io->readx.in.mincnt;
182 io->readx.in.offset = 0;
183 io->readx.in.remaining = 0;
184 io->readx.in.read_for_execute = false;
185 io->readx.out.data = state->data.data + state->received;
186 req = smb_raw_read_send(smb->tree, io);
187 if (req == NULL) {
188 return NT_STATUS_NO_MEMORY;
191 req->async.fn = smb_read_callback;
192 req->async.private_data = state;
194 state->req = req;
196 return NT_STATUS_OK;
201 trigger a read request from the server
203 static NTSTATUS send_read_request(struct dcecli_connection *c)
205 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
207 if (smb->dead) {
208 return NT_STATUS_CONNECTION_DISCONNECTED;
211 return send_read_request_continue(c, NULL);
215 this holds the state of an in-flight trans call
217 struct smb_trans_state {
218 struct dcecli_connection *c;
219 struct smbcli_request *req;
220 struct smb_trans2 *trans;
224 called when a trans request has completed
226 static void smb_trans_callback(struct smbcli_request *req)
228 struct smb_trans_state *state = (struct smb_trans_state *)req->async.private_data;
229 struct dcecli_connection *c = state->c;
230 NTSTATUS status;
232 status = smb_raw_trans_recv(req, state, state->trans);
234 if (NT_STATUS_IS_ERR(status)) {
235 pipe_dead(c, status);
236 return;
239 if (!NT_STATUS_EQUAL(status, STATUS_BUFFER_OVERFLOW)) {
240 DATA_BLOB data = state->trans->out.data;
241 talloc_steal(c, data.data);
242 talloc_free(state);
243 c->transport.recv_data(c, &data, NT_STATUS_OK);
244 return;
247 /* there is more to receive - setup a readx */
248 send_read_request_continue(c, &state->trans->out.data);
249 talloc_free(state);
253 send a SMBtrans style request
255 static NTSTATUS smb_send_trans_request(struct dcecli_connection *c, DATA_BLOB *blob)
257 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
258 struct smb_trans2 *trans;
259 uint16_t setup[2];
260 struct smb_trans_state *state;
261 uint16_t max_data;
263 state = talloc(c, struct smb_trans_state);
264 if (state == NULL) {
265 return NT_STATUS_NO_MEMORY;
268 state->c = c;
269 state->trans = talloc(state, struct smb_trans2);
270 trans = state->trans;
272 trans->in.data = *blob;
273 trans->in.params = data_blob(NULL, 0);
275 setup[0] = TRANSACT_DCERPCCMD;
276 setup[1] = smb->fnum;
278 if (c->srv_max_xmit_frag > 0) {
279 max_data = MIN(UINT16_MAX, c->srv_max_xmit_frag);
280 } else {
281 max_data = UINT16_MAX;
284 trans->in.max_param = 0;
285 trans->in.max_data = max_data;
286 trans->in.max_setup = 0;
287 trans->in.setup_count = 2;
288 trans->in.flags = 0;
289 trans->in.timeout = 0;
290 trans->in.setup = setup;
291 trans->in.trans_name = "\\PIPE\\";
293 state->req = smb_raw_trans_send(smb->tree, trans);
294 if (state->req == NULL) {
295 talloc_free(state);
296 return NT_STATUS_NO_MEMORY;
299 state->req->async.fn = smb_trans_callback;
300 state->req->async.private_data = state;
302 talloc_steal(state, state->req);
304 return NT_STATUS_OK;
308 called when a write request has completed
310 static void smb_write_callback(struct smbcli_request *req)
312 struct dcecli_connection *c = (struct dcecli_connection *)req->async.private_data;
313 union smb_write io;
314 NTSTATUS status;
316 ZERO_STRUCT(io);
317 io.generic.level = RAW_WRITE_WRITEX;
319 status = smb_raw_write_recv(req, &io);
320 if (!NT_STATUS_IS_OK(status)) {
321 DEBUG(0,("dcerpc_smb: write callback error: %s\n",
322 nt_errstr(status)));
323 pipe_dead(c, status);
328 send a packet to the server
330 static NTSTATUS smb_send_request(struct dcecli_connection *c, DATA_BLOB *blob,
331 bool trigger_read)
333 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
334 union smb_write io;
335 struct smbcli_request *req;
337 if (!smb || smb->dead) {
338 return NT_STATUS_CONNECTION_DISCONNECTED;
341 if (trigger_read) {
342 return smb_send_trans_request(c, blob);
345 io.generic.level = RAW_WRITE_WRITEX;
346 io.writex.in.file.fnum = smb->fnum;
347 io.writex.in.offset = 0;
348 io.writex.in.wmode = PIPE_START_MESSAGE;
349 io.writex.in.remaining = blob->length;
350 io.writex.in.count = blob->length;
351 io.writex.in.data = blob->data;
353 /* we must not timeout at the smb level for rpc requests, as otherwise
354 signing/sealing can be messed up */
355 smb->tree->session->transport->options.request_timeout = 0;
357 req = smb_raw_write_send(smb->tree, &io);
358 if (req == NULL) {
359 return NT_STATUS_NO_MEMORY;
362 req->async.fn = smb_write_callback;
363 req->async.private_data = c;
365 if (trigger_read) {
366 send_read_request(c);
369 return NT_STATUS_OK;
373 static void free_request(struct smbcli_request *req)
375 talloc_free(req);
379 shutdown SMB pipe connection
381 static NTSTATUS smb_shutdown_pipe(struct dcecli_connection *c, NTSTATUS status)
383 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
384 union smb_close io;
385 struct smbcli_request *req;
387 /* maybe we're still starting up */
388 if (!smb) return status;
390 io.close.level = RAW_CLOSE_CLOSE;
391 io.close.in.file.fnum = smb->fnum;
392 io.close.in.write_time = 0;
393 req = smb_raw_close_send(smb->tree, &io);
394 if (req != NULL) {
395 /* we don't care if this fails, so just free it if it succeeds */
396 req->async.fn = free_request;
399 talloc_free(smb);
400 c->transport.private_data = NULL;
402 return status;
406 return SMB server name (called name)
408 static const char *smb_peer_name(struct dcecli_connection *c)
410 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
411 if (smb == NULL) return "";
412 return smb->server_name;
416 return remote name we make the actual connection (good for kerberos)
418 static const char *smb_target_hostname(struct dcecli_connection *c)
420 struct smb_private *smb = talloc_get_type(c->transport.private_data, struct smb_private);
421 if (smb == NULL) return "";
422 return smbXcli_conn_remote_name(smb->tree->session->transport->conn);
426 fetch the user session key
428 static NTSTATUS smb_session_key(struct dcecli_connection *c, DATA_BLOB *session_key)
430 struct smb_private *smb = (struct smb_private *)c->transport.private_data;
432 if (smb == NULL) return NT_STATUS_CONNECTION_DISCONNECTED;
434 if (smb->session_key.length == 0) {
435 return NT_STATUS_NO_USER_SESSION_KEY;
438 *session_key = smb->session_key;
439 return NT_STATUS_OK;
442 struct pipe_open_smb_state {
443 union smb_open *open;
444 struct dcecli_connection *c;
445 struct smbcli_tree *tree;
446 struct composite_context *ctx;
449 static void pipe_open_recv(struct smbcli_request *req);
451 struct composite_context *dcerpc_pipe_open_smb_send(struct dcerpc_pipe *p,
452 struct smbcli_tree *tree,
453 const char *pipe_name)
455 struct composite_context *ctx;
456 struct pipe_open_smb_state *state;
457 struct smbcli_request *req;
458 struct dcecli_connection *c = p->conn;
460 /* if we don't have a binding on this pipe yet, then create one */
461 if (p->binding == NULL) {
462 NTSTATUS status;
463 const char *r = smbXcli_conn_remote_name(tree->session->transport->conn);
464 char *s;
465 SMB_ASSERT(r != NULL);
466 s = talloc_asprintf(p, "ncacn_np:%s", r);
467 if (s == NULL) return NULL;
468 status = dcerpc_parse_binding(p, s, &p->binding);
469 talloc_free(s);
470 if (!NT_STATUS_IS_OK(status)) {
471 return NULL;
475 ctx = composite_create(c, c->event_ctx);
476 if (ctx == NULL) return NULL;
478 state = talloc(ctx, struct pipe_open_smb_state);
479 if (composite_nomem(state, ctx)) return ctx;
480 ctx->private_data = state;
482 state->c = c;
483 state->tree = tree;
484 state->ctx = ctx;
486 state->open = talloc(state, union smb_open);
487 if (composite_nomem(state->open, ctx)) return ctx;
489 state->open->ntcreatex.level = RAW_OPEN_NTCREATEX;
490 state->open->ntcreatex.in.flags = 0;
491 state->open->ntcreatex.in.root_fid.fnum = 0;
492 state->open->ntcreatex.in.access_mask =
493 SEC_STD_READ_CONTROL |
494 SEC_FILE_WRITE_ATTRIBUTE |
495 SEC_FILE_WRITE_EA |
496 SEC_FILE_READ_DATA |
497 SEC_FILE_WRITE_DATA;
498 state->open->ntcreatex.in.file_attr = 0;
499 state->open->ntcreatex.in.alloc_size = 0;
500 state->open->ntcreatex.in.share_access =
501 NTCREATEX_SHARE_ACCESS_READ |
502 NTCREATEX_SHARE_ACCESS_WRITE;
503 state->open->ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
504 state->open->ntcreatex.in.create_options = 0;
505 state->open->ntcreatex.in.impersonation =
506 NTCREATEX_IMPERSONATION_IMPERSONATION;
507 state->open->ntcreatex.in.security_flags = 0;
509 if ((strncasecmp(pipe_name, "/pipe/", 6) == 0) ||
510 (strncasecmp(pipe_name, "\\pipe\\", 6) == 0)) {
511 pipe_name += 6;
513 state->open->ntcreatex.in.fname =
514 (pipe_name[0] == '\\') ?
515 talloc_strdup(state->open, pipe_name) :
516 talloc_asprintf(state->open, "\\%s", pipe_name);
517 if (composite_nomem(state->open->ntcreatex.in.fname, ctx)) return ctx;
519 req = smb_raw_open_send(tree, state->open);
520 composite_continue_smb(ctx, req, pipe_open_recv, state);
521 return ctx;
524 static void pipe_open_recv(struct smbcli_request *req)
526 struct pipe_open_smb_state *state = talloc_get_type(req->async.private_data,
527 struct pipe_open_smb_state);
528 struct composite_context *ctx = state->ctx;
529 struct dcecli_connection *c = state->c;
530 struct smb_private *smb;
532 ctx->status = smb_raw_open_recv(req, state, state->open);
533 if (!composite_is_ok(ctx)) return;
536 fill in the transport methods
538 c->transport.transport = NCACN_NP;
539 c->transport.private_data = NULL;
540 c->transport.shutdown_pipe = smb_shutdown_pipe;
541 c->transport.peer_name = smb_peer_name;
542 c->transport.target_hostname = smb_target_hostname;
544 c->transport.send_request = smb_send_request;
545 c->transport.send_read = send_read_request;
546 c->transport.recv_data = NULL;
548 /* Over-ride the default session key with the SMB session key */
549 c->security_state.session_key = smb_session_key;
551 smb = talloc(c, struct smb_private);
552 if (composite_nomem(smb, ctx)) return;
554 smb->fnum = state->open->ntcreatex.out.file.fnum;
555 smb->tree = talloc_reference(smb, state->tree);
556 smb->server_name= strupper_talloc(smb,
557 smbXcli_conn_remote_name(state->tree->session->transport->conn));
558 if (composite_nomem(smb->server_name, ctx)) return;
559 smb->dead = false;
561 ctx->status = smbXcli_session_application_key(state->tree->session->smbXcli,
562 smb, &smb->session_key);
563 if (NT_STATUS_EQUAL(ctx->status, NT_STATUS_NO_USER_SESSION_KEY)) {
564 smb->session_key = data_blob_null;
565 ctx->status = NT_STATUS_OK;
567 if (!composite_is_ok(ctx)) return;
569 c->transport.private_data = smb;
571 composite_done(ctx);
574 NTSTATUS dcerpc_pipe_open_smb_recv(struct composite_context *c)
576 NTSTATUS status = composite_wait(c);
577 talloc_free(c);
578 return status;
581 _PUBLIC_ NTSTATUS dcerpc_pipe_open_smb(struct dcerpc_pipe *p,
582 struct smbcli_tree *tree,
583 const char *pipe_name)
585 struct composite_context *ctx = dcerpc_pipe_open_smb_send(p, tree,
586 pipe_name);
587 return dcerpc_pipe_open_smb_recv(ctx);
591 return the SMB tree used for a dcerpc over SMB pipe
593 _PUBLIC_ struct smbcli_tree *dcerpc_smb_tree(struct dcecli_connection *c)
595 struct smb_private *smb;
597 if (c->transport.transport != NCACN_NP) return NULL;
599 smb = talloc_get_type(c->transport.private_data, struct smb_private);
600 if (!smb) return NULL;
602 return smb->tree;
606 return the SMB fnum used for a dcerpc over SMB pipe (hack for torture operations)
608 _PUBLIC_ uint16_t dcerpc_smb_fnum(struct dcecli_connection *c)
610 struct smb_private *smb;
612 if (c->transport.transport != NCACN_NP) return 0;
614 smb = talloc_get_type(c->transport.private_data, struct smb_private);
615 if (!smb) return 0;
617 return smb->fnum;