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/>.
24 extern enum protocol_types Protocol
;
25 extern struct current_user current_user
;
27 static const char *known_nt_pipes
[] = {
48 static char *nttrans_realloc(char **ptr
, size_t size
)
51 smb_panic("nttrans_realloc() called with NULL ptr");
54 *ptr
= (char *)SMB_REALLOC(*ptr
, size
);
58 memset(*ptr
,'\0',size
);
62 /****************************************************************************
63 Send the required number of replies back.
64 We assume all fields other than the data fields are
65 set correctly for the type of call.
66 HACK ! Always assumes smb_setup field is zero.
67 ****************************************************************************/
69 void send_nt_replies(connection_struct
*conn
,
70 struct smb_request
*req
, NTSTATUS nt_error
,
71 char *params
, int paramsize
,
72 char *pdata
, int datasize
)
74 int data_to_send
= datasize
;
75 int params_to_send
= paramsize
;
79 int params_sent_thistime
, data_sent_thistime
, total_sent_thistime
;
80 int alignment_offset
= 3;
81 int data_alignment_offset
= 0;
84 * If there genuinely are no parameters or data to send just send
88 if(params_to_send
== 0 && data_to_send
== 0) {
89 reply_outbuf(req
, 18, 0);
90 show_msg((char *)req
->outbuf
);
95 * When sending params and data ensure that both are nicely aligned.
96 * Only do this alignment when there is also data to send - else
97 * can cause NT redirector problems.
100 if (((params_to_send
% 4) != 0) && (data_to_send
!= 0)) {
101 data_alignment_offset
= 4 - (params_to_send
% 4);
105 * Space is bufsize minus Netbios over TCP header minus SMB header.
106 * The alignment_offset is to align the param bytes on a four byte
107 * boundary (2 bytes for data len, one byte pad).
108 * NT needs this to work correctly.
111 useable_space
= max_send
- (smb_size
114 + data_alignment_offset
);
117 * useable_space can never be more than max_send minus the
121 useable_space
= MIN(useable_space
,
122 max_send
- (alignment_offset
+data_alignment_offset
));
125 while (params_to_send
|| data_to_send
) {
128 * Calculate whether we will totally or partially fill this packet.
131 total_sent_thistime
= params_to_send
+ data_to_send
+
132 alignment_offset
+ data_alignment_offset
;
135 * We can never send more than useable_space.
138 total_sent_thistime
= MIN(total_sent_thistime
, useable_space
);
140 reply_outbuf(req
, 18, total_sent_thistime
);
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);
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
,
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);
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,
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
,
244 /* Send the packet */
245 show_msg((char *)req
->outbuf
);
246 if (!srv_send_smb(smbd_server_fd(),
248 IS_CONN_ENCRYPTED(conn
))) {
249 exit_server_cleanly("send_nt_replies: srv_send_smb failed.");
252 TALLOC_FREE(req
->outbuf
);
254 pp
+= params_sent_thistime
;
255 pd
+= data_sent_thistime
;
257 params_to_send
-= params_sent_thistime
;
258 data_to_send
-= data_sent_thistime
;
264 if(params_to_send
< 0 || data_to_send
< 0) {
265 DEBUG(0,("send_nt_replies failed sanity check pts = %d, dts = %d\n!!!",
266 params_to_send
, data_to_send
));
272 /****************************************************************************
273 Is it an NTFS stream name ?
274 An NTFS file name is <path>.<extention>:<stream name>:<stream type>
275 $DATA can be used as both a stream name and a stream type. A missing stream
276 name or type implies $DATA.
277 ****************************************************************************/
279 bool is_ntfs_stream_name(const char *fname
)
281 if (lp_posix_pathnames()) {
284 return (strchr_m(fname
, ':') != NULL
) ? True
: False
;
287 /****************************************************************************
288 Reply to an NT create and X call on a pipe
289 ****************************************************************************/
291 static void nt_open_pipe(char *fname
, connection_struct
*conn
,
292 struct smb_request
*req
, int *ppnum
)
294 smb_np_struct
*p
= NULL
;
297 DEBUG(4,("nt_open_pipe: Opening pipe %s.\n", fname
));
299 /* See if it is one we want to handle. */
301 if (lp_disable_spoolss() && strequal(fname
, "\\spoolss")) {
302 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
307 for( i
= 0; known_nt_pipes
[i
]; i
++ ) {
308 if( strequal(fname
,known_nt_pipes
[i
])) {
313 if ( known_nt_pipes
[i
] == NULL
) {
314 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
319 /* Strip \\ off the name. */
322 DEBUG(3,("nt_open_pipe: Known pipe %s opening.\n", fname
));
324 p
= open_rpc_pipe_p(fname
, conn
, req
->vuid
);
326 reply_doserror(req
, ERRSRV
, ERRnofids
);
330 /* TODO: Add pipe to db */
332 if ( !store_pipe_opendb( p
) ) {
333 DEBUG(3,("nt_open_pipe: failed to store %s pipe open.\n", fname
));
340 /****************************************************************************
341 Reply to an NT create and X call for pipes.
342 ****************************************************************************/
344 static void do_ntcreate_pipe_open(connection_struct
*conn
,
345 struct smb_request
*req
)
350 uint32 flags
= IVAL(req
->inbuf
,smb_ntcreate_Flags
);
351 TALLOC_CTX
*ctx
= talloc_tos();
353 srvstr_pull_buf_talloc(ctx
, (char *)req
->inbuf
, req
->flags2
, &fname
,
354 smb_buf(req
->inbuf
), STR_TERMINATE
);
357 reply_botherror(req
, NT_STATUS_OBJECT_NAME_NOT_FOUND
,
361 nt_open_pipe(fname
, conn
, req
, &pnum
);
369 * Deal with pipe return.
372 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
373 /* This is very strange. We
374 * return 50 words, but only set
375 * the wcnt to 42 ? It's definately
376 * what happens on the wire....
378 reply_outbuf(req
, 50, 0);
379 SCVAL(req
->outbuf
,smb_wct
,42);
381 reply_outbuf(req
, 34, 0);
384 p
= (char *)req
->outbuf
+ smb_vwv2
;
388 SIVAL(p
,0,FILE_WAS_OPENED
);
391 SIVAL(p
,0,FILE_ATTRIBUTE_NORMAL
); /* File Attributes. */
394 SSVAL(p
,0,FILE_TYPE_MESSAGE_MODE_PIPE
);
396 SSVAL(p
,2, 0x5FF); /* ? */
399 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
401 SIVAL(p
,0,FILE_GENERIC_ALL
);
403 * For pipes W2K3 seems to return
405 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
407 SIVAL(p
,4,(FILE_GENERIC_READ
|FILE_GENERIC_WRITE
)&~FILE_APPEND_DATA
);
410 DEBUG(5,("do_ntcreate_pipe_open: open pipe = %s\n", fname
));
415 /****************************************************************************
416 Reply to an NT create and X call.
417 ****************************************************************************/
419 void reply_ntcreate_and_X(struct smb_request
*req
)
421 connection_struct
*conn
= req
->conn
;
425 uint32 file_attributes
;
427 uint32 create_disposition
;
428 uint32 create_options
;
430 SMB_BIG_UINT allocation_size
;
431 /* Breakout the oplock request bits so we can set the
432 reply bits separately. */
434 SMB_OFF_T file_len
= 0;
435 SMB_STRUCT_STAT sbuf
;
437 files_struct
*fsp
= NULL
;
439 struct timespec c_timespec
;
440 struct timespec a_timespec
;
441 struct timespec m_timespec
;
444 uint8_t oplock_granted
= NO_OPLOCK_RETURN
;
445 TALLOC_CTX
*ctx
= talloc_tos();
447 START_PROFILE(SMBntcreateX
);
450 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
454 flags
= IVAL(req
->inbuf
,smb_ntcreate_Flags
);
455 access_mask
= IVAL(req
->inbuf
,smb_ntcreate_DesiredAccess
);
456 file_attributes
= IVAL(req
->inbuf
,smb_ntcreate_FileAttributes
);
457 share_access
= IVAL(req
->inbuf
,smb_ntcreate_ShareAccess
);
458 create_disposition
= IVAL(req
->inbuf
,smb_ntcreate_CreateDisposition
);
459 create_options
= IVAL(req
->inbuf
,smb_ntcreate_CreateOptions
);
460 root_dir_fid
= (uint16
)IVAL(req
->inbuf
,smb_ntcreate_RootDirectoryFid
);
462 allocation_size
= (SMB_BIG_UINT
)IVAL(req
->inbuf
,
463 smb_ntcreate_AllocationSize
);
464 #ifdef LARGE_SMB_OFF_T
465 allocation_size
|= (((SMB_BIG_UINT
)IVAL(
467 smb_ntcreate_AllocationSize
+ 4)) << 32);
470 srvstr_get_path(ctx
, (char *)req
->inbuf
, req
->flags2
, &fname
,
471 smb_buf(req
->inbuf
), 0, STR_TERMINATE
, &status
);
473 if (!NT_STATUS_IS_OK(status
)) {
474 reply_nterror(req
, status
);
475 END_PROFILE(SMBntcreateX
);
479 DEBUG(10,("reply_ntcreate_and_X: flags = 0x%x, access_mask = 0x%x "
480 "file_attributes = 0x%x, share_access = 0x%x, "
481 "create_disposition = 0x%x create_options = 0x%x "
482 "root_dir_fid = 0x%x, fname = %s\n",
484 (unsigned int)access_mask
,
485 (unsigned int)file_attributes
,
486 (unsigned int)share_access
,
487 (unsigned int)create_disposition
,
488 (unsigned int)create_options
,
489 (unsigned int)root_dir_fid
,
493 * If it's an IPC, use the pipe handler.
497 if (lp_nt_pipe_support()) {
498 do_ntcreate_pipe_open(conn
, req
);
499 END_PROFILE(SMBntcreateX
);
502 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
503 END_PROFILE(SMBntcreateX
);
508 oplock_request
= (flags
& REQUEST_OPLOCK
) ? EXCLUSIVE_OPLOCK
: 0;
509 if (oplock_request
) {
510 oplock_request
|= (flags
& REQUEST_BATCH_OPLOCK
)
514 status
= create_file(conn
, req
, root_dir_fid
, fname
,
515 access_mask
, share_access
, create_disposition
,
516 create_options
, file_attributes
, oplock_request
,
517 allocation_size
, NULL
, NULL
, &fsp
, &info
, &sbuf
);
519 if (!NT_STATUS_IS_OK(status
)) {
520 if (open_was_deferred(req
->mid
)) {
521 /* We have re-scheduled this call, no error. */
522 END_PROFILE(SMBntcreateX
);
525 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_COLLISION
)) {
526 reply_botherror(req
, status
, ERRDOS
, ERRfilexists
);
529 reply_nterror(req
, status
);
531 END_PROFILE(SMBntcreateX
);
536 * If the caller set the extended oplock request bit
537 * and we granted one (by whatever means) - set the
538 * correct bit for extended oplock reply.
541 if (oplock_request
&&
542 (lp_fake_oplocks(SNUM(conn
))
543 || EXCLUSIVE_OPLOCK_TYPE(fsp
->oplock_type
))) {
546 * Exclusive oplock granted
549 if (flags
& REQUEST_BATCH_OPLOCK
) {
550 oplock_granted
= BATCH_OPLOCK_RETURN
;
552 oplock_granted
= EXCLUSIVE_OPLOCK_RETURN
;
554 } else if (fsp
->oplock_type
== LEVEL_II_OPLOCK
) {
555 oplock_granted
= LEVEL_II_OPLOCK_RETURN
;
557 oplock_granted
= NO_OPLOCK_RETURN
;
560 file_len
= sbuf
.st_size
;
561 fattr
= dos_mode(conn
,fsp
->fsp_name
,&sbuf
);
563 fattr
= FILE_ATTRIBUTE_NORMAL
;
566 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
567 /* This is very strange. We
568 * return 50 words, but only set
569 * the wcnt to 42 ? It's definately
570 * what happens on the wire....
572 reply_outbuf(req
, 50, 0);
573 SCVAL(req
->outbuf
,smb_wct
,42);
575 reply_outbuf(req
, 34, 0);
578 p
= (char *)req
->outbuf
+ smb_vwv2
;
580 SCVAL(p
, 0, oplock_granted
);
583 SSVAL(p
,0,fsp
->fnum
);
585 if ((create_disposition
== FILE_SUPERSEDE
)
586 && (info
== FILE_WAS_OVERWRITTEN
)) {
587 SIVAL(p
,0,FILE_WAS_SUPERSEDED
);
594 c_timespec
= get_create_timespec(
595 &sbuf
,lp_fake_dir_create_times(SNUM(conn
)));
596 a_timespec
= get_atimespec(&sbuf
);
597 m_timespec
= get_mtimespec(&sbuf
);
599 if (lp_dos_filetime_resolution(SNUM(conn
))) {
600 dos_filetime_timespec(&c_timespec
);
601 dos_filetime_timespec(&a_timespec
);
602 dos_filetime_timespec(&m_timespec
);
605 put_long_date_timespec(p
, c_timespec
); /* create time. */
607 put_long_date_timespec(p
, a_timespec
); /* access time */
609 put_long_date_timespec(p
, m_timespec
); /* write time */
611 put_long_date_timespec(p
, m_timespec
); /* change time */
613 SIVAL(p
,0,fattr
); /* File Attributes. */
615 SOFF_T(p
, 0, get_allocation_size(conn
,fsp
,&sbuf
));
617 SOFF_T(p
,0,file_len
);
619 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
623 SCVAL(p
,0,fsp
->is_directory
? 1 : 0);
625 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
628 if (fsp
->is_directory
629 || can_write_to_file(conn
, fsp
->fsp_name
, &sbuf
)) {
630 perms
= FILE_GENERIC_ALL
;
632 perms
= FILE_GENERIC_READ
|FILE_EXECUTE
;
637 DEBUG(5,("reply_ntcreate_and_X: fnum = %d, open name = %s\n",
638 fsp
->fnum
, fsp
->fsp_name
));
641 END_PROFILE(SMBntcreateX
);
645 /****************************************************************************
646 Reply to a NT_TRANSACT_CREATE call to open a pipe.
647 ****************************************************************************/
649 static void do_nt_transact_create_pipe(connection_struct
*conn
,
650 struct smb_request
*req
,
651 uint16
**ppsetup
, uint32 setup_count
,
652 char **ppparams
, uint32 parameter_count
,
653 char **ppdata
, uint32 data_count
)
656 char *params
= *ppparams
;
662 TALLOC_CTX
*ctx
= talloc_tos();
665 * Ensure minimum number of parameters sent.
668 if(parameter_count
< 54) {
669 DEBUG(0,("do_nt_transact_create_pipe - insufficient parameters (%u)\n", (unsigned int)parameter_count
));
670 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
674 flags
= IVAL(params
,0);
676 srvstr_get_path(ctx
, params
, req
->flags2
, &fname
, params
+53,
677 parameter_count
-53, STR_TERMINATE
,
679 if (!NT_STATUS_IS_OK(status
)) {
680 reply_nterror(req
, status
);
684 nt_open_pipe(fname
, conn
, req
, &pnum
);
691 /* Realloc the size of parameters and data we will return */
692 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
693 /* Extended response is 32 more byyes. */
698 params
= nttrans_realloc(ppparams
, param_len
);
700 reply_doserror(req
, ERRDOS
, ERRnomem
);
705 SCVAL(p
,0,NO_OPLOCK_RETURN
);
710 SIVAL(p
,0,FILE_WAS_OPENED
);
714 SIVAL(p
,0,FILE_ATTRIBUTE_NORMAL
); /* File Attributes. */
717 SSVAL(p
,0,FILE_TYPE_MESSAGE_MODE_PIPE
);
719 SSVAL(p
,2, 0x5FF); /* ? */
722 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
724 SIVAL(p
,0,FILE_GENERIC_ALL
);
726 * For pipes W2K3 seems to return
728 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
730 SIVAL(p
,4,(FILE_GENERIC_READ
|FILE_GENERIC_WRITE
)&~FILE_APPEND_DATA
);
733 DEBUG(5,("do_nt_transact_create_pipe: open name = %s\n", fname
));
735 /* Send the required number of replies */
736 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
, *ppdata
, 0);
741 /****************************************************************************
742 Internal fn to set security descriptors.
743 ****************************************************************************/
745 static NTSTATUS
set_sd(files_struct
*fsp
, uint8
*data
, uint32 sd_len
,
746 uint32 security_info_sent
)
748 SEC_DESC
*psd
= NULL
;
751 if (sd_len
== 0 || !lp_nt_acl_support(SNUM(fsp
->conn
))) {
755 status
= unmarshall_sec_desc(talloc_tos(), data
, sd_len
, &psd
);
757 if (!NT_STATUS_IS_OK(status
)) {
761 if (psd
->owner_sid
==0) {
762 security_info_sent
&= ~OWNER_SECURITY_INFORMATION
;
764 if (psd
->group_sid
==0) {
765 security_info_sent
&= ~GROUP_SECURITY_INFORMATION
;
768 security_info_sent
&= ~SACL_SECURITY_INFORMATION
;
771 security_info_sent
&= ~DACL_SECURITY_INFORMATION
;
774 if (fsp
->fh
->fd
!= -1) {
775 status
= SMB_VFS_FSET_NT_ACL(fsp
, security_info_sent
, psd
);
778 status
= SMB_VFS_SET_NT_ACL(fsp
, fsp
->fsp_name
,
779 security_info_sent
, psd
);
787 /****************************************************************************
788 Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
789 ****************************************************************************/
791 static struct ea_list
*read_nttrans_ea_list(TALLOC_CTX
*ctx
, const char *pdata
, size_t data_size
)
793 struct ea_list
*ea_list_head
= NULL
;
800 while (offset
+ 4 <= data_size
) {
801 size_t next_offset
= IVAL(pdata
,offset
);
802 struct ea_list
*eal
= read_ea_list_entry(ctx
, pdata
+ offset
+ 4, data_size
- offset
- 4, NULL
);
808 DLIST_ADD_END(ea_list_head
, eal
, struct ea_list
*);
809 if (next_offset
== 0) {
812 offset
+= next_offset
;
818 /****************************************************************************
819 Reply to a NT_TRANSACT_CREATE call (needs to process SD's).
820 ****************************************************************************/
822 static void call_nt_transact_create(connection_struct
*conn
,
823 struct smb_request
*req
,
824 uint16
**ppsetup
, uint32 setup_count
,
825 char **ppparams
, uint32 parameter_count
,
826 char **ppdata
, uint32 data_count
,
827 uint32 max_data_count
)
830 char *params
= *ppparams
;
831 char *data
= *ppdata
;
832 /* Breakout the oplock request bits so we can set the reply bits separately. */
834 SMB_OFF_T file_len
= 0;
835 SMB_STRUCT_STAT sbuf
;
837 files_struct
*fsp
= NULL
;
841 uint32 file_attributes
;
843 uint32 create_disposition
;
844 uint32 create_options
;
846 struct security_descriptor
*sd
= NULL
;
849 struct timespec c_timespec
;
850 struct timespec a_timespec
;
851 struct timespec m_timespec
;
852 struct ea_list
*ea_list
= NULL
;
855 SMB_BIG_UINT allocation_size
;
857 uint8_t oplock_granted
;
858 TALLOC_CTX
*ctx
= talloc_tos();
860 DEBUG(5,("call_nt_transact_create\n"));
863 * If it's an IPC, use the pipe handler.
867 if (lp_nt_pipe_support()) {
868 do_nt_transact_create_pipe(
870 ppsetup
, setup_count
,
871 ppparams
, parameter_count
,
875 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
881 * Ensure minimum number of parameters sent.
884 if(parameter_count
< 54) {
885 DEBUG(0,("call_nt_transact_create - insufficient parameters (%u)\n", (unsigned int)parameter_count
));
886 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
890 flags
= IVAL(params
,0);
891 access_mask
= IVAL(params
,8);
892 file_attributes
= IVAL(params
,20);
893 share_access
= IVAL(params
,24);
894 create_disposition
= IVAL(params
,28);
895 create_options
= IVAL(params
,32);
896 sd_len
= IVAL(params
,36);
897 ea_len
= IVAL(params
,40);
898 root_dir_fid
= (uint16
)IVAL(params
,4);
899 allocation_size
= (SMB_BIG_UINT
)IVAL(params
,12);
900 #ifdef LARGE_SMB_OFF_T
901 allocation_size
|= (((SMB_BIG_UINT
)IVAL(params
,16)) << 32);
904 /* Ensure the data_len is correct for the sd and ea values given. */
905 if ((ea_len
+ sd_len
> data_count
)
906 || (ea_len
> data_count
) || (sd_len
> data_count
)
907 || (ea_len
+ sd_len
< ea_len
) || (ea_len
+ sd_len
< sd_len
)) {
908 DEBUG(10, ("call_nt_transact_create - ea_len = %u, sd_len = "
909 "%u, data_count = %u\n", (unsigned int)ea_len
,
910 (unsigned int)sd_len
, (unsigned int)data_count
));
911 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
916 DEBUG(10, ("call_nt_transact_create - sd_len = %d\n",
919 status
= unmarshall_sec_desc(ctx
, (uint8_t *)data
, sd_len
,
921 if (!NT_STATUS_IS_OK(status
)) {
922 DEBUG(10, ("call_nt_transact_create: "
923 "unmarshall_sec_desc failed: %s\n",
925 reply_nterror(req
, status
);
931 if (!lp_ea_support(SNUM(conn
))) {
932 DEBUG(10, ("call_nt_transact_create - ea_len = %u but "
933 "EA's not supported.\n",
934 (unsigned int)ea_len
));
935 reply_nterror(req
, NT_STATUS_EAS_NOT_SUPPORTED
);
940 DEBUG(10,("call_nt_transact_create - ea_len = %u - "
941 "too small (should be more than 10)\n",
942 (unsigned int)ea_len
));
943 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
947 /* We have already checked that ea_len <= data_count here. */
948 ea_list
= read_nttrans_ea_list(talloc_tos(), data
+ sd_len
,
950 if (ea_list
== NULL
) {
951 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
956 srvstr_get_path(ctx
, params
, req
->flags2
, &fname
,
957 params
+53, parameter_count
-53,
958 STR_TERMINATE
, &status
);
959 if (!NT_STATUS_IS_OK(status
)) {
960 reply_nterror(req
, status
);
964 oplock_request
= (flags
& REQUEST_OPLOCK
) ? EXCLUSIVE_OPLOCK
: 0;
965 if (oplock_request
) {
966 oplock_request
|= (flags
& REQUEST_BATCH_OPLOCK
)
970 status
= create_file(conn
, req
, root_dir_fid
, fname
,
971 access_mask
, share_access
, create_disposition
,
972 create_options
, file_attributes
, oplock_request
,
973 allocation_size
, sd
, ea_list
, &fsp
, &info
, &sbuf
);
975 if(!NT_STATUS_IS_OK(status
)) {
976 if (open_was_deferred(req
->mid
)) {
977 /* We have re-scheduled this call, no error. */
980 reply_openerror(req
, status
);
985 * If the caller set the extended oplock request bit
986 * and we granted one (by whatever means) - set the
987 * correct bit for extended oplock reply.
990 if (oplock_request
&&
991 (lp_fake_oplocks(SNUM(conn
))
992 || EXCLUSIVE_OPLOCK_TYPE(fsp
->oplock_type
))) {
995 * Exclusive oplock granted
998 if (flags
& REQUEST_BATCH_OPLOCK
) {
999 oplock_granted
= BATCH_OPLOCK_RETURN
;
1001 oplock_granted
= EXCLUSIVE_OPLOCK_RETURN
;
1003 } else if (fsp
->oplock_type
== LEVEL_II_OPLOCK
) {
1004 oplock_granted
= LEVEL_II_OPLOCK_RETURN
;
1006 oplock_granted
= NO_OPLOCK_RETURN
;
1009 file_len
= sbuf
.st_size
;
1010 fattr
= dos_mode(conn
,fsp
->fsp_name
,&sbuf
);
1012 fattr
= FILE_ATTRIBUTE_NORMAL
;
1015 /* Realloc the size of parameters and data we will return */
1016 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1017 /* Extended response is 32 more byyes. */
1022 params
= nttrans_realloc(ppparams
, param_len
);
1023 if(params
== NULL
) {
1024 reply_doserror(req
, ERRDOS
, ERRnomem
);
1029 SCVAL(p
, 0, oplock_granted
);
1032 SSVAL(p
,0,fsp
->fnum
);
1034 if ((create_disposition
== FILE_SUPERSEDE
)
1035 && (info
== FILE_WAS_OVERWRITTEN
)) {
1036 SIVAL(p
,0,FILE_WAS_SUPERSEDED
);
1043 c_timespec
= get_create_timespec(
1044 &sbuf
,lp_fake_dir_create_times(SNUM(conn
)));
1045 a_timespec
= get_atimespec(&sbuf
);
1046 m_timespec
= get_mtimespec(&sbuf
);
1048 if (lp_dos_filetime_resolution(SNUM(conn
))) {
1049 dos_filetime_timespec(&c_timespec
);
1050 dos_filetime_timespec(&a_timespec
);
1051 dos_filetime_timespec(&m_timespec
);
1054 put_long_date_timespec(p
, c_timespec
); /* create time. */
1056 put_long_date_timespec(p
, a_timespec
); /* access time */
1058 put_long_date_timespec(p
, m_timespec
); /* write time */
1060 put_long_date_timespec(p
, m_timespec
); /* change time */
1062 SIVAL(p
,0,fattr
); /* File Attributes. */
1064 SOFF_T(p
, 0, get_allocation_size(conn
,fsp
,&sbuf
));
1066 SOFF_T(p
,0,file_len
);
1068 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1072 SCVAL(p
,0,fsp
->is_directory
? 1 : 0);
1074 if (flags
& EXTENDED_RESPONSE_REQUIRED
) {
1077 if (fsp
->is_directory
1078 || can_write_to_file(conn
, fsp
->fsp_name
, &sbuf
)) {
1079 perms
= FILE_GENERIC_ALL
;
1081 perms
= FILE_GENERIC_READ
|FILE_EXECUTE
;
1086 DEBUG(5,("call_nt_transact_create: open name = %s\n", fsp
->fsp_name
));
1088 /* Send the required number of replies */
1089 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
, *ppdata
, 0);
1094 /****************************************************************************
1095 Reply to a NT CANCEL request.
1096 conn POINTER CAN BE NULL HERE !
1097 ****************************************************************************/
1099 void reply_ntcancel(struct smb_request
*req
)
1102 * Go through and cancel any pending change notifies.
1105 START_PROFILE(SMBntcancel
);
1106 remove_pending_change_notify_requests_by_mid(req
->mid
);
1107 remove_pending_lock_requests_by_mid(req
->mid
);
1108 srv_cancel_sign_response(req
->mid
);
1110 DEBUG(3,("reply_ntcancel: cancel called on mid = %d.\n", req
->mid
));
1112 END_PROFILE(SMBntcancel
);
1116 /****************************************************************************
1118 ****************************************************************************/
1120 static NTSTATUS
copy_internals(TALLOC_CTX
*ctx
,
1121 connection_struct
*conn
,
1122 struct smb_request
*req
,
1123 const char *oldname_in
,
1124 const char *newname_in
,
1127 SMB_STRUCT_STAT sbuf1
, sbuf2
;
1128 char *oldname
= NULL
;
1129 char *newname
= NULL
;
1130 char *last_component_oldname
= NULL
;
1131 char *last_component_newname
= NULL
;
1132 files_struct
*fsp1
,*fsp2
;
1136 NTSTATUS status
= NT_STATUS_OK
;
1141 if (!CAN_WRITE(conn
)) {
1142 return NT_STATUS_MEDIA_WRITE_PROTECTED
;
1145 status
= unix_convert(ctx
, conn
, oldname_in
, False
, &oldname
,
1146 &last_component_oldname
, &sbuf1
);
1147 if (!NT_STATUS_IS_OK(status
)) {
1151 status
= check_name(conn
, oldname
);
1152 if (!NT_STATUS_IS_OK(status
)) {
1156 /* Source must already exist. */
1157 if (!VALID_STAT(sbuf1
)) {
1158 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1160 /* Ensure attributes match. */
1161 fattr
= dos_mode(conn
,oldname
,&sbuf1
);
1162 if ((fattr
& ~attrs
) & (aHIDDEN
| aSYSTEM
)) {
1163 return NT_STATUS_NO_SUCH_FILE
;
1166 status
= unix_convert(ctx
, conn
, newname_in
, False
, &newname
,
1167 &last_component_newname
, &sbuf2
);
1168 if (!NT_STATUS_IS_OK(status
)) {
1172 status
= check_name(conn
, newname
);
1173 if (!NT_STATUS_IS_OK(status
)) {
1177 /* Disallow if newname already exists. */
1178 if (VALID_STAT(sbuf2
)) {
1179 return NT_STATUS_OBJECT_NAME_COLLISION
;
1182 /* No links from a directory. */
1183 if (S_ISDIR(sbuf1
.st_mode
)) {
1184 return NT_STATUS_FILE_IS_A_DIRECTORY
;
1187 /* Ensure this is within the share. */
1188 status
= check_reduced_name(conn
, oldname
);
1189 if (!NT_STATUS_IS_OK(status
)) {
1193 DEBUG(10,("copy_internals: doing file copy %s to %s\n",
1196 status
= open_file_ntcreate(conn
, req
, oldname
, &sbuf1
,
1197 FILE_READ_DATA
, /* Read-only. */
1198 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
1200 0, /* No create options. */
1201 FILE_ATTRIBUTE_NORMAL
,
1205 if (!NT_STATUS_IS_OK(status
)) {
1209 status
= open_file_ntcreate(conn
, req
, newname
, &sbuf2
,
1210 FILE_WRITE_DATA
, /* Read-only. */
1211 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
1213 0, /* No create options. */
1218 if (!NT_STATUS_IS_OK(status
)) {
1219 close_file(fsp1
,ERROR_CLOSE
);
1223 if (sbuf1
.st_size
) {
1224 ret
= vfs_transfer_file(fsp1
, fsp2
, sbuf1
.st_size
);
1228 * As we are opening fsp1 read-only we only expect
1229 * an error on close on fsp2 if we are out of space.
1230 * Thus we don't look at the error return from the
1233 close_file(fsp1
,NORMAL_CLOSE
);
1235 /* Ensure the modtime is set correctly on the destination file. */
1236 fsp_set_pending_modtime(fsp2
, get_mtimespec(&sbuf1
));
1238 status
= close_file(fsp2
,NORMAL_CLOSE
);
1240 /* Grrr. We have to do this as open_file_ntcreate adds aARCH when it
1241 creates the file. This isn't the correct thing to do in the copy
1243 file_set_dosmode(conn
, newname
, fattr
, &sbuf2
,
1244 parent_dirname(newname
),false);
1246 if (ret
< (SMB_OFF_T
)sbuf1
.st_size
) {
1247 return NT_STATUS_DISK_FULL
;
1250 if (!NT_STATUS_IS_OK(status
)) {
1251 DEBUG(3,("copy_internals: Error %s copy file %s to %s\n",
1252 nt_errstr(status
), oldname
, newname
));
1257 /****************************************************************************
1258 Reply to a NT rename request.
1259 ****************************************************************************/
1261 void reply_ntrename(struct smb_request
*req
)
1263 connection_struct
*conn
= req
->conn
;
1264 char *oldname
= NULL
;
1265 char *newname
= NULL
;
1268 bool src_has_wcard
= False
;
1269 bool dest_has_wcard
= False
;
1272 TALLOC_CTX
*ctx
= talloc_tos();
1274 START_PROFILE(SMBntrename
);
1277 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1278 END_PROFILE(SMBntrename
);
1282 attrs
= SVAL(req
->inbuf
,smb_vwv0
);
1283 rename_type
= SVAL(req
->inbuf
,smb_vwv1
);
1285 p
= smb_buf(req
->inbuf
) + 1;
1286 p
+= srvstr_get_path_wcard(ctx
, (char *)req
->inbuf
, req
->flags2
, &oldname
, p
,
1287 0, STR_TERMINATE
, &status
,
1289 if (!NT_STATUS_IS_OK(status
)) {
1290 reply_nterror(req
, status
);
1291 END_PROFILE(SMBntrename
);
1295 if( is_ntfs_stream_name(oldname
)) {
1296 /* Can't rename a stream. */
1297 reply_nterror(req
, NT_STATUS_ACCESS_DENIED
);
1298 END_PROFILE(SMBntrename
);
1302 if (ms_has_wild(oldname
)) {
1303 reply_nterror(req
, NT_STATUS_OBJECT_PATH_SYNTAX_BAD
);
1304 END_PROFILE(SMBntrename
);
1309 p
+= srvstr_get_path_wcard(ctx
, (char *)req
->inbuf
, req
->flags2
, &newname
, p
,
1310 0, STR_TERMINATE
, &status
,
1312 if (!NT_STATUS_IS_OK(status
)) {
1313 reply_nterror(req
, status
);
1314 END_PROFILE(SMBntrename
);
1318 status
= resolve_dfspath(ctx
, conn
,
1319 req
->flags2
& FLAGS2_DFS_PATHNAMES
,
1322 if (!NT_STATUS_IS_OK(status
)) {
1323 if (NT_STATUS_EQUAL(status
,NT_STATUS_PATH_NOT_COVERED
)) {
1324 reply_botherror(req
, NT_STATUS_PATH_NOT_COVERED
,
1325 ERRSRV
, ERRbadpath
);
1326 END_PROFILE(SMBntrename
);
1329 reply_nterror(req
, status
);
1330 END_PROFILE(SMBntrename
);
1334 status
= resolve_dfspath(ctx
, conn
,
1335 req
->flags2
& FLAGS2_DFS_PATHNAMES
,
1338 if (!NT_STATUS_IS_OK(status
)) {
1339 if (NT_STATUS_EQUAL(status
,NT_STATUS_PATH_NOT_COVERED
)) {
1340 reply_botherror(req
, NT_STATUS_PATH_NOT_COVERED
,
1341 ERRSRV
, ERRbadpath
);
1342 END_PROFILE(SMBntrename
);
1345 reply_nterror(req
, status
);
1346 END_PROFILE(SMBntrename
);
1350 DEBUG(3,("reply_ntrename : %s -> %s\n",oldname
,newname
));
1352 switch(rename_type
) {
1353 case RENAME_FLAG_RENAME
:
1354 status
= rename_internals(ctx
, conn
, req
, oldname
,
1355 newname
, attrs
, False
, src_has_wcard
,
1358 case RENAME_FLAG_HARD_LINK
:
1359 if (src_has_wcard
|| dest_has_wcard
) {
1361 status
= NT_STATUS_OBJECT_PATH_SYNTAX_BAD
;
1363 status
= hardlink_internals(ctx
,
1369 case RENAME_FLAG_COPY
:
1370 if (src_has_wcard
|| dest_has_wcard
) {
1372 status
= NT_STATUS_OBJECT_PATH_SYNTAX_BAD
;
1374 status
= copy_internals(ctx
, conn
, req
, oldname
,
1378 case RENAME_FLAG_MOVE_CLUSTER_INFORMATION
:
1379 status
= NT_STATUS_INVALID_PARAMETER
;
1382 status
= NT_STATUS_ACCESS_DENIED
; /* Default error. */
1386 if (!NT_STATUS_IS_OK(status
)) {
1387 if (open_was_deferred(req
->mid
)) {
1388 /* We have re-scheduled this call. */
1389 END_PROFILE(SMBntrename
);
1393 reply_nterror(req
, status
);
1394 END_PROFILE(SMBntrename
);
1398 reply_outbuf(req
, 0, 0);
1400 END_PROFILE(SMBntrename
);
1404 /****************************************************************************
1405 Reply to a notify change - queue the request and
1406 don't allow a directory to be opened.
1407 ****************************************************************************/
1409 static void call_nt_transact_notify_change(connection_struct
*conn
,
1410 struct smb_request
*req
,
1414 uint32 parameter_count
,
1415 char **ppdata
, uint32 data_count
,
1416 uint32 max_data_count
,
1417 uint32 max_param_count
)
1419 uint16
*setup
= *ppsetup
;
1425 if(setup_count
< 6) {
1426 reply_doserror(req
, ERRDOS
, ERRbadfunc
);
1430 fsp
= file_fsp(SVAL(setup
,4));
1431 filter
= IVAL(setup
, 0);
1432 recursive
= (SVAL(setup
, 6) != 0) ? True
: False
;
1434 DEBUG(3,("call_nt_transact_notify_change\n"));
1437 reply_doserror(req
, ERRDOS
, ERRbadfid
);
1442 char *filter_string
;
1444 if (!(filter_string
= notify_filter_string(NULL
, filter
))) {
1445 reply_nterror(req
,NT_STATUS_NO_MEMORY
);
1449 DEBUG(3,("call_nt_transact_notify_change: notify change "
1450 "called on %s, filter = %s, recursive = %d\n",
1451 fsp
->fsp_name
, filter_string
, recursive
));
1453 TALLOC_FREE(filter_string
);
1456 if((!fsp
->is_directory
) || (conn
!= fsp
->conn
)) {
1457 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1461 if (fsp
->notify
== NULL
) {
1463 status
= change_notify_create(fsp
, filter
, recursive
);
1465 if (!NT_STATUS_IS_OK(status
)) {
1466 DEBUG(10, ("change_notify_create returned %s\n",
1467 nt_errstr(status
)));
1468 reply_nterror(req
, status
);
1473 if (fsp
->notify
->num_changes
!= 0) {
1476 * We've got changes pending, respond immediately
1480 * TODO: write a torture test to check the filtering behaviour
1484 change_notify_reply(fsp
->conn
, req
->inbuf
, max_param_count
, fsp
->notify
);
1487 * change_notify_reply() above has independently sent its
1494 * No changes pending, queue the request
1497 status
= change_notify_add_request(req
,
1501 if (!NT_STATUS_IS_OK(status
)) {
1502 reply_nterror(req
, status
);
1507 /****************************************************************************
1508 Reply to an NT transact rename command.
1509 ****************************************************************************/
1511 static void call_nt_transact_rename(connection_struct
*conn
,
1512 struct smb_request
*req
,
1513 uint16
**ppsetup
, uint32 setup_count
,
1514 char **ppparams
, uint32 parameter_count
,
1515 char **ppdata
, uint32 data_count
,
1516 uint32 max_data_count
)
1518 char *params
= *ppparams
;
1519 char *new_name
= NULL
;
1520 files_struct
*fsp
= NULL
;
1521 bool replace_if_exists
= False
;
1522 bool dest_has_wcard
= False
;
1524 TALLOC_CTX
*ctx
= talloc_tos();
1526 if(parameter_count
< 5) {
1527 reply_doserror(req
, ERRDOS
, ERRbadfunc
);
1531 fsp
= file_fsp(SVAL(params
, 0));
1532 replace_if_exists
= (SVAL(params
,2) & RENAME_REPLACE_IF_EXISTS
) ? True
: False
;
1533 if (!check_fsp(conn
, req
, fsp
, ¤t_user
)) {
1536 srvstr_get_path_wcard(ctx
, params
, req
->flags2
, &new_name
, params
+4,
1537 parameter_count
- 4,
1538 STR_TERMINATE
, &status
, &dest_has_wcard
);
1539 if (!NT_STATUS_IS_OK(status
)) {
1540 reply_nterror(req
, status
);
1544 status
= rename_internals(ctx
,
1554 if (!NT_STATUS_IS_OK(status
)) {
1555 if (open_was_deferred(req
->mid
)) {
1556 /* We have re-scheduled this call. */
1559 reply_nterror(req
, status
);
1564 * Rename was successful.
1566 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
1568 DEBUG(3,("nt transact rename from = %s, to = %s succeeded.\n",
1569 fsp
->fsp_name
, new_name
));
1574 /******************************************************************************
1575 Fake up a completely empty SD.
1576 *******************************************************************************/
1578 static NTSTATUS
get_null_nt_acl(TALLOC_CTX
*mem_ctx
, SEC_DESC
**ppsd
)
1582 *ppsd
= make_standard_sec_desc( mem_ctx
, &global_sid_World
, &global_sid_World
, NULL
, &sd_size
);
1584 DEBUG(0,("get_null_nt_acl: Unable to malloc space for security descriptor.\n"));
1585 return NT_STATUS_NO_MEMORY
;
1588 return NT_STATUS_OK
;
1591 /****************************************************************************
1592 Reply to query a security descriptor.
1593 ****************************************************************************/
1595 static void call_nt_transact_query_security_desc(connection_struct
*conn
,
1596 struct smb_request
*req
,
1600 uint32 parameter_count
,
1603 uint32 max_data_count
)
1605 char *params
= *ppparams
;
1606 char *data
= *ppdata
;
1607 SEC_DESC
*psd
= NULL
;
1609 uint32 security_info_wanted
;
1610 files_struct
*fsp
= NULL
;
1614 if(parameter_count
< 8) {
1615 reply_doserror(req
, ERRDOS
, ERRbadfunc
);
1619 fsp
= file_fsp(SVAL(params
,0));
1621 reply_doserror(req
, ERRDOS
, ERRbadfid
);
1625 security_info_wanted
= IVAL(params
,4);
1627 DEBUG(3,("call_nt_transact_query_security_desc: file = %s, info_wanted = 0x%x\n", fsp
->fsp_name
,
1628 (unsigned int)security_info_wanted
));
1630 params
= nttrans_realloc(ppparams
, 4);
1631 if(params
== NULL
) {
1632 reply_doserror(req
, ERRDOS
, ERRnomem
);
1637 * Get the permissions to return.
1640 if (!lp_nt_acl_support(SNUM(conn
))) {
1641 status
= get_null_nt_acl(talloc_tos(), &psd
);
1643 if (fsp
->fh
->fd
!= -1) {
1644 status
= SMB_VFS_FGET_NT_ACL(
1645 fsp
, security_info_wanted
, &psd
);
1648 status
= SMB_VFS_GET_NT_ACL(
1649 conn
, fsp
->fsp_name
, security_info_wanted
, &psd
);
1653 if (!NT_STATUS_IS_OK(status
)) {
1654 reply_nterror(req
, status
);
1658 sd_size
= ndr_size_security_descriptor(psd
, 0);
1660 DEBUG(3,("call_nt_transact_query_security_desc: sd_size = %lu.\n",(unsigned long)sd_size
));
1662 SIVAL(params
,0,(uint32
)sd_size
);
1664 if (max_data_count
< sd_size
) {
1665 send_nt_replies(conn
, req
, NT_STATUS_BUFFER_TOO_SMALL
,
1666 params
, 4, *ppdata
, 0);
1671 * Allocate the data we will point this at.
1674 data
= nttrans_realloc(ppdata
, sd_size
);
1676 reply_doserror(req
, ERRDOS
, ERRnomem
);
1680 status
= marshall_sec_desc(talloc_tos(), psd
,
1681 &blob
.data
, &blob
.length
);
1683 if (!NT_STATUS_IS_OK(status
)) {
1684 reply_nterror(req
, status
);
1688 SMB_ASSERT(sd_size
== blob
.length
);
1689 memcpy(data
, blob
.data
, sd_size
);
1691 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, 4, data
, (int)sd_size
);
1696 /****************************************************************************
1697 Reply to set a security descriptor. Map to UNIX perms or POSIX ACLs.
1698 ****************************************************************************/
1700 static void call_nt_transact_set_security_desc(connection_struct
*conn
,
1701 struct smb_request
*req
,
1705 uint32 parameter_count
,
1708 uint32 max_data_count
)
1710 char *params
= *ppparams
;
1711 char *data
= *ppdata
;
1712 files_struct
*fsp
= NULL
;
1713 uint32 security_info_sent
= 0;
1716 if(parameter_count
< 8) {
1717 reply_doserror(req
, ERRDOS
, ERRbadfunc
);
1721 if((fsp
= file_fsp(SVAL(params
,0))) == NULL
) {
1722 reply_doserror(req
, ERRDOS
, ERRbadfid
);
1726 if(!lp_nt_acl_support(SNUM(conn
))) {
1730 security_info_sent
= IVAL(params
,4);
1732 DEBUG(3,("call_nt_transact_set_security_desc: file = %s, sent 0x%x\n", fsp
->fsp_name
,
1733 (unsigned int)security_info_sent
));
1735 if (data_count
== 0) {
1736 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
1740 status
= set_sd(fsp
, (uint8
*)data
, data_count
, security_info_sent
);
1742 if (!NT_STATUS_IS_OK(status
)) {
1743 reply_nterror(req
, status
);
1748 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
1752 /****************************************************************************
1754 ****************************************************************************/
1756 static void call_nt_transact_ioctl(connection_struct
*conn
,
1757 struct smb_request
*req
,
1758 uint16
**ppsetup
, uint32 setup_count
,
1759 char **ppparams
, uint32 parameter_count
,
1760 char **ppdata
, uint32 data_count
,
1761 uint32 max_data_count
)
1768 static bool logged_message
;
1769 char *pdata
= *ppdata
;
1771 if (setup_count
!= 8) {
1772 DEBUG(3,("call_nt_transact_ioctl: invalid setup count %d\n", setup_count
));
1773 reply_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
1777 function
= IVAL(*ppsetup
, 0);
1778 fidnum
= SVAL(*ppsetup
, 4);
1779 isFSctl
= CVAL(*ppsetup
, 6);
1780 compfilter
= CVAL(*ppsetup
, 7);
1782 DEBUG(10,("call_nt_transact_ioctl: function[0x%08X] FID[0x%04X] isFSctl[0x%02X] compfilter[0x%02X]\n",
1783 function
, fidnum
, isFSctl
, compfilter
));
1785 fsp
=file_fsp(fidnum
);
1786 /* this check is done in each implemented function case for now
1787 because I don't want to break anything... --metze
1788 FSP_BELONGS_CONN(fsp,conn);*/
1791 case FSCTL_SET_SPARSE
:
1792 /* pretend this succeeded - tho strictly we should
1793 mark the file sparse (if the local fs supports it)
1794 so we can know if we need to pre-allocate or not */
1796 DEBUG(10,("FSCTL_SET_SPARSE: called on FID[0x%04X](but not implemented)\n", fidnum
));
1797 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
1800 case FSCTL_CREATE_OR_GET_OBJECT_ID
:
1802 unsigned char objid
[16];
1804 /* This should return the object-id on this file.
1805 * I think I'll make this be the inode+dev. JRA.
1808 DEBUG(10,("FSCTL_CREATE_OR_GET_OBJECT_ID: called on FID[0x%04X]\n",fidnum
));
1810 if (!fsp_belongs_conn(conn
, req
, fsp
, ¤t_user
)) {
1815 pdata
= nttrans_realloc(ppdata
, data_count
);
1816 if (pdata
== NULL
) {
1817 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1820 push_file_id_16(pdata
, &fsp
->file_id
);
1821 memcpy(pdata
+16,create_volume_objectid(conn
,objid
),16);
1822 push_file_id_16(pdata
+32, &fsp
->file_id
);
1823 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0,
1828 case FSCTL_GET_REPARSE_POINT
:
1829 /* pretend this fail - my winXP does it like this
1833 DEBUG(10,("FSCTL_GET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum
));
1834 reply_nterror(req
, NT_STATUS_NOT_A_REPARSE_POINT
);
1837 case FSCTL_SET_REPARSE_POINT
:
1838 /* pretend this fail - I'm assuming this because of the FSCTL_GET_REPARSE_POINT case.
1842 DEBUG(10,("FSCTL_SET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum
));
1843 reply_nterror(req
, NT_STATUS_NOT_A_REPARSE_POINT
);
1846 case FSCTL_GET_SHADOW_COPY_DATA
: /* don't know if this name is right...*/
1849 * This is called to retrieve the number of Shadow Copies (a.k.a. snapshots)
1850 * and return their volume names. If max_data_count is 16, then it is just
1851 * asking for the number of volumes and length of the combined names.
1853 * pdata is the data allocated by our caller, but that uses
1854 * total_data_count (which is 0 in our case) rather than max_data_count.
1855 * Allocate the correct amount and return the pointer to let
1856 * it be deallocated when we return.
1858 SHADOW_COPY_DATA
*shadow_data
= NULL
;
1859 TALLOC_CTX
*shadow_mem_ctx
= NULL
;
1860 bool labels
= False
;
1861 uint32 labels_data_count
= 0;
1865 if (!fsp_belongs_conn(conn
, req
, fsp
, ¤t_user
)) {
1869 if (max_data_count
< 16) {
1870 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) < 16 is invalid!\n",
1872 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
1876 if (max_data_count
> 16) {
1880 shadow_mem_ctx
= talloc_init("SHADOW_COPY_DATA");
1881 if (shadow_mem_ctx
== NULL
) {
1882 DEBUG(0,("talloc_init(SHADOW_COPY_DATA) failed!\n"));
1883 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1887 shadow_data
= TALLOC_ZERO_P(shadow_mem_ctx
,SHADOW_COPY_DATA
);
1888 if (shadow_data
== NULL
) {
1889 DEBUG(0,("TALLOC_ZERO() failed!\n"));
1890 talloc_destroy(shadow_mem_ctx
);
1891 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1895 shadow_data
->mem_ctx
= shadow_mem_ctx
;
1898 * Call the VFS routine to actually do the work.
1900 if (SMB_VFS_GET_SHADOW_COPY_DATA(fsp
, shadow_data
, labels
)!=0) {
1901 talloc_destroy(shadow_data
->mem_ctx
);
1902 if (errno
== ENOSYS
) {
1903 DEBUG(5,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, not supported.\n",
1904 conn
->connectpath
));
1905 reply_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
1908 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, failed.\n",
1909 conn
->connectpath
));
1910 reply_nterror(req
, NT_STATUS_UNSUCCESSFUL
);
1915 labels_data_count
= (shadow_data
->num_volumes
*2*sizeof(SHADOW_COPY_LABEL
))+2;
1920 data_count
= 12+labels_data_count
+4;
1923 if (max_data_count
<data_count
) {
1924 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) too small (%u) bytes needed!\n",
1925 max_data_count
,data_count
));
1926 talloc_destroy(shadow_data
->mem_ctx
);
1927 reply_nterror(req
, NT_STATUS_BUFFER_TOO_SMALL
);
1931 pdata
= nttrans_realloc(ppdata
, data_count
);
1932 if (pdata
== NULL
) {
1933 talloc_destroy(shadow_data
->mem_ctx
);
1934 reply_nterror(req
, NT_STATUS_NO_MEMORY
);
1940 /* num_volumes 4 bytes */
1941 SIVAL(pdata
,0,shadow_data
->num_volumes
);
1944 /* num_labels 4 bytes */
1945 SIVAL(pdata
,4,shadow_data
->num_volumes
);
1948 /* needed_data_count 4 bytes */
1949 SIVAL(pdata
,8,labels_data_count
);
1953 DEBUG(10,("FSCTL_GET_SHADOW_COPY_DATA: %u volumes for path[%s].\n",
1954 shadow_data
->num_volumes
,fsp
->fsp_name
));
1955 if (labels
&& shadow_data
->labels
) {
1956 for (i
=0;i
<shadow_data
->num_volumes
;i
++) {
1957 srvstr_push(pdata
, req
->flags2
,
1958 cur_pdata
, shadow_data
->labels
[i
],
1959 2*sizeof(SHADOW_COPY_LABEL
),
1960 STR_UNICODE
|STR_TERMINATE
);
1961 cur_pdata
+=2*sizeof(SHADOW_COPY_LABEL
);
1962 DEBUGADD(10,("Label[%u]: '%s'\n",i
,shadow_data
->labels
[i
]));
1966 talloc_destroy(shadow_data
->mem_ctx
);
1968 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0,
1974 case FSCTL_FIND_FILES_BY_SID
: /* I hope this name is right */
1976 /* pretend this succeeded -
1978 * we have to send back a list with all files owned by this SID
1980 * but I have to check that --metze
1984 size_t sid_len
= MIN(data_count
-4,SID_MAX_SIZE
);
1986 DEBUG(10,("FSCTL_FIND_FILES_BY_SID: called on FID[0x%04X]\n",fidnum
));
1988 if (!fsp_belongs_conn(conn
, req
, fsp
, ¤t_user
)) {
1992 /* unknown 4 bytes: this is not the length of the sid :-( */
1993 /*unknown = IVAL(pdata,0);*/
1995 sid_parse(pdata
+4,sid_len
,&sid
);
1996 DEBUGADD(10, ("for SID: %s\n", sid_string_dbg(&sid
)));
1998 if (!sid_to_uid(&sid
, &uid
)) {
1999 DEBUG(0,("sid_to_uid: failed, sid[%s] sid_len[%lu]\n",
2000 sid_string_dbg(&sid
),
2001 (unsigned long)sid_len
));
2005 /* we can take a look at the find source :-)
2007 * find ./ -uid $uid -name '*' is what we need here
2010 * and send 4bytes len and then NULL terminated unicode strings
2013 * but I don't know how to deal with the paged results
2014 * (maybe we can hang the result anywhere in the fsp struct)
2016 * we don't send all files at once
2017 * and at the next we should *not* start from the beginning,
2018 * so we have to cache the result
2023 /* this works for now... */
2024 send_nt_replies(conn
, req
, NT_STATUS_OK
, NULL
, 0, NULL
, 0);
2028 if (!logged_message
) {
2029 logged_message
= True
; /* Only print this once... */
2030 DEBUG(0,("call_nt_transact_ioctl(0x%x): Currently not implemented.\n",
2035 reply_nterror(req
, NT_STATUS_NOT_SUPPORTED
);
2039 #ifdef HAVE_SYS_QUOTAS
2040 /****************************************************************************
2041 Reply to get user quota
2042 ****************************************************************************/
2044 static void call_nt_transact_get_user_quota(connection_struct
*conn
,
2045 struct smb_request
*req
,
2049 uint32 parameter_count
,
2052 uint32 max_data_count
)
2054 NTSTATUS nt_status
= NT_STATUS_OK
;
2055 char *params
= *ppparams
;
2056 char *pdata
= *ppdata
;
2058 int data_len
=0,param_len
=0;
2061 files_struct
*fsp
= NULL
;
2065 bool start_enum
= True
;
2066 SMB_NTQUOTA_STRUCT qt
;
2067 SMB_NTQUOTA_LIST
*tmp_list
;
2068 SMB_NTQUOTA_HANDLE
*qt_handle
= NULL
;
2073 if (current_user
.ut
.uid
!= 0) {
2074 DEBUG(1,("get_user_quota: access_denied service [%s] user [%s]\n",
2075 lp_servicename(SNUM(conn
)),conn
->user
));
2076 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
2081 * Ensure minimum number of parameters sent.
2084 if (parameter_count
< 4) {
2085 DEBUG(0,("TRANSACT_GET_USER_QUOTA: requires %d >= 4 bytes parameters\n",parameter_count
));
2086 reply_doserror(req
, ERRDOS
, ERRinvalidparam
);
2090 /* maybe we can check the quota_fnum */
2091 fsp
= file_fsp(SVAL(params
,0));
2092 if (!CHECK_NTQUOTA_HANDLE_OK(fsp
,conn
)) {
2093 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2094 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
2098 /* the NULL pointer checking for fsp->fake_file_handle->pd
2099 * is done by CHECK_NTQUOTA_HANDLE_OK()
2101 qt_handle
= (SMB_NTQUOTA_HANDLE
*)fsp
->fake_file_handle
->pd
;
2103 level
= SVAL(params
,2);
2105 /* unknown 12 bytes leading in params */
2108 case TRANSACT_GET_USER_QUOTA_LIST_CONTINUE
:
2109 /* seems that we should continue with the enum here --metze */
2111 if (qt_handle
->quota_list
!=NULL
&&
2112 qt_handle
->tmp_list
==NULL
) {
2115 free_ntquota_list(&(qt_handle
->quota_list
));
2117 /* Realloc the size of parameters and data we will return */
2119 params
= nttrans_realloc(ppparams
, param_len
);
2120 if(params
== NULL
) {
2121 reply_doserror(req
, ERRDOS
, ERRnomem
);
2126 SIVAL(params
,0,data_len
);
2133 case TRANSACT_GET_USER_QUOTA_LIST_START
:
2135 if (qt_handle
->quota_list
==NULL
&&
2136 qt_handle
->tmp_list
==NULL
) {
2140 if (start_enum
&& vfs_get_user_ntquota_list(fsp
,&(qt_handle
->quota_list
))!=0) {
2141 reply_doserror(req
, ERRSRV
, ERRerror
);
2145 /* Realloc the size of parameters and data we will return */
2147 params
= nttrans_realloc(ppparams
, param_len
);
2148 if(params
== NULL
) {
2149 reply_doserror(req
, ERRDOS
, ERRnomem
);
2153 /* we should not trust the value in max_data_count*/
2154 max_data_count
= MIN(max_data_count
,2048);
2156 pdata
= nttrans_realloc(ppdata
, max_data_count
);/* should be max data count from client*/
2158 reply_doserror(req
, ERRDOS
, ERRnomem
);
2164 /* set params Size of returned Quota Data 4 bytes*/
2165 /* but set it later when we know it */
2167 /* for each entry push the data */
2170 qt_handle
->tmp_list
= qt_handle
->quota_list
;
2173 tmp_list
= qt_handle
->tmp_list
;
2175 for (;((tmp_list
!=NULL
)&&((qt_len
+40+SID_MAX_SIZE
)<max_data_count
));
2176 tmp_list
=tmp_list
->next
,entry
+=entry_len
,qt_len
+=entry_len
) {
2178 sid_len
= ndr_size_dom_sid(
2179 &tmp_list
->quotas
->sid
, 0);
2180 entry_len
= 40 + sid_len
;
2182 /* nextoffset entry 4 bytes */
2183 SIVAL(entry
,0,entry_len
);
2185 /* then the len of the SID 4 bytes */
2186 SIVAL(entry
,4,sid_len
);
2188 /* unknown data 8 bytes SMB_BIG_UINT */
2189 SBIG_UINT(entry
,8,(SMB_BIG_UINT
)0); /* this is not 0 in windows...-metze*/
2191 /* the used disk space 8 bytes SMB_BIG_UINT */
2192 SBIG_UINT(entry
,16,tmp_list
->quotas
->usedspace
);
2194 /* the soft quotas 8 bytes SMB_BIG_UINT */
2195 SBIG_UINT(entry
,24,tmp_list
->quotas
->softlim
);
2197 /* the hard quotas 8 bytes SMB_BIG_UINT */
2198 SBIG_UINT(entry
,32,tmp_list
->quotas
->hardlim
);
2200 /* and now the SID */
2201 sid_linearize(entry
+40, sid_len
, &tmp_list
->quotas
->sid
);
2204 qt_handle
->tmp_list
= tmp_list
;
2206 /* overwrite the offset of the last entry */
2207 SIVAL(entry
-entry_len
,0,0);
2209 data_len
= 4+qt_len
;
2210 /* overwrite the params quota_data_len */
2211 SIVAL(params
,0,data_len
);
2215 case TRANSACT_GET_USER_QUOTA_FOR_SID
:
2217 /* unknown 4 bytes IVAL(pdata,0) */
2219 if (data_count
< 8) {
2220 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %d bytes data\n",data_count
,8));
2221 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2225 sid_len
= IVAL(pdata
,4);
2226 /* Ensure this is less than 1mb. */
2227 if (sid_len
> (1024*1024)) {
2228 reply_doserror(req
, ERRDOS
, ERRnomem
);
2232 if (data_count
< 8+sid_len
) {
2233 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %lu bytes data\n",data_count
,(unsigned long)(8+sid_len
)));
2234 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2238 data_len
= 4+40+sid_len
;
2240 if (max_data_count
< data_len
) {
2241 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: max_data_count(%d) < data_len(%d)\n",
2242 max_data_count
, data_len
));
2244 SIVAL(params
,0,data_len
);
2246 nt_status
= NT_STATUS_BUFFER_TOO_SMALL
;
2250 sid_parse(pdata
+8,sid_len
,&sid
);
2252 if (vfs_get_ntquota(fsp
, SMB_USER_QUOTA_TYPE
, &sid
, &qt
)!=0) {
2255 * we have to return zero's in all fields
2256 * instead of returning an error here
2261 /* Realloc the size of parameters and data we will return */
2263 params
= nttrans_realloc(ppparams
, param_len
);
2264 if(params
== NULL
) {
2265 reply_doserror(req
, ERRDOS
, ERRnomem
);
2269 pdata
= nttrans_realloc(ppdata
, data_len
);
2271 reply_doserror(req
, ERRDOS
, ERRnomem
);
2277 /* set params Size of returned Quota Data 4 bytes*/
2278 SIVAL(params
,0,data_len
);
2280 /* nextoffset entry 4 bytes */
2283 /* then the len of the SID 4 bytes */
2284 SIVAL(entry
,4,sid_len
);
2286 /* unknown data 8 bytes SMB_BIG_UINT */
2287 SBIG_UINT(entry
,8,(SMB_BIG_UINT
)0); /* this is not 0 in windows...-mezte*/
2289 /* the used disk space 8 bytes SMB_BIG_UINT */
2290 SBIG_UINT(entry
,16,qt
.usedspace
);
2292 /* the soft quotas 8 bytes SMB_BIG_UINT */
2293 SBIG_UINT(entry
,24,qt
.softlim
);
2295 /* the hard quotas 8 bytes SMB_BIG_UINT */
2296 SBIG_UINT(entry
,32,qt
.hardlim
);
2298 /* and now the SID */
2299 sid_linearize(entry
+40, sid_len
, &sid
);
2304 DEBUG(0,("do_nt_transact_get_user_quota: fnum %d unknown level 0x%04hX\n",fsp
->fnum
,level
));
2305 reply_doserror(req
, ERRSRV
, ERRerror
);
2310 send_nt_replies(conn
, req
, nt_status
, params
, param_len
,
2314 /****************************************************************************
2315 Reply to set user quota
2316 ****************************************************************************/
2318 static void call_nt_transact_set_user_quota(connection_struct
*conn
,
2319 struct smb_request
*req
,
2323 uint32 parameter_count
,
2326 uint32 max_data_count
)
2328 char *params
= *ppparams
;
2329 char *pdata
= *ppdata
;
2330 int data_len
=0,param_len
=0;
2331 SMB_NTQUOTA_STRUCT qt
;
2334 files_struct
*fsp
= NULL
;
2339 if (current_user
.ut
.uid
!= 0) {
2340 DEBUG(1,("set_user_quota: access_denied service [%s] user [%s]\n",
2341 lp_servicename(SNUM(conn
)),conn
->user
));
2342 reply_doserror(req
, ERRDOS
, ERRnoaccess
);
2347 * Ensure minimum number of parameters sent.
2350 if (parameter_count
< 2) {
2351 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= 2 bytes parameters\n",parameter_count
));
2352 reply_doserror(req
, ERRDOS
, ERRinvalidparam
);
2356 /* maybe we can check the quota_fnum */
2357 fsp
= file_fsp(SVAL(params
,0));
2358 if (!CHECK_NTQUOTA_HANDLE_OK(fsp
,conn
)) {
2359 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2360 reply_nterror(req
, NT_STATUS_INVALID_HANDLE
);
2364 if (data_count
< 40) {
2365 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %d bytes data\n",data_count
,40));
2366 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2370 /* offset to next quota record.
2371 * 4 bytes IVAL(pdata,0)
2376 sid_len
= IVAL(pdata
,4);
2378 if (data_count
< 40+sid_len
) {
2379 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %lu bytes data\n",data_count
,(unsigned long)40+sid_len
));
2380 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2384 /* unknown 8 bytes in pdata
2385 * maybe its the change time in NTTIME
2388 /* the used space 8 bytes (SMB_BIG_UINT)*/
2389 qt
.usedspace
= (SMB_BIG_UINT
)IVAL(pdata
,16);
2390 #ifdef LARGE_SMB_OFF_T
2391 qt
.usedspace
|= (((SMB_BIG_UINT
)IVAL(pdata
,20)) << 32);
2392 #else /* LARGE_SMB_OFF_T */
2393 if ((IVAL(pdata
,20) != 0)&&
2394 ((qt
.usedspace
!= 0xFFFFFFFF)||
2395 (IVAL(pdata
,20)!=0xFFFFFFFF))) {
2396 /* more than 32 bits? */
2397 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2400 #endif /* LARGE_SMB_OFF_T */
2402 /* the soft quotas 8 bytes (SMB_BIG_UINT)*/
2403 qt
.softlim
= (SMB_BIG_UINT
)IVAL(pdata
,24);
2404 #ifdef LARGE_SMB_OFF_T
2405 qt
.softlim
|= (((SMB_BIG_UINT
)IVAL(pdata
,28)) << 32);
2406 #else /* LARGE_SMB_OFF_T */
2407 if ((IVAL(pdata
,28) != 0)&&
2408 ((qt
.softlim
!= 0xFFFFFFFF)||
2409 (IVAL(pdata
,28)!=0xFFFFFFFF))) {
2410 /* more than 32 bits? */
2411 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2414 #endif /* LARGE_SMB_OFF_T */
2416 /* the hard quotas 8 bytes (SMB_BIG_UINT)*/
2417 qt
.hardlim
= (SMB_BIG_UINT
)IVAL(pdata
,32);
2418 #ifdef LARGE_SMB_OFF_T
2419 qt
.hardlim
|= (((SMB_BIG_UINT
)IVAL(pdata
,36)) << 32);
2420 #else /* LARGE_SMB_OFF_T */
2421 if ((IVAL(pdata
,36) != 0)&&
2422 ((qt
.hardlim
!= 0xFFFFFFFF)||
2423 (IVAL(pdata
,36)!=0xFFFFFFFF))) {
2424 /* more than 32 bits? */
2425 reply_doserror(req
, ERRDOS
, ERRunknownlevel
);
2428 #endif /* LARGE_SMB_OFF_T */
2430 sid_parse(pdata
+40,sid_len
,&sid
);
2431 DEBUGADD(8,("SID: %s\n", sid_string_dbg(&sid
)));
2433 /* 44 unknown bytes left... */
2435 if (vfs_set_ntquota(fsp
, SMB_USER_QUOTA_TYPE
, &sid
, &qt
)!=0) {
2436 reply_doserror(req
, ERRSRV
, ERRerror
);
2440 send_nt_replies(conn
, req
, NT_STATUS_OK
, params
, param_len
,
2443 #endif /* HAVE_SYS_QUOTAS */
2445 static void handle_nttrans(connection_struct
*conn
,
2446 struct trans_state
*state
,
2447 struct smb_request
*req
)
2449 if (Protocol
>= PROTOCOL_NT1
) {
2450 req
->flags2
|= 0x40; /* IS_LONG_NAME */
2451 SSVAL(req
->inbuf
,smb_flg2
,req
->flags2
);
2454 /* Now we must call the relevant NT_TRANS function */
2455 switch(state
->call
) {
2456 case NT_TRANSACT_CREATE
:
2458 START_PROFILE(NT_transact_create
);
2459 call_nt_transact_create(
2461 &state
->setup
, state
->setup_count
,
2462 &state
->param
, state
->total_param
,
2463 &state
->data
, state
->total_data
,
2464 state
->max_data_return
);
2465 END_PROFILE(NT_transact_create
);
2469 case NT_TRANSACT_IOCTL
:
2471 START_PROFILE(NT_transact_ioctl
);
2472 call_nt_transact_ioctl(
2474 &state
->setup
, state
->setup_count
,
2475 &state
->param
, state
->total_param
,
2476 &state
->data
, state
->total_data
,
2477 state
->max_data_return
);
2478 END_PROFILE(NT_transact_ioctl
);
2482 case NT_TRANSACT_SET_SECURITY_DESC
:
2484 START_PROFILE(NT_transact_set_security_desc
);
2485 call_nt_transact_set_security_desc(
2487 &state
->setup
, state
->setup_count
,
2488 &state
->param
, state
->total_param
,
2489 &state
->data
, state
->total_data
,
2490 state
->max_data_return
);
2491 END_PROFILE(NT_transact_set_security_desc
);
2495 case NT_TRANSACT_NOTIFY_CHANGE
:
2497 START_PROFILE(NT_transact_notify_change
);
2498 call_nt_transact_notify_change(
2500 &state
->setup
, state
->setup_count
,
2501 &state
->param
, state
->total_param
,
2502 &state
->data
, state
->total_data
,
2503 state
->max_data_return
,
2504 state
->max_param_return
);
2505 END_PROFILE(NT_transact_notify_change
);
2509 case NT_TRANSACT_RENAME
:
2511 START_PROFILE(NT_transact_rename
);
2512 call_nt_transact_rename(
2514 &state
->setup
, state
->setup_count
,
2515 &state
->param
, state
->total_param
,
2516 &state
->data
, state
->total_data
,
2517 state
->max_data_return
);
2518 END_PROFILE(NT_transact_rename
);
2522 case NT_TRANSACT_QUERY_SECURITY_DESC
:
2524 START_PROFILE(NT_transact_query_security_desc
);
2525 call_nt_transact_query_security_desc(
2527 &state
->setup
, state
->setup_count
,
2528 &state
->param
, state
->total_param
,
2529 &state
->data
, state
->total_data
,
2530 state
->max_data_return
);
2531 END_PROFILE(NT_transact_query_security_desc
);
2535 #ifdef HAVE_SYS_QUOTAS
2536 case NT_TRANSACT_GET_USER_QUOTA
:
2538 START_PROFILE(NT_transact_get_user_quota
);
2539 call_nt_transact_get_user_quota(
2541 &state
->setup
, state
->setup_count
,
2542 &state
->param
, state
->total_param
,
2543 &state
->data
, state
->total_data
,
2544 state
->max_data_return
);
2545 END_PROFILE(NT_transact_get_user_quota
);
2549 case NT_TRANSACT_SET_USER_QUOTA
:
2551 START_PROFILE(NT_transact_set_user_quota
);
2552 call_nt_transact_set_user_quota(
2554 &state
->setup
, state
->setup_count
,
2555 &state
->param
, state
->total_param
,
2556 &state
->data
, state
->total_data
,
2557 state
->max_data_return
);
2558 END_PROFILE(NT_transact_set_user_quota
);
2561 #endif /* HAVE_SYS_QUOTAS */
2564 /* Error in request */
2565 DEBUG(0,("handle_nttrans: Unknown request %d in "
2566 "nttrans call\n", state
->call
));
2567 reply_doserror(req
, ERRSRV
, ERRerror
);
2573 /****************************************************************************
2574 Reply to a SMBNTtrans.
2575 ****************************************************************************/
2577 void reply_nttrans(struct smb_request
*req
)
2579 connection_struct
*conn
= req
->conn
;
2584 uint16 function_code
;
2586 struct trans_state
*state
;
2589 START_PROFILE(SMBnttrans
);
2591 if (req
->wct
< 19) {
2592 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2593 END_PROFILE(SMBnttrans
);
2597 size
= smb_len(req
->inbuf
) + 4;
2598 pscnt
= IVAL(req
->inbuf
,smb_nt_ParameterCount
);
2599 psoff
= IVAL(req
->inbuf
,smb_nt_ParameterOffset
);
2600 dscnt
= IVAL(req
->inbuf
,smb_nt_DataCount
);
2601 dsoff
= IVAL(req
->inbuf
,smb_nt_DataOffset
);
2602 function_code
= SVAL(req
->inbuf
, smb_nt_Function
);
2604 if (IS_IPC(conn
) && (function_code
!= NT_TRANSACT_CREATE
)) {
2605 reply_doserror(req
, ERRSRV
, ERRaccess
);
2606 END_PROFILE(SMBnttrans
);
2610 result
= allow_new_trans(conn
->pending_trans
, req
->mid
);
2611 if (!NT_STATUS_IS_OK(result
)) {
2612 DEBUG(2, ("Got invalid nttrans request: %s\n", nt_errstr(result
)));
2613 reply_nterror(req
, result
);
2614 END_PROFILE(SMBnttrans
);
2618 if ((state
= TALLOC_P(conn
->mem_ctx
, struct trans_state
)) == NULL
) {
2619 reply_doserror(req
, ERRSRV
, ERRaccess
);
2620 END_PROFILE(SMBnttrans
);
2624 state
->cmd
= SMBnttrans
;
2626 state
->mid
= req
->mid
;
2627 state
->vuid
= req
->vuid
;
2628 state
->total_data
= IVAL(req
->inbuf
, smb_nt_TotalDataCount
);
2630 state
->total_param
= IVAL(req
->inbuf
, smb_nt_TotalParameterCount
);
2631 state
->param
= NULL
;
2632 state
->max_data_return
= IVAL(req
->inbuf
,smb_nt_MaxDataCount
);
2633 state
->max_param_return
= IVAL(req
->inbuf
,smb_nt_MaxParameterCount
);
2635 /* setup count is in *words* */
2636 state
->setup_count
= 2*CVAL(req
->inbuf
,smb_nt_SetupCount
);
2637 state
->setup
= NULL
;
2638 state
->call
= function_code
;
2641 * All nttrans messages we handle have smb_wct == 19 +
2642 * state->setup_count. Ensure this is so as a sanity check.
2645 if(req
->wct
!= 19 + (state
->setup_count
/2)) {
2646 DEBUG(2,("Invalid smb_wct %d in nttrans call (should be %d)\n",
2647 req
->wct
, 19 + (state
->setup_count
/2)));
2651 /* Don't allow more than 128mb for each value. */
2652 if ((state
->total_data
> (1024*1024*128)) ||
2653 (state
->total_param
> (1024*1024*128))) {
2654 reply_doserror(req
, ERRDOS
, ERRnomem
);
2655 END_PROFILE(SMBnttrans
);
2659 if ((dscnt
> state
->total_data
) || (pscnt
> state
->total_param
))
2662 if (state
->total_data
) {
2663 /* Can't use talloc here, the core routines do realloc on the
2664 * params and data. */
2665 if ((state
->data
= (char *)SMB_MALLOC(state
->total_data
)) == NULL
) {
2666 DEBUG(0,("reply_nttrans: data malloc fail for %u "
2667 "bytes !\n", (unsigned int)state
->total_data
));
2669 reply_doserror(req
, ERRDOS
, ERRnomem
);
2670 END_PROFILE(SMBnttrans
);
2673 if ((dsoff
+dscnt
< dsoff
) || (dsoff
+dscnt
< dscnt
))
2675 if ((smb_base(req
->inbuf
)+dsoff
+dscnt
2676 > (char *)req
->inbuf
+ size
) ||
2677 (smb_base(req
->inbuf
)+dsoff
+dscnt
< smb_base(req
->inbuf
)))
2680 memcpy(state
->data
,smb_base(req
->inbuf
)+dsoff
,dscnt
);
2683 if (state
->total_param
) {
2684 /* Can't use talloc here, the core routines do realloc on the
2685 * params and data. */
2686 if ((state
->param
= (char *)SMB_MALLOC(state
->total_param
)) == NULL
) {
2687 DEBUG(0,("reply_nttrans: param malloc fail for %u "
2688 "bytes !\n", (unsigned int)state
->total_param
));
2689 SAFE_FREE(state
->data
);
2691 reply_doserror(req
, ERRDOS
, ERRnomem
);
2692 END_PROFILE(SMBnttrans
);
2695 if ((psoff
+pscnt
< psoff
) || (psoff
+pscnt
< pscnt
))
2697 if ((smb_base(req
->inbuf
)+psoff
+pscnt
2698 > (char *)req
->inbuf
+ size
) ||
2699 (smb_base(req
->inbuf
)+psoff
+pscnt
< smb_base(req
->inbuf
)))
2702 memcpy(state
->param
,smb_base(req
->inbuf
)+psoff
,pscnt
);
2705 state
->received_data
= dscnt
;
2706 state
->received_param
= pscnt
;
2708 if(state
->setup_count
> 0) {
2709 DEBUG(10,("reply_nttrans: state->setup_count = %d\n",
2710 state
->setup_count
));
2711 state
->setup
= (uint16
*)TALLOC(state
, state
->setup_count
);
2712 if (state
->setup
== NULL
) {
2713 DEBUG(0,("reply_nttrans : Out of memory\n"));
2714 SAFE_FREE(state
->data
);
2715 SAFE_FREE(state
->param
);
2717 reply_doserror(req
, ERRDOS
, ERRnomem
);
2718 END_PROFILE(SMBnttrans
);
2722 if ((smb_nt_SetupStart
+ state
->setup_count
< smb_nt_SetupStart
) ||
2723 (smb_nt_SetupStart
+ state
->setup_count
< state
->setup_count
)) {
2726 if (smb_nt_SetupStart
+ state
->setup_count
> size
) {
2730 memcpy( state
->setup
, &req
->inbuf
[smb_nt_SetupStart
],
2731 state
->setup_count
);
2732 dump_data(10, (uint8
*)state
->setup
, state
->setup_count
);
2735 if ((state
->received_data
== state
->total_data
) &&
2736 (state
->received_param
== state
->total_param
)) {
2737 handle_nttrans(conn
, state
, req
);
2738 SAFE_FREE(state
->param
);
2739 SAFE_FREE(state
->data
);
2741 END_PROFILE(SMBnttrans
);
2745 DLIST_ADD(conn
->pending_trans
, state
);
2747 /* We need to send an interim response then receive the rest
2748 of the parameter/data bytes */
2749 reply_outbuf(req
, 0, 0);
2750 show_msg((char *)req
->outbuf
);
2751 END_PROFILE(SMBnttrans
);
2756 DEBUG(0,("reply_nttrans: invalid trans parameters\n"));
2757 SAFE_FREE(state
->data
);
2758 SAFE_FREE(state
->param
);
2760 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2761 END_PROFILE(SMBnttrans
);
2765 /****************************************************************************
2766 Reply to a SMBnttranss
2767 ****************************************************************************/
2769 void reply_nttranss(struct smb_request
*req
)
2771 connection_struct
*conn
= req
->conn
;
2772 unsigned int pcnt
,poff
,dcnt
,doff
,pdisp
,ddisp
;
2773 struct trans_state
*state
;
2777 START_PROFILE(SMBnttranss
);
2779 show_msg((char *)req
->inbuf
);
2781 if (req
->wct
< 18) {
2782 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2783 END_PROFILE(SMBnttranss
);
2787 for (state
= conn
->pending_trans
; state
!= NULL
;
2788 state
= state
->next
) {
2789 if (state
->mid
== req
->mid
) {
2794 if ((state
== NULL
) || (state
->cmd
!= SMBnttrans
)) {
2795 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2796 END_PROFILE(SMBnttranss
);
2800 /* Revise state->total_param and state->total_data in case they have
2801 changed downwards */
2802 if (IVAL(req
->inbuf
, smb_nts_TotalParameterCount
)
2803 < state
->total_param
) {
2804 state
->total_param
= IVAL(req
->inbuf
,
2805 smb_nts_TotalParameterCount
);
2807 if (IVAL(req
->inbuf
, smb_nts_TotalDataCount
) < state
->total_data
) {
2808 state
->total_data
= IVAL(req
->inbuf
, smb_nts_TotalDataCount
);
2811 size
= smb_len(req
->inbuf
) + 4;
2813 pcnt
= IVAL(req
->inbuf
,smb_nts_ParameterCount
);
2814 poff
= IVAL(req
->inbuf
, smb_nts_ParameterOffset
);
2815 pdisp
= IVAL(req
->inbuf
, smb_nts_ParameterDisplacement
);
2817 dcnt
= IVAL(req
->inbuf
, smb_nts_DataCount
);
2818 ddisp
= IVAL(req
->inbuf
, smb_nts_DataDisplacement
);
2819 doff
= IVAL(req
->inbuf
, smb_nts_DataOffset
);
2821 state
->received_param
+= pcnt
;
2822 state
->received_data
+= dcnt
;
2824 if ((state
->received_data
> state
->total_data
) ||
2825 (state
->received_param
> state
->total_param
))
2829 if (pdisp
+pcnt
> state
->total_param
)
2831 if ((pdisp
+pcnt
< pdisp
) || (pdisp
+pcnt
< pcnt
))
2833 if (pdisp
> state
->total_param
)
2835 if ((smb_base(req
->inbuf
) + poff
+ pcnt
2836 > (char *)req
->inbuf
+ size
) ||
2837 (smb_base(req
->inbuf
) + poff
+ pcnt
2838 < smb_base(req
->inbuf
)))
2840 if (state
->param
+ pdisp
< state
->param
)
2843 memcpy(state
->param
+pdisp
, smb_base(req
->inbuf
)+poff
,
2848 if (ddisp
+dcnt
> state
->total_data
)
2850 if ((ddisp
+dcnt
< ddisp
) || (ddisp
+dcnt
< dcnt
))
2852 if (ddisp
> state
->total_data
)
2854 if ((smb_base(req
->inbuf
) + doff
+ dcnt
2855 > (char *)req
->inbuf
+ size
) ||
2856 (smb_base(req
->inbuf
) + doff
+ dcnt
2857 < smb_base(req
->inbuf
)))
2859 if (state
->data
+ ddisp
< state
->data
)
2862 memcpy(state
->data
+ddisp
, smb_base(req
->inbuf
)+doff
,
2866 if ((state
->received_param
< state
->total_param
) ||
2867 (state
->received_data
< state
->total_data
)) {
2868 END_PROFILE(SMBnttranss
);
2873 * construct_reply_common will copy smb_com from inbuf to
2874 * outbuf. SMBnttranss is wrong here.
2876 SCVAL(req
->inbuf
,smb_com
,SMBnttrans
);
2878 handle_nttrans(conn
, state
, req
);
2880 DLIST_REMOVE(conn
->pending_trans
, state
);
2881 SAFE_FREE(state
->data
);
2882 SAFE_FREE(state
->param
);
2884 END_PROFILE(SMBnttranss
);
2889 DEBUG(0,("reply_nttranss: invalid trans parameters\n"));
2890 DLIST_REMOVE(conn
->pending_trans
, state
);
2891 SAFE_FREE(state
->data
);
2892 SAFE_FREE(state
->param
);
2894 reply_nterror(req
, NT_STATUS_INVALID_PARAMETER
);
2895 END_PROFILE(SMBnttranss
);