Add "store create time" parameter (docs to follow)
[Samba.git] / source3 / smbd / nttrans.c
blob03fdff3900e8c0f075be5204c9f64561887cc73b
1 /*
2 Unix SMB/CIFS implementation.
3 SMB NT transaction handling
4 Copyright (C) Jeremy Allison 1994-2007
5 Copyright (C) Stefan (metze) Metzmacher 2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "smbd/globals.h"
24 extern enum protocol_types Protocol;
25 extern const struct generic_mapping file_generic_mapping;
27 static char *nttrans_realloc(char **ptr, size_t size)
29 if (ptr==NULL) {
30 smb_panic("nttrans_realloc() called with NULL ptr");
33 *ptr = (char *)SMB_REALLOC(*ptr, size);
34 if(*ptr == NULL) {
35 return NULL;
37 memset(*ptr,'\0',size);
38 return *ptr;
41 /****************************************************************************
42 Send the required number of replies back.
43 We assume all fields other than the data fields are
44 set correctly for the type of call.
45 HACK ! Always assumes smb_setup field is zero.
46 ****************************************************************************/
48 void send_nt_replies(connection_struct *conn,
49 struct smb_request *req, NTSTATUS nt_error,
50 char *params, int paramsize,
51 char *pdata, int datasize)
53 int data_to_send = datasize;
54 int params_to_send = paramsize;
55 int useable_space;
56 char *pp = params;
57 char *pd = pdata;
58 int params_sent_thistime, data_sent_thistime, total_sent_thistime;
59 int alignment_offset = 3;
60 int data_alignment_offset = 0;
61 struct smbd_server_connection *sconn = smbd_server_conn;
62 int max_send = sconn->smb1.sessions.max_send;
65 * If there genuinely are no parameters or data to send just send
66 * the empty packet.
69 if(params_to_send == 0 && data_to_send == 0) {
70 reply_outbuf(req, 18, 0);
71 if (NT_STATUS_V(nt_error)) {
72 error_packet_set((char *)req->outbuf,
73 0, 0, nt_error,
74 __LINE__,__FILE__);
76 show_msg((char *)req->outbuf);
77 if (!srv_send_smb(smbd_server_fd(),
78 (char *)req->outbuf,
79 true, req->seqnum+1,
80 IS_CONN_ENCRYPTED(conn),
81 &req->pcd)) {
82 exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
84 TALLOC_FREE(req->outbuf);
85 return;
89 * When sending params and data ensure that both are nicely aligned.
90 * Only do this alignment when there is also data to send - else
91 * can cause NT redirector problems.
94 if (((params_to_send % 4) != 0) && (data_to_send != 0)) {
95 data_alignment_offset = 4 - (params_to_send % 4);
99 * Space is bufsize minus Netbios over TCP header minus SMB header.
100 * The alignment_offset is to align the param bytes on a four byte
101 * boundary (2 bytes for data len, one byte pad).
102 * NT needs this to work correctly.
105 useable_space = max_send - (smb_size
106 + 2 * 18 /* wct */
107 + alignment_offset
108 + data_alignment_offset);
110 if (useable_space < 0) {
111 char *msg = talloc_asprintf(
112 talloc_tos(),
113 "send_nt_replies failed sanity useable_space = %d!!!",
114 useable_space);
115 DEBUG(0, ("%s\n", msg));
116 exit_server_cleanly(msg);
119 while (params_to_send || data_to_send) {
122 * Calculate whether we will totally or partially fill this packet.
125 total_sent_thistime = params_to_send + data_to_send;
128 * We can never send more than useable_space.
131 total_sent_thistime = MIN(total_sent_thistime, useable_space);
133 reply_outbuf(req, 18,
134 total_sent_thistime + alignment_offset
135 + data_alignment_offset);
138 * We might have had SMBnttranss in req->inbuf, fix that.
140 SCVAL(req->outbuf, smb_com, SMBnttrans);
143 * Set total params and data to be sent.
146 SIVAL(req->outbuf,smb_ntr_TotalParameterCount,paramsize);
147 SIVAL(req->outbuf,smb_ntr_TotalDataCount,datasize);
150 * Calculate how many parameters and data we can fit into
151 * this packet. Parameters get precedence.
154 params_sent_thistime = MIN(params_to_send,useable_space);
155 data_sent_thistime = useable_space - params_sent_thistime;
156 data_sent_thistime = MIN(data_sent_thistime,data_to_send);
158 SIVAL(req->outbuf, smb_ntr_ParameterCount,
159 params_sent_thistime);
161 if(params_sent_thistime == 0) {
162 SIVAL(req->outbuf,smb_ntr_ParameterOffset,0);
163 SIVAL(req->outbuf,smb_ntr_ParameterDisplacement,0);
164 } else {
166 * smb_ntr_ParameterOffset is the offset from the start of the SMB header to the
167 * parameter bytes, however the first 4 bytes of outbuf are
168 * the Netbios over TCP header. Thus use smb_base() to subtract
169 * them from the calculation.
172 SIVAL(req->outbuf,smb_ntr_ParameterOffset,
173 ((smb_buf(req->outbuf)+alignment_offset)
174 - smb_base(req->outbuf)));
176 * Absolute displacement of param bytes sent in this packet.
179 SIVAL(req->outbuf, smb_ntr_ParameterDisplacement,
180 pp - params);
184 * Deal with the data portion.
187 SIVAL(req->outbuf, smb_ntr_DataCount, data_sent_thistime);
189 if(data_sent_thistime == 0) {
190 SIVAL(req->outbuf,smb_ntr_DataOffset,0);
191 SIVAL(req->outbuf,smb_ntr_DataDisplacement, 0);
192 } else {
194 * The offset of the data bytes is the offset of the
195 * parameter bytes plus the number of parameters being sent this time.
198 SIVAL(req->outbuf, smb_ntr_DataOffset,
199 ((smb_buf(req->outbuf)+alignment_offset) -
200 smb_base(req->outbuf))
201 + params_sent_thistime + data_alignment_offset);
202 SIVAL(req->outbuf,smb_ntr_DataDisplacement, pd - pdata);
206 * Copy the param bytes into the packet.
209 if(params_sent_thistime) {
210 if (alignment_offset != 0) {
211 memset(smb_buf(req->outbuf), 0,
212 alignment_offset);
214 memcpy((smb_buf(req->outbuf)+alignment_offset), pp,
215 params_sent_thistime);
219 * Copy in the data bytes
222 if(data_sent_thistime) {
223 if (data_alignment_offset != 0) {
224 memset((smb_buf(req->outbuf)+alignment_offset+
225 params_sent_thistime), 0,
226 data_alignment_offset);
228 memcpy(smb_buf(req->outbuf)+alignment_offset
229 +params_sent_thistime+data_alignment_offset,
230 pd,data_sent_thistime);
233 DEBUG(9,("nt_rep: params_sent_thistime = %d, data_sent_thistime = %d, useable_space = %d\n",
234 params_sent_thistime, data_sent_thistime, useable_space));
235 DEBUG(9,("nt_rep: params_to_send = %d, data_to_send = %d, paramsize = %d, datasize = %d\n",
236 params_to_send, data_to_send, paramsize, datasize));
238 if (NT_STATUS_V(nt_error)) {
239 error_packet_set((char *)req->outbuf,
240 0, 0, nt_error,
241 __LINE__,__FILE__);
244 /* Send the packet */
245 show_msg((char *)req->outbuf);
246 if (!srv_send_smb(smbd_server_fd(),
247 (char *)req->outbuf,
248 true, req->seqnum+1,
249 IS_CONN_ENCRYPTED(conn),
250 &req->pcd)) {
251 exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
254 TALLOC_FREE(req->outbuf);
256 pp += params_sent_thistime;
257 pd += data_sent_thistime;
259 params_to_send -= params_sent_thistime;
260 data_to_send -= data_sent_thistime;
263 * Sanity check
266 if(params_to_send < 0 || data_to_send < 0) {
267 DEBUG(0,("send_nt_replies failed sanity check pts = %d, dts = %d\n!!!",
268 params_to_send, data_to_send));
269 exit_server_cleanly("send_nt_replies: internal error");
274 /****************************************************************************
275 Reply to an NT create and X call on a pipe
276 ****************************************************************************/
278 static void nt_open_pipe(char *fname, connection_struct *conn,
279 struct smb_request *req, int *ppnum)
281 files_struct *fsp;
282 NTSTATUS status;
284 DEBUG(4,("nt_open_pipe: Opening pipe %s.\n", fname));
286 /* Strip \\ off the name. */
287 fname++;
289 status = open_np_file(req, fname, &fsp);
290 if (!NT_STATUS_IS_OK(status)) {
291 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
292 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
293 ERRDOS, ERRbadpipe);
294 return;
296 reply_nterror(req, status);
297 return;
300 *ppnum = fsp->fnum;
301 return;
304 /****************************************************************************
305 Reply to an NT create and X call for pipes.
306 ****************************************************************************/
308 static void do_ntcreate_pipe_open(connection_struct *conn,
309 struct smb_request *req)
311 char *fname = NULL;
312 int pnum = -1;
313 char *p = NULL;
314 uint32 flags = IVAL(req->vwv+3, 1);
315 TALLOC_CTX *ctx = talloc_tos();
317 srvstr_pull_req_talloc(ctx, req, &fname, req->buf, STR_TERMINATE);
319 if (!fname) {
320 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
321 ERRDOS, ERRbadpipe);
322 return;
324 nt_open_pipe(fname, conn, req, &pnum);
326 if (req->outbuf) {
327 /* error reply */
328 return;
332 * Deal with pipe return.
335 if (flags & EXTENDED_RESPONSE_REQUIRED) {
336 /* This is very strange. We
337 * return 50 words, but only set
338 * the wcnt to 42 ? It's definately
339 * what happens on the wire....
341 reply_outbuf(req, 50, 0);
342 SCVAL(req->outbuf,smb_wct,42);
343 } else {
344 reply_outbuf(req, 34, 0);
347 p = (char *)req->outbuf + smb_vwv2;
348 p++;
349 SSVAL(p,0,pnum);
350 p += 2;
351 SIVAL(p,0,FILE_WAS_OPENED);
352 p += 4;
353 p += 32;
354 SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
355 p += 20;
356 /* File type. */
357 SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
358 /* Device state. */
359 SSVAL(p,2, 0x5FF); /* ? */
360 p += 4;
362 if (flags & EXTENDED_RESPONSE_REQUIRED) {
363 p += 25;
364 SIVAL(p,0,FILE_GENERIC_ALL);
366 * For pipes W2K3 seems to return
367 * 0x12019B next.
368 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
370 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
373 DEBUG(5,("do_ntcreate_pipe_open: open pipe = %s\n", fname));
375 chain_reply(req);
378 /****************************************************************************
379 Reply to an NT create and X call.
380 ****************************************************************************/
382 void reply_ntcreate_and_X(struct smb_request *req)
384 connection_struct *conn = req->conn;
385 struct smb_filename *smb_fname = NULL;
386 char *fname = NULL;
387 uint32 flags;
388 uint32 access_mask;
389 uint32 file_attributes;
390 uint32 share_access;
391 uint32 create_disposition;
392 uint32 create_options;
393 uint16 root_dir_fid;
394 uint64_t allocation_size;
395 /* Breakout the oplock request bits so we can set the
396 reply bits separately. */
397 uint32 fattr=0;
398 SMB_OFF_T file_len = 0;
399 int info = 0;
400 files_struct *fsp = NULL;
401 char *p = NULL;
402 struct timespec create_timespec;
403 struct timespec c_timespec;
404 struct timespec a_timespec;
405 struct timespec m_timespec;
406 struct timespec write_time_ts;
407 NTSTATUS status;
408 int oplock_request;
409 uint8_t oplock_granted = NO_OPLOCK_RETURN;
410 TALLOC_CTX *ctx = talloc_tos();
412 START_PROFILE(SMBntcreateX);
414 if (req->wct < 24) {
415 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
416 return;
419 flags = IVAL(req->vwv+3, 1);
420 access_mask = IVAL(req->vwv+7, 1);
421 file_attributes = IVAL(req->vwv+13, 1);
422 share_access = IVAL(req->vwv+15, 1);
423 create_disposition = IVAL(req->vwv+17, 1);
424 create_options = IVAL(req->vwv+19, 1);
425 root_dir_fid = (uint16)IVAL(req->vwv+5, 1);
427 allocation_size = (uint64_t)IVAL(req->vwv+9, 1);
428 #ifdef LARGE_SMB_OFF_T
429 allocation_size |= (((uint64_t)IVAL(req->vwv+11, 1)) << 32);
430 #endif
432 srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf,
433 STR_TERMINATE, &status);
435 if (!NT_STATUS_IS_OK(status)) {
436 reply_nterror(req, status);
437 goto out;
440 DEBUG(10,("reply_ntcreate_and_X: flags = 0x%x, access_mask = 0x%x "
441 "file_attributes = 0x%x, share_access = 0x%x, "
442 "create_disposition = 0x%x create_options = 0x%x "
443 "root_dir_fid = 0x%x, fname = %s\n",
444 (unsigned int)flags,
445 (unsigned int)access_mask,
446 (unsigned int)file_attributes,
447 (unsigned int)share_access,
448 (unsigned int)create_disposition,
449 (unsigned int)create_options,
450 (unsigned int)root_dir_fid,
451 fname));
454 * we need to remove ignored bits when they come directly from the client
455 * because we reuse some of them for internal stuff
457 create_options &= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK;
460 * If it's an IPC, use the pipe handler.
463 if (IS_IPC(conn)) {
464 if (lp_nt_pipe_support()) {
465 do_ntcreate_pipe_open(conn, req);
466 goto out;
468 reply_doserror(req, ERRDOS, ERRnoaccess);
469 goto out;
472 oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
473 if (oplock_request) {
474 oplock_request |= (flags & REQUEST_BATCH_OPLOCK)
475 ? BATCH_OPLOCK : 0;
478 status = filename_convert(ctx,
479 conn,
480 req->flags2 & FLAGS2_DFS_PATHNAMES,
481 fname,
483 NULL,
484 &smb_fname);
486 if (!NT_STATUS_IS_OK(status)) {
487 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
488 reply_botherror(req,
489 NT_STATUS_PATH_NOT_COVERED,
490 ERRSRV, ERRbadpath);
491 goto out;
493 reply_nterror(req, status);
494 goto out;
497 status = SMB_VFS_CREATE_FILE(
498 conn, /* conn */
499 req, /* req */
500 root_dir_fid, /* root_dir_fid */
501 smb_fname, /* fname */
502 access_mask, /* access_mask */
503 share_access, /* share_access */
504 create_disposition, /* create_disposition*/
505 create_options, /* create_options */
506 file_attributes, /* file_attributes */
507 oplock_request, /* oplock_request */
508 allocation_size, /* allocation_size */
509 NULL, /* sd */
510 NULL, /* ea_list */
511 &fsp, /* result */
512 &info); /* pinfo */
514 if (!NT_STATUS_IS_OK(status)) {
515 if (open_was_deferred(req->mid)) {
516 /* We have re-scheduled this call, no error. */
517 goto out;
519 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_COLLISION)) {
520 reply_botherror(req, status, ERRDOS, ERRfilexists);
522 else {
523 reply_nterror(req, status);
525 goto out;
528 /* Ensure we're pointing at the correct stat struct. */
529 TALLOC_FREE(smb_fname);
530 smb_fname = fsp->fsp_name;
533 * If the caller set the extended oplock request bit
534 * and we granted one (by whatever means) - set the
535 * correct bit for extended oplock reply.
538 if (oplock_request &&
539 (lp_fake_oplocks(SNUM(conn))
540 || EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type))) {
543 * Exclusive oplock granted
546 if (flags & REQUEST_BATCH_OPLOCK) {
547 oplock_granted = BATCH_OPLOCK_RETURN;
548 } else {
549 oplock_granted = EXCLUSIVE_OPLOCK_RETURN;
551 } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
552 oplock_granted = LEVEL_II_OPLOCK_RETURN;
553 } else {
554 oplock_granted = NO_OPLOCK_RETURN;
557 file_len = smb_fname->st.st_ex_size;
558 fattr = dos_mode(conn, smb_fname);
559 if (fattr == 0) {
560 fattr = FILE_ATTRIBUTE_NORMAL;
563 if (flags & EXTENDED_RESPONSE_REQUIRED) {
564 /* This is very strange. We
565 * return 50 words, but only set
566 * the wcnt to 42 ? It's definately
567 * what happens on the wire....
569 reply_outbuf(req, 50, 0);
570 SCVAL(req->outbuf,smb_wct,42);
571 } else {
572 reply_outbuf(req, 34, 0);
575 p = (char *)req->outbuf + smb_vwv2;
577 SCVAL(p, 0, oplock_granted);
579 p++;
580 SSVAL(p,0,fsp->fnum);
581 p += 2;
582 if ((create_disposition == FILE_SUPERSEDE)
583 && (info == FILE_WAS_OVERWRITTEN)) {
584 SIVAL(p,0,FILE_WAS_SUPERSEDED);
585 } else {
586 SIVAL(p,0,info);
588 p += 4;
590 /* Deal with other possible opens having a modified
591 write time. JRA. */
592 ZERO_STRUCT(write_time_ts);
593 get_file_infos(fsp->file_id, NULL, &write_time_ts);
594 if (!null_timespec(write_time_ts)) {
595 update_stat_ex_mtime(&smb_fname->st, write_time_ts);
598 /* Create time. */
599 create_timespec = get_create_timespec(conn, fsp, smb_fname);
600 a_timespec = smb_fname->st.st_ex_atime;
601 m_timespec = smb_fname->st.st_ex_mtime;
602 c_timespec = get_change_timespec(conn, fsp, smb_fname);
604 if (lp_dos_filetime_resolution(SNUM(conn))) {
605 dos_filetime_timespec(&create_timespec);
606 dos_filetime_timespec(&a_timespec);
607 dos_filetime_timespec(&m_timespec);
608 dos_filetime_timespec(&c_timespec);
611 put_long_date_timespec(p, create_timespec); /* create time. */
612 p += 8;
613 put_long_date_timespec(p, a_timespec); /* access time */
614 p += 8;
615 put_long_date_timespec(p, m_timespec); /* write time */
616 p += 8;
617 put_long_date_timespec(p, c_timespec); /* change time */
618 p += 8;
619 SIVAL(p,0,fattr); /* File Attributes. */
620 p += 4;
621 SOFF_T(p, 0, SMB_VFS_GET_ALLOC_SIZE(conn,fsp,&smb_fname->st));
622 p += 8;
623 SOFF_T(p,0,file_len);
624 p += 8;
625 if (flags & EXTENDED_RESPONSE_REQUIRED) {
626 SSVAL(p,2,0x7);
628 p += 4;
629 SCVAL(p,0,fsp->is_directory ? 1 : 0);
631 if (flags & EXTENDED_RESPONSE_REQUIRED) {
632 uint32 perms = 0;
633 p += 25;
634 if (fsp->is_directory ||
635 can_write_to_file(conn, smb_fname)) {
636 perms = FILE_GENERIC_ALL;
637 } else {
638 perms = FILE_GENERIC_READ|FILE_EXECUTE;
640 SIVAL(p,0,perms);
643 DEBUG(5,("reply_ntcreate_and_X: fnum = %d, open name = %s\n",
644 fsp->fnum, smb_fname_str_dbg(smb_fname)));
646 chain_reply(req);
647 out:
648 END_PROFILE(SMBntcreateX);
649 return;
652 /****************************************************************************
653 Reply to a NT_TRANSACT_CREATE call to open a pipe.
654 ****************************************************************************/
656 static void do_nt_transact_create_pipe(connection_struct *conn,
657 struct smb_request *req,
658 uint16 **ppsetup, uint32 setup_count,
659 char **ppparams, uint32 parameter_count,
660 char **ppdata, uint32 data_count)
662 char *fname = NULL;
663 char *params = *ppparams;
664 int pnum = -1;
665 char *p = NULL;
666 NTSTATUS status;
667 size_t param_len;
668 uint32 flags;
669 TALLOC_CTX *ctx = talloc_tos();
672 * Ensure minimum number of parameters sent.
675 if(parameter_count < 54) {
676 DEBUG(0,("do_nt_transact_create_pipe - insufficient parameters (%u)\n", (unsigned int)parameter_count));
677 reply_doserror(req, ERRDOS, ERRnoaccess);
678 return;
681 flags = IVAL(params,0);
683 srvstr_get_path(ctx, params, req->flags2, &fname, params+53,
684 parameter_count-53, STR_TERMINATE,
685 &status);
686 if (!NT_STATUS_IS_OK(status)) {
687 reply_nterror(req, status);
688 return;
691 nt_open_pipe(fname, conn, req, &pnum);
693 if (req->outbuf) {
694 /* Error return */
695 return;
698 /* Realloc the size of parameters and data we will return */
699 if (flags & EXTENDED_RESPONSE_REQUIRED) {
700 /* Extended response is 32 more byyes. */
701 param_len = 101;
702 } else {
703 param_len = 69;
705 params = nttrans_realloc(ppparams, param_len);
706 if(params == NULL) {
707 reply_doserror(req, ERRDOS, ERRnomem);
708 return;
711 p = params;
712 SCVAL(p,0,NO_OPLOCK_RETURN);
714 p += 2;
715 SSVAL(p,0,pnum);
716 p += 2;
717 SIVAL(p,0,FILE_WAS_OPENED);
718 p += 8;
720 p += 32;
721 SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
722 p += 20;
723 /* File type. */
724 SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
725 /* Device state. */
726 SSVAL(p,2, 0x5FF); /* ? */
727 p += 4;
729 if (flags & EXTENDED_RESPONSE_REQUIRED) {
730 p += 25;
731 SIVAL(p,0,FILE_GENERIC_ALL);
733 * For pipes W2K3 seems to return
734 * 0x12019B next.
735 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
737 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
740 DEBUG(5,("do_nt_transact_create_pipe: open name = %s\n", fname));
742 /* Send the required number of replies */
743 send_nt_replies(conn, req, NT_STATUS_OK, params, param_len, *ppdata, 0);
745 return;
748 /****************************************************************************
749 Internal fn to set security descriptors.
750 ****************************************************************************/
752 static NTSTATUS set_sd(files_struct *fsp, uint8 *data, uint32 sd_len,
753 uint32 security_info_sent)
755 SEC_DESC *psd = NULL;
756 NTSTATUS status;
758 if (sd_len == 0 || !lp_nt_acl_support(SNUM(fsp->conn))) {
759 return NT_STATUS_OK;
762 status = unmarshall_sec_desc(talloc_tos(), data, sd_len, &psd);
764 if (!NT_STATUS_IS_OK(status)) {
765 return status;
768 if (psd->owner_sid == NULL) {
769 security_info_sent &= ~OWNER_SECURITY_INFORMATION;
771 if (psd->group_sid == NULL) {
772 security_info_sent &= ~GROUP_SECURITY_INFORMATION;
775 /* Convert all the generic bits. */
776 security_acl_map_generic(psd->dacl, &file_generic_mapping);
777 security_acl_map_generic(psd->sacl, &file_generic_mapping);
779 if (DEBUGLEVEL >= 10) {
780 DEBUG(10,("set_sd for file %s\n", fsp_str_dbg(fsp)));
781 NDR_PRINT_DEBUG(security_descriptor, psd);
784 status = SMB_VFS_FSET_NT_ACL(fsp, security_info_sent, psd);
786 TALLOC_FREE(psd);
788 return status;
791 /****************************************************************************
792 Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
793 ****************************************************************************/
795 static struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
797 struct ea_list *ea_list_head = NULL;
798 size_t offset = 0;
800 if (data_size < 4) {
801 return NULL;
804 while (offset + 4 <= data_size) {
805 size_t next_offset = IVAL(pdata,offset);
806 struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL);
808 if (!eal) {
809 return NULL;
812 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
813 if (next_offset == 0) {
814 break;
816 offset += next_offset;
819 return ea_list_head;
822 /****************************************************************************
823 Reply to a NT_TRANSACT_CREATE call (needs to process SD's).
824 ****************************************************************************/
826 static void call_nt_transact_create(connection_struct *conn,
827 struct smb_request *req,
828 uint16 **ppsetup, uint32 setup_count,
829 char **ppparams, uint32 parameter_count,
830 char **ppdata, uint32 data_count,
831 uint32 max_data_count)
833 struct smb_filename *smb_fname = NULL;
834 char *fname = NULL;
835 char *params = *ppparams;
836 char *data = *ppdata;
837 /* Breakout the oplock request bits so we can set the reply bits separately. */
838 uint32 fattr=0;
839 SMB_OFF_T file_len = 0;
840 int info = 0;
841 files_struct *fsp = NULL;
842 char *p = NULL;
843 uint32 flags;
844 uint32 access_mask;
845 uint32 file_attributes;
846 uint32 share_access;
847 uint32 create_disposition;
848 uint32 create_options;
849 uint32 sd_len;
850 struct security_descriptor *sd = NULL;
851 uint32 ea_len;
852 uint16 root_dir_fid;
853 struct timespec create_timespec;
854 struct timespec c_timespec;
855 struct timespec a_timespec;
856 struct timespec m_timespec;
857 struct timespec write_time_ts;
858 struct ea_list *ea_list = NULL;
859 NTSTATUS status;
860 size_t param_len;
861 uint64_t allocation_size;
862 int oplock_request;
863 uint8_t oplock_granted;
864 TALLOC_CTX *ctx = talloc_tos();
866 DEBUG(5,("call_nt_transact_create\n"));
869 * If it's an IPC, use the pipe handler.
872 if (IS_IPC(conn)) {
873 if (lp_nt_pipe_support()) {
874 do_nt_transact_create_pipe(
875 conn, req,
876 ppsetup, setup_count,
877 ppparams, parameter_count,
878 ppdata, data_count);
879 goto out;
881 reply_doserror(req, ERRDOS, ERRnoaccess);
882 goto out;
886 * Ensure minimum number of parameters sent.
889 if(parameter_count < 54) {
890 DEBUG(0,("call_nt_transact_create - insufficient parameters (%u)\n", (unsigned int)parameter_count));
891 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
892 goto out;
895 flags = IVAL(params,0);
896 access_mask = IVAL(params,8);
897 file_attributes = IVAL(params,20);
898 share_access = IVAL(params,24);
899 create_disposition = IVAL(params,28);
900 create_options = IVAL(params,32);
901 sd_len = IVAL(params,36);
902 ea_len = IVAL(params,40);
903 root_dir_fid = (uint16)IVAL(params,4);
904 allocation_size = (uint64_t)IVAL(params,12);
905 #ifdef LARGE_SMB_OFF_T
906 allocation_size |= (((uint64_t)IVAL(params,16)) << 32);
907 #endif
910 * we need to remove ignored bits when they come directly from the client
911 * because we reuse some of them for internal stuff
913 create_options &= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK;
915 /* Ensure the data_len is correct for the sd and ea values given. */
916 if ((ea_len + sd_len > data_count)
917 || (ea_len > data_count) || (sd_len > data_count)
918 || (ea_len + sd_len < ea_len) || (ea_len + sd_len < sd_len)) {
919 DEBUG(10, ("call_nt_transact_create - ea_len = %u, sd_len = "
920 "%u, data_count = %u\n", (unsigned int)ea_len,
921 (unsigned int)sd_len, (unsigned int)data_count));
922 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
923 goto out;
926 if (sd_len) {
927 DEBUG(10, ("call_nt_transact_create - sd_len = %d\n",
928 sd_len));
930 status = unmarshall_sec_desc(ctx, (uint8_t *)data, sd_len,
931 &sd);
932 if (!NT_STATUS_IS_OK(status)) {
933 DEBUG(10, ("call_nt_transact_create: "
934 "unmarshall_sec_desc failed: %s\n",
935 nt_errstr(status)));
936 reply_nterror(req, status);
937 goto out;
941 if (ea_len) {
942 if (!lp_ea_support(SNUM(conn))) {
943 DEBUG(10, ("call_nt_transact_create - ea_len = %u but "
944 "EA's not supported.\n",
945 (unsigned int)ea_len));
946 reply_nterror(req, NT_STATUS_EAS_NOT_SUPPORTED);
947 goto out;
950 if (ea_len < 10) {
951 DEBUG(10,("call_nt_transact_create - ea_len = %u - "
952 "too small (should be more than 10)\n",
953 (unsigned int)ea_len ));
954 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
955 goto out;
958 /* We have already checked that ea_len <= data_count here. */
959 ea_list = read_nttrans_ea_list(talloc_tos(), data + sd_len,
960 ea_len);
961 if (ea_list == NULL) {
962 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
963 goto out;
967 srvstr_get_path(ctx, params, req->flags2, &fname,
968 params+53, parameter_count-53,
969 STR_TERMINATE, &status);
970 if (!NT_STATUS_IS_OK(status)) {
971 reply_nterror(req, status);
972 goto out;
975 status = filename_convert(ctx,
976 conn,
977 req->flags2 & FLAGS2_DFS_PATHNAMES,
978 fname,
980 NULL,
981 &smb_fname);
983 if (!NT_STATUS_IS_OK(status)) {
984 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
985 reply_botherror(req,
986 NT_STATUS_PATH_NOT_COVERED,
987 ERRSRV, ERRbadpath);
988 goto out;
990 reply_nterror(req, status);
991 goto out;
994 oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
995 if (oplock_request) {
996 oplock_request |= (flags & REQUEST_BATCH_OPLOCK)
997 ? BATCH_OPLOCK : 0;
1000 status = SMB_VFS_CREATE_FILE(
1001 conn, /* conn */
1002 req, /* req */
1003 root_dir_fid, /* root_dir_fid */
1004 smb_fname, /* fname */
1005 access_mask, /* access_mask */
1006 share_access, /* share_access */
1007 create_disposition, /* create_disposition*/
1008 create_options, /* create_options */
1009 file_attributes, /* file_attributes */
1010 oplock_request, /* oplock_request */
1011 allocation_size, /* allocation_size */
1012 sd, /* sd */
1013 ea_list, /* ea_list */
1014 &fsp, /* result */
1015 &info); /* pinfo */
1017 if(!NT_STATUS_IS_OK(status)) {
1018 if (open_was_deferred(req->mid)) {
1019 /* We have re-scheduled this call, no error. */
1020 return;
1022 reply_openerror(req, status);
1023 goto out;
1026 /* Ensure we're pointing at the correct stat struct. */
1027 TALLOC_FREE(smb_fname);
1028 smb_fname = fsp->fsp_name;
1031 * If the caller set the extended oplock request bit
1032 * and we granted one (by whatever means) - set the
1033 * correct bit for extended oplock reply.
1036 if (oplock_request &&
1037 (lp_fake_oplocks(SNUM(conn))
1038 || EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type))) {
1041 * Exclusive oplock granted
1044 if (flags & REQUEST_BATCH_OPLOCK) {
1045 oplock_granted = BATCH_OPLOCK_RETURN;
1046 } else {
1047 oplock_granted = EXCLUSIVE_OPLOCK_RETURN;
1049 } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
1050 oplock_granted = LEVEL_II_OPLOCK_RETURN;
1051 } else {
1052 oplock_granted = NO_OPLOCK_RETURN;
1055 file_len = smb_fname->st.st_ex_size;
1056 fattr = dos_mode(conn, smb_fname);
1057 if (fattr == 0) {
1058 fattr = FILE_ATTRIBUTE_NORMAL;
1061 /* Realloc the size of parameters and data we will return */
1062 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1063 /* Extended response is 32 more byyes. */
1064 param_len = 101;
1065 } else {
1066 param_len = 69;
1068 params = nttrans_realloc(ppparams, param_len);
1069 if(params == NULL) {
1070 reply_doserror(req, ERRDOS, ERRnomem);
1071 goto out;
1074 p = params;
1075 SCVAL(p, 0, oplock_granted);
1077 p += 2;
1078 SSVAL(p,0,fsp->fnum);
1079 p += 2;
1080 if ((create_disposition == FILE_SUPERSEDE)
1081 && (info == FILE_WAS_OVERWRITTEN)) {
1082 SIVAL(p,0,FILE_WAS_SUPERSEDED);
1083 } else {
1084 SIVAL(p,0,info);
1086 p += 8;
1088 /* Deal with other possible opens having a modified
1089 write time. JRA. */
1090 ZERO_STRUCT(write_time_ts);
1091 get_file_infos(fsp->file_id, NULL, &write_time_ts);
1092 if (!null_timespec(write_time_ts)) {
1093 update_stat_ex_mtime(&smb_fname->st, write_time_ts);
1096 /* Create time. */
1097 create_timespec = get_create_timespec(conn, fsp, smb_fname);
1098 a_timespec = smb_fname->st.st_ex_atime;
1099 m_timespec = smb_fname->st.st_ex_mtime;
1100 c_timespec = get_change_timespec(conn, fsp, smb_fname);
1102 if (lp_dos_filetime_resolution(SNUM(conn))) {
1103 dos_filetime_timespec(&create_timespec);
1104 dos_filetime_timespec(&a_timespec);
1105 dos_filetime_timespec(&m_timespec);
1106 dos_filetime_timespec(&c_timespec);
1109 put_long_date_timespec(p, create_timespec); /* create time. */
1110 p += 8;
1111 put_long_date_timespec(p, a_timespec); /* access time */
1112 p += 8;
1113 put_long_date_timespec(p, m_timespec); /* write time */
1114 p += 8;
1115 put_long_date_timespec(p, c_timespec); /* change time */
1116 p += 8;
1117 SIVAL(p,0,fattr); /* File Attributes. */
1118 p += 4;
1119 SOFF_T(p, 0, SMB_VFS_GET_ALLOC_SIZE(conn, fsp, &smb_fname->st));
1120 p += 8;
1121 SOFF_T(p,0,file_len);
1122 p += 8;
1123 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1124 SSVAL(p,2,0x7);
1126 p += 4;
1127 SCVAL(p,0,fsp->is_directory ? 1 : 0);
1129 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1130 uint32 perms = 0;
1131 p += 25;
1132 if (fsp->is_directory ||
1133 can_write_to_file(conn, smb_fname)) {
1134 perms = FILE_GENERIC_ALL;
1135 } else {
1136 perms = FILE_GENERIC_READ|FILE_EXECUTE;
1138 SIVAL(p,0,perms);
1141 DEBUG(5,("call_nt_transact_create: open name = %s\n",
1142 smb_fname_str_dbg(smb_fname)));
1144 /* Send the required number of replies */
1145 send_nt_replies(conn, req, NT_STATUS_OK, params, param_len, *ppdata, 0);
1146 out:
1147 return;
1150 /****************************************************************************
1151 Reply to a NT CANCEL request.
1152 conn POINTER CAN BE NULL HERE !
1153 ****************************************************************************/
1155 void reply_ntcancel(struct smb_request *req)
1158 * Go through and cancel any pending change notifies.
1161 START_PROFILE(SMBntcancel);
1162 srv_cancel_sign_response(smbd_server_conn);
1163 remove_pending_change_notify_requests_by_mid(req->mid);
1164 remove_pending_lock_requests_by_mid(req->mid);
1166 DEBUG(3,("reply_ntcancel: cancel called on mid = %d.\n", req->mid));
1168 END_PROFILE(SMBntcancel);
1169 return;
1172 /****************************************************************************
1173 Copy a file.
1174 ****************************************************************************/
1176 static NTSTATUS copy_internals(TALLOC_CTX *ctx,
1177 connection_struct *conn,
1178 struct smb_request *req,
1179 struct smb_filename *smb_fname_src,
1180 struct smb_filename *smb_fname_dst,
1181 uint32 attrs)
1183 files_struct *fsp1,*fsp2;
1184 uint32 fattr;
1185 int info;
1186 SMB_OFF_T ret=-1;
1187 NTSTATUS status = NT_STATUS_OK;
1188 char *parent;
1190 if (!CAN_WRITE(conn)) {
1191 status = NT_STATUS_MEDIA_WRITE_PROTECTED;
1192 goto out;
1195 /* Source must already exist. */
1196 if (!VALID_STAT(smb_fname_src->st)) {
1197 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
1198 goto out;
1201 /* Ensure attributes match. */
1202 fattr = dos_mode(conn, smb_fname_src);
1203 if ((fattr & ~attrs) & (aHIDDEN | aSYSTEM)) {
1204 status = NT_STATUS_NO_SUCH_FILE;
1205 goto out;
1208 /* Disallow if dst file already exists. */
1209 if (VALID_STAT(smb_fname_dst->st)) {
1210 status = NT_STATUS_OBJECT_NAME_COLLISION;
1211 goto out;
1214 /* No links from a directory. */
1215 if (S_ISDIR(smb_fname_src->st.st_ex_mode)) {
1216 status = NT_STATUS_FILE_IS_A_DIRECTORY;
1217 goto out;
1220 DEBUG(10,("copy_internals: doing file copy %s to %s\n",
1221 smb_fname_str_dbg(smb_fname_src),
1222 smb_fname_str_dbg(smb_fname_dst)));
1224 status = SMB_VFS_CREATE_FILE(
1225 conn, /* conn */
1226 req, /* req */
1227 0, /* root_dir_fid */
1228 smb_fname_src, /* fname */
1229 FILE_READ_DATA, /* access_mask */
1230 (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */
1231 FILE_SHARE_DELETE),
1232 FILE_OPEN, /* create_disposition*/
1233 0, /* create_options */
1234 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
1235 NO_OPLOCK, /* oplock_request */
1236 0, /* allocation_size */
1237 NULL, /* sd */
1238 NULL, /* ea_list */
1239 &fsp1, /* result */
1240 &info); /* pinfo */
1242 if (!NT_STATUS_IS_OK(status)) {
1243 goto out;
1246 status = SMB_VFS_CREATE_FILE(
1247 conn, /* conn */
1248 req, /* req */
1249 0, /* root_dir_fid */
1250 smb_fname_dst, /* fname */
1251 FILE_WRITE_DATA, /* access_mask */
1252 (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */
1253 FILE_SHARE_DELETE),
1254 FILE_CREATE, /* create_disposition*/
1255 0, /* create_options */
1256 fattr, /* file_attributes */
1257 NO_OPLOCK, /* oplock_request */
1258 0, /* allocation_size */
1259 NULL, /* sd */
1260 NULL, /* ea_list */
1261 &fsp2, /* result */
1262 &info); /* pinfo */
1264 if (!NT_STATUS_IS_OK(status)) {
1265 close_file(NULL, fsp1, ERROR_CLOSE);
1266 goto out;
1269 if (smb_fname_src->st.st_ex_size) {
1270 ret = vfs_transfer_file(fsp1, fsp2, smb_fname_src->st.st_ex_size);
1274 * As we are opening fsp1 read-only we only expect
1275 * an error on close on fsp2 if we are out of space.
1276 * Thus we don't look at the error return from the
1277 * close of fsp1.
1279 close_file(NULL, fsp1, NORMAL_CLOSE);
1281 /* Ensure the modtime is set correctly on the destination file. */
1282 set_close_write_time(fsp2, smb_fname_src->st.st_ex_mtime);
1284 status = close_file(NULL, fsp2, NORMAL_CLOSE);
1286 /* Grrr. We have to do this as open_file_ntcreate adds aARCH when it
1287 creates the file. This isn't the correct thing to do in the copy
1288 case. JRA */
1289 if (!parent_dirname(talloc_tos(), smb_fname_dst->base_name, &parent,
1290 NULL)) {
1291 status = NT_STATUS_NO_MEMORY;
1292 goto out;
1294 file_set_dosmode(conn, smb_fname_dst, fattr, parent, false);
1295 TALLOC_FREE(parent);
1297 if (ret < (SMB_OFF_T)smb_fname_src->st.st_ex_size) {
1298 status = NT_STATUS_DISK_FULL;
1299 goto out;
1301 out:
1302 if (!NT_STATUS_IS_OK(status)) {
1303 DEBUG(3,("copy_internals: Error %s copy file %s to %s\n",
1304 nt_errstr(status), smb_fname_str_dbg(smb_fname_src),
1305 smb_fname_str_dbg(smb_fname_dst)));
1308 return status;
1311 /****************************************************************************
1312 Reply to a NT rename request.
1313 ****************************************************************************/
1315 void reply_ntrename(struct smb_request *req)
1317 connection_struct *conn = req->conn;
1318 struct smb_filename *smb_fname_old = NULL;
1319 struct smb_filename *smb_fname_new = NULL;
1320 char *oldname = NULL;
1321 char *newname = NULL;
1322 const char *p;
1323 NTSTATUS status;
1324 bool src_has_wcard = False;
1325 bool dest_has_wcard = False;
1326 uint32 attrs;
1327 uint32_t ucf_flags_src = 0;
1328 uint32_t ucf_flags_dst = 0;
1329 uint16 rename_type;
1330 TALLOC_CTX *ctx = talloc_tos();
1332 START_PROFILE(SMBntrename);
1334 if (req->wct < 4) {
1335 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1336 goto out;
1339 attrs = SVAL(req->vwv+0, 0);
1340 rename_type = SVAL(req->vwv+1, 0);
1342 p = (const char *)req->buf + 1;
1343 p += srvstr_get_path_req_wcard(ctx, req, &oldname, p, STR_TERMINATE,
1344 &status, &src_has_wcard);
1345 if (!NT_STATUS_IS_OK(status)) {
1346 reply_nterror(req, status);
1347 goto out;
1350 if (ms_has_wild(oldname)) {
1351 reply_nterror(req, NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
1352 goto out;
1355 p++;
1356 p += srvstr_get_path_req_wcard(ctx, req, &newname, p, STR_TERMINATE,
1357 &status, &dest_has_wcard);
1358 if (!NT_STATUS_IS_OK(status)) {
1359 reply_nterror(req, status);
1360 goto out;
1363 /* The newname must begin with a ':' if the oldname contains a ':'. */
1364 if (strchr_m(oldname, ':') && (newname[0] != ':')) {
1365 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1366 goto out;
1370 * If this is a rename operation, allow wildcards and save the
1371 * destination's last component.
1373 if (rename_type == RENAME_FLAG_RENAME) {
1374 ucf_flags_src = UCF_COND_ALLOW_WCARD_LCOMP;
1375 ucf_flags_dst = UCF_COND_ALLOW_WCARD_LCOMP | UCF_SAVE_LCOMP;
1378 /* rename_internals() calls unix_convert(), so don't call it here. */
1379 status = filename_convert(ctx, conn,
1380 req->flags2 & FLAGS2_DFS_PATHNAMES,
1381 oldname,
1382 ucf_flags_src,
1383 NULL,
1384 &smb_fname_old);
1385 if (!NT_STATUS_IS_OK(status)) {
1386 if (NT_STATUS_EQUAL(status,
1387 NT_STATUS_PATH_NOT_COVERED)) {
1388 reply_botherror(req,
1389 NT_STATUS_PATH_NOT_COVERED,
1390 ERRSRV, ERRbadpath);
1391 goto out;
1393 reply_nterror(req, status);
1394 goto out;
1397 status = filename_convert(ctx, conn,
1398 req->flags2 & FLAGS2_DFS_PATHNAMES,
1399 newname,
1400 ucf_flags_dst,
1401 &dest_has_wcard,
1402 &smb_fname_new);
1403 if (!NT_STATUS_IS_OK(status)) {
1404 if (NT_STATUS_EQUAL(status,
1405 NT_STATUS_PATH_NOT_COVERED)) {
1406 reply_botherror(req,
1407 NT_STATUS_PATH_NOT_COVERED,
1408 ERRSRV, ERRbadpath);
1409 goto out;
1411 reply_nterror(req, status);
1412 goto out;
1415 DEBUG(3,("reply_ntrename: %s -> %s\n",
1416 smb_fname_str_dbg(smb_fname_old),
1417 smb_fname_str_dbg(smb_fname_new)));
1419 switch(rename_type) {
1420 case RENAME_FLAG_RENAME:
1421 status = rename_internals(ctx, conn, req,
1422 smb_fname_old, smb_fname_new,
1423 attrs, False, src_has_wcard,
1424 dest_has_wcard,
1425 DELETE_ACCESS);
1426 break;
1427 case RENAME_FLAG_HARD_LINK:
1428 if (src_has_wcard || dest_has_wcard) {
1429 /* No wildcards. */
1430 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1431 } else {
1432 status = hardlink_internals(ctx, conn,
1433 smb_fname_old,
1434 smb_fname_new);
1436 break;
1437 case RENAME_FLAG_COPY:
1438 if (src_has_wcard || dest_has_wcard) {
1439 /* No wildcards. */
1440 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1441 } else {
1442 status = copy_internals(ctx, conn, req,
1443 smb_fname_old,
1444 smb_fname_new,
1445 attrs);
1447 break;
1448 case RENAME_FLAG_MOVE_CLUSTER_INFORMATION:
1449 status = NT_STATUS_INVALID_PARAMETER;
1450 break;
1451 default:
1452 status = NT_STATUS_ACCESS_DENIED; /* Default error. */
1453 break;
1456 if (!NT_STATUS_IS_OK(status)) {
1457 if (open_was_deferred(req->mid)) {
1458 /* We have re-scheduled this call. */
1459 goto out;
1462 reply_nterror(req, status);
1463 goto out;
1466 reply_outbuf(req, 0, 0);
1467 out:
1468 END_PROFILE(SMBntrename);
1469 return;
1472 /****************************************************************************
1473 Reply to a notify change - queue the request and
1474 don't allow a directory to be opened.
1475 ****************************************************************************/
1477 static void smbd_smb1_notify_reply(struct smb_request *req,
1478 NTSTATUS error_code,
1479 uint8_t *buf, size_t len)
1481 send_nt_replies(req->conn, req, error_code, (char *)buf, len, NULL, 0);
1484 static void call_nt_transact_notify_change(connection_struct *conn,
1485 struct smb_request *req,
1486 uint16 **ppsetup,
1487 uint32 setup_count,
1488 char **ppparams,
1489 uint32 parameter_count,
1490 char **ppdata, uint32 data_count,
1491 uint32 max_data_count,
1492 uint32 max_param_count)
1494 uint16 *setup = *ppsetup;
1495 files_struct *fsp;
1496 uint32 filter;
1497 NTSTATUS status;
1498 bool recursive;
1500 if(setup_count < 6) {
1501 reply_doserror(req, ERRDOS, ERRbadfunc);
1502 return;
1505 fsp = file_fsp(req, SVAL(setup,4));
1506 filter = IVAL(setup, 0);
1507 recursive = (SVAL(setup, 6) != 0) ? True : False;
1509 DEBUG(3,("call_nt_transact_notify_change\n"));
1511 if(!fsp) {
1512 reply_doserror(req, ERRDOS, ERRbadfid);
1513 return;
1517 char *filter_string;
1519 if (!(filter_string = notify_filter_string(NULL, filter))) {
1520 reply_nterror(req,NT_STATUS_NO_MEMORY);
1521 return;
1524 DEBUG(3,("call_nt_transact_notify_change: notify change "
1525 "called on %s, filter = %s, recursive = %d\n",
1526 fsp_str_dbg(fsp), filter_string, recursive));
1528 TALLOC_FREE(filter_string);
1531 if((!fsp->is_directory) || (conn != fsp->conn)) {
1532 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1533 return;
1536 if (fsp->notify == NULL) {
1538 status = change_notify_create(fsp, filter, recursive);
1540 if (!NT_STATUS_IS_OK(status)) {
1541 DEBUG(10, ("change_notify_create returned %s\n",
1542 nt_errstr(status)));
1543 reply_nterror(req, status);
1544 return;
1548 if (fsp->notify->num_changes != 0) {
1551 * We've got changes pending, respond immediately
1555 * TODO: write a torture test to check the filtering behaviour
1556 * here.
1559 change_notify_reply(fsp->conn, req,
1560 NT_STATUS_OK,
1561 max_param_count,
1562 fsp->notify,
1563 smbd_smb1_notify_reply);
1566 * change_notify_reply() above has independently sent its
1567 * results
1569 return;
1573 * No changes pending, queue the request
1576 status = change_notify_add_request(req,
1577 max_param_count,
1578 filter,
1579 recursive, fsp,
1580 smbd_smb1_notify_reply);
1581 if (!NT_STATUS_IS_OK(status)) {
1582 reply_nterror(req, status);
1584 return;
1587 /****************************************************************************
1588 Reply to an NT transact rename command.
1589 ****************************************************************************/
1591 static void call_nt_transact_rename(connection_struct *conn,
1592 struct smb_request *req,
1593 uint16 **ppsetup, uint32 setup_count,
1594 char **ppparams, uint32 parameter_count,
1595 char **ppdata, uint32 data_count,
1596 uint32 max_data_count)
1598 char *params = *ppparams;
1599 char *new_name = NULL;
1600 files_struct *fsp = NULL;
1601 bool dest_has_wcard = False;
1602 NTSTATUS status;
1603 TALLOC_CTX *ctx = talloc_tos();
1605 if(parameter_count < 5) {
1606 reply_doserror(req, ERRDOS, ERRbadfunc);
1607 return;
1610 fsp = file_fsp(req, SVAL(params, 0));
1611 if (!check_fsp(conn, req, fsp)) {
1612 return;
1614 srvstr_get_path_wcard(ctx, params, req->flags2, &new_name, params+4,
1615 parameter_count - 4,
1616 STR_TERMINATE, &status, &dest_has_wcard);
1617 if (!NT_STATUS_IS_OK(status)) {
1618 reply_nterror(req, status);
1619 return;
1623 * W2K3 ignores this request as the RAW-RENAME test
1624 * demonstrates, so we do.
1626 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1628 DEBUG(3,("nt transact rename from = %s, to = %s ignored!\n",
1629 fsp_str_dbg(fsp), new_name));
1631 return;
1634 /******************************************************************************
1635 Fake up a completely empty SD.
1636 *******************************************************************************/
1638 static NTSTATUS get_null_nt_acl(TALLOC_CTX *mem_ctx, SEC_DESC **ppsd)
1640 size_t sd_size;
1642 *ppsd = make_standard_sec_desc( mem_ctx, &global_sid_World, &global_sid_World, NULL, &sd_size);
1643 if(!*ppsd) {
1644 DEBUG(0,("get_null_nt_acl: Unable to malloc space for security descriptor.\n"));
1645 return NT_STATUS_NO_MEMORY;
1648 return NT_STATUS_OK;
1651 /****************************************************************************
1652 Reply to query a security descriptor.
1653 ****************************************************************************/
1655 static void call_nt_transact_query_security_desc(connection_struct *conn,
1656 struct smb_request *req,
1657 uint16 **ppsetup,
1658 uint32 setup_count,
1659 char **ppparams,
1660 uint32 parameter_count,
1661 char **ppdata,
1662 uint32 data_count,
1663 uint32 max_data_count)
1665 char *params = *ppparams;
1666 char *data = *ppdata;
1667 SEC_DESC *psd = NULL;
1668 size_t sd_size;
1669 uint32 security_info_wanted;
1670 files_struct *fsp = NULL;
1671 NTSTATUS status;
1672 DATA_BLOB blob;
1674 if(parameter_count < 8) {
1675 reply_doserror(req, ERRDOS, ERRbadfunc);
1676 return;
1679 fsp = file_fsp(req, SVAL(params,0));
1680 if(!fsp) {
1681 reply_doserror(req, ERRDOS, ERRbadfid);
1682 return;
1685 security_info_wanted = IVAL(params,4);
1687 DEBUG(3,("call_nt_transact_query_security_desc: file = %s, "
1688 "info_wanted = 0x%x\n", fsp_str_dbg(fsp),
1689 (unsigned int)security_info_wanted));
1691 params = nttrans_realloc(ppparams, 4);
1692 if(params == NULL) {
1693 reply_doserror(req, ERRDOS, ERRnomem);
1694 return;
1698 * Get the permissions to return.
1701 if (!lp_nt_acl_support(SNUM(conn))) {
1702 status = get_null_nt_acl(talloc_tos(), &psd);
1703 } else {
1704 status = SMB_VFS_FGET_NT_ACL(
1705 fsp, security_info_wanted, &psd);
1707 if (!NT_STATUS_IS_OK(status)) {
1708 reply_nterror(req, status);
1709 return;
1712 /* If the SACL/DACL is NULL, but was requested, we mark that it is
1713 * present in the reply to match Windows behavior */
1714 if (psd->sacl == NULL &&
1715 security_info_wanted & SACL_SECURITY_INFORMATION)
1716 psd->type |= SEC_DESC_SACL_PRESENT;
1717 if (psd->dacl == NULL &&
1718 security_info_wanted & DACL_SECURITY_INFORMATION)
1719 psd->type |= SEC_DESC_DACL_PRESENT;
1721 sd_size = ndr_size_security_descriptor(psd, NULL, 0);
1723 DEBUG(3,("call_nt_transact_query_security_desc: sd_size = %lu.\n",(unsigned long)sd_size));
1725 if (DEBUGLEVEL >= 10) {
1726 DEBUG(10,("call_nt_transact_query_security_desc for file %s\n",
1727 fsp_str_dbg(fsp)));
1728 NDR_PRINT_DEBUG(security_descriptor, psd);
1731 SIVAL(params,0,(uint32)sd_size);
1733 if (max_data_count < sd_size) {
1734 send_nt_replies(conn, req, NT_STATUS_BUFFER_TOO_SMALL,
1735 params, 4, *ppdata, 0);
1736 return;
1740 * Allocate the data we will point this at.
1743 data = nttrans_realloc(ppdata, sd_size);
1744 if(data == NULL) {
1745 reply_doserror(req, ERRDOS, ERRnomem);
1746 return;
1749 status = marshall_sec_desc(talloc_tos(), psd,
1750 &blob.data, &blob.length);
1752 if (!NT_STATUS_IS_OK(status)) {
1753 reply_nterror(req, status);
1754 return;
1757 SMB_ASSERT(sd_size == blob.length);
1758 memcpy(data, blob.data, sd_size);
1760 send_nt_replies(conn, req, NT_STATUS_OK, params, 4, data, (int)sd_size);
1762 return;
1765 /****************************************************************************
1766 Reply to set a security descriptor. Map to UNIX perms or POSIX ACLs.
1767 ****************************************************************************/
1769 static void call_nt_transact_set_security_desc(connection_struct *conn,
1770 struct smb_request *req,
1771 uint16 **ppsetup,
1772 uint32 setup_count,
1773 char **ppparams,
1774 uint32 parameter_count,
1775 char **ppdata,
1776 uint32 data_count,
1777 uint32 max_data_count)
1779 char *params= *ppparams;
1780 char *data = *ppdata;
1781 files_struct *fsp = NULL;
1782 uint32 security_info_sent = 0;
1783 NTSTATUS status;
1785 if(parameter_count < 8) {
1786 reply_doserror(req, ERRDOS, ERRbadfunc);
1787 return;
1790 if((fsp = file_fsp(req, SVAL(params,0))) == NULL) {
1791 reply_doserror(req, ERRDOS, ERRbadfid);
1792 return;
1795 if(!lp_nt_acl_support(SNUM(conn))) {
1796 goto done;
1799 security_info_sent = IVAL(params,4);
1801 DEBUG(3,("call_nt_transact_set_security_desc: file = %s, sent 0x%x\n",
1802 fsp_str_dbg(fsp), (unsigned int)security_info_sent));
1804 if (data_count == 0) {
1805 reply_doserror(req, ERRDOS, ERRnoaccess);
1806 return;
1809 status = set_sd(fsp, (uint8 *)data, data_count, security_info_sent);
1811 if (!NT_STATUS_IS_OK(status)) {
1812 reply_nterror(req, status);
1813 return;
1816 done:
1817 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1818 return;
1821 /****************************************************************************
1822 Reply to NT IOCTL
1823 ****************************************************************************/
1825 static void call_nt_transact_ioctl(connection_struct *conn,
1826 struct smb_request *req,
1827 uint16 **ppsetup, uint32 setup_count,
1828 char **ppparams, uint32 parameter_count,
1829 char **ppdata, uint32 data_count,
1830 uint32 max_data_count)
1832 uint32 function;
1833 uint16 fidnum;
1834 files_struct *fsp;
1835 uint8 isFSctl;
1836 uint8 compfilter;
1837 char *pdata = *ppdata;
1839 if (setup_count != 8) {
1840 DEBUG(3,("call_nt_transact_ioctl: invalid setup count %d\n", setup_count));
1841 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
1842 return;
1845 function = IVAL(*ppsetup, 0);
1846 fidnum = SVAL(*ppsetup, 4);
1847 isFSctl = CVAL(*ppsetup, 6);
1848 compfilter = CVAL(*ppsetup, 7);
1850 DEBUG(10,("call_nt_transact_ioctl: function[0x%08X] FID[0x%04X] isFSctl[0x%02X] compfilter[0x%02X]\n",
1851 function, fidnum, isFSctl, compfilter));
1853 fsp=file_fsp(req, fidnum);
1854 /* this check is done in each implemented function case for now
1855 because I don't want to break anything... --metze
1856 FSP_BELONGS_CONN(fsp,conn);*/
1858 SMB_PERFCOUNT_SET_IOCTL(&req->pcd, function);
1860 switch (function) {
1861 case FSCTL_SET_SPARSE:
1862 /* pretend this succeeded - tho strictly we should
1863 mark the file sparse (if the local fs supports it)
1864 so we can know if we need to pre-allocate or not */
1866 DEBUG(10,("FSCTL_SET_SPARSE: called on FID[0x%04X](but not implemented)\n", fidnum));
1867 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
1868 return;
1870 case FSCTL_CREATE_OR_GET_OBJECT_ID:
1872 unsigned char objid[16];
1874 /* This should return the object-id on this file.
1875 * I think I'll make this be the inode+dev. JRA.
1878 DEBUG(10,("FSCTL_CREATE_OR_GET_OBJECT_ID: called on FID[0x%04X]\n",fidnum));
1880 if (!fsp_belongs_conn(conn, req, fsp)) {
1881 return;
1884 data_count = 64;
1885 pdata = nttrans_realloc(ppdata, data_count);
1886 if (pdata == NULL) {
1887 reply_nterror(req, NT_STATUS_NO_MEMORY);
1888 return;
1891 /* For backwards compatibility only store the dev/inode. */
1892 push_file_id_16(pdata, &fsp->file_id);
1893 memcpy(pdata+16,create_volume_objectid(conn,objid),16);
1894 push_file_id_16(pdata+32, &fsp->file_id);
1895 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0,
1896 pdata, data_count);
1897 return;
1900 case FSCTL_GET_REPARSE_POINT:
1901 /* pretend this fail - my winXP does it like this
1902 * --metze
1905 DEBUG(10,("FSCTL_GET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
1906 reply_nterror(req, NT_STATUS_NOT_A_REPARSE_POINT);
1907 return;
1909 case FSCTL_SET_REPARSE_POINT:
1910 /* pretend this fail - I'm assuming this because of the FSCTL_GET_REPARSE_POINT case.
1911 * --metze
1914 DEBUG(10,("FSCTL_SET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
1915 reply_nterror(req, NT_STATUS_NOT_A_REPARSE_POINT);
1916 return;
1918 case FSCTL_GET_SHADOW_COPY_DATA: /* don't know if this name is right...*/
1921 * This is called to retrieve the number of Shadow Copies (a.k.a. snapshots)
1922 * and return their volume names. If max_data_count is 16, then it is just
1923 * asking for the number of volumes and length of the combined names.
1925 * pdata is the data allocated by our caller, but that uses
1926 * total_data_count (which is 0 in our case) rather than max_data_count.
1927 * Allocate the correct amount and return the pointer to let
1928 * it be deallocated when we return.
1930 SHADOW_COPY_DATA *shadow_data = NULL;
1931 TALLOC_CTX *shadow_mem_ctx = NULL;
1932 bool labels = False;
1933 uint32 labels_data_count = 0;
1934 uint32 i;
1935 char *cur_pdata;
1937 if (!fsp_belongs_conn(conn, req, fsp)) {
1938 return;
1941 if (max_data_count < 16) {
1942 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) < 16 is invalid!\n",
1943 max_data_count));
1944 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1945 return;
1948 if (max_data_count > 16) {
1949 labels = True;
1952 shadow_mem_ctx = talloc_init("SHADOW_COPY_DATA");
1953 if (shadow_mem_ctx == NULL) {
1954 DEBUG(0,("talloc_init(SHADOW_COPY_DATA) failed!\n"));
1955 reply_nterror(req, NT_STATUS_NO_MEMORY);
1956 return;
1959 shadow_data = TALLOC_ZERO_P(shadow_mem_ctx,SHADOW_COPY_DATA);
1960 if (shadow_data == NULL) {
1961 DEBUG(0,("TALLOC_ZERO() failed!\n"));
1962 talloc_destroy(shadow_mem_ctx);
1963 reply_nterror(req, NT_STATUS_NO_MEMORY);
1964 return;
1967 shadow_data->mem_ctx = shadow_mem_ctx;
1970 * Call the VFS routine to actually do the work.
1972 if (SMB_VFS_GET_SHADOW_COPY_DATA(fsp, shadow_data, labels)!=0) {
1973 talloc_destroy(shadow_data->mem_ctx);
1974 if (errno == ENOSYS) {
1975 DEBUG(5,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, not supported.\n",
1976 conn->connectpath));
1977 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
1978 return;
1979 } else {
1980 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, failed.\n",
1981 conn->connectpath));
1982 reply_nterror(req, NT_STATUS_UNSUCCESSFUL);
1983 return;
1987 labels_data_count = (shadow_data->num_volumes*2*sizeof(SHADOW_COPY_LABEL))+2;
1989 if (!labels) {
1990 data_count = 16;
1991 } else {
1992 data_count = 12+labels_data_count+4;
1995 if (max_data_count<data_count) {
1996 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) too small (%u) bytes needed!\n",
1997 max_data_count,data_count));
1998 talloc_destroy(shadow_data->mem_ctx);
1999 reply_nterror(req, NT_STATUS_BUFFER_TOO_SMALL);
2000 return;
2003 pdata = nttrans_realloc(ppdata, data_count);
2004 if (pdata == NULL) {
2005 talloc_destroy(shadow_data->mem_ctx);
2006 reply_nterror(req, NT_STATUS_NO_MEMORY);
2007 return;
2010 cur_pdata = pdata;
2012 /* num_volumes 4 bytes */
2013 SIVAL(pdata,0,shadow_data->num_volumes);
2015 if (labels) {
2016 /* num_labels 4 bytes */
2017 SIVAL(pdata,4,shadow_data->num_volumes);
2020 /* needed_data_count 4 bytes */
2021 SIVAL(pdata,8,labels_data_count);
2023 cur_pdata+=12;
2025 DEBUG(10,("FSCTL_GET_SHADOW_COPY_DATA: %u volumes for path[%s].\n",
2026 shadow_data->num_volumes, fsp_str_dbg(fsp)));
2027 if (labels && shadow_data->labels) {
2028 for (i=0;i<shadow_data->num_volumes;i++) {
2029 srvstr_push(pdata, req->flags2,
2030 cur_pdata, shadow_data->labels[i],
2031 2*sizeof(SHADOW_COPY_LABEL),
2032 STR_UNICODE|STR_TERMINATE);
2033 cur_pdata+=2*sizeof(SHADOW_COPY_LABEL);
2034 DEBUGADD(10,("Label[%u]: '%s'\n",i,shadow_data->labels[i]));
2038 talloc_destroy(shadow_data->mem_ctx);
2040 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0,
2041 pdata, data_count);
2043 return;
2046 case FSCTL_FIND_FILES_BY_SID: /* I hope this name is right */
2048 /* pretend this succeeded -
2050 * we have to send back a list with all files owned by this SID
2052 * but I have to check that --metze
2054 DOM_SID sid;
2055 uid_t uid;
2056 size_t sid_len = MIN(data_count-4,SID_MAX_SIZE);
2058 DEBUG(10,("FSCTL_FIND_FILES_BY_SID: called on FID[0x%04X]\n",fidnum));
2060 if (!fsp_belongs_conn(conn, req, fsp)) {
2061 return;
2064 /* unknown 4 bytes: this is not the length of the sid :-( */
2065 /*unknown = IVAL(pdata,0);*/
2067 sid_parse(pdata+4,sid_len,&sid);
2068 DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid)));
2070 if (!sid_to_uid(&sid, &uid)) {
2071 DEBUG(0,("sid_to_uid: failed, sid[%s] sid_len[%lu]\n",
2072 sid_string_dbg(&sid),
2073 (unsigned long)sid_len));
2074 uid = (-1);
2077 /* we can take a look at the find source :-)
2079 * find ./ -uid $uid -name '*' is what we need here
2082 * and send 4bytes len and then NULL terminated unicode strings
2083 * for each file
2085 * but I don't know how to deal with the paged results
2086 * (maybe we can hang the result anywhere in the fsp struct)
2088 * we don't send all files at once
2089 * and at the next we should *not* start from the beginning,
2090 * so we have to cache the result
2092 * --metze
2095 /* this works for now... */
2096 send_nt_replies(conn, req, NT_STATUS_OK, NULL, 0, NULL, 0);
2097 return;
2099 default:
2100 if (!logged_ioctl_message) {
2101 logged_ioctl_message = true; /* Only print this once... */
2102 DEBUG(0,("call_nt_transact_ioctl(0x%x): Currently not implemented.\n",
2103 function));
2107 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
2111 #ifdef HAVE_SYS_QUOTAS
2112 /****************************************************************************
2113 Reply to get user quota
2114 ****************************************************************************/
2116 static void call_nt_transact_get_user_quota(connection_struct *conn,
2117 struct smb_request *req,
2118 uint16 **ppsetup,
2119 uint32 setup_count,
2120 char **ppparams,
2121 uint32 parameter_count,
2122 char **ppdata,
2123 uint32 data_count,
2124 uint32 max_data_count)
2126 NTSTATUS nt_status = NT_STATUS_OK;
2127 char *params = *ppparams;
2128 char *pdata = *ppdata;
2129 char *entry;
2130 int data_len=0,param_len=0;
2131 int qt_len=0;
2132 int entry_len = 0;
2133 files_struct *fsp = NULL;
2134 uint16 level = 0;
2135 size_t sid_len;
2136 DOM_SID sid;
2137 bool start_enum = True;
2138 SMB_NTQUOTA_STRUCT qt;
2139 SMB_NTQUOTA_LIST *tmp_list;
2140 SMB_NTQUOTA_HANDLE *qt_handle = NULL;
2142 ZERO_STRUCT(qt);
2144 /* access check */
2145 if (conn->server_info->utok.uid != 0) {
2146 DEBUG(1,("get_user_quota: access_denied service [%s] user "
2147 "[%s]\n", lp_servicename(SNUM(conn)),
2148 conn->server_info->unix_name));
2149 reply_doserror(req, ERRDOS, ERRnoaccess);
2150 return;
2154 * Ensure minimum number of parameters sent.
2157 if (parameter_count < 4) {
2158 DEBUG(0,("TRANSACT_GET_USER_QUOTA: requires %d >= 4 bytes parameters\n",parameter_count));
2159 reply_doserror(req, ERRDOS, ERRinvalidparam);
2160 return;
2163 /* maybe we can check the quota_fnum */
2164 fsp = file_fsp(req, SVAL(params,0));
2165 if (!check_fsp_ntquota_handle(conn, req, fsp)) {
2166 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2167 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
2168 return;
2171 /* the NULL pointer checking for fsp->fake_file_handle->pd
2172 * is done by CHECK_NTQUOTA_HANDLE_OK()
2174 qt_handle = (SMB_NTQUOTA_HANDLE *)fsp->fake_file_handle->private_data;
2176 level = SVAL(params,2);
2178 /* unknown 12 bytes leading in params */
2180 switch (level) {
2181 case TRANSACT_GET_USER_QUOTA_LIST_CONTINUE:
2182 /* seems that we should continue with the enum here --metze */
2184 if (qt_handle->quota_list!=NULL &&
2185 qt_handle->tmp_list==NULL) {
2187 /* free the list */
2188 free_ntquota_list(&(qt_handle->quota_list));
2190 /* Realloc the size of parameters and data we will return */
2191 param_len = 4;
2192 params = nttrans_realloc(ppparams, param_len);
2193 if(params == NULL) {
2194 reply_doserror(req, ERRDOS, ERRnomem);
2195 return;
2198 data_len = 0;
2199 SIVAL(params,0,data_len);
2201 break;
2204 start_enum = False;
2206 case TRANSACT_GET_USER_QUOTA_LIST_START:
2208 if (qt_handle->quota_list==NULL &&
2209 qt_handle->tmp_list==NULL) {
2210 start_enum = True;
2213 if (start_enum && vfs_get_user_ntquota_list(fsp,&(qt_handle->quota_list))!=0) {
2214 reply_doserror(req, ERRSRV, ERRerror);
2215 return;
2218 /* Realloc the size of parameters and data we will return */
2219 param_len = 4;
2220 params = nttrans_realloc(ppparams, param_len);
2221 if(params == NULL) {
2222 reply_doserror(req, ERRDOS, ERRnomem);
2223 return;
2226 /* we should not trust the value in max_data_count*/
2227 max_data_count = MIN(max_data_count,2048);
2229 pdata = nttrans_realloc(ppdata, max_data_count);/* should be max data count from client*/
2230 if(pdata == NULL) {
2231 reply_doserror(req, ERRDOS, ERRnomem);
2232 return;
2235 entry = pdata;
2237 /* set params Size of returned Quota Data 4 bytes*/
2238 /* but set it later when we know it */
2240 /* for each entry push the data */
2242 if (start_enum) {
2243 qt_handle->tmp_list = qt_handle->quota_list;
2246 tmp_list = qt_handle->tmp_list;
2248 for (;((tmp_list!=NULL)&&((qt_len +40+SID_MAX_SIZE)<max_data_count));
2249 tmp_list=tmp_list->next,entry+=entry_len,qt_len+=entry_len) {
2251 sid_len = ndr_size_dom_sid(
2252 &tmp_list->quotas->sid, NULL, 0);
2253 entry_len = 40 + sid_len;
2255 /* nextoffset entry 4 bytes */
2256 SIVAL(entry,0,entry_len);
2258 /* then the len of the SID 4 bytes */
2259 SIVAL(entry,4,sid_len);
2261 /* unknown data 8 bytes uint64_t */
2262 SBIG_UINT(entry,8,(uint64_t)0); /* this is not 0 in windows...-metze*/
2264 /* the used disk space 8 bytes uint64_t */
2265 SBIG_UINT(entry,16,tmp_list->quotas->usedspace);
2267 /* the soft quotas 8 bytes uint64_t */
2268 SBIG_UINT(entry,24,tmp_list->quotas->softlim);
2270 /* the hard quotas 8 bytes uint64_t */
2271 SBIG_UINT(entry,32,tmp_list->quotas->hardlim);
2273 /* and now the SID */
2274 sid_linearize(entry+40, sid_len, &tmp_list->quotas->sid);
2277 qt_handle->tmp_list = tmp_list;
2279 /* overwrite the offset of the last entry */
2280 SIVAL(entry-entry_len,0,0);
2282 data_len = 4+qt_len;
2283 /* overwrite the params quota_data_len */
2284 SIVAL(params,0,data_len);
2286 break;
2288 case TRANSACT_GET_USER_QUOTA_FOR_SID:
2290 /* unknown 4 bytes IVAL(pdata,0) */
2292 if (data_count < 8) {
2293 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %d bytes data\n",data_count,8));
2294 reply_doserror(req, ERRDOS, ERRunknownlevel);
2295 return;
2298 sid_len = IVAL(pdata,4);
2299 /* Ensure this is less than 1mb. */
2300 if (sid_len > (1024*1024)) {
2301 reply_doserror(req, ERRDOS, ERRnomem);
2302 return;
2305 if (data_count < 8+sid_len) {
2306 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %lu bytes data\n",data_count,(unsigned long)(8+sid_len)));
2307 reply_doserror(req, ERRDOS, ERRunknownlevel);
2308 return;
2311 data_len = 4+40+sid_len;
2313 if (max_data_count < data_len) {
2314 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: max_data_count(%d) < data_len(%d)\n",
2315 max_data_count, data_len));
2316 param_len = 4;
2317 SIVAL(params,0,data_len);
2318 data_len = 0;
2319 nt_status = NT_STATUS_BUFFER_TOO_SMALL;
2320 break;
2323 sid_parse(pdata+8,sid_len,&sid);
2325 if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2326 ZERO_STRUCT(qt);
2328 * we have to return zero's in all fields
2329 * instead of returning an error here
2330 * --metze
2334 /* Realloc the size of parameters and data we will return */
2335 param_len = 4;
2336 params = nttrans_realloc(ppparams, param_len);
2337 if(params == NULL) {
2338 reply_doserror(req, ERRDOS, ERRnomem);
2339 return;
2342 pdata = nttrans_realloc(ppdata, data_len);
2343 if(pdata == NULL) {
2344 reply_doserror(req, ERRDOS, ERRnomem);
2345 return;
2348 entry = pdata;
2350 /* set params Size of returned Quota Data 4 bytes*/
2351 SIVAL(params,0,data_len);
2353 /* nextoffset entry 4 bytes */
2354 SIVAL(entry,0,0);
2356 /* then the len of the SID 4 bytes */
2357 SIVAL(entry,4,sid_len);
2359 /* unknown data 8 bytes uint64_t */
2360 SBIG_UINT(entry,8,(uint64_t)0); /* this is not 0 in windows...-mezte*/
2362 /* the used disk space 8 bytes uint64_t */
2363 SBIG_UINT(entry,16,qt.usedspace);
2365 /* the soft quotas 8 bytes uint64_t */
2366 SBIG_UINT(entry,24,qt.softlim);
2368 /* the hard quotas 8 bytes uint64_t */
2369 SBIG_UINT(entry,32,qt.hardlim);
2371 /* and now the SID */
2372 sid_linearize(entry+40, sid_len, &sid);
2374 break;
2376 default:
2377 DEBUG(0,("do_nt_transact_get_user_quota: fnum %d unknown level 0x%04hX\n",fsp->fnum,level));
2378 reply_doserror(req, ERRSRV, ERRerror);
2379 return;
2380 break;
2383 send_nt_replies(conn, req, nt_status, params, param_len,
2384 pdata, data_len);
2387 /****************************************************************************
2388 Reply to set user quota
2389 ****************************************************************************/
2391 static void call_nt_transact_set_user_quota(connection_struct *conn,
2392 struct smb_request *req,
2393 uint16 **ppsetup,
2394 uint32 setup_count,
2395 char **ppparams,
2396 uint32 parameter_count,
2397 char **ppdata,
2398 uint32 data_count,
2399 uint32 max_data_count)
2401 char *params = *ppparams;
2402 char *pdata = *ppdata;
2403 int data_len=0,param_len=0;
2404 SMB_NTQUOTA_STRUCT qt;
2405 size_t sid_len;
2406 DOM_SID sid;
2407 files_struct *fsp = NULL;
2409 ZERO_STRUCT(qt);
2411 /* access check */
2412 if (conn->server_info->utok.uid != 0) {
2413 DEBUG(1,("set_user_quota: access_denied service [%s] user "
2414 "[%s]\n", lp_servicename(SNUM(conn)),
2415 conn->server_info->unix_name));
2416 reply_doserror(req, ERRDOS, ERRnoaccess);
2417 return;
2421 * Ensure minimum number of parameters sent.
2424 if (parameter_count < 2) {
2425 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= 2 bytes parameters\n",parameter_count));
2426 reply_doserror(req, ERRDOS, ERRinvalidparam);
2427 return;
2430 /* maybe we can check the quota_fnum */
2431 fsp = file_fsp(req, SVAL(params,0));
2432 if (!check_fsp_ntquota_handle(conn, req, fsp)) {
2433 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2434 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
2435 return;
2438 if (data_count < 40) {
2439 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %d bytes data\n",data_count,40));
2440 reply_doserror(req, ERRDOS, ERRunknownlevel);
2441 return;
2444 /* offset to next quota record.
2445 * 4 bytes IVAL(pdata,0)
2446 * unused here...
2449 /* sid len */
2450 sid_len = IVAL(pdata,4);
2452 if (data_count < 40+sid_len) {
2453 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %lu bytes data\n",data_count,(unsigned long)40+sid_len));
2454 reply_doserror(req, ERRDOS, ERRunknownlevel);
2455 return;
2458 /* unknown 8 bytes in pdata
2459 * maybe its the change time in NTTIME
2462 /* the used space 8 bytes (uint64_t)*/
2463 qt.usedspace = (uint64_t)IVAL(pdata,16);
2464 #ifdef LARGE_SMB_OFF_T
2465 qt.usedspace |= (((uint64_t)IVAL(pdata,20)) << 32);
2466 #else /* LARGE_SMB_OFF_T */
2467 if ((IVAL(pdata,20) != 0)&&
2468 ((qt.usedspace != 0xFFFFFFFF)||
2469 (IVAL(pdata,20)!=0xFFFFFFFF))) {
2470 /* more than 32 bits? */
2471 reply_doserror(req, ERRDOS, ERRunknownlevel);
2472 return;
2474 #endif /* LARGE_SMB_OFF_T */
2476 /* the soft quotas 8 bytes (uint64_t)*/
2477 qt.softlim = (uint64_t)IVAL(pdata,24);
2478 #ifdef LARGE_SMB_OFF_T
2479 qt.softlim |= (((uint64_t)IVAL(pdata,28)) << 32);
2480 #else /* LARGE_SMB_OFF_T */
2481 if ((IVAL(pdata,28) != 0)&&
2482 ((qt.softlim != 0xFFFFFFFF)||
2483 (IVAL(pdata,28)!=0xFFFFFFFF))) {
2484 /* more than 32 bits? */
2485 reply_doserror(req, ERRDOS, ERRunknownlevel);
2486 return;
2488 #endif /* LARGE_SMB_OFF_T */
2490 /* the hard quotas 8 bytes (uint64_t)*/
2491 qt.hardlim = (uint64_t)IVAL(pdata,32);
2492 #ifdef LARGE_SMB_OFF_T
2493 qt.hardlim |= (((uint64_t)IVAL(pdata,36)) << 32);
2494 #else /* LARGE_SMB_OFF_T */
2495 if ((IVAL(pdata,36) != 0)&&
2496 ((qt.hardlim != 0xFFFFFFFF)||
2497 (IVAL(pdata,36)!=0xFFFFFFFF))) {
2498 /* more than 32 bits? */
2499 reply_doserror(req, ERRDOS, ERRunknownlevel);
2500 return;
2502 #endif /* LARGE_SMB_OFF_T */
2504 sid_parse(pdata+40,sid_len,&sid);
2505 DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid)));
2507 /* 44 unknown bytes left... */
2509 if (vfs_set_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2510 reply_doserror(req, ERRSRV, ERRerror);
2511 return;
2514 send_nt_replies(conn, req, NT_STATUS_OK, params, param_len,
2515 pdata, data_len);
2517 #endif /* HAVE_SYS_QUOTAS */
2519 static void handle_nttrans(connection_struct *conn,
2520 struct trans_state *state,
2521 struct smb_request *req)
2523 if (Protocol >= PROTOCOL_NT1) {
2524 req->flags2 |= 0x40; /* IS_LONG_NAME */
2525 SSVAL(req->inbuf,smb_flg2,req->flags2);
2529 SMB_PERFCOUNT_SET_SUBOP(&req->pcd, state->call);
2531 /* Now we must call the relevant NT_TRANS function */
2532 switch(state->call) {
2533 case NT_TRANSACT_CREATE:
2535 START_PROFILE(NT_transact_create);
2536 call_nt_transact_create(
2537 conn, req,
2538 &state->setup, state->setup_count,
2539 &state->param, state->total_param,
2540 &state->data, state->total_data,
2541 state->max_data_return);
2542 END_PROFILE(NT_transact_create);
2543 break;
2546 case NT_TRANSACT_IOCTL:
2548 START_PROFILE(NT_transact_ioctl);
2549 call_nt_transact_ioctl(
2550 conn, req,
2551 &state->setup, state->setup_count,
2552 &state->param, state->total_param,
2553 &state->data, state->total_data,
2554 state->max_data_return);
2555 END_PROFILE(NT_transact_ioctl);
2556 break;
2559 case NT_TRANSACT_SET_SECURITY_DESC:
2561 START_PROFILE(NT_transact_set_security_desc);
2562 call_nt_transact_set_security_desc(
2563 conn, req,
2564 &state->setup, state->setup_count,
2565 &state->param, state->total_param,
2566 &state->data, state->total_data,
2567 state->max_data_return);
2568 END_PROFILE(NT_transact_set_security_desc);
2569 break;
2572 case NT_TRANSACT_NOTIFY_CHANGE:
2574 START_PROFILE(NT_transact_notify_change);
2575 call_nt_transact_notify_change(
2576 conn, req,
2577 &state->setup, state->setup_count,
2578 &state->param, state->total_param,
2579 &state->data, state->total_data,
2580 state->max_data_return,
2581 state->max_param_return);
2582 END_PROFILE(NT_transact_notify_change);
2583 break;
2586 case NT_TRANSACT_RENAME:
2588 START_PROFILE(NT_transact_rename);
2589 call_nt_transact_rename(
2590 conn, req,
2591 &state->setup, state->setup_count,
2592 &state->param, state->total_param,
2593 &state->data, state->total_data,
2594 state->max_data_return);
2595 END_PROFILE(NT_transact_rename);
2596 break;
2599 case NT_TRANSACT_QUERY_SECURITY_DESC:
2601 START_PROFILE(NT_transact_query_security_desc);
2602 call_nt_transact_query_security_desc(
2603 conn, req,
2604 &state->setup, state->setup_count,
2605 &state->param, state->total_param,
2606 &state->data, state->total_data,
2607 state->max_data_return);
2608 END_PROFILE(NT_transact_query_security_desc);
2609 break;
2612 #ifdef HAVE_SYS_QUOTAS
2613 case NT_TRANSACT_GET_USER_QUOTA:
2615 START_PROFILE(NT_transact_get_user_quota);
2616 call_nt_transact_get_user_quota(
2617 conn, req,
2618 &state->setup, state->setup_count,
2619 &state->param, state->total_param,
2620 &state->data, state->total_data,
2621 state->max_data_return);
2622 END_PROFILE(NT_transact_get_user_quota);
2623 break;
2626 case NT_TRANSACT_SET_USER_QUOTA:
2628 START_PROFILE(NT_transact_set_user_quota);
2629 call_nt_transact_set_user_quota(
2630 conn, req,
2631 &state->setup, state->setup_count,
2632 &state->param, state->total_param,
2633 &state->data, state->total_data,
2634 state->max_data_return);
2635 END_PROFILE(NT_transact_set_user_quota);
2636 break;
2638 #endif /* HAVE_SYS_QUOTAS */
2640 default:
2641 /* Error in request */
2642 DEBUG(0,("handle_nttrans: Unknown request %d in "
2643 "nttrans call\n", state->call));
2644 reply_doserror(req, ERRSRV, ERRerror);
2645 return;
2647 return;
2650 /****************************************************************************
2651 Reply to a SMBNTtrans.
2652 ****************************************************************************/
2654 void reply_nttrans(struct smb_request *req)
2656 connection_struct *conn = req->conn;
2657 uint32_t pscnt;
2658 uint32_t psoff;
2659 uint32_t dscnt;
2660 uint32_t dsoff;
2661 uint16 function_code;
2662 NTSTATUS result;
2663 struct trans_state *state;
2665 START_PROFILE(SMBnttrans);
2667 if (req->wct < 19) {
2668 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2669 END_PROFILE(SMBnttrans);
2670 return;
2673 pscnt = IVAL(req->vwv+9, 1);
2674 psoff = IVAL(req->vwv+11, 1);
2675 dscnt = IVAL(req->vwv+13, 1);
2676 dsoff = IVAL(req->vwv+15, 1);
2677 function_code = SVAL(req->vwv+18, 0);
2679 if (IS_IPC(conn) && (function_code != NT_TRANSACT_CREATE)) {
2680 reply_doserror(req, ERRSRV, ERRaccess);
2681 END_PROFILE(SMBnttrans);
2682 return;
2685 result = allow_new_trans(conn->pending_trans, req->mid);
2686 if (!NT_STATUS_IS_OK(result)) {
2687 DEBUG(2, ("Got invalid nttrans request: %s\n", nt_errstr(result)));
2688 reply_nterror(req, result);
2689 END_PROFILE(SMBnttrans);
2690 return;
2693 if ((state = TALLOC_P(conn, struct trans_state)) == NULL) {
2694 reply_doserror(req, ERRSRV, ERRaccess);
2695 END_PROFILE(SMBnttrans);
2696 return;
2699 state->cmd = SMBnttrans;
2701 state->mid = req->mid;
2702 state->vuid = req->vuid;
2703 state->total_data = IVAL(req->vwv+3, 1);
2704 state->data = NULL;
2705 state->total_param = IVAL(req->vwv+1, 1);
2706 state->param = NULL;
2707 state->max_data_return = IVAL(req->vwv+7, 1);
2708 state->max_param_return = IVAL(req->vwv+5, 1);
2710 /* setup count is in *words* */
2711 state->setup_count = 2*CVAL(req->vwv+17, 1);
2712 state->setup = NULL;
2713 state->call = function_code;
2715 DEBUG(10, ("num_setup=%u, "
2716 "param_total=%u, this_param=%u, max_param=%u, "
2717 "data_total=%u, this_data=%u, max_data=%u, "
2718 "param_offset=%u, data_offset=%u\n",
2719 (unsigned)state->setup_count,
2720 (unsigned)state->total_param, (unsigned)pscnt,
2721 (unsigned)state->max_param_return,
2722 (unsigned)state->total_data, (unsigned)dscnt,
2723 (unsigned)state->max_data_return,
2724 (unsigned)psoff, (unsigned)dsoff));
2727 * All nttrans messages we handle have smb_wct == 19 +
2728 * state->setup_count. Ensure this is so as a sanity check.
2731 if(req->wct != 19 + (state->setup_count/2)) {
2732 DEBUG(2,("Invalid smb_wct %d in nttrans call (should be %d)\n",
2733 req->wct, 19 + (state->setup_count/2)));
2734 goto bad_param;
2737 /* Don't allow more than 128mb for each value. */
2738 if ((state->total_data > (1024*1024*128)) ||
2739 (state->total_param > (1024*1024*128))) {
2740 reply_doserror(req, ERRDOS, ERRnomem);
2741 END_PROFILE(SMBnttrans);
2742 return;
2745 if ((dscnt > state->total_data) || (pscnt > state->total_param))
2746 goto bad_param;
2748 if (state->total_data) {
2750 if (trans_oob(state->total_data, 0, dscnt)
2751 || trans_oob(smb_len(req->inbuf), dsoff, dscnt)) {
2752 goto bad_param;
2755 /* Can't use talloc here, the core routines do realloc on the
2756 * params and data. */
2757 if ((state->data = (char *)SMB_MALLOC(state->total_data)) == NULL) {
2758 DEBUG(0,("reply_nttrans: data malloc fail for %u "
2759 "bytes !\n", (unsigned int)state->total_data));
2760 TALLOC_FREE(state);
2761 reply_doserror(req, ERRDOS, ERRnomem);
2762 END_PROFILE(SMBnttrans);
2763 return;
2766 memcpy(state->data,smb_base(req->inbuf)+dsoff,dscnt);
2769 if (state->total_param) {
2771 if (trans_oob(state->total_param, 0, pscnt)
2772 || trans_oob(smb_len(req->inbuf), psoff, pscnt)) {
2773 goto bad_param;
2776 /* Can't use talloc here, the core routines do realloc on the
2777 * params and data. */
2778 if ((state->param = (char *)SMB_MALLOC(state->total_param)) == NULL) {
2779 DEBUG(0,("reply_nttrans: param malloc fail for %u "
2780 "bytes !\n", (unsigned int)state->total_param));
2781 SAFE_FREE(state->data);
2782 TALLOC_FREE(state);
2783 reply_doserror(req, ERRDOS, ERRnomem);
2784 END_PROFILE(SMBnttrans);
2785 return;
2788 memcpy(state->param,smb_base(req->inbuf)+psoff,pscnt);
2791 state->received_data = dscnt;
2792 state->received_param = pscnt;
2794 if(state->setup_count > 0) {
2795 DEBUG(10,("reply_nttrans: state->setup_count = %d\n",
2796 state->setup_count));
2799 * No overflow possible here, state->setup_count is an
2800 * unsigned int, being filled by a single byte from
2801 * CVAL(req->vwv+13, 0) above. The cast in the comparison
2802 * below is not necessary, it's here to clarify things. The
2803 * validity of req->vwv and req->wct has been checked in
2804 * init_smb_request already.
2806 if ((state->setup_count/2) + 19 > (unsigned int)req->wct) {
2807 goto bad_param;
2810 state->setup = (uint16 *)TALLOC(state, state->setup_count);
2811 if (state->setup == NULL) {
2812 DEBUG(0,("reply_nttrans : Out of memory\n"));
2813 SAFE_FREE(state->data);
2814 SAFE_FREE(state->param);
2815 TALLOC_FREE(state);
2816 reply_doserror(req, ERRDOS, ERRnomem);
2817 END_PROFILE(SMBnttrans);
2818 return;
2821 memcpy(state->setup, req->vwv+19, state->setup_count);
2822 dump_data(10, (uint8 *)state->setup, state->setup_count);
2825 if ((state->received_data == state->total_data) &&
2826 (state->received_param == state->total_param)) {
2827 handle_nttrans(conn, state, req);
2828 SAFE_FREE(state->param);
2829 SAFE_FREE(state->data);
2830 TALLOC_FREE(state);
2831 END_PROFILE(SMBnttrans);
2832 return;
2835 DLIST_ADD(conn->pending_trans, state);
2837 /* We need to send an interim response then receive the rest
2838 of the parameter/data bytes */
2839 reply_outbuf(req, 0, 0);
2840 show_msg((char *)req->outbuf);
2841 END_PROFILE(SMBnttrans);
2842 return;
2844 bad_param:
2846 DEBUG(0,("reply_nttrans: invalid trans parameters\n"));
2847 SAFE_FREE(state->data);
2848 SAFE_FREE(state->param);
2849 TALLOC_FREE(state);
2850 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2851 END_PROFILE(SMBnttrans);
2852 return;
2855 /****************************************************************************
2856 Reply to a SMBnttranss
2857 ****************************************************************************/
2859 void reply_nttranss(struct smb_request *req)
2861 connection_struct *conn = req->conn;
2862 uint32_t pcnt,poff,dcnt,doff,pdisp,ddisp;
2863 struct trans_state *state;
2865 START_PROFILE(SMBnttranss);
2867 show_msg((char *)req->inbuf);
2869 if (req->wct < 18) {
2870 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2871 END_PROFILE(SMBnttranss);
2872 return;
2875 for (state = conn->pending_trans; state != NULL;
2876 state = state->next) {
2877 if (state->mid == req->mid) {
2878 break;
2882 if ((state == NULL) || (state->cmd != SMBnttrans)) {
2883 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2884 END_PROFILE(SMBnttranss);
2885 return;
2888 /* Revise state->total_param and state->total_data in case they have
2889 changed downwards */
2890 if (IVAL(req->vwv+1, 1) < state->total_param) {
2891 state->total_param = IVAL(req->vwv+1, 1);
2893 if (IVAL(req->vwv+3, 1) < state->total_data) {
2894 state->total_data = IVAL(req->vwv+3, 1);
2897 pcnt = IVAL(req->vwv+5, 1);
2898 poff = IVAL(req->vwv+7, 1);
2899 pdisp = IVAL(req->vwv+9, 1);
2901 dcnt = IVAL(req->vwv+11, 1);
2902 doff = IVAL(req->vwv+13, 1);
2903 ddisp = IVAL(req->vwv+15, 1);
2905 state->received_param += pcnt;
2906 state->received_data += dcnt;
2908 if ((state->received_data > state->total_data) ||
2909 (state->received_param > state->total_param))
2910 goto bad_param;
2912 if (pcnt) {
2913 if (trans_oob(state->total_param, pdisp, pcnt)
2914 || trans_oob(smb_len(req->inbuf), poff, pcnt)) {
2915 goto bad_param;
2917 memcpy(state->param+pdisp, smb_base(req->inbuf)+poff,pcnt);
2920 if (dcnt) {
2921 if (trans_oob(state->total_data, ddisp, dcnt)
2922 || trans_oob(smb_len(req->inbuf), doff, dcnt)) {
2923 goto bad_param;
2925 memcpy(state->data+ddisp, smb_base(req->inbuf)+doff,dcnt);
2928 if ((state->received_param < state->total_param) ||
2929 (state->received_data < state->total_data)) {
2930 END_PROFILE(SMBnttranss);
2931 return;
2934 handle_nttrans(conn, state, req);
2936 DLIST_REMOVE(conn->pending_trans, state);
2937 SAFE_FREE(state->data);
2938 SAFE_FREE(state->param);
2939 TALLOC_FREE(state);
2940 END_PROFILE(SMBnttranss);
2941 return;
2943 bad_param:
2945 DEBUG(0,("reply_nttranss: invalid trans parameters\n"));
2946 DLIST_REMOVE(conn->pending_trans, state);
2947 SAFE_FREE(state->data);
2948 SAFE_FREE(state->param);
2949 TALLOC_FREE(state);
2950 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2951 END_PROFILE(SMBnttranss);
2952 return;