[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / smbd / nttrans.c
blob45563b4a4f6b7976186ba7d33aadee00483a7ef2
1 /*
2 Unix SMB/CIFS implementation.
3 SMB NT transaction handling
4 Copyright (C) Jeremy Allison 1994-1998
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 2 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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 extern int max_send;
25 extern enum protocol_types Protocol;
26 extern int smb_read_error;
27 extern struct current_user current_user;
29 static const char *known_nt_pipes[] = {
30 "\\LANMAN",
31 "\\srvsvc",
32 "\\samr",
33 "\\wkssvc",
34 "\\NETLOGON",
35 "\\ntlsa",
36 "\\ntsvcs",
37 "\\lsass",
38 "\\lsarpc",
39 "\\winreg",
40 "\\initshutdown",
41 "\\spoolss",
42 "\\netdfs",
43 "\\rpcecho",
44 "\\svcctl",
45 "\\eventlog",
46 "\\unixinfo",
47 NULL
50 static char *nttrans_realloc(char **ptr, size_t size)
52 if (ptr==NULL) {
53 smb_panic("nttrans_realloc() called with NULL ptr\n");
56 *ptr = (char *)SMB_REALLOC(*ptr, size);
57 if(*ptr == NULL) {
58 return NULL;
60 memset(*ptr,'\0',size);
61 return *ptr;
64 /****************************************************************************
65 Send the required number of replies back.
66 We assume all fields other than the data fields are
67 set correctly for the type of call.
68 HACK ! Always assumes smb_setup field is zero.
69 ****************************************************************************/
71 int send_nt_replies(char *outbuf, int bufsize, NTSTATUS nt_error,
72 char *params, int paramsize, char *pdata, int datasize)
74 int data_to_send = datasize;
75 int params_to_send = paramsize;
76 int useable_space;
77 char *pp = params;
78 char *pd = pdata;
79 int params_sent_thistime, data_sent_thistime, total_sent_thistime;
80 int alignment_offset = 3;
81 int data_alignment_offset = 0;
84 * Initially set the wcnt area to be 18 - this is true for all
85 * transNT replies.
88 set_message(outbuf,18,0,True);
90 if (NT_STATUS_V(nt_error)) {
91 ERROR_NT(nt_error);
94 /*
95 * If there genuinely are no parameters or data to send just send
96 * the empty packet.
99 if(params_to_send == 0 && data_to_send == 0) {
100 show_msg(outbuf);
101 if (!send_smb(smbd_server_fd(),outbuf)) {
102 exit_server_cleanly("send_nt_replies: send_smb failed.");
104 return 0;
108 * When sending params and data ensure that both are nicely aligned.
109 * Only do this alignment when there is also data to send - else
110 * can cause NT redirector problems.
113 if (((params_to_send % 4) != 0) && (data_to_send != 0)) {
114 data_alignment_offset = 4 - (params_to_send % 4);
118 * Space is bufsize minus Netbios over TCP header minus SMB header.
119 * The alignment_offset is to align the param bytes on a four byte
120 * boundary (2 bytes for data len, one byte pad).
121 * NT needs this to work correctly.
124 useable_space = bufsize - ((smb_buf(outbuf)+
125 alignment_offset+data_alignment_offset) -
126 outbuf);
129 * useable_space can never be more than max_send minus the
130 * alignment offset.
133 useable_space = MIN(useable_space,
134 max_send - (alignment_offset+data_alignment_offset));
137 while (params_to_send || data_to_send) {
140 * Calculate whether we will totally or partially fill this packet.
143 total_sent_thistime = params_to_send + data_to_send +
144 alignment_offset + data_alignment_offset;
147 * We can never send more than useable_space.
150 total_sent_thistime = MIN(total_sent_thistime, useable_space);
152 set_message(outbuf, 18, total_sent_thistime, True);
155 * Set total params and data to be sent.
158 SIVAL(outbuf,smb_ntr_TotalParameterCount,paramsize);
159 SIVAL(outbuf,smb_ntr_TotalDataCount,datasize);
162 * Calculate how many parameters and data we can fit into
163 * this packet. Parameters get precedence.
166 params_sent_thistime = MIN(params_to_send,useable_space);
167 data_sent_thistime = useable_space - params_sent_thistime;
168 data_sent_thistime = MIN(data_sent_thistime,data_to_send);
170 SIVAL(outbuf,smb_ntr_ParameterCount,params_sent_thistime);
172 if(params_sent_thistime == 0) {
173 SIVAL(outbuf,smb_ntr_ParameterOffset,0);
174 SIVAL(outbuf,smb_ntr_ParameterDisplacement,0);
175 } else {
177 * smb_ntr_ParameterOffset is the offset from the start of the SMB header to the
178 * parameter bytes, however the first 4 bytes of outbuf are
179 * the Netbios over TCP header. Thus use smb_base() to subtract
180 * them from the calculation.
183 SIVAL(outbuf,smb_ntr_ParameterOffset,
184 ((smb_buf(outbuf)+alignment_offset) - smb_base(outbuf)));
186 * Absolute displacement of param bytes sent in this packet.
189 SIVAL(outbuf,smb_ntr_ParameterDisplacement,pp - params);
193 * Deal with the data portion.
196 SIVAL(outbuf,smb_ntr_DataCount, data_sent_thistime);
198 if(data_sent_thistime == 0) {
199 SIVAL(outbuf,smb_ntr_DataOffset,0);
200 SIVAL(outbuf,smb_ntr_DataDisplacement, 0);
201 } else {
203 * The offset of the data bytes is the offset of the
204 * parameter bytes plus the number of parameters being sent this time.
207 SIVAL(outbuf,smb_ntr_DataOffset,((smb_buf(outbuf)+alignment_offset) -
208 smb_base(outbuf)) + params_sent_thistime + data_alignment_offset);
209 SIVAL(outbuf,smb_ntr_DataDisplacement, pd - pdata);
213 * Copy the param bytes into the packet.
216 if(params_sent_thistime) {
217 memcpy((smb_buf(outbuf)+alignment_offset),pp,params_sent_thistime);
221 * Copy in the data bytes
224 if(data_sent_thistime) {
225 memcpy(smb_buf(outbuf)+alignment_offset+params_sent_thistime+
226 data_alignment_offset,pd,data_sent_thistime);
229 DEBUG(9,("nt_rep: params_sent_thistime = %d, data_sent_thistime = %d, useable_space = %d\n",
230 params_sent_thistime, data_sent_thistime, useable_space));
231 DEBUG(9,("nt_rep: params_to_send = %d, data_to_send = %d, paramsize = %d, datasize = %d\n",
232 params_to_send, data_to_send, paramsize, datasize));
234 /* Send the packet */
235 show_msg(outbuf);
236 if (!send_smb(smbd_server_fd(),outbuf)) {
237 exit_server_cleanly("send_nt_replies: send_smb failed.");
240 pp += params_sent_thistime;
241 pd += data_sent_thistime;
243 params_to_send -= params_sent_thistime;
244 data_to_send -= data_sent_thistime;
247 * Sanity check
250 if(params_to_send < 0 || data_to_send < 0) {
251 DEBUG(0,("send_nt_replies failed sanity check pts = %d, dts = %d\n!!!",
252 params_to_send, data_to_send));
253 return -1;
257 return 0;
260 /****************************************************************************
261 Is it an NTFS stream name ?
262 ****************************************************************************/
264 BOOL is_ntfs_stream_name(const char *fname)
266 if (lp_posix_pathnames()) {
267 return False;
269 return (strchr_m(fname, ':') != NULL) ? True : False;
272 /****************************************************************************
273 Save case statics.
274 ****************************************************************************/
276 static BOOL saved_case_sensitive;
277 static BOOL saved_case_preserve;
278 static BOOL saved_short_case_preserve;
280 /****************************************************************************
281 Save case semantics.
282 ****************************************************************************/
284 static uint32 set_posix_case_semantics(connection_struct *conn, uint32 file_attributes)
286 if(!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
287 return file_attributes;
290 saved_case_sensitive = conn->case_sensitive;
291 saved_case_preserve = conn->case_preserve;
292 saved_short_case_preserve = conn->short_case_preserve;
294 /* Set to POSIX. */
295 conn->case_sensitive = True;
296 conn->case_preserve = True;
297 conn->short_case_preserve = True;
299 return (file_attributes & ~FILE_FLAG_POSIX_SEMANTICS);
302 /****************************************************************************
303 Restore case semantics.
304 ****************************************************************************/
306 static void restore_case_semantics(connection_struct *conn, uint32 file_attributes)
308 if(!(file_attributes & FILE_FLAG_POSIX_SEMANTICS)) {
309 return;
312 conn->case_sensitive = saved_case_sensitive;
313 conn->case_preserve = saved_case_preserve;
314 conn->short_case_preserve = saved_short_case_preserve;
317 /****************************************************************************
318 Reply to an NT create and X call on a pipe.
319 ****************************************************************************/
321 static int nt_open_pipe(char *fname, connection_struct *conn,
322 char *inbuf, char *outbuf, int *ppnum)
324 smb_np_struct *p = NULL;
325 uint16 vuid = SVAL(inbuf, smb_uid);
326 int i;
328 DEBUG(4,("nt_open_pipe: Opening pipe %s.\n", fname));
330 /* See if it is one we want to handle. */
332 if (lp_disable_spoolss() && strequal(fname, "\\spoolss")) {
333 return(ERROR_BOTH(NT_STATUS_OBJECT_NAME_NOT_FOUND,ERRDOS,ERRbadpipe));
336 for( i = 0; known_nt_pipes[i]; i++ ) {
337 if( strequal(fname,known_nt_pipes[i])) {
338 break;
342 if ( known_nt_pipes[i] == NULL ) {
343 return(ERROR_BOTH(NT_STATUS_OBJECT_NAME_NOT_FOUND,ERRDOS,ERRbadpipe));
346 /* Strip \\ off the name. */
347 fname++;
349 DEBUG(3,("nt_open_pipe: Known pipe %s opening.\n", fname));
351 p = open_rpc_pipe_p(fname, conn, vuid);
352 if (!p) {
353 return(ERROR_DOS(ERRSRV,ERRnofids));
356 /* Add pipe to db */
358 if ( !store_pipe_opendb( p ) ) {
359 DEBUG(3,("nt_open_pipe: failed to store %s pipe open.\n", fname));
362 *ppnum = p->pnum;
363 return 0;
366 /****************************************************************************
367 Reply to an NT create and X call for pipes.
368 ****************************************************************************/
370 static int do_ntcreate_pipe_open(connection_struct *conn,
371 char *inbuf,char *outbuf,int length,int bufsize)
373 pstring fname;
374 int ret;
375 int pnum = -1;
376 char *p = NULL;
377 uint32 flags = IVAL(inbuf,smb_ntcreate_Flags);
379 srvstr_pull_buf(inbuf, fname, smb_buf(inbuf), sizeof(fname), STR_TERMINATE);
381 if ((ret = nt_open_pipe(fname, conn, inbuf, outbuf, &pnum)) != 0) {
382 return ret;
386 * Deal with pipe return.
389 if (flags & EXTENDED_RESPONSE_REQUIRED) {
390 /* This is very strange. We
391 * return 50 words, but only set
392 * the wcnt to 42 ? It's definately
393 * what happens on the wire....
395 set_message(outbuf,50,0,True);
396 SCVAL(outbuf,smb_wct,42);
397 } else {
398 set_message(outbuf,34,0,True);
401 p = outbuf + smb_vwv2;
402 p++;
403 SSVAL(p,0,pnum);
404 p += 2;
405 SIVAL(p,0,FILE_WAS_OPENED);
406 p += 4;
407 p += 32;
408 SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
409 p += 20;
410 /* File type. */
411 SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
412 /* Device state. */
413 SSVAL(p,2, 0x5FF); /* ? */
414 p += 4;
416 if (flags & EXTENDED_RESPONSE_REQUIRED) {
417 p += 25;
418 SIVAL(p,0,FILE_GENERIC_ALL);
420 * For pipes W2K3 seems to return
421 * 0x12019B next.
422 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
424 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
427 DEBUG(5,("do_ntcreate_pipe_open: open pipe = %s\n", fname));
429 return chain_reply(inbuf,outbuf,length,bufsize);
432 /****************************************************************************
433 Reply to an NT create and X call for a quota file.
434 ****************************************************************************/
436 int reply_ntcreate_and_X_quota(connection_struct *conn,
437 char *inbuf,
438 char *outbuf,
439 int length,
440 int bufsize,
441 enum FAKE_FILE_TYPE fake_file_type,
442 const char *fname)
444 int result;
445 char *p;
446 uint32 desired_access = IVAL(inbuf,smb_ntcreate_DesiredAccess);
447 files_struct *fsp;
448 NTSTATUS status;
450 status = open_fake_file(conn, fake_file_type, fname, desired_access,
451 &fsp);
453 if (!NT_STATUS_IS_OK(status)) {
454 return ERROR_NT(status);
457 set_message(outbuf,34,0,True);
459 p = outbuf + smb_vwv2;
461 /* SCVAL(p,0,NO_OPLOCK_RETURN); */
462 p++;
463 SSVAL(p,0,fsp->fnum);
465 DEBUG(5,("reply_ntcreate_and_X_quota: fnum = %d, open name = %s\n", fsp->fnum, fsp->fsp_name));
467 result = chain_reply(inbuf,outbuf,length,bufsize);
468 return result;
471 /****************************************************************************
472 Reply to an NT create and X call.
473 ****************************************************************************/
475 int reply_ntcreate_and_X(connection_struct *conn,
476 char *inbuf,char *outbuf,int length,int bufsize)
478 int result;
479 pstring fname;
480 uint32 flags = IVAL(inbuf,smb_ntcreate_Flags);
481 uint32 access_mask = IVAL(inbuf,smb_ntcreate_DesiredAccess);
482 uint32 file_attributes = IVAL(inbuf,smb_ntcreate_FileAttributes);
483 uint32 new_file_attributes;
484 uint32 share_access = IVAL(inbuf,smb_ntcreate_ShareAccess);
485 uint32 create_disposition = IVAL(inbuf,smb_ntcreate_CreateDisposition);
486 uint32 create_options = IVAL(inbuf,smb_ntcreate_CreateOptions);
487 uint16 root_dir_fid = (uint16)IVAL(inbuf,smb_ntcreate_RootDirectoryFid);
488 /* Breakout the oplock request bits so we can set the
489 reply bits separately. */
490 int oplock_request = 0;
491 uint32 fattr=0;
492 SMB_OFF_T file_len = 0;
493 SMB_STRUCT_STAT sbuf;
494 int info = 0;
495 files_struct *fsp = NULL;
496 char *p = NULL;
497 struct timespec c_timespec;
498 struct timespec a_timespec;
499 struct timespec m_timespec;
500 BOOL extended_oplock_granted = False;
501 NTSTATUS status;
503 START_PROFILE(SMBntcreateX);
505 DEBUG(10,("reply_ntcreate_and_X: flags = 0x%x, access_mask = 0x%x "
506 "file_attributes = 0x%x, share_access = 0x%x, "
507 "create_disposition = 0x%x create_options = 0x%x "
508 "root_dir_fid = 0x%x\n",
509 (unsigned int)flags,
510 (unsigned int)access_mask,
511 (unsigned int)file_attributes,
512 (unsigned int)share_access,
513 (unsigned int)create_disposition,
514 (unsigned int)create_options,
515 (unsigned int)root_dir_fid ));
518 * If it's an IPC, use the pipe handler.
521 if (IS_IPC(conn)) {
522 if (lp_nt_pipe_support()) {
523 END_PROFILE(SMBntcreateX);
524 return do_ntcreate_pipe_open(conn,inbuf,outbuf,length,bufsize);
525 } else {
526 END_PROFILE(SMBntcreateX);
527 return(ERROR_DOS(ERRDOS,ERRnoaccess));
531 if (create_options & FILE_OPEN_BY_FILE_ID) {
532 END_PROFILE(SMBntcreateX);
533 return ERROR_NT(NT_STATUS_NOT_SUPPORTED);
537 * Get the file name.
540 if(root_dir_fid != 0) {
542 * This filename is relative to a directory fid.
544 pstring rel_fname;
545 files_struct *dir_fsp = file_fsp(inbuf,smb_ntcreate_RootDirectoryFid);
547 if(!dir_fsp) {
548 END_PROFILE(SMBntcreateX);
549 return ERROR_DOS(ERRDOS,ERRbadfid);
552 if(!dir_fsp->is_directory) {
554 srvstr_get_path(inbuf, fname, smb_buf(inbuf), sizeof(fname), 0, STR_TERMINATE, &status);
555 if (!NT_STATUS_IS_OK(status)) {
556 END_PROFILE(SMBntcreateX);
557 return ERROR_NT(status);
561 * Check to see if this is a mac fork of some kind.
564 if( is_ntfs_stream_name(fname)) {
565 END_PROFILE(SMBntcreateX);
566 return ERROR_NT(NT_STATUS_OBJECT_PATH_NOT_FOUND);
570 we need to handle the case when we get a
571 relative open relative to a file and the
572 pathname is blank - this is a reopen!
573 (hint from demyn plantenberg)
576 END_PROFILE(SMBntcreateX);
577 return(ERROR_DOS(ERRDOS,ERRbadfid));
581 * Copy in the base directory name.
584 pstrcpy( fname, dir_fsp->fsp_name );
586 if (ISDOT(fname)) {
587 fname[0] = '\0';
588 } else {
589 size_t dir_name_len = strlen(fname);
591 * Ensure it ends in a '\'.
594 if((fname[dir_name_len-1] != '\\') && (fname[dir_name_len-1] != '/')) {
595 pstrcat(fname, "/");
599 srvstr_get_path(inbuf, rel_fname, smb_buf(inbuf), sizeof(rel_fname), 0, STR_TERMINATE, &status);
600 if (!NT_STATUS_IS_OK(status)) {
601 END_PROFILE(SMBntcreateX);
602 return ERROR_NT(status);
604 pstrcat(fname, rel_fname);
605 } else {
606 srvstr_get_path(inbuf, fname, smb_buf(inbuf), sizeof(fname), 0, STR_TERMINATE, &status);
607 if (!NT_STATUS_IS_OK(status)) {
608 END_PROFILE(SMBntcreateX);
609 return ERROR_NT(status);
613 * Check to see if this is a mac fork of some kind.
616 if( is_ntfs_stream_name(fname)) {
617 enum FAKE_FILE_TYPE fake_file_type = is_fake_file(fname);
618 if (fake_file_type!=FAKE_FILE_TYPE_NONE) {
620 * Here we go! support for changing the disk quotas --metze
622 * We need to fake up to open this MAGIC QUOTA file
623 * and return a valid FID.
625 * w2k close this file directly after openening
626 * xp also tries a QUERY_FILE_INFO on the file and then close it
628 result = reply_ntcreate_and_X_quota(conn, inbuf, outbuf, length, bufsize,
629 fake_file_type, fname);
630 END_PROFILE(SMBntcreateX);
631 return result;
632 } else {
633 END_PROFILE(SMBntcreateX);
634 return ERROR_NT(NT_STATUS_OBJECT_PATH_NOT_FOUND);
640 * Now contruct the smb_open_mode value from the filename,
641 * desired access and the share access.
643 status = resolve_dfspath(conn, SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES, fname);
644 if (!NT_STATUS_IS_OK(status)) {
645 END_PROFILE(SMBntcreateX);
646 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
647 return ERROR_BOTH(NT_STATUS_PATH_NOT_COVERED, ERRSRV, ERRbadpath);
649 return ERROR_NT(status);
652 oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
653 if (oplock_request) {
654 oplock_request |= (flags & REQUEST_BATCH_OPLOCK) ? BATCH_OPLOCK : 0;
658 * Ordinary file or directory.
662 * Check if POSIX semantics are wanted.
665 new_file_attributes = set_posix_case_semantics(conn, file_attributes);
667 status = unix_convert(conn, fname, False, NULL, &sbuf);
668 if (!NT_STATUS_IS_OK(status)) {
669 restore_case_semantics(conn, file_attributes);
670 END_PROFILE(SMBntcreateX);
671 return ERROR_NT(status);
673 /* All file access must go through check_name() */
674 status = check_name(conn, fname);
675 if (!NT_STATUS_IS_OK(status)) {
676 restore_case_semantics(conn, file_attributes);
677 END_PROFILE(SMBntcreateX);
678 return ERROR_NT(status);
681 /* This is the correct thing to do (check every time) but can_delete is
682 expensive (it may have to read the parent directory permissions). So
683 for now we're not doing it unless we have a strong hint the client
684 is really going to delete this file. If the client is forcing FILE_CREATE
685 let the filesystem take care of the permissions. */
687 /* Setting FILE_SHARE_DELETE is the hint. */
689 if (lp_acl_check_permissions(SNUM(conn))
690 && (create_disposition != FILE_CREATE)
691 && (share_access & FILE_SHARE_DELETE)
692 && (access_mask & DELETE_ACCESS)) {
693 if ((dos_mode(conn, fname, &sbuf) & FILE_ATTRIBUTE_READONLY) ||
694 !can_delete_file_in_directory(conn, fname)) {
695 restore_case_semantics(conn, file_attributes);
696 END_PROFILE(SMBntcreateX);
697 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
702 * If it's a request for a directory open, deal with it separately.
705 if(create_options & FILE_DIRECTORY_FILE) {
707 /* Can't open a temp directory. IFS kit test. */
708 if (file_attributes & FILE_ATTRIBUTE_TEMPORARY) {
709 END_PROFILE(SMBntcreateX);
710 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
713 oplock_request = 0;
714 status = open_directory(conn, fname, &sbuf,
715 access_mask,
716 share_access,
717 create_disposition,
718 create_options,
719 new_file_attributes,
720 &info, &fsp);
721 } else {
724 * Ordinary file case.
727 /* NB. We have a potential bug here. If we
728 * cause an oplock break to ourselves, then we
729 * could end up processing filename related
730 * SMB requests whilst we await the oplock
731 * break response. As we may have changed the
732 * filename case semantics to be POSIX-like,
733 * this could mean a filename request could
734 * fail when it should succeed. This is a rare
735 * condition, but eventually we must arrange
736 * to restore the correct case semantics
737 * before issuing an oplock break request to
738 * our client. JRA. */
740 status = open_file_ntcreate(conn,fname,&sbuf,
741 access_mask,
742 share_access,
743 create_disposition,
744 create_options,
745 new_file_attributes,
746 oplock_request,
747 &info, &fsp);
749 if (!NT_STATUS_IS_OK(status)) {
750 /* We cheat here. There are two cases we
751 * care about. One is a directory rename,
752 * where the NT client will attempt to
753 * open the source directory for
754 * DELETE access. Note that when the
755 * NT client does this it does *not*
756 * set the directory bit in the
757 * request packet. This is translated
758 * into a read/write open
759 * request. POSIX states that any open
760 * for write request on a directory
761 * will generate an EISDIR error, so
762 * we can catch this here and open a
763 * pseudo handle that is flagged as a
764 * directory. The second is an open
765 * for a permissions read only, which
766 * we handle in the open_file_stat case. JRA.
769 if (NT_STATUS_EQUAL(status,
770 NT_STATUS_FILE_IS_A_DIRECTORY)) {
773 * Fail the open if it was explicitly a non-directory file.
776 if (create_options & FILE_NON_DIRECTORY_FILE) {
777 restore_case_semantics(conn, file_attributes);
778 END_PROFILE(SMBntcreateX);
779 return ERROR_FORCE_NT(NT_STATUS_FILE_IS_A_DIRECTORY);
782 oplock_request = 0;
783 status = open_directory(conn, fname, &sbuf,
784 access_mask,
785 share_access,
786 create_disposition,
787 create_options,
788 new_file_attributes,
789 &info, &fsp);
795 restore_case_semantics(conn, file_attributes);
797 if(!NT_STATUS_IS_OK(status)) {
798 END_PROFILE(SMBntcreateX);
800 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
801 /* We have re-scheduled this call. */
802 return -1;
805 return ERROR_OPEN(status);
808 file_len = sbuf.st_size;
809 fattr = dos_mode(conn,fname,&sbuf);
810 if(fattr == 0) {
811 fattr = FILE_ATTRIBUTE_NORMAL;
813 if (!fsp->is_directory && (fattr & aDIR)) {
814 close_file(fsp,ERROR_CLOSE);
815 END_PROFILE(SMBntcreateX);
816 return ERROR_DOS(ERRDOS,ERRnoaccess);
819 /* Save the requested allocation size. */
820 if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
821 SMB_BIG_UINT allocation_size = (SMB_BIG_UINT)IVAL(inbuf,smb_ntcreate_AllocationSize);
822 #ifdef LARGE_SMB_OFF_T
823 allocation_size |= (((SMB_BIG_UINT)IVAL(inbuf,smb_ntcreate_AllocationSize + 4)) << 32);
824 #endif
825 if (allocation_size && (allocation_size > (SMB_BIG_UINT)file_len)) {
826 fsp->initial_allocation_size = smb_roundup(fsp->conn, allocation_size);
827 if (fsp->is_directory) {
828 close_file(fsp,ERROR_CLOSE);
829 END_PROFILE(SMBntcreateX);
830 /* Can't set allocation size on a directory. */
831 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
833 if (vfs_allocate_file_space(fsp, fsp->initial_allocation_size) == -1) {
834 close_file(fsp,ERROR_CLOSE);
835 END_PROFILE(SMBntcreateX);
836 return ERROR_NT(NT_STATUS_DISK_FULL);
838 } else {
839 fsp->initial_allocation_size = smb_roundup(fsp->conn,(SMB_BIG_UINT)file_len);
844 * If the caller set the extended oplock request bit
845 * and we granted one (by whatever means) - set the
846 * correct bit for extended oplock reply.
849 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
850 extended_oplock_granted = True;
853 if(oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
854 extended_oplock_granted = True;
857 if (flags & EXTENDED_RESPONSE_REQUIRED) {
858 /* This is very strange. We
859 * return 50 words, but only set
860 * the wcnt to 42 ? It's definately
861 * what happens on the wire....
863 set_message(outbuf,50,0,True);
864 SCVAL(outbuf,smb_wct,42);
865 } else {
866 set_message(outbuf,34,0,True);
869 p = outbuf + smb_vwv2;
872 * Currently as we don't support level II oplocks we just report
873 * exclusive & batch here.
876 if (extended_oplock_granted) {
877 if (flags & REQUEST_BATCH_OPLOCK) {
878 SCVAL(p,0, BATCH_OPLOCK_RETURN);
879 } else {
880 SCVAL(p,0, EXCLUSIVE_OPLOCK_RETURN);
882 } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
883 SCVAL(p,0, LEVEL_II_OPLOCK_RETURN);
884 } else {
885 SCVAL(p,0,NO_OPLOCK_RETURN);
888 p++;
889 SSVAL(p,0,fsp->fnum);
890 p += 2;
891 if ((create_disposition == FILE_SUPERSEDE) && (info == FILE_WAS_OVERWRITTEN)) {
892 SIVAL(p,0,FILE_WAS_SUPERSEDED);
893 } else {
894 SIVAL(p,0,info);
896 p += 4;
898 /* Create time. */
899 c_timespec = get_create_timespec(&sbuf,lp_fake_dir_create_times(SNUM(conn)));
900 a_timespec = get_atimespec(&sbuf);
901 m_timespec = get_mtimespec(&sbuf);
903 if (lp_dos_filetime_resolution(SNUM(conn))) {
904 dos_filetime_timespec(&c_timespec);
905 dos_filetime_timespec(&a_timespec);
906 dos_filetime_timespec(&m_timespec);
909 put_long_date_timespec(p, c_timespec); /* create time. */
910 p += 8;
911 put_long_date_timespec(p, a_timespec); /* access time */
912 p += 8;
913 put_long_date_timespec(p, m_timespec); /* write time */
914 p += 8;
915 put_long_date_timespec(p, m_timespec); /* change time */
916 p += 8;
917 SIVAL(p,0,fattr); /* File Attributes. */
918 p += 4;
919 SOFF_T(p, 0, get_allocation_size(conn,fsp,&sbuf));
920 p += 8;
921 SOFF_T(p,0,file_len);
922 p += 8;
923 if (flags & EXTENDED_RESPONSE_REQUIRED) {
924 SSVAL(p,2,0x7);
926 p += 4;
927 SCVAL(p,0,fsp->is_directory ? 1 : 0);
929 if (flags & EXTENDED_RESPONSE_REQUIRED) {
930 uint32 perms = 0;
931 p += 25;
932 if (fsp->is_directory || can_write_to_file(conn, fname, &sbuf)) {
933 perms = FILE_GENERIC_ALL;
934 } else {
935 perms = FILE_GENERIC_READ|FILE_EXECUTE;
937 SIVAL(p,0,perms);
940 DEBUG(5,("reply_ntcreate_and_X: fnum = %d, open name = %s\n", fsp->fnum, fsp->fsp_name));
942 result = chain_reply(inbuf,outbuf,length,bufsize);
943 END_PROFILE(SMBntcreateX);
944 return result;
947 /****************************************************************************
948 Reply to a NT_TRANSACT_CREATE call to open a pipe.
949 ****************************************************************************/
951 static int do_nt_transact_create_pipe( connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
952 uint16 **ppsetup, uint32 setup_count,
953 char **ppparams, uint32 parameter_count,
954 char **ppdata, uint32 data_count)
956 pstring fname;
957 char *params = *ppparams;
958 int ret;
959 int pnum = -1;
960 char *p = NULL;
961 NTSTATUS status;
962 size_t param_len;
963 uint32 flags;
966 * Ensure minimum number of parameters sent.
969 if(parameter_count < 54) {
970 DEBUG(0,("do_nt_transact_create_pipe - insufficient parameters (%u)\n", (unsigned int)parameter_count));
971 return ERROR_DOS(ERRDOS,ERRnoaccess);
974 flags = IVAL(params,0);
976 srvstr_get_path(inbuf, fname, params+53, sizeof(fname), parameter_count-53, STR_TERMINATE, &status);
977 if (!NT_STATUS_IS_OK(status)) {
978 return ERROR_NT(status);
981 if ((ret = nt_open_pipe(fname, conn, inbuf, outbuf, &pnum)) != 0) {
982 return ret;
985 /* Realloc the size of parameters and data we will return */
986 if (flags & EXTENDED_RESPONSE_REQUIRED) {
987 /* Extended response is 32 more byyes. */
988 param_len = 101;
989 } else {
990 param_len = 69;
992 params = nttrans_realloc(ppparams, param_len);
993 if(params == NULL) {
994 return ERROR_DOS(ERRDOS,ERRnomem);
997 p = params;
998 SCVAL(p,0,NO_OPLOCK_RETURN);
1000 p += 2;
1001 SSVAL(p,0,pnum);
1002 p += 2;
1003 SIVAL(p,0,FILE_WAS_OPENED);
1004 p += 8;
1006 p += 32;
1007 SIVAL(p,0,FILE_ATTRIBUTE_NORMAL); /* File Attributes. */
1008 p += 20;
1009 /* File type. */
1010 SSVAL(p,0,FILE_TYPE_MESSAGE_MODE_PIPE);
1011 /* Device state. */
1012 SSVAL(p,2, 0x5FF); /* ? */
1013 p += 4;
1015 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1016 p += 25;
1017 SIVAL(p,0,FILE_GENERIC_ALL);
1019 * For pipes W2K3 seems to return
1020 * 0x12019B next.
1021 * This is ((FILE_GENERIC_READ|FILE_GENERIC_WRITE) & ~FILE_APPEND_DATA)
1023 SIVAL(p,4,(FILE_GENERIC_READ|FILE_GENERIC_WRITE)&~FILE_APPEND_DATA);
1026 DEBUG(5,("do_nt_transact_create_pipe: open name = %s\n", fname));
1028 /* Send the required number of replies */
1029 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, params, param_len, *ppdata, 0);
1031 return -1;
1034 /****************************************************************************
1035 Internal fn to set security descriptors.
1036 ****************************************************************************/
1038 static NTSTATUS set_sd(files_struct *fsp, char *data, uint32 sd_len, uint32 security_info_sent)
1040 prs_struct pd;
1041 SEC_DESC *psd = NULL;
1042 TALLOC_CTX *mem_ctx;
1043 BOOL ret;
1045 if (sd_len == 0 || !lp_nt_acl_support(SNUM(fsp->conn))) {
1046 return NT_STATUS_OK;
1050 * Init the parse struct we will unmarshall from.
1053 if ((mem_ctx = talloc_init("set_sd")) == NULL) {
1054 DEBUG(0,("set_sd: talloc_init failed.\n"));
1055 return NT_STATUS_NO_MEMORY;
1058 prs_init(&pd, 0, mem_ctx, UNMARSHALL);
1061 * Setup the prs_struct to point at the memory we just
1062 * allocated.
1065 prs_give_memory( &pd, data, sd_len, False);
1068 * Finally, unmarshall from the data buffer.
1071 if(!sec_io_desc( "sd data", &psd, &pd, 1)) {
1072 DEBUG(0,("set_sd: Error in unmarshalling security descriptor.\n"));
1074 * Return access denied for want of a better error message..
1076 talloc_destroy(mem_ctx);
1077 return NT_STATUS_NO_MEMORY;
1080 if (psd->owner_sid==0) {
1081 security_info_sent &= ~OWNER_SECURITY_INFORMATION;
1083 if (psd->group_sid==0) {
1084 security_info_sent &= ~GROUP_SECURITY_INFORMATION;
1086 if (psd->sacl==0) {
1087 security_info_sent &= ~SACL_SECURITY_INFORMATION;
1089 if (psd->dacl==0) {
1090 security_info_sent &= ~DACL_SECURITY_INFORMATION;
1093 ret = SMB_VFS_FSET_NT_ACL( fsp, fsp->fh->fd, security_info_sent, psd);
1095 if (!ret) {
1096 talloc_destroy(mem_ctx);
1097 return NT_STATUS_ACCESS_DENIED;
1100 talloc_destroy(mem_ctx);
1102 return NT_STATUS_OK;
1105 /****************************************************************************
1106 Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
1107 ****************************************************************************/
1109 static struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
1111 struct ea_list *ea_list_head = NULL;
1112 size_t offset = 0;
1114 if (data_size < 4) {
1115 return NULL;
1118 while (offset + 4 <= data_size) {
1119 size_t next_offset = IVAL(pdata,offset);
1120 struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL);
1122 if (!eal) {
1123 return NULL;
1126 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
1127 if (next_offset == 0) {
1128 break;
1130 offset += next_offset;
1133 return ea_list_head;
1136 /****************************************************************************
1137 Reply to a NT_TRANSACT_CREATE call (needs to process SD's).
1138 ****************************************************************************/
1140 static int call_nt_transact_create(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
1141 uint16 **ppsetup, uint32 setup_count,
1142 char **ppparams, uint32 parameter_count,
1143 char **ppdata, uint32 data_count, uint32 max_data_count)
1145 pstring fname;
1146 char *params = *ppparams;
1147 char *data = *ppdata;
1148 /* Breakout the oplock request bits so we can set the reply bits separately. */
1149 int oplock_request = 0;
1150 uint32 fattr=0;
1151 SMB_OFF_T file_len = 0;
1152 SMB_STRUCT_STAT sbuf;
1153 int info = 0;
1154 files_struct *fsp = NULL;
1155 char *p = NULL;
1156 BOOL extended_oplock_granted = False;
1157 uint32 flags;
1158 uint32 access_mask;
1159 uint32 file_attributes;
1160 uint32 new_file_attributes;
1161 uint32 share_access;
1162 uint32 create_disposition;
1163 uint32 create_options;
1164 uint32 sd_len;
1165 uint32 ea_len;
1166 uint16 root_dir_fid;
1167 struct timespec c_timespec;
1168 struct timespec a_timespec;
1169 struct timespec m_timespec;
1170 struct ea_list *ea_list = NULL;
1171 TALLOC_CTX *ctx = NULL;
1172 char *pdata = NULL;
1173 NTSTATUS status;
1174 size_t param_len;
1176 DEBUG(5,("call_nt_transact_create\n"));
1179 * If it's an IPC, use the pipe handler.
1182 if (IS_IPC(conn)) {
1183 if (lp_nt_pipe_support()) {
1184 return do_nt_transact_create_pipe(conn, inbuf, outbuf, length,
1185 bufsize,
1186 ppsetup, setup_count,
1187 ppparams, parameter_count,
1188 ppdata, data_count);
1189 } else {
1190 return ERROR_DOS(ERRDOS,ERRnoaccess);
1195 * Ensure minimum number of parameters sent.
1198 if(parameter_count < 54) {
1199 DEBUG(0,("call_nt_transact_create - insufficient parameters (%u)\n", (unsigned int)parameter_count));
1200 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1203 flags = IVAL(params,0);
1204 access_mask = IVAL(params,8);
1205 file_attributes = IVAL(params,20);
1206 share_access = IVAL(params,24);
1207 create_disposition = IVAL(params,28);
1208 create_options = IVAL(params,32);
1209 sd_len = IVAL(params,36);
1210 ea_len = IVAL(params,40);
1211 root_dir_fid = (uint16)IVAL(params,4);
1213 /* Ensure the data_len is correct for the sd and ea values given. */
1214 if ((ea_len + sd_len > data_count) ||
1215 (ea_len > data_count) || (sd_len > data_count) ||
1216 (ea_len + sd_len < ea_len) || (ea_len + sd_len < sd_len)) {
1217 DEBUG(10,("call_nt_transact_create - ea_len = %u, sd_len = %u, data_count = %u\n",
1218 (unsigned int)ea_len, (unsigned int)sd_len, (unsigned int)data_count ));
1219 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1222 if (ea_len) {
1223 if (!lp_ea_support(SNUM(conn))) {
1224 DEBUG(10,("call_nt_transact_create - ea_len = %u but EA's not supported.\n",
1225 (unsigned int)ea_len ));
1226 return ERROR_NT(NT_STATUS_EAS_NOT_SUPPORTED);
1229 if (ea_len < 10) {
1230 DEBUG(10,("call_nt_transact_create - ea_len = %u - too small (should be more than 10)\n",
1231 (unsigned int)ea_len ));
1232 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1236 if (create_options & FILE_OPEN_BY_FILE_ID) {
1237 return ERROR_NT(NT_STATUS_NOT_SUPPORTED);
1241 * Get the file name.
1244 if(root_dir_fid != 0) {
1246 * This filename is relative to a directory fid.
1248 files_struct *dir_fsp = file_fsp(params,4);
1250 if(!dir_fsp) {
1251 return ERROR_DOS(ERRDOS,ERRbadfid);
1254 if(!dir_fsp->is_directory) {
1255 srvstr_get_path(inbuf, fname, params+53, sizeof(fname), parameter_count-53, STR_TERMINATE, &status);
1256 if (!NT_STATUS_IS_OK(status)) {
1257 return ERROR_NT(status);
1261 * Check to see if this is a mac fork of some kind.
1264 if( is_ntfs_stream_name(fname)) {
1265 return ERROR_NT(NT_STATUS_OBJECT_PATH_NOT_FOUND);
1268 return ERROR_DOS(ERRDOS,ERRbadfid);
1272 * Copy in the base directory name.
1275 pstrcpy( fname, dir_fsp->fsp_name );
1277 if (ISDOT(fname)) {
1278 fname[0] = '\0';
1279 } else {
1280 size_t dir_name_len = strlen(fname);
1282 * Ensure it ends in a '\'.
1285 if((fname[dir_name_len-1] != '\\') && (fname[dir_name_len-1] != '/')) {
1286 pstrcat(fname, "/");
1291 pstring tmpname;
1292 srvstr_get_path(inbuf, tmpname, params+53, sizeof(tmpname), parameter_count-53, STR_TERMINATE, &status);
1293 if (!NT_STATUS_IS_OK(status)) {
1294 return ERROR_NT(status);
1296 pstrcat(fname, tmpname);
1298 } else {
1299 srvstr_get_path(inbuf, fname, params+53, sizeof(fname), parameter_count-53, STR_TERMINATE, &status);
1300 if (!NT_STATUS_IS_OK(status)) {
1301 return ERROR_NT(status);
1305 * Check to see if this is a mac fork of some kind.
1308 if( is_ntfs_stream_name(fname)) {
1309 return ERROR_NT(NT_STATUS_OBJECT_PATH_NOT_FOUND);
1313 oplock_request = (flags & REQUEST_OPLOCK) ? EXCLUSIVE_OPLOCK : 0;
1314 if (oplock_request) {
1315 oplock_request |= (flags & REQUEST_BATCH_OPLOCK) ? BATCH_OPLOCK : 0;
1319 * Ordinary file or directory.
1323 * Check if POSIX semantics are wanted.
1326 new_file_attributes = set_posix_case_semantics(conn, file_attributes);
1328 status = resolve_dfspath(conn, SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES, fname);
1329 if (!NT_STATUS_IS_OK(status)) {
1330 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1331 return ERROR_BOTH(NT_STATUS_PATH_NOT_COVERED, ERRSRV, ERRbadpath);
1333 return ERROR_NT(status);
1336 status = unix_convert(conn, fname, False, NULL, &sbuf);
1337 if (!NT_STATUS_IS_OK(status)) {
1338 restore_case_semantics(conn, file_attributes);
1339 return ERROR_NT(status);
1341 /* All file access must go through check_name() */
1342 status = check_name(conn, fname);
1343 if (!NT_STATUS_IS_OK(status)) {
1344 restore_case_semantics(conn, file_attributes);
1345 return ERROR_NT(status);
1348 /* This is the correct thing to do (check every time) but can_delete is
1349 expensive (it may have to read the parent directory permissions). So
1350 for now we're not doing it unless we have a strong hint the client
1351 is really going to delete this file. If the client is forcing FILE_CREATE
1352 let the filesystem take care of the permissions. */
1354 /* Setting FILE_SHARE_DELETE is the hint. */
1356 if (lp_acl_check_permissions(SNUM(conn))
1357 && (create_disposition != FILE_CREATE)
1358 && (share_access & FILE_SHARE_DELETE)
1359 && (access_mask & DELETE_ACCESS)) {
1360 if ((dos_mode(conn, fname, &sbuf) & FILE_ATTRIBUTE_READONLY) ||
1361 !can_delete_file_in_directory(conn, fname)) {
1362 restore_case_semantics(conn, file_attributes);
1363 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
1367 if (ea_len) {
1368 pdata = data + sd_len;
1370 /* We have already checked that ea_len <= data_count here. */
1371 ea_list = read_nttrans_ea_list(tmp_talloc_ctx(), pdata,
1372 ea_len);
1373 if (!ea_list ) {
1374 restore_case_semantics(conn, file_attributes);
1375 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1380 * If it's a request for a directory open, deal with it separately.
1383 if(create_options & FILE_DIRECTORY_FILE) {
1385 /* Can't open a temp directory. IFS kit test. */
1386 if (file_attributes & FILE_ATTRIBUTE_TEMPORARY) {
1387 restore_case_semantics(conn, file_attributes);
1388 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1392 * We will get a create directory here if the Win32
1393 * app specified a security descriptor in the
1394 * CreateDirectory() call.
1397 oplock_request = 0;
1398 status = open_directory(conn, fname, &sbuf,
1399 access_mask,
1400 share_access,
1401 create_disposition,
1402 create_options,
1403 new_file_attributes,
1404 &info, &fsp);
1405 } else {
1408 * Ordinary file case.
1411 status = open_file_ntcreate(conn,fname,&sbuf,
1412 access_mask,
1413 share_access,
1414 create_disposition,
1415 create_options,
1416 new_file_attributes,
1417 oplock_request,
1418 &info, &fsp);
1420 if (!NT_STATUS_IS_OK(status)) {
1421 if (NT_STATUS_EQUAL(status,
1422 NT_STATUS_FILE_IS_A_DIRECTORY)) {
1425 * Fail the open if it was explicitly a non-directory file.
1428 if (create_options & FILE_NON_DIRECTORY_FILE) {
1429 restore_case_semantics(conn, file_attributes);
1430 return ERROR_FORCE_NT(NT_STATUS_FILE_IS_A_DIRECTORY);
1433 oplock_request = 0;
1434 status = open_directory(conn, fname, &sbuf,
1435 access_mask,
1436 share_access,
1437 create_disposition,
1438 create_options,
1439 new_file_attributes,
1440 &info, &fsp);
1445 restore_case_semantics(conn, file_attributes);
1446 if(!NT_STATUS_IS_OK(status)) {
1448 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1449 /* We have re-scheduled this call. */
1450 return -1;
1453 return ERROR_OPEN(status);
1457 * According to the MS documentation, the only time the security
1458 * descriptor is applied to the opened file is iff we *created* the
1459 * file; an existing file stays the same.
1461 * Also, it seems (from observation) that you can open the file with
1462 * any access mask but you can still write the sd. We need to override
1463 * the granted access before we call set_sd
1464 * Patch for bug #2242 from Tom Lackemann <cessnatomny@yahoo.com>.
1467 if (lp_nt_acl_support(SNUM(conn)) && sd_len && info == FILE_WAS_CREATED) {
1468 uint32 saved_access_mask = fsp->access_mask;
1470 /* We have already checked that sd_len <= data_count here. */
1472 fsp->access_mask = FILE_GENERIC_ALL;
1474 status = set_sd( fsp, data, sd_len, ALL_SECURITY_INFORMATION);
1475 if (!NT_STATUS_IS_OK(status)) {
1476 talloc_destroy(ctx);
1477 close_file(fsp,ERROR_CLOSE);
1478 restore_case_semantics(conn, file_attributes);
1479 return ERROR_NT(status);
1481 fsp->access_mask = saved_access_mask;
1484 if (ea_len && (info == FILE_WAS_CREATED)) {
1485 status = set_ea(conn, fsp, fname, ea_list);
1486 if (!NT_STATUS_IS_OK(status)) {
1487 close_file(fsp,ERROR_CLOSE);
1488 restore_case_semantics(conn, file_attributes);
1489 return ERROR_NT(status);
1493 restore_case_semantics(conn, file_attributes);
1495 file_len = sbuf.st_size;
1496 fattr = dos_mode(conn,fname,&sbuf);
1497 if(fattr == 0) {
1498 fattr = FILE_ATTRIBUTE_NORMAL;
1500 if (!fsp->is_directory && (fattr & aDIR)) {
1501 close_file(fsp,ERROR_CLOSE);
1502 return ERROR_DOS(ERRDOS,ERRnoaccess);
1505 /* Save the requested allocation size. */
1506 if ((info == FILE_WAS_CREATED) || (info == FILE_WAS_OVERWRITTEN)) {
1507 SMB_BIG_UINT allocation_size = (SMB_BIG_UINT)IVAL(params,12);
1508 #ifdef LARGE_SMB_OFF_T
1509 allocation_size |= (((SMB_BIG_UINT)IVAL(params,16)) << 32);
1510 #endif
1511 if (allocation_size && (allocation_size > file_len)) {
1512 fsp->initial_allocation_size = smb_roundup(fsp->conn, allocation_size);
1513 if (fsp->is_directory) {
1514 close_file(fsp,ERROR_CLOSE);
1515 /* Can't set allocation size on a directory. */
1516 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
1518 if (vfs_allocate_file_space(fsp, fsp->initial_allocation_size) == -1) {
1519 close_file(fsp,ERROR_CLOSE);
1520 return ERROR_NT(NT_STATUS_DISK_FULL);
1522 } else {
1523 fsp->initial_allocation_size = smb_roundup(fsp->conn, (SMB_BIG_UINT)file_len);
1528 * If the caller set the extended oplock request bit
1529 * and we granted one (by whatever means) - set the
1530 * correct bit for extended oplock reply.
1533 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1534 extended_oplock_granted = True;
1537 if(oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1538 extended_oplock_granted = True;
1541 /* Realloc the size of parameters and data we will return */
1542 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1543 /* Extended response is 32 more byyes. */
1544 param_len = 101;
1545 } else {
1546 param_len = 69;
1548 params = nttrans_realloc(ppparams, param_len);
1549 if(params == NULL) {
1550 return ERROR_DOS(ERRDOS,ERRnomem);
1553 p = params;
1554 if (extended_oplock_granted) {
1555 if (flags & REQUEST_BATCH_OPLOCK) {
1556 SCVAL(p,0, BATCH_OPLOCK_RETURN);
1557 } else {
1558 SCVAL(p,0, EXCLUSIVE_OPLOCK_RETURN);
1560 } else if (fsp->oplock_type == LEVEL_II_OPLOCK) {
1561 SCVAL(p,0, LEVEL_II_OPLOCK_RETURN);
1562 } else {
1563 SCVAL(p,0,NO_OPLOCK_RETURN);
1566 p += 2;
1567 SSVAL(p,0,fsp->fnum);
1568 p += 2;
1569 if ((create_disposition == FILE_SUPERSEDE) && (info == FILE_WAS_OVERWRITTEN)) {
1570 SIVAL(p,0,FILE_WAS_SUPERSEDED);
1571 } else {
1572 SIVAL(p,0,info);
1574 p += 8;
1576 /* Create time. */
1577 c_timespec = get_create_timespec(&sbuf,lp_fake_dir_create_times(SNUM(conn)));
1578 a_timespec = get_atimespec(&sbuf);
1579 m_timespec = get_mtimespec(&sbuf);
1581 if (lp_dos_filetime_resolution(SNUM(conn))) {
1582 dos_filetime_timespec(&c_timespec);
1583 dos_filetime_timespec(&a_timespec);
1584 dos_filetime_timespec(&m_timespec);
1587 put_long_date_timespec(p, c_timespec); /* create time. */
1588 p += 8;
1589 put_long_date_timespec(p, a_timespec); /* access time */
1590 p += 8;
1591 put_long_date_timespec(p, m_timespec); /* write time */
1592 p += 8;
1593 put_long_date_timespec(p, m_timespec); /* change time */
1594 p += 8;
1595 SIVAL(p,0,fattr); /* File Attributes. */
1596 p += 4;
1597 SOFF_T(p, 0, get_allocation_size(conn,fsp,&sbuf));
1598 p += 8;
1599 SOFF_T(p,0,file_len);
1600 p += 8;
1601 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1602 SSVAL(p,2,0x7);
1604 p += 4;
1605 SCVAL(p,0,fsp->is_directory ? 1 : 0);
1607 if (flags & EXTENDED_RESPONSE_REQUIRED) {
1608 uint32 perms = 0;
1609 p += 25;
1610 if (fsp->is_directory || can_write_to_file(conn, fname, &sbuf)) {
1611 perms = FILE_GENERIC_ALL;
1612 } else {
1613 perms = FILE_GENERIC_READ|FILE_EXECUTE;
1615 SIVAL(p,0,perms);
1618 DEBUG(5,("call_nt_transact_create: open name = %s\n", fname));
1620 /* Send the required number of replies */
1621 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, params, param_len, *ppdata, 0);
1623 return -1;
1626 /****************************************************************************
1627 Reply to a NT CANCEL request.
1628 conn POINTER CAN BE NULL HERE !
1629 ****************************************************************************/
1631 int reply_ntcancel(connection_struct *conn,
1632 char *inbuf,char *outbuf,int length,int bufsize)
1635 * Go through and cancel any pending change notifies.
1638 int mid = SVAL(inbuf,smb_mid);
1639 START_PROFILE(SMBntcancel);
1640 remove_pending_change_notify_requests_by_mid(mid);
1641 remove_pending_lock_requests_by_mid(mid);
1642 srv_cancel_sign_response(mid);
1644 DEBUG(3,("reply_ntcancel: cancel called on mid = %d.\n", mid));
1646 END_PROFILE(SMBntcancel);
1647 return(-1);
1650 /****************************************************************************
1651 Copy a file.
1652 ****************************************************************************/
1654 static NTSTATUS copy_internals(connection_struct *conn, char *oldname, char *newname, uint32 attrs)
1656 SMB_STRUCT_STAT sbuf1, sbuf2;
1657 pstring last_component_oldname;
1658 pstring last_component_newname;
1659 files_struct *fsp1,*fsp2;
1660 uint32 fattr;
1661 int info;
1662 SMB_OFF_T ret=-1;
1663 NTSTATUS status = NT_STATUS_OK;
1665 ZERO_STRUCT(sbuf1);
1666 ZERO_STRUCT(sbuf2);
1668 if (!CAN_WRITE(conn)) {
1669 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1672 status = unix_convert(conn, oldname, False, last_component_oldname, &sbuf1);
1673 if (!NT_STATUS_IS_OK(status)) {
1674 return status;
1677 status = check_name(conn, oldname);
1678 if (!NT_STATUS_IS_OK(status)) {
1679 return status;
1682 /* Source must already exist. */
1683 if (!VALID_STAT(sbuf1)) {
1684 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
1686 /* Ensure attributes match. */
1687 fattr = dos_mode(conn,oldname,&sbuf1);
1688 if ((fattr & ~attrs) & (aHIDDEN | aSYSTEM)) {
1689 return NT_STATUS_NO_SUCH_FILE;
1692 status = unix_convert(conn, newname, False, last_component_newname, &sbuf2);
1693 if (!NT_STATUS_IS_OK(status)) {
1694 return status;
1697 status = check_name(conn, newname);
1698 if (!NT_STATUS_IS_OK(status)) {
1699 return status;
1702 /* Disallow if newname already exists. */
1703 if (VALID_STAT(sbuf2)) {
1704 return NT_STATUS_OBJECT_NAME_COLLISION;
1707 /* No links from a directory. */
1708 if (S_ISDIR(sbuf1.st_mode)) {
1709 return NT_STATUS_FILE_IS_A_DIRECTORY;
1712 /* Ensure this is within the share. */
1713 status = reduce_name(conn, oldname);
1714 if (!NT_STATUS_IS_OK(status)) {
1715 return status;
1718 DEBUG(10,("copy_internals: doing file copy %s to %s\n", oldname, newname));
1720 status = open_file_ntcreate(conn,oldname,&sbuf1,
1721 FILE_READ_DATA, /* Read-only. */
1722 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
1723 FILE_OPEN,
1724 0, /* No create options. */
1725 FILE_ATTRIBUTE_NORMAL,
1726 NO_OPLOCK,
1727 &info, &fsp1);
1729 if (!NT_STATUS_IS_OK(status)) {
1730 return status;
1733 status = open_file_ntcreate(conn,newname,&sbuf2,
1734 FILE_WRITE_DATA, /* Read-only. */
1735 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
1736 FILE_CREATE,
1737 0, /* No create options. */
1738 fattr,
1739 NO_OPLOCK,
1740 &info, &fsp2);
1742 if (!NT_STATUS_IS_OK(status)) {
1743 close_file(fsp1,ERROR_CLOSE);
1744 return status;
1747 if (sbuf1.st_size) {
1748 ret = vfs_transfer_file(fsp1, fsp2, sbuf1.st_size);
1752 * As we are opening fsp1 read-only we only expect
1753 * an error on close on fsp2 if we are out of space.
1754 * Thus we don't look at the error return from the
1755 * close of fsp1.
1757 close_file(fsp1,NORMAL_CLOSE);
1759 /* Ensure the modtime is set correctly on the destination file. */
1760 fsp_set_pending_modtime(fsp2, get_mtimespec(&sbuf1));
1762 status = close_file(fsp2,NORMAL_CLOSE);
1764 /* Grrr. We have to do this as open_file_ntcreate adds aARCH when it
1765 creates the file. This isn't the correct thing to do in the copy
1766 case. JRA */
1767 file_set_dosmode(conn, newname, fattr, &sbuf2,
1768 parent_dirname(newname));
1770 if (ret < (SMB_OFF_T)sbuf1.st_size) {
1771 return NT_STATUS_DISK_FULL;
1774 if (!NT_STATUS_IS_OK(status)) {
1775 DEBUG(3,("copy_internals: Error %s copy file %s to %s\n",
1776 nt_errstr(status), oldname, newname));
1778 return status;
1781 /****************************************************************************
1782 Reply to a NT rename request.
1783 ****************************************************************************/
1785 int reply_ntrename(connection_struct *conn,
1786 char *inbuf,char *outbuf,int length,int bufsize)
1788 int outsize = 0;
1789 pstring oldname;
1790 pstring newname;
1791 char *p;
1792 NTSTATUS status;
1793 BOOL src_has_wcard = False;
1794 BOOL dest_has_wcard = False;
1795 uint32 attrs = SVAL(inbuf,smb_vwv0);
1796 uint16 rename_type = SVAL(inbuf,smb_vwv1);
1798 START_PROFILE(SMBntrename);
1800 p = smb_buf(inbuf) + 1;
1801 p += srvstr_get_path_wcard(inbuf, oldname, p, sizeof(oldname), 0, STR_TERMINATE, &status, &src_has_wcard);
1802 if (!NT_STATUS_IS_OK(status)) {
1803 END_PROFILE(SMBntrename);
1804 return ERROR_NT(status);
1807 if( is_ntfs_stream_name(oldname)) {
1808 /* Can't rename a stream. */
1809 END_PROFILE(SMBntrename);
1810 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
1813 if (ms_has_wild(oldname)) {
1814 END_PROFILE(SMBntrename);
1815 return ERROR_NT(NT_STATUS_OBJECT_PATH_SYNTAX_BAD);
1818 p++;
1819 p += srvstr_get_path_wcard(inbuf, newname, p, sizeof(newname), 0, STR_TERMINATE, &status, &dest_has_wcard);
1820 if (!NT_STATUS_IS_OK(status)) {
1821 END_PROFILE(SMBntrename);
1822 return ERROR_NT(status);
1825 status = resolve_dfspath(conn, SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES, oldname);
1826 if (!NT_STATUS_IS_OK(status)) {
1827 END_PROFILE(SMBntrename);
1828 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1829 return ERROR_BOTH(NT_STATUS_PATH_NOT_COVERED, ERRSRV, ERRbadpath);
1831 return ERROR_NT(status);
1834 status = resolve_dfspath(conn, SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES, newname);
1835 if (!NT_STATUS_IS_OK(status)) {
1836 END_PROFILE(SMBntrename);
1837 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1838 return ERROR_BOTH(NT_STATUS_PATH_NOT_COVERED, ERRSRV, ERRbadpath);
1840 return ERROR_NT(status);
1843 DEBUG(3,("reply_ntrename : %s -> %s\n",oldname,newname));
1845 switch(rename_type) {
1846 case RENAME_FLAG_RENAME:
1847 status = rename_internals(conn, oldname, newname, attrs, False, src_has_wcard, dest_has_wcard);
1848 break;
1849 case RENAME_FLAG_HARD_LINK:
1850 if (src_has_wcard || dest_has_wcard) {
1851 /* No wildcards. */
1852 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1853 } else {
1854 status = hardlink_internals(conn, oldname, newname);
1856 break;
1857 case RENAME_FLAG_COPY:
1858 if (src_has_wcard || dest_has_wcard) {
1859 /* No wildcards. */
1860 status = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
1861 } else {
1862 status = copy_internals(conn, oldname, newname, attrs);
1864 break;
1865 case RENAME_FLAG_MOVE_CLUSTER_INFORMATION:
1866 status = NT_STATUS_INVALID_PARAMETER;
1867 break;
1868 default:
1869 status = NT_STATUS_ACCESS_DENIED; /* Default error. */
1870 break;
1873 if (!NT_STATUS_IS_OK(status)) {
1874 END_PROFILE(SMBntrename);
1875 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1876 /* We have re-scheduled this call. */
1877 return -1;
1879 return ERROR_NT(status);
1882 outsize = set_message(outbuf,0,0,False);
1884 END_PROFILE(SMBntrename);
1885 return(outsize);
1888 /****************************************************************************
1889 Reply to a notify change - queue the request and
1890 don't allow a directory to be opened.
1891 ****************************************************************************/
1893 static int call_nt_transact_notify_change(connection_struct *conn, char *inbuf,
1894 char *outbuf, int length,
1895 int bufsize,
1896 uint16 **ppsetup, uint32 setup_count,
1897 char **ppparams,
1898 uint32 parameter_count,
1899 char **ppdata, uint32 data_count,
1900 uint32 max_data_count,
1901 uint32 max_param_count)
1903 uint16 *setup = *ppsetup;
1904 files_struct *fsp;
1905 uint32 filter;
1906 NTSTATUS status;
1907 BOOL recursive;
1909 if(setup_count < 6) {
1910 return ERROR_DOS(ERRDOS,ERRbadfunc);
1913 fsp = file_fsp((char *)setup,4);
1914 filter = IVAL(setup, 0);
1915 recursive = (SVAL(setup, 6) != 0) ? True : False;
1917 DEBUG(3,("call_nt_transact_notify_change\n"));
1919 if(!fsp) {
1920 return ERROR_DOS(ERRDOS,ERRbadfid);
1924 char *filter_string;
1926 if (!(filter_string = notify_filter_string(NULL, filter))) {
1927 return ERROR_NT(NT_STATUS_NO_MEMORY);
1930 DEBUG(3,("call_nt_transact_notify_change: notify change "
1931 "called on %s, filter = %s, recursive = %d\n",
1932 fsp->fsp_name, filter_string, recursive));
1934 TALLOC_FREE(filter_string);
1937 if((!fsp->is_directory) || (conn != fsp->conn)) {
1938 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
1941 if (fsp->notify == NULL) {
1943 status = change_notify_create(fsp, filter, recursive);
1945 if (!NT_STATUS_IS_OK(status)) {
1946 DEBUG(10, ("change_notify_create returned %s\n",
1947 nt_errstr(status)));
1948 return ERROR_NT(status);
1952 if (fsp->notify->num_changes != 0) {
1955 * We've got changes pending, respond immediately
1959 * TODO: write a torture test to check the filtering behaviour
1960 * here.
1963 change_notify_reply(inbuf, max_param_count, fsp->notify);
1966 * change_notify_reply() above has independently sent its
1967 * results
1969 return -1;
1973 * No changes pending, queue the request
1976 status = change_notify_add_request(inbuf, max_param_count, filter,
1977 recursive, fsp);
1978 if (!NT_STATUS_IS_OK(status)) {
1979 return ERROR_NT(status);
1982 return -1;
1985 /****************************************************************************
1986 Reply to an NT transact rename command.
1987 ****************************************************************************/
1989 static int call_nt_transact_rename(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
1990 uint16 **ppsetup, uint32 setup_count,
1991 char **ppparams, uint32 parameter_count,
1992 char **ppdata, uint32 data_count, uint32 max_data_count)
1994 char *params = *ppparams;
1995 pstring new_name;
1996 files_struct *fsp = NULL;
1997 BOOL replace_if_exists = False;
1998 BOOL dest_has_wcard = False;
1999 NTSTATUS status;
2001 if(parameter_count < 5) {
2002 return ERROR_DOS(ERRDOS,ERRbadfunc);
2005 fsp = file_fsp(params, 0);
2006 replace_if_exists = (SVAL(params,2) & RENAME_REPLACE_IF_EXISTS) ? True : False;
2007 CHECK_FSP(fsp, conn);
2008 srvstr_get_path_wcard(inbuf, new_name, params+4, sizeof(new_name), parameter_count - 4,
2009 STR_TERMINATE, &status, &dest_has_wcard);
2010 if (!NT_STATUS_IS_OK(status)) {
2011 return ERROR_NT(status);
2014 status = rename_internals(conn, fsp->fsp_name,
2015 new_name, 0, replace_if_exists, False, dest_has_wcard);
2017 if (!NT_STATUS_IS_OK(status)) {
2018 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
2019 /* We have re-scheduled this call. */
2020 return -1;
2022 return ERROR_NT(status);
2026 * Rename was successful.
2028 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0, NULL, 0);
2030 DEBUG(3,("nt transact rename from = %s, to = %s succeeded.\n",
2031 fsp->fsp_name, new_name));
2033 return -1;
2036 /******************************************************************************
2037 Fake up a completely empty SD.
2038 *******************************************************************************/
2040 static size_t get_null_nt_acl(TALLOC_CTX *mem_ctx, SEC_DESC **ppsd)
2042 size_t sd_size;
2044 *ppsd = make_standard_sec_desc( mem_ctx, &global_sid_World, &global_sid_World, NULL, &sd_size);
2045 if(!*ppsd) {
2046 DEBUG(0,("get_null_nt_acl: Unable to malloc space for security descriptor.\n"));
2047 sd_size = 0;
2050 return sd_size;
2053 /****************************************************************************
2054 Reply to query a security descriptor.
2055 ****************************************************************************/
2057 static int call_nt_transact_query_security_desc(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
2058 uint16 **ppsetup, uint32 setup_count,
2059 char **ppparams, uint32 parameter_count,
2060 char **ppdata, uint32 data_count, uint32 max_data_count)
2062 char *params = *ppparams;
2063 char *data = *ppdata;
2064 prs_struct pd;
2065 SEC_DESC *psd = NULL;
2066 size_t sd_size;
2067 uint32 security_info_wanted;
2068 TALLOC_CTX *mem_ctx;
2069 files_struct *fsp = NULL;
2071 if(parameter_count < 8) {
2072 return ERROR_DOS(ERRDOS,ERRbadfunc);
2075 fsp = file_fsp(params,0);
2076 if(!fsp) {
2077 return ERROR_DOS(ERRDOS,ERRbadfid);
2080 security_info_wanted = IVAL(params,4);
2082 DEBUG(3,("call_nt_transact_query_security_desc: file = %s, info_wanted = 0x%x\n", fsp->fsp_name,
2083 (unsigned int)security_info_wanted ));
2085 params = nttrans_realloc(ppparams, 4);
2086 if(params == NULL) {
2087 return ERROR_DOS(ERRDOS,ERRnomem);
2090 if ((mem_ctx = talloc_init("call_nt_transact_query_security_desc")) == NULL) {
2091 DEBUG(0,("call_nt_transact_query_security_desc: talloc_init failed.\n"));
2092 return ERROR_DOS(ERRDOS,ERRnomem);
2096 * Get the permissions to return.
2099 if (!lp_nt_acl_support(SNUM(conn))) {
2100 sd_size = get_null_nt_acl(mem_ctx, &psd);
2101 } else {
2102 sd_size = SMB_VFS_FGET_NT_ACL(fsp, fsp->fh->fd, security_info_wanted, &psd);
2105 if (sd_size == 0) {
2106 talloc_destroy(mem_ctx);
2107 return(UNIXERROR(ERRDOS,ERRnoaccess));
2110 DEBUG(3,("call_nt_transact_query_security_desc: sd_size = %lu.\n",(unsigned long)sd_size));
2112 SIVAL(params,0,(uint32)sd_size);
2114 if(max_data_count < sd_size) {
2116 send_nt_replies(outbuf, bufsize, NT_STATUS_BUFFER_TOO_SMALL,
2117 params, 4, *ppdata, 0);
2118 talloc_destroy(mem_ctx);
2119 return -1;
2123 * Allocate the data we will point this at.
2126 data = nttrans_realloc(ppdata, sd_size);
2127 if(data == NULL) {
2128 talloc_destroy(mem_ctx);
2129 return ERROR_DOS(ERRDOS,ERRnomem);
2133 * Init the parse struct we will marshall into.
2136 prs_init(&pd, 0, mem_ctx, MARSHALL);
2139 * Setup the prs_struct to point at the memory we just
2140 * allocated.
2143 prs_give_memory( &pd, data, (uint32)sd_size, False);
2146 * Finally, linearize into the outgoing buffer.
2149 if(!sec_io_desc( "sd data", &psd, &pd, 1)) {
2150 DEBUG(0,("call_nt_transact_query_security_desc: Error in marshalling \
2151 security descriptor.\n"));
2153 * Return access denied for want of a better error message..
2155 talloc_destroy(mem_ctx);
2156 return(UNIXERROR(ERRDOS,ERRnoaccess));
2160 * Now we can delete the security descriptor.
2163 talloc_destroy(mem_ctx);
2165 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, params, 4, data,
2166 (int)sd_size);
2167 return -1;
2170 /****************************************************************************
2171 Reply to set a security descriptor. Map to UNIX perms or POSIX ACLs.
2172 ****************************************************************************/
2174 static int call_nt_transact_set_security_desc(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
2175 uint16 **ppsetup, uint32 setup_count,
2176 char **ppparams, uint32 parameter_count,
2177 char **ppdata, uint32 data_count, uint32 max_data_count)
2179 char *params= *ppparams;
2180 char *data = *ppdata;
2181 files_struct *fsp = NULL;
2182 uint32 security_info_sent = 0;
2183 NTSTATUS nt_status;
2185 if(parameter_count < 8) {
2186 return ERROR_DOS(ERRDOS,ERRbadfunc);
2189 if((fsp = file_fsp(params,0)) == NULL) {
2190 return ERROR_DOS(ERRDOS,ERRbadfid);
2193 if(!lp_nt_acl_support(SNUM(conn))) {
2194 goto done;
2197 security_info_sent = IVAL(params,4);
2199 DEBUG(3,("call_nt_transact_set_security_desc: file = %s, sent 0x%x\n", fsp->fsp_name,
2200 (unsigned int)security_info_sent ));
2202 if (data_count == 0) {
2203 return ERROR_DOS(ERRDOS, ERRnoaccess);
2206 if (!NT_STATUS_IS_OK(nt_status = set_sd( fsp, data, data_count, security_info_sent))) {
2207 return ERROR_NT(nt_status);
2210 done:
2212 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0, NULL, 0);
2213 return -1;
2216 /****************************************************************************
2217 Reply to NT IOCTL
2218 ****************************************************************************/
2220 static int call_nt_transact_ioctl(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
2221 uint16 **ppsetup, uint32 setup_count,
2222 char **ppparams, uint32 parameter_count,
2223 char **ppdata, uint32 data_count, uint32 max_data_count)
2225 uint32 function;
2226 uint16 fidnum;
2227 files_struct *fsp;
2228 uint8 isFSctl;
2229 uint8 compfilter;
2230 static BOOL logged_message;
2231 char *pdata = *ppdata;
2233 if (setup_count != 8) {
2234 DEBUG(3,("call_nt_transact_ioctl: invalid setup count %d\n", setup_count));
2235 return ERROR_NT(NT_STATUS_NOT_SUPPORTED);
2238 function = IVAL(*ppsetup, 0);
2239 fidnum = SVAL(*ppsetup, 4);
2240 isFSctl = CVAL(*ppsetup, 6);
2241 compfilter = CVAL(*ppsetup, 7);
2243 DEBUG(10,("call_nt_transact_ioctl: function[0x%08X] FID[0x%04X] isFSctl[0x%02X] compfilter[0x%02X]\n",
2244 function, fidnum, isFSctl, compfilter));
2246 fsp=file_fsp((char *)*ppsetup, 4);
2247 /* this check is done in each implemented function case for now
2248 because I don't want to break anything... --metze
2249 FSP_BELONGS_CONN(fsp,conn);*/
2251 switch (function) {
2252 case FSCTL_SET_SPARSE:
2253 /* pretend this succeeded - tho strictly we should
2254 mark the file sparse (if the local fs supports it)
2255 so we can know if we need to pre-allocate or not */
2257 DEBUG(10,("FSCTL_SET_SPARSE: called on FID[0x%04X](but not implemented)\n", fidnum));
2258 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0, NULL,
2260 return -1;
2262 case FSCTL_0x000900C0:
2263 /* pretend this succeeded - don't know what this really is
2264 but works ok like this --metze
2267 DEBUG(10,("FSCTL_0x000900C0: called on FID[0x%04X](but not implemented)\n",fidnum));
2268 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0, NULL,
2270 return -1;
2272 case FSCTL_GET_REPARSE_POINT:
2273 /* pretend this fail - my winXP does it like this
2274 * --metze
2277 DEBUG(10,("FSCTL_GET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
2278 send_nt_replies(outbuf, bufsize, NT_STATUS_NOT_A_REPARSE_POINT,
2279 NULL, 0, NULL, 0);
2280 return -1;
2282 case FSCTL_SET_REPARSE_POINT:
2283 /* pretend this fail - I'm assuming this because of the FSCTL_GET_REPARSE_POINT case.
2284 * --metze
2287 DEBUG(10,("FSCTL_SET_REPARSE_POINT: called on FID[0x%04X](but not implemented)\n",fidnum));
2288 send_nt_replies(outbuf, bufsize, NT_STATUS_NOT_A_REPARSE_POINT,
2289 NULL, 0, NULL, 0);
2290 return -1;
2292 case FSCTL_GET_SHADOW_COPY_DATA: /* don't know if this name is right...*/
2295 * This is called to retrieve the number of Shadow Copies (a.k.a. snapshots)
2296 * and return their volume names. If max_data_count is 16, then it is just
2297 * asking for the number of volumes and length of the combined names.
2299 * pdata is the data allocated by our caller, but that uses
2300 * total_data_count (which is 0 in our case) rather than max_data_count.
2301 * Allocate the correct amount and return the pointer to let
2302 * it be deallocated when we return.
2304 SHADOW_COPY_DATA *shadow_data = NULL;
2305 TALLOC_CTX *shadow_mem_ctx = NULL;
2306 BOOL labels = False;
2307 uint32 labels_data_count = 0;
2308 uint32 i;
2309 char *cur_pdata;
2311 FSP_BELONGS_CONN(fsp,conn);
2313 if (max_data_count < 16) {
2314 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) < 16 is invalid!\n",
2315 max_data_count));
2316 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
2319 if (max_data_count > 16) {
2320 labels = True;
2323 shadow_mem_ctx = talloc_init("SHADOW_COPY_DATA");
2324 if (shadow_mem_ctx == NULL) {
2325 DEBUG(0,("talloc_init(SHADOW_COPY_DATA) failed!\n"));
2326 return ERROR_NT(NT_STATUS_NO_MEMORY);
2329 shadow_data = TALLOC_ZERO_P(shadow_mem_ctx,SHADOW_COPY_DATA);
2330 if (shadow_data == NULL) {
2331 DEBUG(0,("TALLOC_ZERO() failed!\n"));
2332 talloc_destroy(shadow_mem_ctx);
2333 return ERROR_NT(NT_STATUS_NO_MEMORY);
2336 shadow_data->mem_ctx = shadow_mem_ctx;
2339 * Call the VFS routine to actually do the work.
2341 if (SMB_VFS_GET_SHADOW_COPY_DATA(fsp, shadow_data, labels)!=0) {
2342 talloc_destroy(shadow_data->mem_ctx);
2343 if (errno == ENOSYS) {
2344 DEBUG(5,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, not supported.\n",
2345 conn->connectpath));
2346 return ERROR_NT(NT_STATUS_NOT_SUPPORTED);
2347 } else {
2348 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: connectpath %s, failed.\n",
2349 conn->connectpath));
2350 return ERROR_NT(NT_STATUS_UNSUCCESSFUL);
2354 labels_data_count = (shadow_data->num_volumes*2*sizeof(SHADOW_COPY_LABEL))+2;
2356 if (!labels) {
2357 data_count = 16;
2358 } else {
2359 data_count = 12+labels_data_count+4;
2362 if (max_data_count<data_count) {
2363 DEBUG(0,("FSCTL_GET_SHADOW_COPY_DATA: max_data_count(%u) too small (%u) bytes needed!\n",
2364 max_data_count,data_count));
2365 talloc_destroy(shadow_data->mem_ctx);
2366 return ERROR_NT(NT_STATUS_BUFFER_TOO_SMALL);
2369 pdata = nttrans_realloc(ppdata, data_count);
2370 if (pdata == NULL) {
2371 talloc_destroy(shadow_data->mem_ctx);
2372 return ERROR_NT(NT_STATUS_NO_MEMORY);
2375 cur_pdata = pdata;
2377 /* num_volumes 4 bytes */
2378 SIVAL(pdata,0,shadow_data->num_volumes);
2380 if (labels) {
2381 /* num_labels 4 bytes */
2382 SIVAL(pdata,4,shadow_data->num_volumes);
2385 /* needed_data_count 4 bytes */
2386 SIVAL(pdata,8,labels_data_count);
2388 cur_pdata+=12;
2390 DEBUG(10,("FSCTL_GET_SHADOW_COPY_DATA: %u volumes for path[%s].\n",
2391 shadow_data->num_volumes,fsp->fsp_name));
2392 if (labels && shadow_data->labels) {
2393 for (i=0;i<shadow_data->num_volumes;i++) {
2394 srvstr_push(outbuf, cur_pdata, shadow_data->labels[i], 2*sizeof(SHADOW_COPY_LABEL), STR_UNICODE|STR_TERMINATE);
2395 cur_pdata+=2*sizeof(SHADOW_COPY_LABEL);
2396 DEBUGADD(10,("Label[%u]: '%s'\n",i,shadow_data->labels[i]));
2400 talloc_destroy(shadow_data->mem_ctx);
2402 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0,
2403 pdata, data_count);
2405 return -1;
2408 case FSCTL_FIND_FILES_BY_SID: /* I hope this name is right */
2410 /* pretend this succeeded -
2412 * we have to send back a list with all files owned by this SID
2414 * but I have to check that --metze
2416 DOM_SID sid;
2417 uid_t uid;
2418 size_t sid_len = MIN(data_count-4,SID_MAX_SIZE);
2420 DEBUG(10,("FSCTL_FIND_FILES_BY_SID: called on FID[0x%04X]\n",fidnum));
2422 FSP_BELONGS_CONN(fsp,conn);
2424 /* unknown 4 bytes: this is not the length of the sid :-( */
2425 /*unknown = IVAL(pdata,0);*/
2427 sid_parse(pdata+4,sid_len,&sid);
2428 DEBUGADD(10,("for SID: %s\n",sid_string_static(&sid)));
2430 if (!sid_to_uid(&sid, &uid)) {
2431 DEBUG(0,("sid_to_uid: failed, sid[%s] sid_len[%lu]\n",
2432 sid_string_static(&sid),(unsigned long)sid_len));
2433 uid = (-1);
2436 /* we can take a look at the find source :-)
2438 * find ./ -uid $uid -name '*' is what we need here
2441 * and send 4bytes len and then NULL terminated unicode strings
2442 * for each file
2444 * but I don't know how to deal with the paged results
2445 * (maybe we can hang the result anywhere in the fsp struct)
2447 * we don't send all files at once
2448 * and at the next we should *not* start from the beginning,
2449 * so we have to cache the result
2451 * --metze
2454 /* this works for now... */
2455 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, NULL, 0,
2456 NULL, 0);
2457 return -1;
2459 default:
2460 if (!logged_message) {
2461 logged_message = True; /* Only print this once... */
2462 DEBUG(0,("call_nt_transact_ioctl(0x%x): Currently not implemented.\n",
2463 function));
2467 return ERROR_NT(NT_STATUS_NOT_SUPPORTED);
2471 #ifdef HAVE_SYS_QUOTAS
2472 /****************************************************************************
2473 Reply to get user quota
2474 ****************************************************************************/
2476 static int call_nt_transact_get_user_quota(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
2477 uint16 **ppsetup, uint32 setup_count,
2478 char **ppparams, uint32 parameter_count,
2479 char **ppdata, uint32 data_count, uint32 max_data_count)
2481 NTSTATUS nt_status = NT_STATUS_OK;
2482 char *params = *ppparams;
2483 char *pdata = *ppdata;
2484 char *entry;
2485 int data_len=0,param_len=0;
2486 int qt_len=0;
2487 int entry_len = 0;
2488 files_struct *fsp = NULL;
2489 uint16 level = 0;
2490 size_t sid_len;
2491 DOM_SID sid;
2492 BOOL start_enum = True;
2493 SMB_NTQUOTA_STRUCT qt;
2494 SMB_NTQUOTA_LIST *tmp_list;
2495 SMB_NTQUOTA_HANDLE *qt_handle = NULL;
2497 ZERO_STRUCT(qt);
2499 /* access check */
2500 if (current_user.ut.uid != 0) {
2501 DEBUG(1,("get_user_quota: access_denied service [%s] user [%s]\n",
2502 lp_servicename(SNUM(conn)),conn->user));
2503 return ERROR_DOS(ERRDOS,ERRnoaccess);
2507 * Ensure minimum number of parameters sent.
2510 if (parameter_count < 4) {
2511 DEBUG(0,("TRANSACT_GET_USER_QUOTA: requires %d >= 4 bytes parameters\n",parameter_count));
2512 return ERROR_DOS(ERRDOS,ERRinvalidparam);
2515 /* maybe we can check the quota_fnum */
2516 fsp = file_fsp(params,0);
2517 if (!CHECK_NTQUOTA_HANDLE_OK(fsp,conn)) {
2518 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2519 return ERROR_NT(NT_STATUS_INVALID_HANDLE);
2522 /* the NULL pointer checking for fsp->fake_file_handle->pd
2523 * is done by CHECK_NTQUOTA_HANDLE_OK()
2525 qt_handle = (SMB_NTQUOTA_HANDLE *)fsp->fake_file_handle->pd;
2527 level = SVAL(params,2);
2529 /* unknown 12 bytes leading in params */
2531 switch (level) {
2532 case TRANSACT_GET_USER_QUOTA_LIST_CONTINUE:
2533 /* seems that we should continue with the enum here --metze */
2535 if (qt_handle->quota_list!=NULL &&
2536 qt_handle->tmp_list==NULL) {
2538 /* free the list */
2539 free_ntquota_list(&(qt_handle->quota_list));
2541 /* Realloc the size of parameters and data we will return */
2542 param_len = 4;
2543 params = nttrans_realloc(ppparams, param_len);
2544 if(params == NULL) {
2545 return ERROR_DOS(ERRDOS,ERRnomem);
2548 data_len = 0;
2549 SIVAL(params,0,data_len);
2551 break;
2554 start_enum = False;
2556 case TRANSACT_GET_USER_QUOTA_LIST_START:
2558 if (qt_handle->quota_list==NULL &&
2559 qt_handle->tmp_list==NULL) {
2560 start_enum = True;
2563 if (start_enum && vfs_get_user_ntquota_list(fsp,&(qt_handle->quota_list))!=0)
2564 return ERROR_DOS(ERRSRV,ERRerror);
2566 /* Realloc the size of parameters and data we will return */
2567 param_len = 4;
2568 params = nttrans_realloc(ppparams, param_len);
2569 if(params == NULL) {
2570 return ERROR_DOS(ERRDOS,ERRnomem);
2573 /* we should not trust the value in max_data_count*/
2574 max_data_count = MIN(max_data_count,2048);
2576 pdata = nttrans_realloc(ppdata, max_data_count);/* should be max data count from client*/
2577 if(pdata == NULL) {
2578 return ERROR_DOS(ERRDOS,ERRnomem);
2581 entry = pdata;
2583 /* set params Size of returned Quota Data 4 bytes*/
2584 /* but set it later when we know it */
2586 /* for each entry push the data */
2588 if (start_enum) {
2589 qt_handle->tmp_list = qt_handle->quota_list;
2592 tmp_list = qt_handle->tmp_list;
2594 for (;((tmp_list!=NULL)&&((qt_len +40+SID_MAX_SIZE)<max_data_count));
2595 tmp_list=tmp_list->next,entry+=entry_len,qt_len+=entry_len) {
2597 sid_len = sid_size(&tmp_list->quotas->sid);
2598 entry_len = 40 + sid_len;
2600 /* nextoffset entry 4 bytes */
2601 SIVAL(entry,0,entry_len);
2603 /* then the len of the SID 4 bytes */
2604 SIVAL(entry,4,sid_len);
2606 /* unknown data 8 bytes SMB_BIG_UINT */
2607 SBIG_UINT(entry,8,(SMB_BIG_UINT)0); /* this is not 0 in windows...-metze*/
2609 /* the used disk space 8 bytes SMB_BIG_UINT */
2610 SBIG_UINT(entry,16,tmp_list->quotas->usedspace);
2612 /* the soft quotas 8 bytes SMB_BIG_UINT */
2613 SBIG_UINT(entry,24,tmp_list->quotas->softlim);
2615 /* the hard quotas 8 bytes SMB_BIG_UINT */
2616 SBIG_UINT(entry,32,tmp_list->quotas->hardlim);
2618 /* and now the SID */
2619 sid_linearize(entry+40, sid_len, &tmp_list->quotas->sid);
2622 qt_handle->tmp_list = tmp_list;
2624 /* overwrite the offset of the last entry */
2625 SIVAL(entry-entry_len,0,0);
2627 data_len = 4+qt_len;
2628 /* overwrite the params quota_data_len */
2629 SIVAL(params,0,data_len);
2631 break;
2633 case TRANSACT_GET_USER_QUOTA_FOR_SID:
2635 /* unknown 4 bytes IVAL(pdata,0) */
2637 if (data_count < 8) {
2638 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %d bytes data\n",data_count,8));
2639 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2642 sid_len = IVAL(pdata,4);
2643 /* Ensure this is less than 1mb. */
2644 if (sid_len > (1024*1024)) {
2645 return ERROR_DOS(ERRDOS,ERRnomem);
2648 if (data_count < 8+sid_len) {
2649 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: requires %d >= %lu bytes data\n",data_count,(unsigned long)(8+sid_len)));
2650 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2653 data_len = 4+40+sid_len;
2655 if (max_data_count < data_len) {
2656 DEBUG(0,("TRANSACT_GET_USER_QUOTA_FOR_SID: max_data_count(%d) < data_len(%d)\n",
2657 max_data_count, data_len));
2658 param_len = 4;
2659 SIVAL(params,0,data_len);
2660 data_len = 0;
2661 nt_status = NT_STATUS_BUFFER_TOO_SMALL;
2662 break;
2665 sid_parse(pdata+8,sid_len,&sid);
2667 if (vfs_get_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2668 ZERO_STRUCT(qt);
2670 * we have to return zero's in all fields
2671 * instead of returning an error here
2672 * --metze
2676 /* Realloc the size of parameters and data we will return */
2677 param_len = 4;
2678 params = nttrans_realloc(ppparams, param_len);
2679 if(params == NULL) {
2680 return ERROR_DOS(ERRDOS,ERRnomem);
2683 pdata = nttrans_realloc(ppdata, data_len);
2684 if(pdata == NULL) {
2685 return ERROR_DOS(ERRDOS,ERRnomem);
2688 entry = pdata;
2690 /* set params Size of returned Quota Data 4 bytes*/
2691 SIVAL(params,0,data_len);
2693 /* nextoffset entry 4 bytes */
2694 SIVAL(entry,0,0);
2696 /* then the len of the SID 4 bytes */
2697 SIVAL(entry,4,sid_len);
2699 /* unknown data 8 bytes SMB_BIG_UINT */
2700 SBIG_UINT(entry,8,(SMB_BIG_UINT)0); /* this is not 0 in windows...-mezte*/
2702 /* the used disk space 8 bytes SMB_BIG_UINT */
2703 SBIG_UINT(entry,16,qt.usedspace);
2705 /* the soft quotas 8 bytes SMB_BIG_UINT */
2706 SBIG_UINT(entry,24,qt.softlim);
2708 /* the hard quotas 8 bytes SMB_BIG_UINT */
2709 SBIG_UINT(entry,32,qt.hardlim);
2711 /* and now the SID */
2712 sid_linearize(entry+40, sid_len, &sid);
2714 break;
2716 default:
2717 DEBUG(0,("do_nt_transact_get_user_quota: fnum %d unknown level 0x%04hX\n",fsp->fnum,level));
2718 return ERROR_DOS(ERRSRV,ERRerror);
2719 break;
2722 send_nt_replies(outbuf, bufsize, nt_status, params, param_len,
2723 pdata, data_len);
2725 return -1;
2728 /****************************************************************************
2729 Reply to set user quota
2730 ****************************************************************************/
2732 static int call_nt_transact_set_user_quota(connection_struct *conn, char *inbuf, char *outbuf, int length, int bufsize,
2733 uint16 **ppsetup, uint32 setup_count,
2734 char **ppparams, uint32 parameter_count,
2735 char **ppdata, uint32 data_count, uint32 max_data_count)
2737 char *params = *ppparams;
2738 char *pdata = *ppdata;
2739 int data_len=0,param_len=0;
2740 SMB_NTQUOTA_STRUCT qt;
2741 size_t sid_len;
2742 DOM_SID sid;
2743 files_struct *fsp = NULL;
2745 ZERO_STRUCT(qt);
2747 /* access check */
2748 if (current_user.ut.uid != 0) {
2749 DEBUG(1,("set_user_quota: access_denied service [%s] user [%s]\n",
2750 lp_servicename(SNUM(conn)),conn->user));
2751 return ERROR_DOS(ERRDOS,ERRnoaccess);
2755 * Ensure minimum number of parameters sent.
2758 if (parameter_count < 2) {
2759 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= 2 bytes parameters\n",parameter_count));
2760 return ERROR_DOS(ERRDOS,ERRinvalidparam);
2763 /* maybe we can check the quota_fnum */
2764 fsp = file_fsp(params,0);
2765 if (!CHECK_NTQUOTA_HANDLE_OK(fsp,conn)) {
2766 DEBUG(3,("TRANSACT_GET_USER_QUOTA: no valid QUOTA HANDLE\n"));
2767 return ERROR_NT(NT_STATUS_INVALID_HANDLE);
2770 if (data_count < 40) {
2771 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %d bytes data\n",data_count,40));
2772 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2775 /* offset to next quota record.
2776 * 4 bytes IVAL(pdata,0)
2777 * unused here...
2780 /* sid len */
2781 sid_len = IVAL(pdata,4);
2783 if (data_count < 40+sid_len) {
2784 DEBUG(0,("TRANSACT_SET_USER_QUOTA: requires %d >= %lu bytes data\n",data_count,(unsigned long)40+sid_len));
2785 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2788 /* unknown 8 bytes in pdata
2789 * maybe its the change time in NTTIME
2792 /* the used space 8 bytes (SMB_BIG_UINT)*/
2793 qt.usedspace = (SMB_BIG_UINT)IVAL(pdata,16);
2794 #ifdef LARGE_SMB_OFF_T
2795 qt.usedspace |= (((SMB_BIG_UINT)IVAL(pdata,20)) << 32);
2796 #else /* LARGE_SMB_OFF_T */
2797 if ((IVAL(pdata,20) != 0)&&
2798 ((qt.usedspace != 0xFFFFFFFF)||
2799 (IVAL(pdata,20)!=0xFFFFFFFF))) {
2800 /* more than 32 bits? */
2801 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2803 #endif /* LARGE_SMB_OFF_T */
2805 /* the soft quotas 8 bytes (SMB_BIG_UINT)*/
2806 qt.softlim = (SMB_BIG_UINT)IVAL(pdata,24);
2807 #ifdef LARGE_SMB_OFF_T
2808 qt.softlim |= (((SMB_BIG_UINT)IVAL(pdata,28)) << 32);
2809 #else /* LARGE_SMB_OFF_T */
2810 if ((IVAL(pdata,28) != 0)&&
2811 ((qt.softlim != 0xFFFFFFFF)||
2812 (IVAL(pdata,28)!=0xFFFFFFFF))) {
2813 /* more than 32 bits? */
2814 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2816 #endif /* LARGE_SMB_OFF_T */
2818 /* the hard quotas 8 bytes (SMB_BIG_UINT)*/
2819 qt.hardlim = (SMB_BIG_UINT)IVAL(pdata,32);
2820 #ifdef LARGE_SMB_OFF_T
2821 qt.hardlim |= (((SMB_BIG_UINT)IVAL(pdata,36)) << 32);
2822 #else /* LARGE_SMB_OFF_T */
2823 if ((IVAL(pdata,36) != 0)&&
2824 ((qt.hardlim != 0xFFFFFFFF)||
2825 (IVAL(pdata,36)!=0xFFFFFFFF))) {
2826 /* more than 32 bits? */
2827 return ERROR_DOS(ERRDOS,ERRunknownlevel);
2829 #endif /* LARGE_SMB_OFF_T */
2831 sid_parse(pdata+40,sid_len,&sid);
2832 DEBUGADD(8,("SID: %s\n",sid_string_static(&sid)));
2834 /* 44 unknown bytes left... */
2836 if (vfs_set_ntquota(fsp, SMB_USER_QUOTA_TYPE, &sid, &qt)!=0) {
2837 return ERROR_DOS(ERRSRV,ERRerror);
2840 send_nt_replies(outbuf, bufsize, NT_STATUS_OK, params, param_len,
2841 pdata, data_len);
2843 return -1;
2845 #endif /* HAVE_SYS_QUOTAS */
2847 static int handle_nttrans(connection_struct *conn,
2848 struct trans_state *state,
2849 char *inbuf, char *outbuf, int size, int bufsize)
2851 int outsize;
2853 if (Protocol >= PROTOCOL_NT1) {
2854 SSVAL(outbuf,smb_flg2,SVAL(outbuf,smb_flg2) | 0x40); /* IS_LONG_NAME */
2857 /* Now we must call the relevant NT_TRANS function */
2858 switch(state->call) {
2859 case NT_TRANSACT_CREATE:
2861 START_PROFILE(NT_transact_create);
2862 outsize = call_nt_transact_create(conn, inbuf, outbuf,
2863 size, bufsize,
2864 &state->setup, state->setup_count,
2865 &state->param, state->total_param,
2866 &state->data, state->total_data,
2867 state->max_data_return);
2868 END_PROFILE(NT_transact_create);
2869 break;
2872 case NT_TRANSACT_IOCTL:
2874 START_PROFILE(NT_transact_ioctl);
2875 outsize = call_nt_transact_ioctl(conn, inbuf, outbuf,
2876 size, bufsize,
2877 &state->setup, state->setup_count,
2878 &state->param, state->total_param,
2879 &state->data, state->total_data, state->max_data_return);
2880 END_PROFILE(NT_transact_ioctl);
2881 break;
2884 case NT_TRANSACT_SET_SECURITY_DESC:
2886 START_PROFILE(NT_transact_set_security_desc);
2887 outsize = call_nt_transact_set_security_desc(conn, inbuf, outbuf,
2888 size, bufsize,
2889 &state->setup, state->setup_count,
2890 &state->param, state->total_param,
2891 &state->data, state->total_data, state->max_data_return);
2892 END_PROFILE(NT_transact_set_security_desc);
2893 break;
2896 case NT_TRANSACT_NOTIFY_CHANGE:
2898 START_PROFILE(NT_transact_notify_change);
2899 outsize = call_nt_transact_notify_change(
2900 conn, inbuf, outbuf, size, bufsize,
2901 &state->setup, state->setup_count,
2902 &state->param, state->total_param,
2903 &state->data, state->total_data,
2904 state->max_data_return,
2905 state->max_param_return);
2906 END_PROFILE(NT_transact_notify_change);
2907 break;
2910 case NT_TRANSACT_RENAME:
2912 START_PROFILE(NT_transact_rename);
2913 outsize = call_nt_transact_rename(conn, inbuf, outbuf,
2914 size, bufsize,
2915 &state->setup, state->setup_count,
2916 &state->param, state->total_param,
2917 &state->data, state->total_data, state->max_data_return);
2918 END_PROFILE(NT_transact_rename);
2919 break;
2922 case NT_TRANSACT_QUERY_SECURITY_DESC:
2924 START_PROFILE(NT_transact_query_security_desc);
2925 outsize = call_nt_transact_query_security_desc(conn, inbuf, outbuf,
2926 size, bufsize,
2927 &state->setup, state->setup_count,
2928 &state->param, state->total_param,
2929 &state->data, state->total_data, state->max_data_return);
2930 END_PROFILE(NT_transact_query_security_desc);
2931 break;
2934 #ifdef HAVE_SYS_QUOTAS
2935 case NT_TRANSACT_GET_USER_QUOTA:
2937 START_PROFILE(NT_transact_get_user_quota);
2938 outsize = call_nt_transact_get_user_quota(conn, inbuf, outbuf,
2939 size, bufsize,
2940 &state->setup, state->setup_count,
2941 &state->param, state->total_param,
2942 &state->data, state->total_data, state->max_data_return);
2943 END_PROFILE(NT_transact_get_user_quota);
2944 break;
2947 case NT_TRANSACT_SET_USER_QUOTA:
2949 START_PROFILE(NT_transact_set_user_quota);
2950 outsize = call_nt_transact_set_user_quota(conn, inbuf, outbuf,
2951 size, bufsize,
2952 &state->setup, state->setup_count,
2953 &state->param, state->total_param,
2954 &state->data, state->total_data, state->max_data_return);
2955 END_PROFILE(NT_transact_set_user_quota);
2956 break;
2958 #endif /* HAVE_SYS_QUOTAS */
2960 default:
2961 /* Error in request */
2962 DEBUG(0,("reply_nttrans: Unknown request %d in nttrans call\n",
2963 state->call));
2964 return ERROR_DOS(ERRSRV,ERRerror);
2966 return outsize;
2969 /****************************************************************************
2970 Reply to a SMBNTtrans.
2971 ****************************************************************************/
2973 int reply_nttrans(connection_struct *conn,
2974 char *inbuf,char *outbuf,int size,int bufsize)
2976 int outsize = 0;
2977 uint32 pscnt = IVAL(inbuf,smb_nt_ParameterCount);
2978 uint32 psoff = IVAL(inbuf,smb_nt_ParameterOffset);
2979 uint32 dscnt = IVAL(inbuf,smb_nt_DataCount);
2980 uint32 dsoff = IVAL(inbuf,smb_nt_DataOffset);
2982 uint16 function_code = SVAL( inbuf, smb_nt_Function);
2983 NTSTATUS result;
2984 struct trans_state *state;
2986 START_PROFILE(SMBnttrans);
2988 if (IS_IPC(conn) && (function_code != NT_TRANSACT_CREATE)) {
2989 END_PROFILE(SMBnttrans);
2990 return ERROR_DOS(ERRSRV,ERRaccess);
2993 result = allow_new_trans(conn->pending_trans, SVAL(inbuf, smb_mid));
2994 if (!NT_STATUS_IS_OK(result)) {
2995 DEBUG(2, ("Got invalid nttrans request: %s\n", nt_errstr(result)));
2996 END_PROFILE(SMBnttrans);
2997 return ERROR_NT(result);
3000 if ((state = TALLOC_P(conn->mem_ctx, struct trans_state)) == NULL) {
3001 END_PROFILE(SMBnttrans);
3002 return ERROR_DOS(ERRSRV,ERRaccess);
3005 state->cmd = SMBnttrans;
3007 state->mid = SVAL(inbuf,smb_mid);
3008 state->vuid = SVAL(inbuf,smb_uid);
3009 state->total_data = IVAL(inbuf, smb_nt_TotalDataCount);
3010 state->data = NULL;
3011 state->total_param = IVAL(inbuf, smb_nt_TotalParameterCount);
3012 state->param = NULL;
3013 state->max_data_return = IVAL(inbuf,smb_nt_MaxDataCount);
3014 state->max_param_return = IVAL(inbuf,smb_nt_MaxParameterCount);
3016 /* setup count is in *words* */
3017 state->setup_count = 2*CVAL(inbuf,smb_nt_SetupCount);
3018 state->setup = NULL;
3019 state->call = function_code;
3022 * All nttrans messages we handle have smb_wct == 19 +
3023 * state->setup_count. Ensure this is so as a sanity check.
3026 if(CVAL(inbuf, smb_wct) != 19 + (state->setup_count/2)) {
3027 DEBUG(2,("Invalid smb_wct %d in nttrans call (should be %d)\n",
3028 CVAL(inbuf, smb_wct), 19 + (state->setup_count/2)));
3029 goto bad_param;
3032 /* Don't allow more than 128mb for each value. */
3033 if ((state->total_data > (1024*1024*128)) ||
3034 (state->total_param > (1024*1024*128))) {
3035 END_PROFILE(SMBnttrans);
3036 return ERROR_DOS(ERRDOS,ERRnomem);
3039 if ((dscnt > state->total_data) || (pscnt > state->total_param))
3040 goto bad_param;
3042 if (state->total_data) {
3043 /* Can't use talloc here, the core routines do realloc on the
3044 * params and data. */
3045 if ((state->data = (char *)SMB_MALLOC(state->total_data)) == NULL) {
3046 DEBUG(0,("reply_nttrans: data malloc fail for %u "
3047 "bytes !\n", (unsigned int)state->total_data));
3048 TALLOC_FREE(state);
3049 END_PROFILE(SMBnttrans);
3050 return(ERROR_DOS(ERRDOS,ERRnomem));
3052 if ((dsoff+dscnt < dsoff) || (dsoff+dscnt < dscnt))
3053 goto bad_param;
3054 if ((smb_base(inbuf)+dsoff+dscnt > inbuf + size) ||
3055 (smb_base(inbuf)+dsoff+dscnt < smb_base(inbuf)))
3056 goto bad_param;
3058 memcpy(state->data,smb_base(inbuf)+dsoff,dscnt);
3061 if (state->total_param) {
3062 /* Can't use talloc here, the core routines do realloc on the
3063 * params and data. */
3064 if ((state->param = (char *)SMB_MALLOC(state->total_param)) == NULL) {
3065 DEBUG(0,("reply_nttrans: param malloc fail for %u "
3066 "bytes !\n", (unsigned int)state->total_param));
3067 SAFE_FREE(state->data);
3068 TALLOC_FREE(state);
3069 END_PROFILE(SMBnttrans);
3070 return(ERROR_DOS(ERRDOS,ERRnomem));
3072 if ((psoff+pscnt < psoff) || (psoff+pscnt < pscnt))
3073 goto bad_param;
3074 if ((smb_base(inbuf)+psoff+pscnt > inbuf + size) ||
3075 (smb_base(inbuf)+psoff+pscnt < smb_base(inbuf)))
3076 goto bad_param;
3078 memcpy(state->param,smb_base(inbuf)+psoff,pscnt);
3081 state->received_data = dscnt;
3082 state->received_param = pscnt;
3084 if(state->setup_count > 0) {
3085 DEBUG(10,("reply_nttrans: state->setup_count = %d\n",
3086 state->setup_count));
3087 state->setup = (uint16 *)TALLOC(state, state->setup_count);
3088 if (state->setup == NULL) {
3089 DEBUG(0,("reply_nttrans : Out of memory\n"));
3090 SAFE_FREE(state->data);
3091 SAFE_FREE(state->param);
3092 TALLOC_FREE(state);
3093 END_PROFILE(SMBnttrans);
3094 return ERROR_DOS(ERRDOS,ERRnomem);
3097 if ((smb_nt_SetupStart + state->setup_count < smb_nt_SetupStart) ||
3098 (smb_nt_SetupStart + state->setup_count < state->setup_count)) {
3099 goto bad_param;
3101 if (smb_nt_SetupStart + state->setup_count > size) {
3102 goto bad_param;
3105 memcpy( state->setup, &inbuf[smb_nt_SetupStart], state->setup_count);
3106 dump_data(10, (char *)state->setup, state->setup_count);
3109 if ((state->received_data == state->total_data) &&
3110 (state->received_param == state->total_param)) {
3111 outsize = handle_nttrans(conn, state, inbuf, outbuf,
3112 size, bufsize);
3113 SAFE_FREE(state->param);
3114 SAFE_FREE(state->data);
3115 TALLOC_FREE(state);
3116 END_PROFILE(SMBnttrans);
3117 return outsize;
3120 DLIST_ADD(conn->pending_trans, state);
3122 /* We need to send an interim response then receive the rest
3123 of the parameter/data bytes */
3124 outsize = set_message(outbuf,0,0,False);
3125 show_msg(outbuf);
3126 END_PROFILE(SMBnttrans);
3127 return outsize;
3129 bad_param:
3131 DEBUG(0,("reply_nttrans: invalid trans parameters\n"));
3132 SAFE_FREE(state->data);
3133 SAFE_FREE(state->param);
3134 TALLOC_FREE(state);
3135 END_PROFILE(SMBnttrans);
3136 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
3139 /****************************************************************************
3140 Reply to a SMBnttranss
3141 ****************************************************************************/
3143 int reply_nttranss(connection_struct *conn, char *inbuf,char *outbuf,
3144 int size,int bufsize)
3146 int outsize = 0;
3147 unsigned int pcnt,poff,dcnt,doff,pdisp,ddisp;
3148 struct trans_state *state;
3150 START_PROFILE(SMBnttranss);
3152 show_msg(inbuf);
3154 for (state = conn->pending_trans; state != NULL;
3155 state = state->next) {
3156 if (state->mid == SVAL(inbuf,smb_mid)) {
3157 break;
3161 if ((state == NULL) || (state->cmd != SMBnttrans)) {
3162 END_PROFILE(SMBnttranss);
3163 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
3166 /* Revise state->total_param and state->total_data in case they have
3167 changed downwards */
3168 if (IVAL(inbuf, smb_nts_TotalParameterCount) < state->total_param) {
3169 state->total_param = IVAL(inbuf, smb_nts_TotalParameterCount);
3171 if (IVAL(inbuf, smb_nts_TotalDataCount) < state->total_data) {
3172 state->total_data = IVAL(inbuf, smb_nts_TotalDataCount);
3175 pcnt = IVAL(inbuf,smb_nts_ParameterCount);
3176 poff = IVAL(inbuf, smb_nts_ParameterOffset);
3177 pdisp = IVAL(inbuf, smb_nts_ParameterDisplacement);
3179 dcnt = IVAL(inbuf, smb_nts_DataCount);
3180 ddisp = IVAL(inbuf, smb_nts_DataDisplacement);
3181 doff = IVAL(inbuf, smb_nts_DataOffset);
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))
3188 goto bad_param;
3190 if (pcnt) {
3191 if (pdisp+pcnt > state->total_param)
3192 goto bad_param;
3193 if ((pdisp+pcnt < pdisp) || (pdisp+pcnt < pcnt))
3194 goto bad_param;
3195 if (pdisp > state->total_param)
3196 goto bad_param;
3197 if ((smb_base(inbuf) + poff + pcnt > inbuf + size) ||
3198 (smb_base(inbuf) + poff + pcnt < smb_base(inbuf)))
3199 goto bad_param;
3200 if (state->param + pdisp < state->param)
3201 goto bad_param;
3203 memcpy(state->param+pdisp,smb_base(inbuf)+poff,
3204 pcnt);
3207 if (dcnt) {
3208 if (ddisp+dcnt > state->total_data)
3209 goto bad_param;
3210 if ((ddisp+dcnt < ddisp) || (ddisp+dcnt < dcnt))
3211 goto bad_param;
3212 if (ddisp > state->total_data)
3213 goto bad_param;
3214 if ((smb_base(inbuf) + doff + dcnt > inbuf + size) ||
3215 (smb_base(inbuf) + doff + dcnt < smb_base(inbuf)))
3216 goto bad_param;
3217 if (state->data + ddisp < state->data)
3218 goto bad_param;
3220 memcpy(state->data+ddisp, smb_base(inbuf)+doff,
3221 dcnt);
3224 if ((state->received_param < state->total_param) ||
3225 (state->received_data < state->total_data)) {
3226 END_PROFILE(SMBnttranss);
3227 return -1;
3230 /* construct_reply_common has done us the favor to pre-fill the
3231 * command field with SMBnttranss which is wrong :-)
3233 SCVAL(outbuf,smb_com,SMBnttrans);
3235 outsize = handle_nttrans(conn, state, inbuf, outbuf,
3236 size, bufsize);
3238 DLIST_REMOVE(conn->pending_trans, state);
3239 SAFE_FREE(state->data);
3240 SAFE_FREE(state->param);
3241 TALLOC_FREE(state);
3243 if (outsize == 0) {
3244 END_PROFILE(SMBnttranss);
3245 return(ERROR_DOS(ERRSRV,ERRnosupport));
3248 END_PROFILE(SMBnttranss);
3249 return(outsize);
3251 bad_param:
3253 DEBUG(0,("reply_nttranss: invalid trans parameters\n"));
3254 DLIST_REMOVE(conn->pending_trans, state);
3255 SAFE_FREE(state->data);
3256 SAFE_FREE(state->param);
3257 TALLOC_FREE(state);
3258 END_PROFILE(SMBnttranss);
3259 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);