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/>.
22 #include "system/filesys.h"
23 #include "smbd/smbd.h"
24 #include "smbd/globals.h"
25 #include "fake_file.h"
26 #include "../libcli/security/security.h"
27 #include "../librpc/gen_ndr/ndr_security.h"
28 #include "passdb/lookup_sid.h"
30 #include "smbprofile.h"
31 #include "libsmb/libsmb.h"
32 #include "lib/util_ea.h"
33 #include "librpc/gen_ndr/ndr_quota.h"
34 #include "librpc/gen_ndr/ndr_security.h"
36 extern const struct generic_mapping file_generic_mapping
;
38 static char *nttrans_realloc(char **ptr
, size_t size
)
41 smb_panic("nttrans_realloc() called with NULL ptr");
44 *ptr
= (char *)SMB_REALLOC(*ptr
, size
);
48 memset(*ptr
,'\0',size
);
52 /****************************************************************************
53 Send the required number of replies back.
54 We assume all fields other than the data fields are
55 set correctly for the type of call.
56 HACK ! Always assumes smb_setup field is zero.
57 ****************************************************************************/
59 static void send_nt_replies(connection_struct
*conn
,
60 struct smb_request
*req
, NTSTATUS nt_error
,
61 char *params
, int paramsize
,
62 char *pdata
, int datasize
)
64 int data_to_send
= datasize
;
65 int params_to_send
= paramsize
;
69 int params_sent_thistime
, data_sent_thistime
, total_sent_thistime
;
70 int alignment_offset
= 1;
71 int data_alignment_offset
= 0;
72 struct smbXsrv_connection
*xconn
= req
->xconn
;
73 int max_send
= xconn
->smb1
.sessions
.max_send
;
76 * If there genuinely are no parameters or data to send just send
80 if(params_to_send
== 0 && data_to_send
== 0) {
81 reply_outbuf(req
, 18, 0);
82 if (NT_STATUS_V(nt_error
)) {
83 error_packet_set((char *)req
->outbuf
,
87 show_msg((char *)req
->outbuf
);
88 if (!srv_send_smb(xconn
,
91 IS_CONN_ENCRYPTED(conn
),
93 exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
95 TALLOC_FREE(req
->outbuf
);
100 * When sending params and data ensure that both are nicely aligned.
101 * Only do this alignment when there is also data to send - else
102 * can cause NT redirector problems.
105 if (((params_to_send
% 4) != 0) && (data_to_send
!= 0)) {
106 data_alignment_offset
= 4 - (params_to_send
% 4);
110 * Space is bufsize minus Netbios over TCP header minus SMB header.
111 * The alignment_offset is to align the param bytes on a four byte
112 * boundary (2 bytes for data len, one byte pad).
113 * NT needs this to work correctly.
116 useable_space
= max_send
- (smb_size
119 + data_alignment_offset
);
121 if (useable_space
< 0) {
122 char *msg
= talloc_asprintf(
124 "send_nt_replies failed sanity useable_space = %d!!!",
126 DEBUG(0, ("%s\n", msg
));
127 exit_server_cleanly(msg
);
130 while (params_to_send
|| data_to_send
) {
133 * Calculate whether we will totally or partially fill this packet.
136 total_sent_thistime
= params_to_send
+ data_to_send
;
139 * We can never send more than useable_space.
142 total_sent_thistime
= MIN(total_sent_thistime
, useable_space
);
144 reply_outbuf(req
, 18,
145 total_sent_thistime
+ alignment_offset
146 + data_alignment_offset
);
149 * Set total params and data to be sent.
152 SIVAL(req
->outbuf
,smb_ntr_TotalParameterCount
,paramsize
);
153 SIVAL(req
->outbuf
,smb_ntr_TotalDataCount
,datasize
);
156 * Calculate how many parameters and data we can fit into
157 * this packet. Parameters get precedence.
160 params_sent_thistime
= MIN(params_to_send
,useable_space
);
161 data_sent_thistime
= useable_space
- params_sent_thistime
;
162 data_sent_thistime
= MIN(data_sent_thistime
,data_to_send
);
164 SIVAL(req
->outbuf
, smb_ntr_ParameterCount
,
165 params_sent_thistime
);
167 if(params_sent_thistime
== 0) {
168 SIVAL(req
->outbuf
,smb_ntr_ParameterOffset
,0);
169 SIVAL(req
->outbuf
,smb_ntr_ParameterDisplacement
,0);
172 * smb_ntr_ParameterOffset is the offset from the start of the SMB header to the
173 * parameter bytes, however the first 4 bytes of outbuf are
174 * the Netbios over TCP header. Thus use smb_base() to subtract
175 * them from the calculation.
178 SIVAL(req
->outbuf
,smb_ntr_ParameterOffset
,
179 ((smb_buf(req
->outbuf
)+alignment_offset
)
180 - smb_base(req
->outbuf
)));
182 * Absolute displacement of param bytes sent in this packet.
185 SIVAL(req
->outbuf
, smb_ntr_ParameterDisplacement
,
190 * Deal with the data portion.
193 SIVAL(req
->outbuf
, smb_ntr_DataCount
, data_sent_thistime
);
195 if(data_sent_thistime
== 0) {
196 SIVAL(req
->outbuf
,smb_ntr_DataOffset
,0);
197 SIVAL(req
->outbuf
,smb_ntr_DataDisplacement
, 0);
200 * The offset of the data bytes is the offset of the
201 * parameter bytes plus the number of parameters being sent this time.
204 SIVAL(req
->outbuf
, smb_ntr_DataOffset
,
205 ((smb_buf(req
->outbuf
)+alignment_offset
) -
206 smb_base(req
->outbuf
))
207 + params_sent_thistime
+ data_alignment_offset
);
208 SIVAL(req
->outbuf
,smb_ntr_DataDisplacement
, pd
- pdata
);
212 * Copy the param bytes into the packet.
215 if(params_sent_thistime
) {
216 if (alignment_offset
!= 0) {
217 memset(smb_buf(req
->outbuf
), 0,
220 memcpy((smb_buf(req
->outbuf
)+alignment_offset
), pp
,
221 params_sent_thistime
);
225 * Copy in the data bytes
228 if(data_sent_thistime
) {
229 if (data_alignment_offset
!= 0) {
230 memset((smb_buf(req
->outbuf
)+alignment_offset
+
231 params_sent_thistime
), 0,
232 data_alignment_offset
);
234 memcpy(smb_buf(req
->outbuf
)+alignment_offset
235 +params_sent_thistime
+data_alignment_offset
,
236 pd
,data_sent_thistime
);
239 DEBUG(9,("nt_rep: params_sent_thistime = %d, data_sent_thistime = %d, useable_space = %d\n",
240 params_sent_thistime
, data_sent_thistime
, useable_space
));
241 DEBUG(9,("nt_rep: params_to_send = %d, data_to_send = %d, paramsize = %d, datasize = %d\n",
242 params_to_send
, data_to_send
, paramsize
, datasize
));
244 if (NT_STATUS_V(nt_error
)) {
245 error_packet_set((char *)req
->outbuf
,
250 /* Send the packet */
251 show_msg((char *)req
->outbuf
);
252 if (!srv_send_smb(xconn
,
255 IS_CONN_ENCRYPTED(conn
),
257 exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
260 TALLOC_FREE(req
->outbuf
);
262 pp
+= params_sent_thistime
;
263 pd
+= data_sent_thistime
;
265 params_to_send
-= params_sent_thistime
;
266 data_to_send
-= data_sent_thistime
;
272 if(params_to_send
< 0 || data_to_send
< 0) {
273 DEBUG(0,("send_nt_replies failed sanity check pts = %d, dts = %d\n!!!",
274 params_to_send
, data_to_send
));
275 exit_server_cleanly("send_nt_replies: internal error");
280 /****************************************************************************
281 Reply to an NT create and X call on a pipe
282 ****************************************************************************/
284 static void nt_open_pipe(char *fname
, connection_struct
*conn
,
285 struct smb_request
*req
, uint16_t *ppnum
)
290 DEBUG(4,("nt_open_pipe: Opening pipe %s.\n", fname
));
292 /* Strip \\ off the name if present. */
293 while (fname
[0] == '\\') {
297 status
= open_np_file(req
, fname
, &fsp
);
298 if (!NT_STATUS_IS_OK(status
)) {
299 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
300 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
304 reply_nterror(req
, status
);
312 /****************************************************************************
313 Reply to an NT create and X call for pipes.
314 ****************************************************************************/
316 static void do_ntcreate_pipe_open(connection_struct
*conn
,
317 struct smb_request
*req
)
320 uint16_t pnum
= FNUM_FIELD_INVALID
;
322 uint32_t flags
= IVAL(req
->vwv
+3, 1);
323 TALLOC_CTX
*ctx
= talloc_tos();
325 srvstr_pull_req_talloc(ctx
, req
, &fname
, req
->buf
, STR_TERMINATE
);
328 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
332 nt_open_pipe(fname
, conn
, req
, &pnum
);
340 * Deal with pipe return.
343 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
344 /* This is very strange. We
345 * return 50 words, but only set
346 * the wcnt to 42 ? It's definitely
347 * what happens on the wire....
349 reply_outbuf(req
, 50, 0);
350 SCVAL(req
->outbuf
,smb_wct
,42);
352 reply_outbuf(req
, 34, 0);
355 SSVAL(req
->outbuf
, smb_vwv0
, 0xff); /* andx chain ends */
356 SSVAL(req
->outbuf
, smb_vwv1
, 0); /* no andx offset */
358 p
= (char *)req
->outbuf
+ smb_vwv2
;
362 SIVAL(p
,0,FILE_WAS_OPENED
);
365 SIVAL(p
,0,FILE_ATTRIBUTE_NORMAL
); /* File Attributes. */
368 SSVAL(p
,0,FILE_TYPE_MESSAGE_MODE_PIPE
);
370 SSVAL(p
,2, 0x5FF); /* ? */
373 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
375 SIVAL(p
,0,FILE_GENERIC_ALL
);
377 * For pipes W2K3 seems to return
379 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
381 SIVAL(p
,4,(FILE_GENERIC_READ
|FILE_GENERIC_WRITE
)&~FILE_APPEND_DATA
);
384 DEBUG(5,("do_ntcreate_pipe_open: open pipe = %s\n", fname
));
387 struct case_semantics_state
{
388 connection_struct
*conn
;
391 bool short_case_preserve
;
394 /****************************************************************************
395 Restore case semantics.
396 ****************************************************************************/
398 static int restore_case_semantics(struct case_semantics_state
*state
)
400 state
->conn
->case_sensitive
= state
->case_sensitive
;
401 state
->conn
->case_preserve
= state
->case_preserve
;
402 state
->conn
->short_case_preserve
= state
->short_case_preserve
;
406 /****************************************************************************
408 ****************************************************************************/
410 static struct case_semantics_state
*set_posix_case_semantics(TALLOC_CTX
*mem_ctx
,
411 connection_struct
*conn
)
413 struct case_semantics_state
*result
;
415 if (!(result
= talloc(mem_ctx
, struct case_semantics_state
))) {
420 result
->case_sensitive
= conn
->case_sensitive
;
421 result
->case_preserve
= conn
->case_preserve
;
422 result
->short_case_preserve
= conn
->short_case_preserve
;
425 conn
->case_sensitive
= True
;
426 conn
->case_preserve
= True
;
427 conn
->short_case_preserve
= True
;
429 talloc_set_destructor(result
, restore_case_semantics
);
434 /****************************************************************************
435 Reply to an NT create and X call.
436 ****************************************************************************/
438 void reply_ntcreate_and_X(struct smb_request
*req
)
440 connection_struct
*conn
= req
->conn
;
441 struct smb_filename
*smb_fname
= NULL
;
444 uint32_t access_mask
;
445 uint32_t file_attributes
;
446 uint32_t share_access
;
447 uint32_t create_disposition
;
448 uint32_t create_options
;
449 uint16_t root_dir_fid
;
450 uint64_t allocation_size
;
451 /* Breakout the oplock request bits so we can set the
452 reply bits separately. */
456 files_struct
*fsp
= NULL
;
458 struct timespec create_timespec
;
459 struct timespec c_timespec
;
460 struct timespec a_timespec
;
461 struct timespec m_timespec
;
464 uint8_t oplock_granted
= NO_OPLOCK_RETURN
;
465 struct case_semantics_state
*case_state
= NULL
;
467 TALLOC_CTX
*ctx
= talloc_tos();
469 START_PROFILE(SMBntcreateX
);
472 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
476 flags
= IVAL(req
->vwv
+3, 1);
477 access_mask
= IVAL(req
->vwv
+7, 1);
478 file_attributes
= IVAL(req
->vwv
+13, 1);
479 share_access
= IVAL(req
->vwv
+15, 1);
480 create_disposition
= IVAL(req
->vwv
+17, 1);
481 create_options
= IVAL(req
->vwv
+19, 1);
482 root_dir_fid
= (uint16_t)IVAL(req
->vwv
+5, 1);
484 allocation_size
= BVAL(req
->vwv
+9, 1);
486 srvstr_get_path_req(ctx
, req
, &fname
, (const char *)req
->buf
,
487 STR_TERMINATE
, &status
);
489 if (!NT_STATUS_IS_OK(status
)) {
490 reply_nterror(req
, status
);
494 DEBUG(10,("reply_ntcreate_and_X: flags = 0x%x, access_mask = 0x%x "
495 "file_attributes = 0x%x, share_access = 0x%x, "
496 "create_disposition = 0x%x create_options = 0x%x "
497 "root_dir_fid = 0x%x, fname = %s\n",
499 (unsigned int)access_mask
,
500 (unsigned int)file_attributes
,
501 (unsigned int)share_access
,
502 (unsigned int)create_disposition
,
503 (unsigned int)create_options
,
504 (unsigned int)root_dir_fid
,
508 * we need to remove ignored bits when they come directly from the client
509 * because we reuse some of them for internal stuff
511 create_options
&= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK
;
514 * If it's an IPC, use the pipe handler.
518 if (lp_nt_pipe_support()) {
519 do_ntcreate_pipe_open(conn
, req
);
522 reply_nterror(req
, NT_STATUS_ACCESS_DENIED
);
526 oplock_request
= (flags
& REQUEST_OPLOCK
) ? EXCLUSIVE_OPLOCK
: 0;
527 if (oplock_request
) {
528 oplock_request
|= (flags
& REQUEST_BATCH_OPLOCK
)
532 if (file_attributes
& FILE_FLAG_POSIX_SEMANTICS
) {
533 case_state
= set_posix_case_semantics(ctx
, conn
);
535 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
540 ucf_flags
= filename_create_ucf_flags(req
, create_disposition
);
541 status
= filename_convert(ctx
,
548 TALLOC_FREE(case_state
);
550 if (!NT_STATUS_IS_OK(status
)) {
551 if (NT_STATUS_EQUAL(status
,NT_STATUS_PATH_NOT_COVERED
)) {
553 NT_STATUS_PATH_NOT_COVERED
,
557 reply_nterror(req
, status
);
562 * Bug #6898 - clients using Windows opens should
563 * never be able to set this attribute into the
566 file_attributes
&= ~FILE_FLAG_POSIX_SEMANTICS
;
568 status
= SMB_VFS_CREATE_FILE(
571 root_dir_fid
, /* root_dir_fid */
572 smb_fname
, /* fname */
573 access_mask
, /* access_mask */
574 share_access
, /* share_access */
575 create_disposition
, /* create_disposition*/
576 create_options
, /* create_options */
577 file_attributes
, /* file_attributes */
578 oplock_request
, /* oplock_request */
580 allocation_size
, /* allocation_size */
581 0, /* private_flags */
586 NULL
, NULL
); /* create context */
588 if (!NT_STATUS_IS_OK(status
)) {
589 if (open_was_deferred(req
->xconn
, req
->mid
)) {
590 /* We have re-scheduled this call, no error. */
593 reply_openerror(req
, status
);
597 /* Ensure we're pointing at the correct stat struct. */
598 TALLOC_FREE(smb_fname
);
599 smb_fname
= fsp
->fsp_name
;
602 * If the caller set the extended oplock request bit
603 * and we granted one (by whatever means) - set the
604 * correct bit for extended oplock reply.
607 if (oplock_request
&&
608 (lp_fake_oplocks(SNUM(conn
))
609 || EXCLUSIVE_OPLOCK_TYPE(fsp
->oplock_type
))) {
612 * Exclusive oplock granted
615 if (flags
& REQUEST_BATCH_OPLOCK
) {
616 oplock_granted
= BATCH_OPLOCK_RETURN
;
618 oplock_granted
= EXCLUSIVE_OPLOCK_RETURN
;
620 } else if (fsp
->oplock_type
== LEVEL_II_OPLOCK
) {
621 oplock_granted
= LEVEL_II_OPLOCK_RETURN
;
623 oplock_granted
= NO_OPLOCK_RETURN
;
626 file_len
= smb_fname
->st
.st_ex_size
;
628 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
629 /* This is very strange. We
630 * return 50 words, but only set
631 * the wcnt to 42 ? It's definitely
632 * what happens on the wire....
634 reply_outbuf(req
, 50, 0);
635 SCVAL(req
->outbuf
,smb_wct
,42);
637 reply_outbuf(req
, 34, 0);
640 SSVAL(req
->outbuf
, smb_vwv0
, 0xff); /* andx chain ends */
641 SSVAL(req
->outbuf
, smb_vwv1
, 0); /* no andx offset */
643 p
= (char *)req
->outbuf
+ smb_vwv2
;
645 SCVAL(p
, 0, oplock_granted
);
648 SSVAL(p
,0,fsp
->fnum
);
650 if ((create_disposition
== FILE_SUPERSEDE
)
651 && (info
== FILE_WAS_OVERWRITTEN
)) {
652 SIVAL(p
,0,FILE_WAS_SUPERSEDED
);
658 fattr
= dos_mode(conn
, smb_fname
);
660 fattr
= FILE_ATTRIBUTE_NORMAL
;
664 create_timespec
= get_create_timespec(conn
, fsp
, smb_fname
);
665 a_timespec
= smb_fname
->st
.st_ex_atime
;
666 m_timespec
= smb_fname
->st
.st_ex_mtime
;
667 c_timespec
= get_change_timespec(conn
, fsp
, smb_fname
);
669 if (lp_dos_filetime_resolution(SNUM(conn
))) {
670 dos_filetime_timespec(&create_timespec
);
671 dos_filetime_timespec(&a_timespec
);
672 dos_filetime_timespec(&m_timespec
);
673 dos_filetime_timespec(&c_timespec
);
676 put_long_date_timespec(conn
->ts_res
, p
, create_timespec
); /* create time. */
678 put_long_date_timespec(conn
->ts_res
, p
, a_timespec
); /* access time */
680 put_long_date_timespec(conn
->ts_res
, p
, m_timespec
); /* write time */
682 put_long_date_timespec(conn
->ts_res
, p
, c_timespec
); /* change time */
684 SIVAL(p
,0,fattr
); /* File Attributes. */
686 SOFF_T(p
, 0, SMB_VFS_GET_ALLOC_SIZE(conn
,fsp
,&smb_fname
->st
));
688 SOFF_T(p
,0,file_len
);
690 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
691 uint16_t file_status
= (NO_EAS
|NO_SUBSTREAMS
|NO_REPARSETAG
);
692 unsigned int num_streams
= 0;
693 struct stream_struct
*streams
= NULL
;
695 if (lp_ea_support(SNUM(conn
))) {
696 size_t num_names
= 0;
697 /* Do we have any EA's ? */
698 status
= get_ea_names_from_file(
699 ctx
, conn
, fsp
, smb_fname
, NULL
, &num_names
);
700 if (NT_STATUS_IS_OK(status
) && num_names
) {
701 file_status
&= ~NO_EAS
;
705 status
= vfs_streaminfo(conn
, NULL
, smb_fname
, ctx
,
706 &num_streams
, &streams
);
707 /* There is always one stream, ::$DATA. */
708 if (NT_STATUS_IS_OK(status
) && num_streams
> 1) {
709 file_status
&= ~NO_SUBSTREAMS
;
711 TALLOC_FREE(streams
);
712 SSVAL(p
,2,file_status
);
715 SCVAL(p
,0,fsp
->is_directory
? 1 : 0);
717 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
720 if (fsp
->is_directory
||
722 can_write_to_file(conn
, smb_fname
)) {
723 perms
= FILE_GENERIC_ALL
;
725 perms
= FILE_GENERIC_READ
|FILE_EXECUTE
;
730 DEBUG(5,("reply_ntcreate_and_X: %s, open name = %s\n",
731 fsp_fnum_dbg(fsp
), smb_fname_str_dbg(smb_fname
)));
734 END_PROFILE(SMBntcreateX
);
738 /****************************************************************************
739 Reply to a NT_TRANSACT_CREATE call to open a pipe.
740 ****************************************************************************/
742 static void do_nt_transact_create_pipe(connection_struct
*conn
,
743 struct smb_request
*req
,
744 uint16_t **ppsetup
, uint32_t setup_count
,
745 char **ppparams
, uint32_t parameter_count
,
746 char **ppdata
, uint32_t data_count
)
749 char *params
= *ppparams
;
750 uint16_t pnum
= FNUM_FIELD_INVALID
;
755 TALLOC_CTX
*ctx
= talloc_tos();
758 * Ensure minimum number of parameters sent.
761 if(parameter_count
< 54) {
762 DEBUG(0,("do_nt_transact_create_pipe - insufficient parameters (%u)\n", (unsigned int)parameter_count
));
763 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
767 flags
= IVAL(params
,0);
769 if (req
->posix_pathnames
) {
770 srvstr_get_path_posix(ctx
,
788 if (!NT_STATUS_IS_OK(status
)) {
789 reply_nterror(req
, status
);
793 nt_open_pipe(fname
, conn
, req
, &pnum
);
800 /* Realloc the size of parameters and data we will return */
801 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
802 /* Extended response is 32 more byyes. */
807 params
= nttrans_realloc(ppparams
, param_len
);
809 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
814 SCVAL(p
,0,NO_OPLOCK_RETURN
);
819 SIVAL(p
,0,FILE_WAS_OPENED
);
823 SIVAL(p
,0,FILE_ATTRIBUTE_NORMAL
); /* File Attributes. */
826 SSVAL(p
,0,FILE_TYPE_MESSAGE_MODE_PIPE
);
828 SSVAL(p
,2, 0x5FF); /* ? */
831 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
833 SIVAL(p
,0,FILE_GENERIC_ALL
);
835 * For pipes W2K3 seems to return
837 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
839 SIVAL(p
,4,(FILE_GENERIC_READ
|FILE_GENERIC_WRITE
)&~FILE_APPEND_DATA
);
842 DEBUG(5,("do_nt_transact_create_pipe: open name = %s\n", fname
));
844 /* Send the required number of replies */
845 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
, *ppdata
, 0);
850 /*********************************************************************
851 Windows seems to do canonicalization of inheritance bits. Do the
853 *********************************************************************/
855 static void canonicalize_inheritance_bits(struct security_descriptor
*psd
)
857 bool set_auto_inherited
= false;
860 * We need to filter out the
861 * SEC_DESC_DACL_AUTO_INHERITED|SEC_DESC_DACL_AUTO_INHERIT_REQ
862 * bits. If both are set we store SEC_DESC_DACL_AUTO_INHERITED
863 * as this alters whether SEC_ACE_FLAG_INHERITED_ACE is set
864 * when an ACE is inherited. Otherwise we zero these bits out.
867 * http://social.msdn.microsoft.com/Forums/eu/os_fileservices/thread/11f77b68-731e-407d-b1b3-064750716531
872 if ((psd
->type
& (SEC_DESC_DACL_AUTO_INHERITED
|SEC_DESC_DACL_AUTO_INHERIT_REQ
))
873 == (SEC_DESC_DACL_AUTO_INHERITED
|SEC_DESC_DACL_AUTO_INHERIT_REQ
)) {
874 set_auto_inherited
= true;
877 psd
->type
&= ~(SEC_DESC_DACL_AUTO_INHERITED
|SEC_DESC_DACL_AUTO_INHERIT_REQ
);
878 if (set_auto_inherited
) {
879 psd
->type
|= SEC_DESC_DACL_AUTO_INHERITED
;
883 /****************************************************************************
884 Internal fn to set security descriptors.
885 ****************************************************************************/
887 NTSTATUS
set_sd(files_struct
*fsp
, struct security_descriptor
*psd
,
888 uint32_t security_info_sent
)
892 if (!CAN_WRITE(fsp
->conn
)) {
893 return NT_STATUS_ACCESS_DENIED
;
896 if (!lp_nt_acl_support(SNUM(fsp
->conn
))) {
900 if (S_ISLNK(fsp
->fsp_name
->st
.st_ex_mode
)) {
901 DEBUG(10, ("ACL set on symlink %s denied.\n",
903 return NT_STATUS_ACCESS_DENIED
;
906 if (psd
->owner_sid
== NULL
) {
907 security_info_sent
&= ~SECINFO_OWNER
;
909 if (psd
->group_sid
== NULL
) {
910 security_info_sent
&= ~SECINFO_GROUP
;
913 /* Ensure we have at least one thing set. */
914 if ((security_info_sent
& (SECINFO_OWNER
|SECINFO_GROUP
|SECINFO_DACL
|SECINFO_SACL
)) == 0) {
919 /* Ensure we have the rights to do this. */
920 if (security_info_sent
& SECINFO_OWNER
) {
921 if (!(fsp
->access_mask
& SEC_STD_WRITE_OWNER
)) {
922 return NT_STATUS_ACCESS_DENIED
;
926 if (security_info_sent
& SECINFO_GROUP
) {
927 if (!(fsp
->access_mask
& SEC_STD_WRITE_OWNER
)) {
928 return NT_STATUS_ACCESS_DENIED
;
932 if (security_info_sent
& SECINFO_DACL
) {
933 if (!(fsp
->access_mask
& SEC_STD_WRITE_DAC
)) {
934 return NT_STATUS_ACCESS_DENIED
;
936 /* Convert all the generic bits. */
938 security_acl_map_generic(psd
->dacl
, &file_generic_mapping
);
942 if (security_info_sent
& SECINFO_SACL
) {
943 if (!(fsp
->access_mask
& SEC_FLAG_SYSTEM_SECURITY
)) {
944 return NT_STATUS_ACCESS_DENIED
;
946 /* Convert all the generic bits. */
948 security_acl_map_generic(psd
->sacl
, &file_generic_mapping
);
952 canonicalize_inheritance_bits(psd
);
954 if (DEBUGLEVEL
>= 10) {
955 DEBUG(10,("set_sd for file %s\n", fsp_str_dbg(fsp
)));
956 NDR_PRINT_DEBUG(security_descriptor
, psd
);
959 status
= SMB_VFS_FSET_NT_ACL(fsp
, security_info_sent
, psd
);
966 /****************************************************************************
967 Internal fn to set security descriptors from a data blob.
968 ****************************************************************************/
970 NTSTATUS
set_sd_blob(files_struct
*fsp
, uint8_t *data
, uint32_t sd_len
,
971 uint32_t security_info_sent
)
973 struct security_descriptor
*psd
= NULL
;
977 return NT_STATUS_INVALID_PARAMETER
;
980 status
= unmarshall_sec_desc(talloc_tos(), data
, sd_len
, &psd
);
982 if (!NT_STATUS_IS_OK(status
)) {
986 return set_sd(fsp
, psd
, security_info_sent
);
989 /****************************************************************************
990 Reply to a NT_TRANSACT_CREATE call (needs to process SD's).
991 ****************************************************************************/
993 static void call_nt_transact_create(connection_struct
*conn
,
994 struct smb_request
*req
,
995 uint16_t **ppsetup
, uint32_t setup_count
,
996 char **ppparams
, uint32_t parameter_count
,
997 char **ppdata
, uint32_t data_count
,
998 uint32_t max_data_count
)
1000 struct smb_filename
*smb_fname
= NULL
;
1002 char *params
= *ppparams
;
1003 char *data
= *ppdata
;
1004 /* Breakout the oplock request bits so we can set the reply bits separately. */
1008 files_struct
*fsp
= NULL
;
1011 uint32_t access_mask
;
1012 uint32_t file_attributes
;
1013 uint32_t share_access
;
1014 uint32_t create_disposition
;
1015 uint32_t create_options
;
1017 struct security_descriptor
*sd
= NULL
;
1019 uint16_t root_dir_fid
;
1020 struct timespec create_timespec
;
1021 struct timespec c_timespec
;
1022 struct timespec a_timespec
;
1023 struct timespec m_timespec
;
1024 struct ea_list
*ea_list
= NULL
;
1027 uint64_t allocation_size
;
1029 uint8_t oplock_granted
;
1030 struct case_semantics_state
*case_state
= NULL
;
1032 TALLOC_CTX
*ctx
= talloc_tos();
1034 DEBUG(5,("call_nt_transact_create\n"));
1037 * If it's an IPC, use the pipe handler.
1041 if (lp_nt_pipe_support()) {
1042 do_nt_transact_create_pipe(
1044 ppsetup
, setup_count
,
1045 ppparams
, parameter_count
,
1046 ppdata
, data_count
);
1049 reply_nterror(req
, NT_STATUS_ACCESS_DENIED
);
1054 * Ensure minimum number of parameters sent.
1057 if(parameter_count
< 54) {
1058 DEBUG(0,("call_nt_transact_create - insufficient parameters (%u)\n", (unsigned int)parameter_count
));
1059 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1063 flags
= IVAL(params
,0);
1064 access_mask
= IVAL(params
,8);
1065 file_attributes
= IVAL(params
,20);
1066 share_access
= IVAL(params
,24);
1067 create_disposition
= IVAL(params
,28);
1068 create_options
= IVAL(params
,32);
1069 sd_len
= IVAL(params
,36);
1070 ea_len
= IVAL(params
,40);
1071 root_dir_fid
= (uint16_t)IVAL(params
,4);
1072 allocation_size
= BVAL(params
,12);
1075 * we need to remove ignored bits when they come directly from the client
1076 * because we reuse some of them for internal stuff
1078 create_options
&= ~NTCREATEX_OPTIONS_MUST_IGNORE_MASK
;
1080 if (req
->posix_pathnames
) {
1081 srvstr_get_path_posix(ctx
,
1090 srvstr_get_path(ctx
,
1099 if (!NT_STATUS_IS_OK(status
)) {
1100 reply_nterror(req
, status
);
1104 if (file_attributes
& FILE_FLAG_POSIX_SEMANTICS
) {
1105 case_state
= set_posix_case_semantics(ctx
, conn
);
1107 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1112 ucf_flags
= filename_create_ucf_flags(req
, create_disposition
);
1113 status
= filename_convert(ctx
,
1120 TALLOC_FREE(case_state
);
1122 if (!NT_STATUS_IS_OK(status
)) {
1123 if (NT_STATUS_EQUAL(status
,NT_STATUS_PATH_NOT_COVERED
)) {
1124 reply_botherror(req
,
1125 NT_STATUS_PATH_NOT_COVERED
,
1126 ERRSRV
, ERRbadpath
);
1129 reply_nterror(req
, status
);
1133 /* Ensure the data_len is correct for the sd and ea values given. */
1134 if ((ea_len
+ sd_len
> data_count
)
1135 || (ea_len
> data_count
) || (sd_len
> data_count
)
1136 || (ea_len
+ sd_len
< ea_len
) || (ea_len
+ sd_len
< sd_len
)) {
1137 DEBUG(10, ("call_nt_transact_create - ea_len = %u, sd_len = "
1138 "%u, data_count = %u\n", (unsigned int)ea_len
,
1139 (unsigned int)sd_len
, (unsigned int)data_count
));
1140 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1145 DEBUG(10, ("call_nt_transact_create - sd_len = %d\n",
1148 status
= unmarshall_sec_desc(ctx
, (uint8_t *)data
, sd_len
,
1150 if (!NT_STATUS_IS_OK(status
)) {
1151 DEBUG(10, ("call_nt_transact_create: "
1152 "unmarshall_sec_desc failed: %s\n",
1153 nt_errstr(status
)));
1154 reply_nterror(req
, status
);
1160 if (!lp_ea_support(SNUM(conn
))) {
1161 DEBUG(10, ("call_nt_transact_create - ea_len = %u but "
1162 "EA's not supported.\n",
1163 (unsigned int)ea_len
));
1164 reply_nterror(req
, NT_STATUS_EAS_NOT_SUPPORTED
);
1169 DEBUG(10,("call_nt_transact_create - ea_len = %u - "
1170 "too small (should be more than 10)\n",
1171 (unsigned int)ea_len
));
1172 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1176 /* We have already checked that ea_len <= data_count here. */
1177 ea_list
= read_nttrans_ea_list(talloc_tos(), data
+ sd_len
,
1179 if (ea_list
== NULL
) {
1180 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1184 if (!req
->posix_pathnames
&&
1185 ea_list_has_invalid_name(ea_list
)) {
1186 /* Realloc the size of parameters and data we will return */
1187 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1188 /* Extended response is 32 more byyes. */
1193 params
= nttrans_realloc(ppparams
, param_len
);
1194 if(params
== NULL
) {
1195 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1199 memset(params
, '\0', param_len
);
1200 send_nt_replies(conn
, req
, STATUS_INVALID_EA_NAME
,
1201 params
, param_len
, NULL
, 0);
1206 oplock_request
= (flags
& REQUEST_OPLOCK
) ? EXCLUSIVE_OPLOCK
: 0;
1207 if (oplock_request
) {
1208 oplock_request
|= (flags
& REQUEST_BATCH_OPLOCK
)
1213 * Bug #6898 - clients using Windows opens should
1214 * never be able to set this attribute into the
1217 file_attributes
&= ~FILE_FLAG_POSIX_SEMANTICS
;
1219 status
= SMB_VFS_CREATE_FILE(
1222 root_dir_fid
, /* root_dir_fid */
1223 smb_fname
, /* fname */
1224 access_mask
, /* access_mask */
1225 share_access
, /* share_access */
1226 create_disposition
, /* create_disposition*/
1227 create_options
, /* create_options */
1228 file_attributes
, /* file_attributes */
1229 oplock_request
, /* oplock_request */
1231 allocation_size
, /* allocation_size */
1232 0, /* private_flags */
1234 ea_list
, /* ea_list */
1237 NULL
, NULL
); /* create context */
1239 if(!NT_STATUS_IS_OK(status
)) {
1240 if (open_was_deferred(req
->xconn
, req
->mid
)) {
1241 /* We have re-scheduled this call, no error. */
1244 reply_openerror(req
, status
);
1248 /* Ensure we're pointing at the correct stat struct. */
1249 TALLOC_FREE(smb_fname
);
1250 smb_fname
= fsp
->fsp_name
;
1253 * If the caller set the extended oplock request bit
1254 * and we granted one (by whatever means) - set the
1255 * correct bit for extended oplock reply.
1258 if (oplock_request
&&
1259 (lp_fake_oplocks(SNUM(conn
))
1260 || EXCLUSIVE_OPLOCK_TYPE(fsp
->oplock_type
))) {
1263 * Exclusive oplock granted
1266 if (flags
& REQUEST_BATCH_OPLOCK
) {
1267 oplock_granted
= BATCH_OPLOCK_RETURN
;
1269 oplock_granted
= EXCLUSIVE_OPLOCK_RETURN
;
1271 } else if (fsp
->oplock_type
== LEVEL_II_OPLOCK
) {
1272 oplock_granted
= LEVEL_II_OPLOCK_RETURN
;
1274 oplock_granted
= NO_OPLOCK_RETURN
;
1277 file_len
= smb_fname
->st
.st_ex_size
;
1279 /* Realloc the size of parameters and data we will return */
1280 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1281 /* Extended response is 32 more byyes. */
1286 params
= nttrans_realloc(ppparams
, param_len
);
1287 if(params
== NULL
) {
1288 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1293 SCVAL(p
, 0, oplock_granted
);
1296 SSVAL(p
,0,fsp
->fnum
);
1298 if ((create_disposition
== FILE_SUPERSEDE
)
1299 && (info
== FILE_WAS_OVERWRITTEN
)) {
1300 SIVAL(p
,0,FILE_WAS_SUPERSEDED
);
1306 fattr
= dos_mode(conn
, smb_fname
);
1308 fattr
= FILE_ATTRIBUTE_NORMAL
;
1312 create_timespec
= get_create_timespec(conn
, fsp
, smb_fname
);
1313 a_timespec
= smb_fname
->st
.st_ex_atime
;
1314 m_timespec
= smb_fname
->st
.st_ex_mtime
;
1315 c_timespec
= get_change_timespec(conn
, fsp
, smb_fname
);
1317 if (lp_dos_filetime_resolution(SNUM(conn
))) {
1318 dos_filetime_timespec(&create_timespec
);
1319 dos_filetime_timespec(&a_timespec
);
1320 dos_filetime_timespec(&m_timespec
);
1321 dos_filetime_timespec(&c_timespec
);
1324 put_long_date_timespec(conn
->ts_res
, p
, create_timespec
); /* create time. */
1326 put_long_date_timespec(conn
->ts_res
, p
, a_timespec
); /* access time */
1328 put_long_date_timespec(conn
->ts_res
, p
, m_timespec
); /* write time */
1330 put_long_date_timespec(conn
->ts_res
, p
, c_timespec
); /* change time */
1332 SIVAL(p
,0,fattr
); /* File Attributes. */
1334 SOFF_T(p
, 0, SMB_VFS_GET_ALLOC_SIZE(conn
, fsp
, &smb_fname
->st
));
1336 SOFF_T(p
,0,file_len
);
1338 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1339 uint16_t file_status
= (NO_EAS
|NO_SUBSTREAMS
|NO_REPARSETAG
);
1340 unsigned int num_streams
= 0;
1341 struct stream_struct
*streams
= NULL
;
1343 if (lp_ea_support(SNUM(conn
))) {
1344 size_t num_names
= 0;
1345 /* Do we have any EA's ? */
1346 status
= get_ea_names_from_file(
1347 ctx
, conn
, fsp
, smb_fname
, NULL
, &num_names
);
1348 if (NT_STATUS_IS_OK(status
) && num_names
) {
1349 file_status
&= ~NO_EAS
;
1353 status
= vfs_streaminfo(conn
, NULL
, smb_fname
, ctx
,
1354 &num_streams
, &streams
);
1355 /* There is always one stream, ::$DATA. */
1356 if (NT_STATUS_IS_OK(status
) && num_streams
> 1) {
1357 file_status
&= ~NO_SUBSTREAMS
;
1359 TALLOC_FREE(streams
);
1360 SSVAL(p
,2,file_status
);
1363 SCVAL(p
,0,fsp
->is_directory
? 1 : 0);
1365 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1368 if (fsp
->is_directory
||
1370 can_write_to_file(conn
, smb_fname
)) {
1371 perms
= FILE_GENERIC_ALL
;
1373 perms
= FILE_GENERIC_READ
|FILE_EXECUTE
;
1378 DEBUG(5,("call_nt_transact_create: open name = %s\n",
1379 smb_fname_str_dbg(smb_fname
)));
1381 /* Send the required number of replies */
1382 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
, *ppdata
, 0);
1387 /****************************************************************************
1388 Reply to a NT CANCEL request.
1389 conn POINTER CAN BE NULL HERE !
1390 ****************************************************************************/
1392 void reply_ntcancel(struct smb_request
*req
)
1394 struct smbXsrv_connection
*xconn
= req
->xconn
;
1395 struct smbd_server_connection
*sconn
= req
->sconn
;
1398 * Go through and cancel any pending change notifies.
1401 START_PROFILE(SMBntcancel
);
1402 srv_cancel_sign_response(xconn
);
1403 remove_pending_change_notify_requests_by_mid(sconn
, req
->mid
);
1404 remove_pending_lock_requests_by_mid_smb1(sconn
, req
->mid
);
1406 DEBUG(3,("reply_ntcancel: cancel called on mid = %llu.\n",
1407 (unsigned long long)req
->mid
));
1409 END_PROFILE(SMBntcancel
);
1413 /****************************************************************************
1415 ****************************************************************************/
1417 static NTSTATUS
copy_internals(TALLOC_CTX
*ctx
,
1418 connection_struct
*conn
,
1419 struct smb_request
*req
,
1420 struct smb_filename
*smb_fname_src
,
1421 struct smb_filename
*smb_fname_dst
,
1424 files_struct
*fsp1
,*fsp2
;
1428 NTSTATUS status
= NT_STATUS_OK
;
1431 if (!CAN_WRITE(conn
)) {
1432 status
= NT_STATUS_MEDIA_WRITE_PROTECTED
;
1436 /* Source must already exist. */
1437 if (!VALID_STAT(smb_fname_src
->st
)) {
1438 status
= NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1442 /* Ensure attributes match. */
1443 fattr
= dos_mode(conn
, smb_fname_src
);
1444 if ((fattr
& ~attrs
) & (FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_SYSTEM
)) {
1445 status
= NT_STATUS_NO_SUCH_FILE
;
1449 /* Disallow if dst file already exists. */
1450 if (VALID_STAT(smb_fname_dst
->st
)) {
1451 status
= NT_STATUS_OBJECT_NAME_COLLISION
;
1455 /* No links from a directory. */
1456 if (S_ISDIR(smb_fname_src
->st
.st_ex_mode
)) {
1457 status
= NT_STATUS_FILE_IS_A_DIRECTORY
;
1461 DEBUG(10,("copy_internals: doing file copy %s to %s\n",
1462 smb_fname_str_dbg(smb_fname_src
),
1463 smb_fname_str_dbg(smb_fname_dst
)));
1465 status
= SMB_VFS_CREATE_FILE(
1468 0, /* root_dir_fid */
1469 smb_fname_src
, /* fname */
1470 FILE_READ_DATA
|FILE_READ_ATTRIBUTES
|
1471 FILE_READ_EA
, /* access_mask */
1472 (FILE_SHARE_READ
| FILE_SHARE_WRITE
| /* share_access */
1474 FILE_OPEN
, /* create_disposition*/
1475 0, /* create_options */
1476 FILE_ATTRIBUTE_NORMAL
, /* file_attributes */
1477 NO_OPLOCK
, /* oplock_request */
1479 0, /* allocation_size */
1480 0, /* private_flags */
1485 NULL
, NULL
); /* create context */
1487 if (!NT_STATUS_IS_OK(status
)) {
1491 status
= SMB_VFS_CREATE_FILE(
1494 0, /* root_dir_fid */
1495 smb_fname_dst
, /* fname */
1496 FILE_WRITE_DATA
|FILE_WRITE_ATTRIBUTES
|
1497 FILE_WRITE_EA
, /* access_mask */
1498 (FILE_SHARE_READ
| FILE_SHARE_WRITE
| /* share_access */
1500 FILE_CREATE
, /* create_disposition*/
1501 0, /* create_options */
1502 fattr
, /* file_attributes */
1503 NO_OPLOCK
, /* oplock_request */
1505 0, /* allocation_size */
1506 0, /* private_flags */
1511 NULL
, NULL
); /* create context */
1513 if (!NT_STATUS_IS_OK(status
)) {
1514 close_file(NULL
, fsp1
, ERROR_CLOSE
);
1518 if (smb_fname_src
->st
.st_ex_size
) {
1519 ret
= vfs_transfer_file(fsp1
, fsp2
, smb_fname_src
->st
.st_ex_size
);
1523 * As we are opening fsp1 read-only we only expect
1524 * an error on close on fsp2 if we are out of space.
1525 * Thus we don't look at the error return from the
1528 close_file(NULL
, fsp1
, NORMAL_CLOSE
);
1530 /* Ensure the modtime is set correctly on the destination file. */
1531 set_close_write_time(fsp2
, smb_fname_src
->st
.st_ex_mtime
);
1533 status
= close_file(NULL
, fsp2
, NORMAL_CLOSE
);
1535 /* Grrr. We have to do this as open_file_ntcreate adds FILE_ATTRIBUTE_ARCHIVE when it
1536 creates the file. This isn't the correct thing to do in the copy
1538 if (!parent_dirname(talloc_tos(), smb_fname_dst
->base_name
, &parent
,
1540 status
= NT_STATUS_NO_MEMORY
;
1543 file_set_dosmode(conn
, smb_fname_dst
, fattr
, parent
, false);
1544 TALLOC_FREE(parent
);
1546 if (ret
< (off_t
)smb_fname_src
->st
.st_ex_size
) {
1547 status
= NT_STATUS_DISK_FULL
;
1551 if (!NT_STATUS_IS_OK(status
)) {
1552 DEBUG(3,("copy_internals: Error %s copy file %s to %s\n",
1553 nt_errstr(status
), smb_fname_str_dbg(smb_fname_src
),
1554 smb_fname_str_dbg(smb_fname_dst
)));
1560 /****************************************************************************
1561 Reply to a NT rename request.
1562 ****************************************************************************/
1564 void reply_ntrename(struct smb_request
*req
)
1566 connection_struct
*conn
= req
->conn
;
1567 struct smb_filename
*smb_fname_old
= NULL
;
1568 struct smb_filename
*smb_fname_new
= NULL
;
1569 char *oldname
= NULL
;
1570 char *newname
= NULL
;
1573 bool src_has_wcard
= False
;
1574 bool dest_has_wcard
= False
;
1576 uint32_t ucf_flags_src
= ucf_flags_from_smb_request(req
);
1577 uint32_t ucf_flags_dst
= ucf_flags_from_smb_request(req
);
1578 uint16_t rename_type
;
1579 TALLOC_CTX
*ctx
= talloc_tos();
1580 bool stream_rename
= false;
1582 START_PROFILE(SMBntrename
);
1585 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1589 attrs
= SVAL(req
->vwv
+0, 0);
1590 rename_type
= SVAL(req
->vwv
+1, 0);
1592 p
= (const char *)req
->buf
+ 1;
1593 p
+= srvstr_get_path_req_wcard(ctx
, req
, &oldname
, p
, STR_TERMINATE
,
1594 &status
, &src_has_wcard
);
1595 if (!NT_STATUS_IS_OK(status
)) {
1596 reply_nterror(req
, status
);
1600 if (!req
->posix_pathnames
&& ms_has_wild(oldname
)) {
1601 reply_nterror(req
, NT_STATUS_OBJECT_PATH_SYNTAX_BAD
);
1606 p
+= srvstr_get_path_req_wcard(ctx
, req
, &newname
, p
, STR_TERMINATE
,
1607 &status
, &dest_has_wcard
);
1608 if (!NT_STATUS_IS_OK(status
)) {
1609 reply_nterror(req
, status
);
1613 if (!req
->posix_pathnames
) {
1614 /* The newname must begin with a ':' if the
1615 oldname contains a ':'. */
1616 if (strchr_m(oldname
, ':')) {
1617 if (newname
[0] != ':') {
1618 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1621 stream_rename
= true;
1626 * If this is a rename operation, allow wildcards and save the
1627 * destination's last component.
1629 if (rename_type
== RENAME_FLAG_RENAME
) {
1630 ucf_flags_src
|= UCF_COND_ALLOW_WCARD_LCOMP
;
1631 ucf_flags_dst
|= UCF_COND_ALLOW_WCARD_LCOMP
| UCF_SAVE_LCOMP
;
1634 /* rename_internals() calls unix_convert(), so don't call it here. */
1635 status
= filename_convert(ctx
, conn
,
1640 if (!NT_STATUS_IS_OK(status
)) {
1641 if (NT_STATUS_EQUAL(status
,
1642 NT_STATUS_PATH_NOT_COVERED
)) {
1643 reply_botherror(req
,
1644 NT_STATUS_PATH_NOT_COVERED
,
1645 ERRSRV
, ERRbadpath
);
1648 reply_nterror(req
, status
);
1652 status
= filename_convert(ctx
, conn
,
1657 if (!NT_STATUS_IS_OK(status
)) {
1658 if (NT_STATUS_EQUAL(status
,
1659 NT_STATUS_PATH_NOT_COVERED
)) {
1660 reply_botherror(req
,
1661 NT_STATUS_PATH_NOT_COVERED
,
1662 ERRSRV
, ERRbadpath
);
1665 reply_nterror(req
, status
);
1669 if (stream_rename
) {
1670 /* smb_fname_new must be the same as smb_fname_old. */
1671 TALLOC_FREE(smb_fname_new
->base_name
);
1672 smb_fname_new
->base_name
= talloc_strdup(smb_fname_new
,
1673 smb_fname_old
->base_name
);
1674 if (!smb_fname_new
->base_name
) {
1675 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1680 DEBUG(3,("reply_ntrename: %s -> %s\n",
1681 smb_fname_str_dbg(smb_fname_old
),
1682 smb_fname_str_dbg(smb_fname_new
)));
1684 switch(rename_type
) {
1685 case RENAME_FLAG_RENAME
:
1686 status
= rename_internals(ctx
, conn
, req
,
1687 smb_fname_old
, smb_fname_new
,
1688 attrs
, False
, src_has_wcard
,
1692 case RENAME_FLAG_HARD_LINK
:
1693 if (src_has_wcard
|| dest_has_wcard
) {
1695 status
= NT_STATUS_OBJECT_PATH_SYNTAX_BAD
;
1697 status
= hardlink_internals(ctx
, conn
,
1704 case RENAME_FLAG_COPY
:
1705 if (src_has_wcard
|| dest_has_wcard
) {
1707 status
= NT_STATUS_OBJECT_PATH_SYNTAX_BAD
;
1709 status
= copy_internals(ctx
, conn
, req
,
1715 case RENAME_FLAG_MOVE_CLUSTER_INFORMATION
:
1716 status
= NT_STATUS_INVALID_PARAMETER
;
1719 status
= NT_STATUS_ACCESS_DENIED
; /* Default error. */
1723 if (!NT_STATUS_IS_OK(status
)) {
1724 if (open_was_deferred(req
->xconn
, req
->mid
)) {
1725 /* We have re-scheduled this call. */
1729 reply_nterror(req
, status
);
1733 reply_outbuf(req
, 0, 0);
1735 END_PROFILE(SMBntrename
);
1739 /****************************************************************************
1740 Reply to a notify change - queue the request and
1741 don't allow a directory to be opened.
1742 ****************************************************************************/
1744 static void smbd_smb1_notify_reply(struct smb_request
*req
,
1745 NTSTATUS error_code
,
1746 uint8_t *buf
, size_t len
)
1748 send_nt_replies(req
->conn
, req
, error_code
, (char *)buf
, len
, NULL
, 0);
1751 static void call_nt_transact_notify_change(connection_struct
*conn
,
1752 struct smb_request
*req
,
1754 uint32_t setup_count
,
1756 uint32_t parameter_count
,
1757 char **ppdata
, uint32_t data_count
,
1758 uint32_t max_data_count
,
1759 uint32_t max_param_count
)
1761 uint16_t *setup
= *ppsetup
;
1767 if(setup_count
< 6) {
1768 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1772 fsp
= file_fsp(req
, SVAL(setup
,4));
1773 filter
= IVAL(setup
, 0);
1774 recursive
= (SVAL(setup
, 6) != 0) ? True
: False
;
1776 DEBUG(3,("call_nt_transact_notify_change\n"));
1779 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
1784 char *filter_string
;
1786 if (!(filter_string
= notify_filter_string(NULL
, filter
))) {
1787 reply_nterror(req
,NT_STATUS_NO_MEMORY
);
1791 DEBUG(3,("call_nt_transact_notify_change: notify change "
1792 "called on %s, filter = %s, recursive = %d\n",
1793 fsp_str_dbg(fsp
), filter_string
, recursive
));
1795 TALLOC_FREE(filter_string
);
1798 if((!fsp
->is_directory
) || (conn
!= fsp
->conn
)) {
1799 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1803 if (fsp
->notify
== NULL
) {
1805 status
= change_notify_create(fsp
, filter
, recursive
);
1807 if (!NT_STATUS_IS_OK(status
)) {
1808 DEBUG(10, ("change_notify_create returned %s\n",
1809 nt_errstr(status
)));
1810 reply_nterror(req
, status
);
1815 if (change_notify_fsp_has_changes(fsp
)) {
1818 * We've got changes pending, respond immediately
1822 * TODO: write a torture test to check the filtering behaviour
1826 change_notify_reply(req
,
1830 smbd_smb1_notify_reply
);
1833 * change_notify_reply() above has independently sent its
1840 * No changes pending, queue the request
1843 status
= change_notify_add_request(req
,
1847 smbd_smb1_notify_reply
);
1848 if (!NT_STATUS_IS_OK(status
)) {
1849 reply_nterror(req
, status
);
1854 /****************************************************************************
1855 Reply to an NT transact rename command.
1856 ****************************************************************************/
1858 static void call_nt_transact_rename(connection_struct
*conn
,
1859 struct smb_request
*req
,
1860 uint16_t **ppsetup
, uint32_t setup_count
,
1861 char **ppparams
, uint32_t parameter_count
,
1862 char **ppdata
, uint32_t data_count
,
1863 uint32_t max_data_count
)
1865 char *params
= *ppparams
;
1866 char *new_name
= NULL
;
1867 files_struct
*fsp
= NULL
;
1868 bool dest_has_wcard
= False
;
1870 TALLOC_CTX
*ctx
= talloc_tos();
1872 if(parameter_count
< 5) {
1873 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1877 fsp
= file_fsp(req
, SVAL(params
, 0));
1878 if (!check_fsp(conn
, req
, fsp
)) {
1881 if (req
->posix_pathnames
) {
1882 srvstr_get_path_wcard_posix(ctx
,
1887 parameter_count
- 4,
1892 srvstr_get_path_wcard(ctx
,
1897 parameter_count
- 4,
1903 if (!NT_STATUS_IS_OK(status
)) {
1904 reply_nterror(req
, status
);
1909 * W2K3 ignores this request as the RAW-RENAME test
1910 * demonstrates, so we do.
1912 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
1914 DEBUG(3,("nt transact rename from = %s, to = %s ignored!\n",
1915 fsp_str_dbg(fsp
), new_name
));
1920 /******************************************************************************
1921 Fake up a completely empty SD.
1922 *******************************************************************************/
1924 static NTSTATUS
get_null_nt_acl(TALLOC_CTX
*mem_ctx
, struct security_descriptor
**ppsd
)
1928 *ppsd
= make_standard_sec_desc( mem_ctx
, &global_sid_World
, &global_sid_World
, NULL
, &sd_size
);
1930 DEBUG(0,("get_null_nt_acl: Unable to malloc space for security descriptor.\n"));
1931 return NT_STATUS_NO_MEMORY
;
1934 return NT_STATUS_OK
;
1937 /****************************************************************************
1938 Reply to query a security descriptor.
1939 Callable from SMB1 and SMB2.
1940 If it returns NT_STATUS_BUFFER_TOO_SMALL, pdata_size is initialized with
1942 ****************************************************************************/
1944 NTSTATUS
smbd_do_query_security_desc(connection_struct
*conn
,
1945 TALLOC_CTX
*mem_ctx
,
1947 uint32_t security_info_wanted
,
1948 uint32_t max_data_count
,
1949 uint8_t **ppmarshalled_sd
,
1953 struct security_descriptor
*psd
= NULL
;
1954 TALLOC_CTX
*frame
= talloc_stackframe();
1957 * Get the permissions to return.
1960 if ((security_info_wanted
& SECINFO_SACL
) &&
1961 !(fsp
->access_mask
& SEC_FLAG_SYSTEM_SECURITY
)) {
1962 DEBUG(10, ("Access to SACL denied.\n"));
1964 return NT_STATUS_ACCESS_DENIED
;
1967 if ((security_info_wanted
& (SECINFO_DACL
|SECINFO_OWNER
|SECINFO_GROUP
)) &&
1968 !(fsp
->access_mask
& SEC_STD_READ_CONTROL
)) {
1969 DEBUG(10, ("Access to DACL, OWNER, or GROUP denied.\n"));
1971 return NT_STATUS_ACCESS_DENIED
;
1974 if (S_ISLNK(fsp
->fsp_name
->st
.st_ex_mode
)) {
1975 DEBUG(10, ("ACL get on symlink %s denied.\n",
1978 return NT_STATUS_ACCESS_DENIED
;
1981 if (security_info_wanted
& (SECINFO_DACL
|SECINFO_OWNER
|
1982 SECINFO_GROUP
|SECINFO_SACL
)) {
1983 /* Don't return SECINFO_LABEL if anything else was
1984 requested. See bug #8458. */
1985 security_info_wanted
&= ~SECINFO_LABEL
;
1988 if (!lp_nt_acl_support(SNUM(conn
))) {
1989 status
= get_null_nt_acl(frame
, &psd
);
1990 } else if (security_info_wanted
& SECINFO_LABEL
) {
1991 /* Like W2K3 return a null object. */
1992 status
= get_null_nt_acl(frame
, &psd
);
1994 status
= SMB_VFS_FGET_NT_ACL(
1995 fsp
, security_info_wanted
, frame
, &psd
);
1997 if (!NT_STATUS_IS_OK(status
)) {
2002 if (!(security_info_wanted
& SECINFO_OWNER
)) {
2003 psd
->owner_sid
= NULL
;
2005 if (!(security_info_wanted
& SECINFO_GROUP
)) {
2006 psd
->group_sid
= NULL
;
2008 if (!(security_info_wanted
& SECINFO_DACL
)) {
2009 psd
->type
&= ~SEC_DESC_DACL_PRESENT
;
2012 if (!(security_info_wanted
& SECINFO_SACL
)) {
2013 psd
->type
&= ~SEC_DESC_SACL_PRESENT
;
2017 /* If the SACL/DACL is NULL, but was requested, we mark that it is
2018 * present in the reply to match Windows behavior */
2019 if (psd
->sacl
== NULL
&&
2020 security_info_wanted
& SECINFO_SACL
)
2021 psd
->type
|= SEC_DESC_SACL_PRESENT
;
2022 if (psd
->dacl
== NULL
&&
2023 security_info_wanted
& SECINFO_DACL
)
2024 psd
->type
|= SEC_DESC_DACL_PRESENT
;
2026 if (security_info_wanted
& SECINFO_LABEL
) {
2027 /* Like W2K3 return a null object. */
2028 psd
->owner_sid
= NULL
;
2029 psd
->group_sid
= NULL
;
2032 psd
->type
&= ~(SEC_DESC_DACL_PRESENT
|SEC_DESC_SACL_PRESENT
);
2035 *psd_size
= ndr_size_security_descriptor(psd
, 0);
2037 DEBUG(3,("smbd_do_query_security_desc: sd_size = %lu.\n",
2038 (unsigned long)*psd_size
));
2040 if (DEBUGLEVEL
>= 10) {
2041 DEBUG(10,("smbd_do_query_security_desc for file %s\n",
2043 NDR_PRINT_DEBUG(security_descriptor
, psd
);
2046 if (max_data_count
< *psd_size
) {
2048 return NT_STATUS_BUFFER_TOO_SMALL
;
2051 status
= marshall_sec_desc(mem_ctx
, psd
,
2052 ppmarshalled_sd
, psd_size
);
2054 if (!NT_STATUS_IS_OK(status
)) {
2060 return NT_STATUS_OK
;
2063 /****************************************************************************
2064 SMB1 reply to query a security descriptor.
2065 ****************************************************************************/
2067 static void call_nt_transact_query_security_desc(connection_struct
*conn
,
2068 struct smb_request
*req
,
2070 uint32_t setup_count
,
2072 uint32_t parameter_count
,
2074 uint32_t data_count
,
2075 uint32_t max_data_count
)
2077 char *params
= *ppparams
;
2078 char *data
= *ppdata
;
2080 uint32_t security_info_wanted
;
2081 files_struct
*fsp
= NULL
;
2083 uint8_t *marshalled_sd
= NULL
;
2085 if(parameter_count
< 8) {
2086 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2090 fsp
= file_fsp(req
, SVAL(params
,0));
2092 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
2096 security_info_wanted
= IVAL(params
,4);
2098 DEBUG(3,("call_nt_transact_query_security_desc: file = %s, "
2099 "info_wanted = 0x%x\n", fsp_str_dbg(fsp
),
2100 (unsigned int)security_info_wanted
));
2102 params
= nttrans_realloc(ppparams
, 4);
2103 if(params
== NULL
) {
2104 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
2109 * Get the permissions to return.
2112 status
= smbd_do_query_security_desc(conn
,
2115 security_info_wanted
&
2116 SMB_SUPPORTED_SECINFO_FLAGS
,
2121 if (NT_STATUS_EQUAL(status
, NT_STATUS_BUFFER_TOO_SMALL
)) {
2122 SIVAL(params
,0,(uint32_t)sd_size
);
2123 send_nt_replies(conn
, req
, NT_STATUS_BUFFER_TOO_SMALL
,
2124 params
, 4, NULL
, 0);
2128 if (!NT_STATUS_IS_OK(status
)) {
2129 reply_nterror(req
, status
);
2133 SMB_ASSERT(sd_size
> 0);
2135 SIVAL(params
,0,(uint32_t)sd_size
);
2137 if (max_data_count
< sd_size
) {
2138 send_nt_replies(conn
, req
, NT_STATUS_BUFFER_TOO_SMALL
,
2139 params
, 4, NULL
, 0);
2144 * Allocate the data we will return.
2147 data
= nttrans_realloc(ppdata
, sd_size
);
2149 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
2153 memcpy(data
, marshalled_sd
, sd_size
);
2155 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, 4, data
, (int)sd_size
);
2160 /****************************************************************************
2161 Reply to set a security descriptor. Map to UNIX perms or POSIX ACLs.
2162 ****************************************************************************/
2164 static void call_nt_transact_set_security_desc(connection_struct
*conn
,
2165 struct smb_request
*req
,
2167 uint32_t setup_count
,
2169 uint32_t parameter_count
,
2171 uint32_t data_count
,
2172 uint32_t max_data_count
)
2174 char *params
= *ppparams
;
2175 char *data
= *ppdata
;
2176 files_struct
*fsp
= NULL
;
2177 uint32_t security_info_sent
= 0;
2180 if(parameter_count
< 8) {
2181 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2185 if((fsp
= file_fsp(req
, SVAL(params
,0))) == NULL
) {
2186 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
2190 if (!CAN_WRITE(fsp
->conn
)) {
2191 reply_nterror(req
, NT_STATUS_ACCESS_DENIED
);
2195 if(!lp_nt_acl_support(SNUM(conn
))) {
2199 security_info_sent
= IVAL(params
,4);
2201 DEBUG(3,("call_nt_transact_set_security_desc: file = %s, sent 0x%x\n",
2202 fsp_str_dbg(fsp
), (unsigned int)security_info_sent
));
2204 if (data_count
== 0) {
2205 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2209 status
= set_sd_blob(fsp
, (uint8_t *)data
, data_count
,
2210 security_info_sent
& SMB_SUPPORTED_SECINFO_FLAGS
);
2211 if (!NT_STATUS_IS_OK(status
)) {
2212 reply_nterror(req
, status
);
2217 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
2221 /****************************************************************************
2223 ****************************************************************************/
2225 static void call_nt_transact_ioctl(connection_struct
*conn
,
2226 struct smb_request
*req
,
2227 uint16_t **ppsetup
, uint32_t setup_count
,
2228 char **ppparams
, uint32_t parameter_count
,
2229 char **ppdata
, uint32_t data_count
,
2230 uint32_t max_data_count
)
2238 char *out_data
= NULL
;
2239 uint32_t out_data_len
= 0;
2240 char *pdata
= *ppdata
;
2241 TALLOC_CTX
*ctx
= talloc_tos();
2243 if (setup_count
!= 8) {
2244 DEBUG(3,("call_nt_transact_ioctl: invalid setup count %d\n", setup_count
));
2245 reply_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
2249 function
= IVAL(*ppsetup
, 0);
2250 fidnum
= SVAL(*ppsetup
, 4);
2251 isFSctl
= CVAL(*ppsetup
, 6);
2252 compfilter
= CVAL(*ppsetup
, 7);
2254 DEBUG(10, ("call_nt_transact_ioctl: function[0x%08X] FID[0x%04X] isFSctl[0x%02X] compfilter[0x%02X]\n",
2255 function
, fidnum
, isFSctl
, compfilter
));
2257 fsp
=file_fsp(req
, fidnum
);
2260 * We don't really implement IOCTLs, especially on files.
2263 DEBUG(10, ("isFSctl: 0x%02X indicates IOCTL, not FSCTL!\n",
2265 reply_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
2269 /* Has to be for an open file! */
2270 if (!check_fsp_open(conn
, req
, fsp
)) {
2274 SMB_PERFCOUNT_SET_IOCTL(&req
->pcd
, function
);
2277 * out_data might be allocated by the VFS module, but talloc should be
2278 * used, and should be cleaned up when the request ends.
2280 status
= SMB_VFS_FSCTL(fsp
,
2286 (uint8_t **)&out_data
,
2289 if (!NT_STATUS_IS_OK(status
)) {
2290 reply_nterror(req
, status
);
2292 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, out_data
, out_data_len
);
2297 #ifdef HAVE_SYS_QUOTAS
2298 static enum ndr_err_code
fill_qtlist_from_sids(TALLOC_CTX
*mem_ctx
,
2299 struct files_struct
*fsp
,
2300 SMB_NTQUOTA_HANDLE
*qt_handle
,
2301 struct dom_sid
*sids
,
2305 TALLOC_CTX
*list_ctx
= NULL
;
2307 list_ctx
= talloc_init("quota_sid_list");
2309 if (list_ctx
== NULL
) {
2310 DBG_ERR("failed to allocate\n");
2311 return NDR_ERR_ALLOC
;
2314 if (qt_handle
->quota_list
!=NULL
) {
2315 free_ntquota_list(&(qt_handle
->quota_list
));
2317 for (i
= 0; i
< elems
; i
++) {
2318 SMB_NTQUOTA_STRUCT qt
;
2319 SMB_NTQUOTA_LIST
*list_item
;
2322 if (!NT_STATUS_IS_OK(vfs_get_ntquota(fsp
,
2323 SMB_USER_QUOTA_TYPE
,
2325 /* non fatal error, return empty item in result */
2331 list_item
= talloc_zero(list_ctx
, SMB_NTQUOTA_LIST
);
2332 if (list_item
== NULL
) {
2333 DBG_ERR("failed to allocate\n");
2334 return NDR_ERR_ALLOC
;
2337 ok
= sid_to_uid(&sids
[i
], &list_item
->uid
);
2339 char buf
[DOM_SID_STR_BUFLEN
];
2340 dom_sid_string_buf(&sids
[i
], buf
, sizeof(buf
));
2341 DBG_WARNING("Could not convert SID %s to uid\n", buf
);
2342 /* No idea what to return here... */
2343 return NDR_ERR_INVALID_POINTER
;
2346 list_item
->quotas
= talloc_zero(list_item
, SMB_NTQUOTA_STRUCT
);
2347 if (list_item
->quotas
== NULL
) {
2348 DBG_ERR("failed to allocate\n");
2349 return NDR_ERR_ALLOC
;
2352 *list_item
->quotas
= qt
;
2353 list_item
->mem_ctx
= list_ctx
;
2354 DLIST_ADD(qt_handle
->quota_list
, list_item
);
2356 qt_handle
->tmp_list
= qt_handle
->quota_list
;
2357 return NDR_ERR_SUCCESS
;
2360 static enum ndr_err_code
extract_sids_from_buf(TALLOC_CTX
*mem_ctx
,
2361 uint32_t sidlistlength
,
2363 struct dom_sid
**sids
,
2368 enum ndr_err_code err
;
2370 struct sid_list_elem
{
2371 struct sid_list_elem
*prev
, *next
;
2375 struct sid_list_elem
*sid_list
= NULL
;
2376 struct sid_list_elem
*iter
= NULL
;
2377 TALLOC_CTX
*list_ctx
= talloc_init("sid_list");
2380 err
= NDR_ERR_ALLOC
;
2387 if (sidlistlength
) {
2388 uint32_t offset
= 0;
2389 struct ndr_pull
*ndr_pull
= NULL
;
2391 if (sidlistlength
> sid_buf
->length
) {
2392 DBG_ERR("sid_list_length 0x%x exceeds "
2393 "available bytes %zx\n",
2396 err
= NDR_ERR_OFFSET
;
2400 struct file_get_quota_info info
;
2401 struct sid_list_elem
*item
= NULL
;
2402 uint32_t new_offset
= 0;
2403 blob
.data
= sid_buf
->data
+ offset
;
2404 blob
.length
= sidlistlength
- offset
;
2405 ndr_pull
= ndr_pull_init_blob(&blob
, list_ctx
);
2408 err
= NDR_ERR_ALLOC
;
2411 err
= ndr_pull_file_get_quota_info(ndr_pull
,
2412 NDR_SCALARS
| NDR_BUFFERS
, &info
);
2413 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
2414 DBG_ERR("Failed to pull file_get_quota_info "
2415 "from sidlist buffer\n");
2418 item
= talloc_zero(list_ctx
, struct sid_list_elem
);
2421 err
= NDR_ERR_ALLOC
;
2424 item
->sid
= info
.sid
;
2425 DLIST_ADD(sid_list
, item
);
2427 if (i
== UINT32_MAX
) {
2428 DBG_ERR("Integer overflow\n");
2429 err
= NDR_ERR_ARRAY_SIZE
;
2432 new_offset
= info
.next_entry_offset
;
2434 /* if new_offset == 0 no more sid(s) to read. */
2435 if (new_offset
== 0) {
2440 if ((offset
+ new_offset
) < offset
) {
2441 DBG_ERR("Integer wrap while adding "
2442 "new_offset 0x%x to current "
2443 "buffer offset 0x%x\n",
2444 new_offset
, offset
);
2445 err
= NDR_ERR_OFFSET
;
2449 offset
+= new_offset
;
2451 /* check if new offset is outside buffer boundry. */
2452 if (offset
>= sidlistlength
) {
2453 DBG_ERR("bufsize 0x%x exceeded by "
2454 "new offset 0x%x)\n",
2457 err
= NDR_ERR_OFFSET
;
2461 *sids
= talloc_zero_array(mem_ctx
, struct dom_sid
, i
);
2462 if (*sids
== NULL
) {
2464 err
= NDR_ERR_ALLOC
;
2470 for (iter
= sid_list
, i
= 0; iter
; iter
= iter
->next
, i
++) {
2471 (*sids
)[i
] = iter
->sid
;
2472 DBG_DEBUG("quota SID[%u] %s\n",
2474 sid_string_dbg(&iter
->sid
));
2477 err
= NDR_ERR_SUCCESS
;
2479 TALLOC_FREE(list_ctx
);
2483 NTSTATUS
smbd_do_query_getinfo_quota(TALLOC_CTX
*mem_ctx
,
2487 uint32_t sid_list_length
,
2489 uint32_t max_data_count
,
2491 uint32_t *p_data_size
)
2494 SMB_NTQUOTA_HANDLE
*qt_handle
= NULL
;
2495 SMB_NTQUOTA_LIST
*qt_list
= NULL
;
2496 DATA_BLOB blob
= data_blob_null
;
2497 enum ndr_err_code err
;
2500 (SMB_NTQUOTA_HANDLE
*)fsp
->fake_file_handle
->private_data
;
2502 if (sid_list_length
) {
2503 struct dom_sid
*sids
;
2506 * error check pulled offsets and lengths for wrap and
2507 * exceeding available bytes.
2509 if (sid_list_length
> sid_buf
->length
) {
2510 DBG_ERR("sid_list_length 0x%x exceeds "
2511 "available bytes %zx\n",
2514 return NT_STATUS_INVALID_PARAMETER
;
2517 err
= extract_sids_from_buf(mem_ctx
, sid_list_length
,
2518 sid_buf
, &sids
, &elems
);
2519 if (!NDR_ERR_CODE_IS_SUCCESS(err
) || elems
== 0) {
2520 return NT_STATUS_INVALID_PARAMETER
;
2522 err
= fill_qtlist_from_sids(mem_ctx
,
2527 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
2528 return NT_STATUS_INVALID_PARAMETER
;
2530 } else if (restart_scan
) {
2531 if (vfs_get_user_ntquota_list(fsp
,
2532 &(qt_handle
->quota_list
))!=0) {
2533 return NT_STATUS_INTERNAL_ERROR
;
2536 if (qt_handle
->quota_list
!=NULL
&&
2537 qt_handle
->tmp_list
==NULL
) {
2538 free_ntquota_list(&(qt_handle
->quota_list
));
2542 if (restart_scan
!=0 ) {
2543 qt_list
= qt_handle
->quota_list
;
2545 qt_list
= qt_handle
->tmp_list
;
2547 status
= fill_quota_buffer(mem_ctx
, qt_list
,
2551 &qt_handle
->tmp_list
);
2552 if (!NT_STATUS_IS_OK(status
)) {
2555 if (blob
.length
> max_data_count
) {
2556 return NT_STATUS_BUFFER_TOO_SMALL
;
2559 *p_data
= blob
.data
;
2560 *p_data_size
= blob
.length
;
2561 return NT_STATUS_OK
;
2564 /****************************************************************************
2565 Reply to get user quota
2566 ****************************************************************************/
2568 static void call_nt_transact_get_user_quota(connection_struct
*conn
,
2569 struct smb_request
*req
,
2571 uint32_t setup_count
,
2573 uint32_t parameter_count
,
2575 uint32_t data_count
,
2576 uint32_t max_data_count
)
2578 NTSTATUS nt_status
= NT_STATUS_OK
;
2579 char *params
= *ppparams
;
2580 char *pdata
= *ppdata
;
2583 files_struct
*fsp
= NULL
;
2584 DATA_BLOB blob
= data_blob_null
;
2585 struct nttrans_query_quota_params info
= {0};
2586 enum ndr_err_code err
;
2587 TALLOC_CTX
*tmp_ctx
= NULL
;
2588 uint32_t resp_len
= 0;
2589 uint8_t *resp_data
= 0;
2591 tmp_ctx
= talloc_init("ntquota_list");
2593 nt_status
= NT_STATUS_NO_MEMORY
;
2598 if (get_current_uid(conn
) != sec_initial_uid()) {
2599 DEBUG(1,("get_user_quota: access_denied service [%s] user "
2600 "[%s]\n", lp_servicename(talloc_tos(), SNUM(conn
)),
2601 conn
->session_info
->unix_info
->unix_name
));
2602 nt_status
= NT_STATUS_ACCESS_DENIED
;
2606 blob
.data
= (uint8_t*)params
;
2607 blob
.length
= parameter_count
;
2609 err
= ndr_pull_struct_blob(&blob
, tmp_ctx
, &info
,
2610 (ndr_pull_flags_fn_t
)ndr_pull_nttrans_query_quota_params
);
2612 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
2613 DEBUG(0,("TRANSACT_GET_USER_QUOTA: failed to pull "
2614 "query_quota_params."));
2615 nt_status
= NT_STATUS_INVALID_PARAMETER
;
2618 DBG_DEBUG("info.return_single_entry = %u, info.restart_scan = %u, "
2619 "info.sid_list_length = %u, info.start_sid_length = %u, "
2620 "info.start_sid_offset = %u\n",
2621 (unsigned int)info
.return_single_entry
,
2622 (unsigned int)info
.restart_scan
,
2623 (unsigned int)info
.sid_list_length
,
2624 (unsigned int)info
.start_sid_length
,
2625 (unsigned int)info
.start_sid_offset
);
2627 /* set blob to point at data for further parsing */
2628 blob
.data
= (uint8_t*)pdata
;
2629 blob
.length
= data_count
;
2631 * Although MS-SMB ref is ambiguous here, a microsoft client will
2632 * only ever send a start sid (as part of a list) with
2633 * sid_list_length & start_sid_offset both set to the actual list
2634 * length. Note: Only a single result is returned in this case
2635 * In the case where either start_sid_offset or start_sid_length
2636 * are set alone or if both set (but have different values) then
2637 * it seems windows will return a number of entries from the start
2638 * of the list of users with quotas set. This behaviour is undocumented
2639 * and windows clients do not send messages of that type. As such we
2640 * currently will reject these requests.
2642 if (info
.start_sid_length
2643 || (info
.sid_list_length
!= info
.start_sid_offset
)) {
2644 DBG_ERR("TRANSACT_GET_USER_QUOTA: unsupported single or "
2645 "compound sid format\n");
2646 nt_status
= NT_STATUS_INVALID_PARAMETER
;
2650 /* maybe we can check the quota_fnum */
2651 fsp
= file_fsp(req
, info
.fid
);
2652 if (!check_fsp_ntquota_handle(conn
, req
, fsp
)) {
2653 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2654 nt_status
= NT_STATUS_INVALID_HANDLE
;
2657 nt_status
= smbd_do_query_getinfo_quota(tmp_ctx
,
2660 info
.return_single_entry
,
2661 info
.sid_list_length
,
2666 if (!NT_STATUS_IS_OK(nt_status
)) {
2667 if (!NT_STATUS_EQUAL(nt_status
, NT_STATUS_NO_MORE_ENTRIES
)) {
2670 nt_status
= NT_STATUS_OK
;
2674 params
= nttrans_realloc(ppparams
, param_len
);
2675 if(params
== NULL
) {
2676 nt_status
= NT_STATUS_NO_MEMORY
;
2680 data_len
= resp_len
;
2681 SIVAL(params
, 0, data_len
);
2682 pdata
= nttrans_realloc(ppdata
, data_len
);
2683 memcpy(pdata
, resp_data
, data_len
);
2685 TALLOC_FREE(tmp_ctx
);
2686 send_nt_replies(conn
, req
, nt_status
, params
, param_len
,
2690 TALLOC_FREE(tmp_ctx
);
2691 reply_nterror(req
, nt_status
);
2694 /****************************************************************************
2695 Reply to set user quota
2696 ****************************************************************************/
2698 static void call_nt_transact_set_user_quota(connection_struct
*conn
,
2699 struct smb_request
*req
,
2701 uint32_t setup_count
,
2703 uint32_t parameter_count
,
2705 uint32_t data_count
,
2706 uint32_t max_data_count
)
2708 char *params
= *ppparams
;
2709 char *pdata
= *ppdata
;
2710 int data_len
=0,param_len
=0;
2711 SMB_NTQUOTA_STRUCT qt
;
2712 struct file_quota_information info
= {0};
2713 enum ndr_err_code err
;
2716 files_struct
*fsp
= NULL
;
2717 TALLOC_CTX
*ctx
= NULL
;
2718 NTSTATUS status
= NT_STATUS_OK
;
2722 if (get_current_uid(conn
) != sec_initial_uid()) {
2723 DEBUG(1,("set_user_quota: access_denied service [%s] user "
2724 "[%s]\n", lp_servicename(talloc_tos(), SNUM(conn
)),
2725 conn
->session_info
->unix_info
->unix_name
));
2726 status
= NT_STATUS_ACCESS_DENIED
;
2731 * Ensure minimum number of parameters sent.
2734 if (parameter_count
< 2) {
2735 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= 2 bytes parameters\n",parameter_count
));
2736 status
= NT_STATUS_INVALID_PARAMETER
;
2740 /* maybe we can check the quota_fnum */
2741 fsp
= file_fsp(req
, SVAL(params
,0));
2742 if (!check_fsp_ntquota_handle(conn
, req
, fsp
)) {
2743 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2744 status
= NT_STATUS_INVALID_HANDLE
;
2748 ctx
= talloc_init("set_user_quota");
2750 status
= NT_STATUS_NO_MEMORY
;
2753 inblob
.data
= (uint8_t*)pdata
;
2754 inblob
.length
= data_count
;
2756 err
= ndr_pull_struct_blob(
2760 (ndr_pull_flags_fn_t
)ndr_pull_file_quota_information
);
2762 if (!NDR_ERR_CODE_IS_SUCCESS(err
)) {
2763 DEBUG(0,("TRANSACT_SET_USER_QUOTA: failed to pull "
2764 "file_quota_information\n"));
2765 status
= NT_STATUS_INVALID_PARAMETER
;
2768 qt
.usedspace
= info
.quota_used
;
2770 qt
.softlim
= info
.quota_threshold
;
2772 qt
.hardlim
= info
.quota_limit
;
2776 if (vfs_set_ntquota(fsp
, SMB_USER_QUOTA_TYPE
, &sid
, &qt
)!=0) {
2777 status
= NT_STATUS_INTERNAL_ERROR
;
2781 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
,
2787 reply_nterror(req
, status
);
2789 #endif /* HAVE_SYS_QUOTAS */
2791 static void handle_nttrans(connection_struct
*conn
,
2792 struct trans_state
*state
,
2793 struct smb_request
*req
)
2795 if (get_Protocol() >= PROTOCOL_NT1
) {
2796 req
->flags2
|= 0x40; /* IS_LONG_NAME */
2797 SSVAL(discard_const_p(uint8_t, req
->inbuf
),smb_flg2
,req
->flags2
);
2801 SMB_PERFCOUNT_SET_SUBOP(&req
->pcd
, state
->call
);
2803 /* Now we must call the relevant NT_TRANS function */
2804 switch(state
->call
) {
2805 case NT_TRANSACT_CREATE
:
2807 START_PROFILE(NT_transact_create
);
2808 call_nt_transact_create(
2810 &state
->setup
, state
->setup_count
,
2811 &state
->param
, state
->total_param
,
2812 &state
->data
, state
->total_data
,
2813 state
->max_data_return
);
2814 END_PROFILE(NT_transact_create
);
2818 case NT_TRANSACT_IOCTL
:
2820 START_PROFILE(NT_transact_ioctl
);
2821 call_nt_transact_ioctl(
2823 &state
->setup
, state
->setup_count
,
2824 &state
->param
, state
->total_param
,
2825 &state
->data
, state
->total_data
,
2826 state
->max_data_return
);
2827 END_PROFILE(NT_transact_ioctl
);
2831 case NT_TRANSACT_SET_SECURITY_DESC
:
2833 START_PROFILE(NT_transact_set_security_desc
);
2834 call_nt_transact_set_security_desc(
2836 &state
->setup
, state
->setup_count
,
2837 &state
->param
, state
->total_param
,
2838 &state
->data
, state
->total_data
,
2839 state
->max_data_return
);
2840 END_PROFILE(NT_transact_set_security_desc
);
2844 case NT_TRANSACT_NOTIFY_CHANGE
:
2846 START_PROFILE(NT_transact_notify_change
);
2847 call_nt_transact_notify_change(
2849 &state
->setup
, state
->setup_count
,
2850 &state
->param
, state
->total_param
,
2851 &state
->data
, state
->total_data
,
2852 state
->max_data_return
,
2853 state
->max_param_return
);
2854 END_PROFILE(NT_transact_notify_change
);
2858 case NT_TRANSACT_RENAME
:
2860 START_PROFILE(NT_transact_rename
);
2861 call_nt_transact_rename(
2863 &state
->setup
, state
->setup_count
,
2864 &state
->param
, state
->total_param
,
2865 &state
->data
, state
->total_data
,
2866 state
->max_data_return
);
2867 END_PROFILE(NT_transact_rename
);
2871 case NT_TRANSACT_QUERY_SECURITY_DESC
:
2873 START_PROFILE(NT_transact_query_security_desc
);
2874 call_nt_transact_query_security_desc(
2876 &state
->setup
, state
->setup_count
,
2877 &state
->param
, state
->total_param
,
2878 &state
->data
, state
->total_data
,
2879 state
->max_data_return
);
2880 END_PROFILE(NT_transact_query_security_desc
);
2884 #ifdef HAVE_SYS_QUOTAS
2885 case NT_TRANSACT_GET_USER_QUOTA
:
2887 START_PROFILE(NT_transact_get_user_quota
);
2888 call_nt_transact_get_user_quota(
2890 &state
->setup
, state
->setup_count
,
2891 &state
->param
, state
->total_param
,
2892 &state
->data
, state
->total_data
,
2893 state
->max_data_return
);
2894 END_PROFILE(NT_transact_get_user_quota
);
2898 case NT_TRANSACT_SET_USER_QUOTA
:
2900 START_PROFILE(NT_transact_set_user_quota
);
2901 call_nt_transact_set_user_quota(
2903 &state
->setup
, state
->setup_count
,
2904 &state
->param
, state
->total_param
,
2905 &state
->data
, state
->total_data
,
2906 state
->max_data_return
);
2907 END_PROFILE(NT_transact_set_user_quota
);
2910 #endif /* HAVE_SYS_QUOTAS */
2913 /* Error in request */
2914 DEBUG(0,("handle_nttrans: Unknown request %d in "
2915 "nttrans call\n", state
->call
));
2916 reply_nterror(req
, NT_STATUS_INVALID_LEVEL
);
2922 /****************************************************************************
2923 Reply to a SMBNTtrans.
2924 ****************************************************************************/
2926 void reply_nttrans(struct smb_request
*req
)
2928 connection_struct
*conn
= req
->conn
;
2933 uint16_t function_code
;
2935 struct trans_state
*state
;
2937 START_PROFILE(SMBnttrans
);
2939 if (req
->wct
< 19) {
2940 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2941 END_PROFILE(SMBnttrans
);
2945 pscnt
= IVAL(req
->vwv
+9, 1);
2946 psoff
= IVAL(req
->vwv
+11, 1);
2947 dscnt
= IVAL(req
->vwv
+13, 1);
2948 dsoff
= IVAL(req
->vwv
+15, 1);
2949 function_code
= SVAL(req
->vwv
+18, 0);
2951 if (IS_IPC(conn
) && (function_code
!= NT_TRANSACT_CREATE
)) {
2952 reply_nterror(req
, NT_STATUS_ACCESS_DENIED
);
2953 END_PROFILE(SMBnttrans
);
2957 result
= allow_new_trans(conn
->pending_trans
, req
->mid
);
2958 if (!NT_STATUS_IS_OK(result
)) {
2959 DEBUG(2, ("Got invalid nttrans request: %s\n", nt_errstr(result
)));
2960 reply_nterror(req
, result
);
2961 END_PROFILE(SMBnttrans
);
2965 if ((state
= talloc(conn
, struct trans_state
)) == NULL
) {
2966 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
2967 END_PROFILE(SMBnttrans
);
2971 state
->cmd
= SMBnttrans
;
2973 state
->mid
= req
->mid
;
2974 state
->vuid
= req
->vuid
;
2975 state
->total_data
= IVAL(req
->vwv
+3, 1);
2977 state
->total_param
= IVAL(req
->vwv
+1, 1);
2978 state
->param
= NULL
;
2979 state
->max_data_return
= IVAL(req
->vwv
+7, 1);
2980 state
->max_param_return
= IVAL(req
->vwv
+5, 1);
2982 /* setup count is in *words* */
2983 state
->setup_count
= 2*CVAL(req
->vwv
+17, 1);
2984 state
->setup
= NULL
;
2985 state
->call
= function_code
;
2987 DEBUG(10, ("num_setup=%u, "
2988 "param_total=%u, this_param=%u, max_param=%u, "
2989 "data_total=%u, this_data=%u, max_data=%u, "
2990 "param_offset=%u, data_offset=%u\n",
2991 (unsigned)state
->setup_count
,
2992 (unsigned)state
->total_param
, (unsigned)pscnt
,
2993 (unsigned)state
->max_param_return
,
2994 (unsigned)state
->total_data
, (unsigned)dscnt
,
2995 (unsigned)state
->max_data_return
,
2996 (unsigned)psoff
, (unsigned)dsoff
));
2999 * All nttrans messages we handle have smb_wct == 19 +
3000 * state->setup_count. Ensure this is so as a sanity check.
3003 if(req
->wct
!= 19 + (state
->setup_count
/2)) {
3004 DEBUG(2,("Invalid smb_wct %d in nttrans call (should be %d)\n",
3005 req
->wct
, 19 + (state
->setup_count
/2)));
3009 /* Don't allow more than 128mb for each value. */
3010 if ((state
->total_data
> (1024*1024*128)) ||
3011 (state
->total_param
> (1024*1024*128))) {
3012 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
3013 END_PROFILE(SMBnttrans
);
3017 if ((dscnt
> state
->total_data
) || (pscnt
> state
->total_param
))
3020 if (state
->total_data
) {
3022 if (trans_oob(state
->total_data
, 0, dscnt
)
3023 || trans_oob(smb_len(req
->inbuf
), dsoff
, dscnt
)) {
3027 /* Can't use talloc here, the core routines do realloc on the
3028 * params and data. */
3029 if ((state
->data
= (char *)SMB_MALLOC(state
->total_data
)) == NULL
) {
3030 DEBUG(0,("reply_nttrans: data malloc fail for %u "
3031 "bytes !\n", (unsigned int)state
->total_data
));
3033 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
3034 END_PROFILE(SMBnttrans
);
3038 memcpy(state
->data
,smb_base(req
->inbuf
)+dsoff
,dscnt
);
3041 if (state
->total_param
) {
3043 if (trans_oob(state
->total_param
, 0, pscnt
)
3044 || trans_oob(smb_len(req
->inbuf
), psoff
, pscnt
)) {
3048 /* Can't use talloc here, the core routines do realloc on the
3049 * params and data. */
3050 if ((state
->param
= (char *)SMB_MALLOC(state
->total_param
)) == NULL
) {
3051 DEBUG(0,("reply_nttrans: param malloc fail for %u "
3052 "bytes !\n", (unsigned int)state
->total_param
));
3053 SAFE_FREE(state
->data
);
3055 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
3056 END_PROFILE(SMBnttrans
);
3060 memcpy(state
->param
,smb_base(req
->inbuf
)+psoff
,pscnt
);
3063 state
->received_data
= dscnt
;
3064 state
->received_param
= pscnt
;
3066 if(state
->setup_count
> 0) {
3067 DEBUG(10,("reply_nttrans: state->setup_count = %d\n",
3068 state
->setup_count
));
3071 * No overflow possible here, state->setup_count is an
3072 * unsigned int, being filled by a single byte from
3073 * CVAL(req->vwv+13, 0) above. The cast in the comparison
3074 * below is not necessary, it's here to clarify things. The
3075 * validity of req->vwv and req->wct has been checked in
3076 * init_smb_request already.
3078 if ((state
->setup_count
/2) + 19 > (unsigned int)req
->wct
) {
3082 state
->setup
= (uint16_t *)TALLOC(state
, state
->setup_count
);
3083 if (state
->setup
== NULL
) {
3084 DEBUG(0,("reply_nttrans : Out of memory\n"));
3085 SAFE_FREE(state
->data
);
3086 SAFE_FREE(state
->param
);
3088 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
3089 END_PROFILE(SMBnttrans
);
3093 memcpy(state
->setup
, req
->vwv
+19, state
->setup_count
);
3094 dump_data(10, (uint8_t *)state
->setup
, state
->setup_count
);
3097 if ((state
->received_data
== state
->total_data
) &&
3098 (state
->received_param
== state
->total_param
)) {
3099 handle_nttrans(conn
, state
, req
);
3100 SAFE_FREE(state
->param
);
3101 SAFE_FREE(state
->data
);
3103 END_PROFILE(SMBnttrans
);
3107 DLIST_ADD(conn
->pending_trans
, state
);
3109 /* We need to send an interim response then receive the rest
3110 of the parameter/data bytes */
3111 reply_outbuf(req
, 0, 0);
3112 show_msg((char *)req
->outbuf
);
3113 END_PROFILE(SMBnttrans
);
3118 DEBUG(0,("reply_nttrans: invalid trans parameters\n"));
3119 SAFE_FREE(state
->data
);
3120 SAFE_FREE(state
->param
);
3122 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
3123 END_PROFILE(SMBnttrans
);
3127 /****************************************************************************
3128 Reply to a SMBnttranss
3129 ****************************************************************************/
3131 void reply_nttranss(struct smb_request
*req
)
3133 connection_struct
*conn
= req
->conn
;
3134 uint32_t pcnt
,poff
,dcnt
,doff
,pdisp
,ddisp
;
3135 struct trans_state
*state
;
3137 START_PROFILE(SMBnttranss
);
3139 show_msg((const char *)req
->inbuf
);
3141 /* Windows clients expect all replies to
3142 an NT transact secondary (SMBnttranss 0xA1)
3143 to have a command code of NT transact
3144 (SMBnttrans 0xA0). See bug #8989 for details. */
3145 req
->cmd
= SMBnttrans
;
3147 if (req
->wct
< 18) {
3148 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
3149 END_PROFILE(SMBnttranss
);
3153 for (state
= conn
->pending_trans
; state
!= NULL
;
3154 state
= state
->next
) {
3155 if (state
->mid
== req
->mid
) {
3160 if ((state
== NULL
) || (state
->cmd
!= SMBnttrans
)) {
3161 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
3162 END_PROFILE(SMBnttranss
);
3166 /* Revise state->total_param and state->total_data in case they have
3167 changed downwards */
3168 if (IVAL(req
->vwv
+1, 1) < state
->total_param
) {
3169 state
->total_param
= IVAL(req
->vwv
+1, 1);
3171 if (IVAL(req
->vwv
+3, 1) < state
->total_data
) {
3172 state
->total_data
= IVAL(req
->vwv
+3, 1);
3175 pcnt
= IVAL(req
->vwv
+5, 1);
3176 poff
= IVAL(req
->vwv
+7, 1);
3177 pdisp
= IVAL(req
->vwv
+9, 1);
3179 dcnt
= IVAL(req
->vwv
+11, 1);
3180 doff
= IVAL(req
->vwv
+13, 1);
3181 ddisp
= IVAL(req
->vwv
+15, 1);
3183 state
->received_param
+= pcnt
;
3184 state
->received_data
+= dcnt
;
3186 if ((state
->received_data
> state
->total_data
) ||
3187 (state
->received_param
> state
->total_param
))
3191 if (trans_oob(state
->total_param
, pdisp
, pcnt
)
3192 || trans_oob(smb_len(req
->inbuf
), poff
, pcnt
)) {
3195 memcpy(state
->param
+pdisp
, smb_base(req
->inbuf
)+poff
,pcnt
);
3199 if (trans_oob(state
->total_data
, ddisp
, dcnt
)
3200 || trans_oob(smb_len(req
->inbuf
), doff
, dcnt
)) {
3203 memcpy(state
->data
+ddisp
, smb_base(req
->inbuf
)+doff
,dcnt
);
3206 if ((state
->received_param
< state
->total_param
) ||
3207 (state
->received_data
< state
->total_data
)) {
3208 END_PROFILE(SMBnttranss
);
3212 handle_nttrans(conn
, state
, req
);
3214 DLIST_REMOVE(conn
->pending_trans
, state
);
3215 SAFE_FREE(state
->data
);
3216 SAFE_FREE(state
->param
);
3218 END_PROFILE(SMBnttranss
);
3223 DEBUG(0,("reply_nttranss: invalid trans parameters\n"));
3224 DLIST_REMOVE(conn
->pending_trans
, state
);
3225 SAFE_FREE(state
->data
);
3226 SAFE_FREE(state
->param
);
3228 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
3229 END_PROFILE(SMBnttranss
);