r20931: This changes the notify infrastructure from a polling-based to an event-driven
[Samba/bb.git] / source3 / smbd / reply.c
blob7cb086841d63e017f00c9b95127c3efdf5a9fc9a
1 /*
2 Unix SMB/CIFS implementation.
3 Main SMB reply routines
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Andrew Bartlett 2001
6 Copyright (C) Jeremy Allison 1992-2007.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 This file handles most of the reply_ calls that the server
24 makes to handle specific protocols
27 #include "includes.h"
29 /* look in server.c for some explanation of these variables */
30 extern enum protocol_types Protocol;
31 extern int max_send;
32 extern int max_recv;
33 unsigned int smb_echo_count = 0;
34 extern uint32 global_client_caps;
36 extern struct current_user current_user;
37 extern BOOL global_encrypted_passwords_negotiated;
39 /****************************************************************************
40 Ensure we check the path in *exactly* the same way as W2K for a findfirst/findnext
41 path or anything including wildcards.
42 We're assuming here that '/' is not the second byte in any multibyte char
43 set (a safe assumption). '\\' *may* be the second byte in a multibyte char
44 set.
45 ****************************************************************************/
47 NTSTATUS check_path_syntax_internal(pstring destname,
48 const pstring srcname,
49 BOOL windows_path,
50 BOOL *p_last_component_contains_wcard)
52 char *d = destname;
53 const char *s = srcname;
54 NTSTATUS ret = NT_STATUS_OK;
55 BOOL start_of_name_component = True;
57 *p_last_component_contains_wcard = False;
59 while (*s) {
60 if (IS_DIRECTORY_SEP(*s)) {
62 * Safe to assume is not the second part of a mb char
63 * as this is handled below.
65 /* Eat multiple '/' or '\\' */
66 while (IS_DIRECTORY_SEP(*s)) {
67 s++;
69 if ((d != destname) && (*s != '\0')) {
70 /* We only care about non-leading or trailing '/' or '\\' */
71 *d++ = '/';
74 start_of_name_component = True;
75 /* New component. */
76 *p_last_component_contains_wcard = False;
77 continue;
80 if (start_of_name_component) {
81 if ((s[0] == '.') && (s[1] == '.') && (IS_DIRECTORY_SEP(s[2]) || s[2] == '\0')) {
82 /* Uh oh - "/../" or "\\..\\" or "/..\0" or "\\..\0" ! */
85 * No mb char starts with '.' so we're safe checking the directory separator here.
88 /* If we just added a '/' - delete it */
89 if ((d > destname) && (*(d-1) == '/')) {
90 *(d-1) = '\0';
91 d--;
94 /* Are we at the start ? Can't go back further if so. */
95 if (d <= destname) {
96 ret = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
97 break;
99 /* Go back one level... */
100 /* We know this is safe as '/' cannot be part of a mb sequence. */
101 /* NOTE - if this assumption is invalid we are not in good shape... */
102 /* Decrement d first as d points to the *next* char to write into. */
103 for (d--; d > destname; d--) {
104 if (*d == '/')
105 break;
107 s += 2; /* Else go past the .. */
108 /* We're still at the start of a name component, just the previous one. */
109 continue;
111 } else if ((s[0] == '.') && ((s[1] == '\0') || IS_DIRECTORY_SEP(s[1]))) {
112 if (!windows_path) {
113 /* Eat the '.' */
114 s++;
115 continue;
121 if (!(*s & 0x80)) {
122 if (windows_path) {
123 if (*s <= 0x1f) {
124 return NT_STATUS_OBJECT_NAME_INVALID;
126 switch (*s) {
127 case '*':
128 case '?':
129 case '<':
130 case '>':
131 case '"':
132 *p_last_component_contains_wcard = True;
133 break;
134 default:
135 break;
138 *d++ = *s++;
139 } else {
140 size_t siz;
141 /* Get the size of the next MB character. */
142 next_codepoint(s,&siz);
143 switch(siz) {
144 case 5:
145 *d++ = *s++;
146 /*fall through*/
147 case 4:
148 *d++ = *s++;
149 /*fall through*/
150 case 3:
151 *d++ = *s++;
152 /*fall through*/
153 case 2:
154 *d++ = *s++;
155 /*fall through*/
156 case 1:
157 *d++ = *s++;
158 break;
159 default:
160 DEBUG(0,("check_path_syntax_internal: character length assumptions invalid !\n"));
161 *d = '\0';
162 return NT_STATUS_INVALID_PARAMETER;
165 start_of_name_component = False;
168 *d = '\0';
169 return ret;
172 /****************************************************************************
173 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
174 No wildcards allowed.
175 ****************************************************************************/
177 NTSTATUS check_path_syntax(pstring destname, const pstring srcname)
179 BOOL ignore;
180 return check_path_syntax_internal(destname, srcname, True, &ignore);
183 /****************************************************************************
184 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
185 Wildcards allowed - p_contains_wcard returns true if the last component contained
186 a wildcard.
187 ****************************************************************************/
189 NTSTATUS check_path_syntax_wcard(pstring destname, const pstring srcname, BOOL *p_contains_wcard)
191 return check_path_syntax_internal(destname, srcname, True, p_contains_wcard);
194 /****************************************************************************
195 Check the path for a POSIX client.
196 We're assuming here that '/' is not the second byte in any multibyte char
197 set (a safe assumption).
198 ****************************************************************************/
200 static NTSTATUS check_path_syntax_posix(pstring destname, const pstring srcname)
202 BOOL ignore;
203 return check_path_syntax_internal(destname, srcname, False, &ignore);
206 /****************************************************************************
207 Pull a string and check the path allowing a wilcard - provide for error return.
208 ****************************************************************************/
210 size_t srvstr_get_path_wcard(char *inbuf, char *dest, const char *src, size_t dest_len, size_t src_len, int flags,
211 NTSTATUS *err, BOOL *contains_wcard)
213 pstring tmppath;
214 char *tmppath_ptr = tmppath;
215 size_t ret;
216 #ifdef DEVELOPER
217 SMB_ASSERT(dest_len == sizeof(pstring));
218 #endif
220 if (src_len == 0) {
221 ret = srvstr_pull_buf( inbuf, tmppath_ptr, src, dest_len, flags);
222 } else {
223 ret = srvstr_pull( inbuf, tmppath_ptr, src, dest_len, src_len, flags);
226 *contains_wcard = False;
228 if (lp_posix_pathnames()) {
229 *err = check_path_syntax_posix(dest, tmppath);
230 } else {
231 *err = check_path_syntax_wcard(dest, tmppath, contains_wcard);
234 return ret;
237 /****************************************************************************
238 Pull a string and check the path - provide for error return.
239 ****************************************************************************/
241 size_t srvstr_get_path(char *inbuf, char *dest, const char *src, size_t dest_len, size_t src_len, int flags, NTSTATUS *err)
243 pstring tmppath;
244 char *tmppath_ptr = tmppath;
245 size_t ret;
246 #ifdef DEVELOPER
247 SMB_ASSERT(dest_len == sizeof(pstring));
248 #endif
250 if (src_len == 0) {
251 ret = srvstr_pull_buf( inbuf, tmppath_ptr, src, dest_len, flags);
252 } else {
253 ret = srvstr_pull( inbuf, tmppath_ptr, src, dest_len, src_len, flags);
255 if (lp_posix_pathnames()) {
256 *err = check_path_syntax_posix(dest, tmppath);
257 } else {
258 *err = check_path_syntax(dest, tmppath);
261 return ret;
264 /****************************************************************************
265 Reply to a special message.
266 ****************************************************************************/
268 int reply_special(char *inbuf,char *outbuf)
270 int outsize = 4;
271 int msg_type = CVAL(inbuf,0);
272 int msg_flags = CVAL(inbuf,1);
273 fstring name1,name2;
274 char name_type = 0;
276 static BOOL already_got_session = False;
278 *name1 = *name2 = 0;
280 memset(outbuf,'\0',smb_size);
282 smb_setlen(outbuf,0);
284 switch (msg_type) {
285 case 0x81: /* session request */
287 if (already_got_session) {
288 exit_server_cleanly("multiple session request not permitted");
291 SCVAL(outbuf,0,0x82);
292 SCVAL(outbuf,3,0);
293 if (name_len(inbuf+4) > 50 ||
294 name_len(inbuf+4 + name_len(inbuf + 4)) > 50) {
295 DEBUG(0,("Invalid name length in session request\n"));
296 return(0);
298 name_extract(inbuf,4,name1);
299 name_type = name_extract(inbuf,4 + name_len(inbuf + 4),name2);
300 DEBUG(2,("netbios connect: name1=%s name2=%s\n",
301 name1,name2));
303 set_local_machine_name(name1, True);
304 set_remote_machine_name(name2, True);
306 DEBUG(2,("netbios connect: local=%s remote=%s, name type = %x\n",
307 get_local_machine_name(), get_remote_machine_name(),
308 name_type));
310 if (name_type == 'R') {
311 /* We are being asked for a pathworks session ---
312 no thanks! */
313 SCVAL(outbuf, 0,0x83);
314 break;
317 /* only add the client's machine name to the list
318 of possibly valid usernames if we are operating
319 in share mode security */
320 if (lp_security() == SEC_SHARE) {
321 add_session_user(get_remote_machine_name());
324 reload_services(True);
325 reopen_logs();
327 already_got_session = True;
328 break;
330 case 0x89: /* session keepalive request
331 (some old clients produce this?) */
332 SCVAL(outbuf,0,SMBkeepalive);
333 SCVAL(outbuf,3,0);
334 break;
336 case 0x82: /* positive session response */
337 case 0x83: /* negative session response */
338 case 0x84: /* retarget session response */
339 DEBUG(0,("Unexpected session response\n"));
340 break;
342 case SMBkeepalive: /* session keepalive */
343 default:
344 return(0);
347 DEBUG(5,("init msg_type=0x%x msg_flags=0x%x\n",
348 msg_type, msg_flags));
350 return(outsize);
353 /****************************************************************************
354 Reply to a tcon.
355 conn POINTER CAN BE NULL HERE !
356 ****************************************************************************/
358 int reply_tcon(connection_struct *conn,
359 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
361 const char *service;
362 pstring service_buf;
363 pstring password;
364 pstring dev;
365 int outsize = 0;
366 uint16 vuid = SVAL(inbuf,smb_uid);
367 int pwlen=0;
368 NTSTATUS nt_status;
369 char *p;
370 DATA_BLOB password_blob;
372 START_PROFILE(SMBtcon);
374 *service_buf = *password = *dev = 0;
376 p = smb_buf(inbuf)+1;
377 p += srvstr_pull_buf(inbuf, service_buf, p, sizeof(service_buf), STR_TERMINATE) + 1;
378 pwlen = srvstr_pull_buf(inbuf, password, p, sizeof(password), STR_TERMINATE) + 1;
379 p += pwlen;
380 p += srvstr_pull_buf(inbuf, dev, p, sizeof(dev), STR_TERMINATE) + 1;
382 p = strrchr_m(service_buf,'\\');
383 if (p) {
384 service = p+1;
385 } else {
386 service = service_buf;
389 password_blob = data_blob(password, pwlen+1);
391 conn = make_connection(service,password_blob,dev,vuid,&nt_status);
393 data_blob_clear_free(&password_blob);
395 if (!conn) {
396 END_PROFILE(SMBtcon);
397 return ERROR_NT(nt_status);
400 outsize = set_message(outbuf,2,0,True);
401 SSVAL(outbuf,smb_vwv0,max_recv);
402 SSVAL(outbuf,smb_vwv1,conn->cnum);
403 SSVAL(outbuf,smb_tid,conn->cnum);
405 DEBUG(3,("tcon service=%s cnum=%d\n",
406 service, conn->cnum));
408 END_PROFILE(SMBtcon);
409 return(outsize);
412 /****************************************************************************
413 Reply to a tcon and X.
414 conn POINTER CAN BE NULL HERE !
415 ****************************************************************************/
417 int reply_tcon_and_X(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
419 fstring service;
420 DATA_BLOB password;
422 /* what the cleint thinks the device is */
423 fstring client_devicetype;
424 /* what the server tells the client the share represents */
425 const char *server_devicetype;
426 NTSTATUS nt_status;
427 uint16 vuid = SVAL(inbuf,smb_uid);
428 int passlen = SVAL(inbuf,smb_vwv3);
429 pstring path;
430 char *p, *q;
432 START_PROFILE(SMBtconX);
434 *service = *client_devicetype = 0;
436 /* we might have to close an old one */
437 if ((SVAL(inbuf,smb_vwv2) & 0x1) && conn) {
438 close_cnum(conn,vuid);
441 if (passlen > MAX_PASS_LEN) {
442 return ERROR_DOS(ERRDOS,ERRbuftoosmall);
445 if (global_encrypted_passwords_negotiated) {
446 password = data_blob(smb_buf(inbuf),passlen);
447 } else {
448 password = data_blob(smb_buf(inbuf),passlen+1);
449 /* Ensure correct termination */
450 password.data[passlen]=0;
453 p = smb_buf(inbuf) + passlen;
454 p += srvstr_pull_buf(inbuf, path, p, sizeof(path), STR_TERMINATE);
457 * the service name can be either: \\server\share
458 * or share directly like on the DELL PowerVault 705
460 if (*path=='\\') {
461 q = strchr_m(path+2,'\\');
462 if (!q) {
463 END_PROFILE(SMBtconX);
464 return(ERROR_DOS(ERRDOS,ERRnosuchshare));
466 fstrcpy(service,q+1);
468 else
469 fstrcpy(service,path);
471 p += srvstr_pull(inbuf, client_devicetype, p, sizeof(client_devicetype), 6, STR_ASCII);
473 DEBUG(4,("Client requested device type [%s] for share [%s]\n", client_devicetype, service));
475 conn = make_connection(service,password,client_devicetype,vuid,&nt_status);
477 data_blob_clear_free(&password);
479 if (!conn) {
480 END_PROFILE(SMBtconX);
481 return ERROR_NT(nt_status);
484 if ( IS_IPC(conn) )
485 server_devicetype = "IPC";
486 else if ( IS_PRINT(conn) )
487 server_devicetype = "LPT1:";
488 else
489 server_devicetype = "A:";
491 if (Protocol < PROTOCOL_NT1) {
492 set_message(outbuf,2,0,True);
493 p = smb_buf(outbuf);
494 p += srvstr_push(outbuf, p, server_devicetype, -1,
495 STR_TERMINATE|STR_ASCII);
496 set_message_end(outbuf,p);
497 } else {
498 /* NT sets the fstype of IPC$ to the null string */
499 const char *fstype = IS_IPC(conn) ? "" : lp_fstype(SNUM(conn));
501 set_message(outbuf,3,0,True);
503 p = smb_buf(outbuf);
504 p += srvstr_push(outbuf, p, server_devicetype, -1,
505 STR_TERMINATE|STR_ASCII);
506 p += srvstr_push(outbuf, p, fstype, -1,
507 STR_TERMINATE);
509 set_message_end(outbuf,p);
511 /* what does setting this bit do? It is set by NT4 and
512 may affect the ability to autorun mounted cdroms */
513 SSVAL(outbuf, smb_vwv2, SMB_SUPPORT_SEARCH_BITS|
514 (lp_csc_policy(SNUM(conn)) << 2));
516 init_dfsroot(conn, inbuf, outbuf);
520 DEBUG(3,("tconX service=%s \n",
521 service));
523 /* set the incoming and outgoing tid to the just created one */
524 SSVAL(inbuf,smb_tid,conn->cnum);
525 SSVAL(outbuf,smb_tid,conn->cnum);
527 END_PROFILE(SMBtconX);
528 return chain_reply(inbuf,outbuf,length,bufsize);
531 /****************************************************************************
532 Reply to an unknown type.
533 ****************************************************************************/
535 int reply_unknown(char *inbuf,char *outbuf)
537 int type;
538 type = CVAL(inbuf,smb_com);
540 DEBUG(0,("unknown command type (%s): type=%d (0x%X)\n",
541 smb_fn_name(type), type, type));
543 return(ERROR_DOS(ERRSRV,ERRunknownsmb));
546 /****************************************************************************
547 Reply to an ioctl.
548 conn POINTER CAN BE NULL HERE !
549 ****************************************************************************/
551 int reply_ioctl(connection_struct *conn,
552 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
554 uint16 device = SVAL(inbuf,smb_vwv1);
555 uint16 function = SVAL(inbuf,smb_vwv2);
556 uint32 ioctl_code = (device << 16) + function;
557 int replysize, outsize;
558 char *p;
559 START_PROFILE(SMBioctl);
561 DEBUG(4, ("Received IOCTL (code 0x%x)\n", ioctl_code));
563 switch (ioctl_code) {
564 case IOCTL_QUERY_JOB_INFO:
565 replysize = 32;
566 break;
567 default:
568 END_PROFILE(SMBioctl);
569 return(ERROR_DOS(ERRSRV,ERRnosupport));
572 outsize = set_message(outbuf,8,replysize+1,True);
573 SSVAL(outbuf,smb_vwv1,replysize); /* Total data bytes returned */
574 SSVAL(outbuf,smb_vwv5,replysize); /* Data bytes this buffer */
575 SSVAL(outbuf,smb_vwv6,52); /* Offset to data */
576 p = smb_buf(outbuf) + 1; /* Allow for alignment */
578 switch (ioctl_code) {
579 case IOCTL_QUERY_JOB_INFO:
581 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
582 if (!fsp) {
583 END_PROFILE(SMBioctl);
584 return(UNIXERROR(ERRDOS,ERRbadfid));
586 SSVAL(p,0,fsp->rap_print_jobid); /* Job number */
587 srvstr_push(outbuf, p+2, global_myname(), 15, STR_TERMINATE|STR_ASCII);
588 if (conn) {
589 srvstr_push(outbuf, p+18, lp_servicename(SNUM(conn)), 13, STR_TERMINATE|STR_ASCII);
591 break;
595 END_PROFILE(SMBioctl);
596 return outsize;
599 /****************************************************************************
600 Strange checkpath NTSTATUS mapping.
601 ****************************************************************************/
603 static NTSTATUS map_checkpath_error(const char *inbuf, NTSTATUS status)
605 /* Strange DOS error code semantics only for checkpath... */
606 if (!(SVAL(inbuf,smb_flg2) & FLAGS2_32_BIT_ERROR_CODES)) {
607 if (NT_STATUS_EQUAL(NT_STATUS_OBJECT_NAME_INVALID,status)) {
608 /* We need to map to ERRbadpath */
609 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
612 return status;
615 /****************************************************************************
616 Reply to a checkpath.
617 ****************************************************************************/
619 int reply_checkpath(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
621 int outsize = 0;
622 pstring name;
623 SMB_STRUCT_STAT sbuf;
624 NTSTATUS status;
626 START_PROFILE(SMBcheckpath);
628 srvstr_get_path(inbuf, name, smb_buf(inbuf) + 1, sizeof(name), 0, STR_TERMINATE, &status);
629 if (!NT_STATUS_IS_OK(status)) {
630 END_PROFILE(SMBcheckpath);
631 status = map_checkpath_error(inbuf, status);
632 return ERROR_NT(status);
635 RESOLVE_DFSPATH(name, conn, inbuf, outbuf);
637 DEBUG(3,("reply_checkpath %s mode=%d\n", name, (int)SVAL(inbuf,smb_vwv0)));
639 status = unix_convert(conn, name, False, NULL, &sbuf);
640 if (!NT_STATUS_IS_OK(status)) {
641 goto path_err;
644 status = check_name(conn, name);
645 if (!NT_STATUS_IS_OK(status)) {
646 DEBUG(3,("reply_checkpath: check_name of %s failed (%s)\n",name,nt_errstr(status)));
647 goto path_err;
650 if (!VALID_STAT(sbuf) && (SMB_VFS_STAT(conn,name,&sbuf) != 0)) {
651 DEBUG(3,("reply_checkpath: stat of %s failed (%s)\n",name,strerror(errno)));
652 status = map_nt_error_from_unix(errno);
653 goto path_err;
656 if (!S_ISDIR(sbuf.st_mode)) {
657 END_PROFILE(SMBcheckpath);
658 return ERROR_BOTH(NT_STATUS_NOT_A_DIRECTORY,ERRDOS,ERRbadpath);
661 outsize = set_message(outbuf,0,0,False);
663 END_PROFILE(SMBcheckpath);
664 return outsize;
666 path_err:
668 END_PROFILE(SMBcheckpath);
670 /* We special case this - as when a Windows machine
671 is parsing a path is steps through the components
672 one at a time - if a component fails it expects
673 ERRbadpath, not ERRbadfile.
675 status = map_checkpath_error(inbuf, status);
676 if(NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
678 * Windows returns different error codes if
679 * the parent directory is valid but not the
680 * last component - it returns NT_STATUS_OBJECT_NAME_NOT_FOUND
681 * for that case and NT_STATUS_OBJECT_PATH_NOT_FOUND
682 * if the path is invalid.
684 return ERROR_BOTH(NT_STATUS_OBJECT_NAME_NOT_FOUND,ERRDOS,ERRbadpath);
687 return ERROR_NT(status);
690 /****************************************************************************
691 Reply to a getatr.
692 ****************************************************************************/
694 int reply_getatr(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
696 pstring fname;
697 int outsize = 0;
698 SMB_STRUCT_STAT sbuf;
699 int mode=0;
700 SMB_OFF_T size=0;
701 time_t mtime=0;
702 char *p;
703 NTSTATUS status;
705 START_PROFILE(SMBgetatr);
707 p = smb_buf(inbuf) + 1;
708 p += srvstr_get_path(inbuf, fname, p, sizeof(fname), 0, STR_TERMINATE, &status);
709 if (!NT_STATUS_IS_OK(status)) {
710 END_PROFILE(SMBgetatr);
711 return ERROR_NT(status);
714 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
716 /* dos smetimes asks for a stat of "" - it returns a "hidden directory"
717 under WfWg - weird! */
718 if (*fname == '\0') {
719 mode = aHIDDEN | aDIR;
720 if (!CAN_WRITE(conn)) {
721 mode |= aRONLY;
723 size = 0;
724 mtime = 0;
725 } else {
726 status = unix_convert(conn, fname, False, NULL,&sbuf);
727 if (!NT_STATUS_IS_OK(status)) {
728 END_PROFILE(SMBgetatr);
729 return ERROR_NT(status);
731 status = check_name(conn, fname);
732 if (!NT_STATUS_IS_OK(status)) {
733 DEBUG(3,("reply_getatr: check_name of %s failed (%s)\n",fname,nt_errstr(status)));
734 END_PROFILE(SMBgetatr);
735 return ERROR_NT(status);
737 if (!VALID_STAT(sbuf) && (SMB_VFS_STAT(conn,fname,&sbuf) != 0)) {
738 DEBUG(3,("reply_getatr: stat of %s failed (%s)\n",fname,strerror(errno)));
739 return UNIXERROR(ERRDOS,ERRbadfile);
742 mode = dos_mode(conn,fname,&sbuf);
743 size = sbuf.st_size;
744 mtime = sbuf.st_mtime;
745 if (mode & aDIR) {
746 size = 0;
750 outsize = set_message(outbuf,10,0,True);
752 SSVAL(outbuf,smb_vwv0,mode);
753 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
754 srv_put_dos_date3(outbuf,smb_vwv1,mtime & ~1);
755 } else {
756 srv_put_dos_date3(outbuf,smb_vwv1,mtime);
758 SIVAL(outbuf,smb_vwv3,(uint32)size);
760 if (Protocol >= PROTOCOL_NT1) {
761 SSVAL(outbuf,smb_flg2,SVAL(outbuf, smb_flg2) | FLAGS2_IS_LONG_NAME);
764 DEBUG(3,("reply_getatr: name=%s mode=%d size=%u\n", fname, mode, (unsigned int)size ) );
766 END_PROFILE(SMBgetatr);
767 return(outsize);
770 /****************************************************************************
771 Reply to a setatr.
772 ****************************************************************************/
774 int reply_setatr(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
776 pstring fname;
777 int outsize = 0;
778 int mode;
779 time_t mtime;
780 SMB_STRUCT_STAT sbuf;
781 char *p;
782 NTSTATUS status;
784 START_PROFILE(SMBsetatr);
786 p = smb_buf(inbuf) + 1;
787 p += srvstr_get_path(inbuf, fname, p, sizeof(fname), 0, STR_TERMINATE, &status);
788 if (!NT_STATUS_IS_OK(status)) {
789 END_PROFILE(SMBsetatr);
790 return ERROR_NT(status);
793 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
795 status = unix_convert(conn, fname, False, NULL, &sbuf);
796 if (!NT_STATUS_IS_OK(status)) {
797 END_PROFILE(SMBsetatr);
798 return ERROR_NT(status);
801 if (fname[0] == '.' && fname[1] == '\0') {
803 * Not sure here is the right place to catch this
804 * condition. Might be moved to somewhere else later -- vl
806 END_PROFILE(SMBsetatr);
807 return ERROR_NT(NT_STATUS_ACCESS_DENIED);
810 status = check_name(conn, fname);
811 if (!NT_STATUS_IS_OK(status)) {
812 END_PROFILE(SMBsetatr);
813 return ERROR_NT(status);
816 mode = SVAL(inbuf,smb_vwv0);
817 mtime = srv_make_unix_date3(inbuf+smb_vwv1);
819 if (mode != FILE_ATTRIBUTE_NORMAL) {
820 if (VALID_STAT_OF_DIR(sbuf))
821 mode |= aDIR;
822 else
823 mode &= ~aDIR;
825 if (file_set_dosmode(conn,fname,mode,&sbuf,False) != 0) {
826 END_PROFILE(SMBsetatr);
827 return UNIXERROR(ERRDOS, ERRnoaccess);
831 if (!set_filetime(conn,fname,mtime)) {
832 END_PROFILE(SMBsetatr);
833 return UNIXERROR(ERRDOS, ERRnoaccess);
836 outsize = set_message(outbuf,0,0,False);
838 DEBUG( 3, ( "setatr name=%s mode=%d\n", fname, mode ) );
840 END_PROFILE(SMBsetatr);
841 return(outsize);
844 /****************************************************************************
845 Reply to a dskattr.
846 ****************************************************************************/
848 int reply_dskattr(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
850 int outsize = 0;
851 SMB_BIG_UINT dfree,dsize,bsize;
852 START_PROFILE(SMBdskattr);
854 if (get_dfree_info(conn,".",True,&bsize,&dfree,&dsize) == (SMB_BIG_UINT)-1) {
855 END_PROFILE(SMBdskattr);
856 return(UNIXERROR(ERRHRD,ERRgeneral));
859 outsize = set_message(outbuf,5,0,True);
861 if (Protocol <= PROTOCOL_LANMAN2) {
862 double total_space, free_space;
863 /* we need to scale this to a number that DOS6 can handle. We
864 use floating point so we can handle large drives on systems
865 that don't have 64 bit integers
867 we end up displaying a maximum of 2G to DOS systems
869 total_space = dsize * (double)bsize;
870 free_space = dfree * (double)bsize;
872 dsize = (total_space+63*512) / (64*512);
873 dfree = (free_space+63*512) / (64*512);
875 if (dsize > 0xFFFF) dsize = 0xFFFF;
876 if (dfree > 0xFFFF) dfree = 0xFFFF;
878 SSVAL(outbuf,smb_vwv0,dsize);
879 SSVAL(outbuf,smb_vwv1,64); /* this must be 64 for dos systems */
880 SSVAL(outbuf,smb_vwv2,512); /* and this must be 512 */
881 SSVAL(outbuf,smb_vwv3,dfree);
882 } else {
883 SSVAL(outbuf,smb_vwv0,dsize);
884 SSVAL(outbuf,smb_vwv1,bsize/512);
885 SSVAL(outbuf,smb_vwv2,512);
886 SSVAL(outbuf,smb_vwv3,dfree);
889 DEBUG(3,("dskattr dfree=%d\n", (unsigned int)dfree));
891 END_PROFILE(SMBdskattr);
892 return(outsize);
895 /****************************************************************************
896 Reply to a search.
897 Can be called from SMBsearch, SMBffirst or SMBfunique.
898 ****************************************************************************/
900 int reply_search(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
902 pstring mask;
903 pstring directory;
904 pstring fname;
905 SMB_OFF_T size;
906 uint32 mode;
907 time_t date;
908 uint32 dirtype;
909 int outsize = 0;
910 unsigned int numentries = 0;
911 unsigned int maxentries = 0;
912 BOOL finished = False;
913 char *p;
914 int status_len;
915 pstring path;
916 char status[21];
917 int dptr_num= -1;
918 BOOL check_descend = False;
919 BOOL expect_close = False;
920 NTSTATUS nt_status;
921 BOOL mask_contains_wcard = False;
922 BOOL allow_long_path_components = (SVAL(inbuf,smb_flg2) & FLAGS2_LONG_PATH_COMPONENTS) ? True : False;
924 START_PROFILE(SMBsearch);
926 if (lp_posix_pathnames()) {
927 END_PROFILE(SMBsearch);
928 return reply_unknown(inbuf, outbuf);
931 *mask = *directory = *fname = 0;
933 /* If we were called as SMBffirst then we must expect close. */
934 if(CVAL(inbuf,smb_com) == SMBffirst) {
935 expect_close = True;
938 outsize = set_message(outbuf,1,3,True);
939 maxentries = SVAL(inbuf,smb_vwv0);
940 dirtype = SVAL(inbuf,smb_vwv1);
941 p = smb_buf(inbuf) + 1;
942 p += srvstr_get_path_wcard(inbuf, path, p, sizeof(path), 0, STR_TERMINATE, &nt_status, &mask_contains_wcard);
943 if (!NT_STATUS_IS_OK(nt_status)) {
944 END_PROFILE(SMBsearch);
945 return ERROR_NT(nt_status);
948 RESOLVE_DFSPATH_WCARD(path, conn, inbuf, outbuf);
950 p++;
951 status_len = SVAL(p, 0);
952 p += 2;
954 /* dirtype &= ~aDIR; */
956 if (status_len == 0) {
957 SMB_STRUCT_STAT sbuf;
958 pstring dir2;
960 pstrcpy(directory,path);
961 pstrcpy(dir2,path);
962 nt_status = unix_convert(conn, directory, True, NULL, &sbuf);
963 if (!NT_STATUS_IS_OK(nt_status)) {
964 END_PROFILE(SMBsearch);
965 return ERROR_NT(nt_status);
967 unix_format(dir2);
969 nt_status = check_name(conn, directory);
970 if (!NT_STATUS_IS_OK(nt_status)) {
971 END_PROFILE(SMBsearch);
972 return ERROR_NT(nt_status);
975 p = strrchr_m(dir2,'/');
976 if (p == NULL) {
977 pstrcpy(mask,dir2);
978 *dir2 = 0;
979 } else {
980 *p = 0;
981 pstrcpy(mask,p+1);
984 p = strrchr_m(directory,'/');
985 if (!p) {
986 *directory = 0;
987 } else {
988 *p = 0;
991 if (strlen(directory) == 0) {
992 pstrcpy(directory,".");
994 memset((char *)status,'\0',21);
995 SCVAL(status,0,(dirtype & 0x1F));
996 } else {
997 int status_dirtype;
999 memcpy(status,p,21);
1000 status_dirtype = CVAL(status,0) & 0x1F;
1001 if (status_dirtype != (dirtype & 0x1F)) {
1002 dirtype = status_dirtype;
1005 conn->dirptr = dptr_fetch(status+12,&dptr_num);
1006 if (!conn->dirptr) {
1007 goto SearchEmpty;
1009 string_set(&conn->dirpath,dptr_path(dptr_num));
1010 pstrcpy(mask, dptr_wcard(dptr_num));
1013 p = smb_buf(outbuf) + 3;
1015 if (status_len == 0) {
1016 nt_status = dptr_create(conn,
1017 directory,
1018 True,
1019 expect_close,
1020 SVAL(inbuf,smb_pid),
1021 mask,
1022 mask_contains_wcard,
1023 dirtype,
1024 &conn->dirptr);
1025 if (!NT_STATUS_IS_OK(nt_status)) {
1026 return ERROR_NT(nt_status);
1028 dptr_num = dptr_dnum(conn->dirptr);
1029 } else {
1030 dirtype = dptr_attr(dptr_num);
1033 DEBUG(4,("dptr_num is %d\n",dptr_num));
1035 if ((dirtype&0x1F) == aVOLID) {
1036 memcpy(p,status,21);
1037 make_dir_struct(p,"???????????",volume_label(SNUM(conn)),
1038 0,aVOLID,0,!allow_long_path_components);
1039 dptr_fill(p+12,dptr_num);
1040 if (dptr_zero(p+12) && (status_len==0)) {
1041 numentries = 1;
1042 } else {
1043 numentries = 0;
1045 p += DIR_STRUCT_SIZE;
1046 } else {
1047 unsigned int i;
1048 maxentries = MIN(maxentries, ((BUFFER_SIZE - (p - outbuf))/DIR_STRUCT_SIZE));
1050 DEBUG(8,("dirpath=<%s> dontdescend=<%s>\n",
1051 conn->dirpath,lp_dontdescend(SNUM(conn))));
1052 if (in_list(conn->dirpath, lp_dontdescend(SNUM(conn)),True)) {
1053 check_descend = True;
1056 for (i=numentries;(i<maxentries) && !finished;i++) {
1057 finished = !get_dir_entry(conn,mask,dirtype,fname,&size,&mode,&date,check_descend);
1058 if (!finished) {
1059 memcpy(p,status,21);
1060 make_dir_struct(p,mask,fname,size, mode,date,
1061 !allow_long_path_components);
1062 if (!dptr_fill(p+12,dptr_num)) {
1063 break;
1065 numentries++;
1066 p += DIR_STRUCT_SIZE;
1071 SearchEmpty:
1073 /* If we were called as SMBffirst with smb_search_id == NULL
1074 and no entries were found then return error and close dirptr
1075 (X/Open spec) */
1077 if (numentries == 0) {
1078 dptr_close(&dptr_num);
1079 } else if(expect_close && status_len == 0) {
1080 /* Close the dptr - we know it's gone */
1081 dptr_close(&dptr_num);
1084 /* If we were called as SMBfunique, then we can close the dirptr now ! */
1085 if(dptr_num >= 0 && CVAL(inbuf,smb_com) == SMBfunique) {
1086 dptr_close(&dptr_num);
1089 if ((numentries == 0) && !mask_contains_wcard) {
1090 return ERROR_BOTH(STATUS_NO_MORE_FILES,ERRDOS,ERRnofiles);
1093 SSVAL(outbuf,smb_vwv0,numentries);
1094 SSVAL(outbuf,smb_vwv1,3 + numentries * DIR_STRUCT_SIZE);
1095 SCVAL(smb_buf(outbuf),0,5);
1096 SSVAL(smb_buf(outbuf),1,numentries*DIR_STRUCT_SIZE);
1098 /* The replies here are never long name. */
1099 SSVAL(outbuf,smb_flg2,SVAL(outbuf, smb_flg2) & (~FLAGS2_IS_LONG_NAME));
1100 if (!allow_long_path_components) {
1101 SSVAL(outbuf,smb_flg2,SVAL(outbuf, smb_flg2) & (~FLAGS2_LONG_PATH_COMPONENTS));
1104 /* This SMB *always* returns ASCII names. Remove the unicode bit in flags2. */
1105 SSVAL(outbuf,smb_flg2, (SVAL(outbuf, smb_flg2) & (~FLAGS2_UNICODE_STRINGS)));
1107 outsize += DIR_STRUCT_SIZE*numentries;
1108 smb_setlen(outbuf,outsize - 4);
1110 if ((! *directory) && dptr_path(dptr_num))
1111 slprintf(directory, sizeof(directory)-1, "(%s)",dptr_path(dptr_num));
1113 DEBUG( 4, ( "%s mask=%s path=%s dtype=%d nument=%u of %u\n",
1114 smb_fn_name(CVAL(inbuf,smb_com)),
1115 mask, directory, dirtype, numentries, maxentries ) );
1117 END_PROFILE(SMBsearch);
1118 return(outsize);
1121 /****************************************************************************
1122 Reply to a fclose (stop directory search).
1123 ****************************************************************************/
1125 int reply_fclose(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
1127 int outsize = 0;
1128 int status_len;
1129 pstring path;
1130 char status[21];
1131 int dptr_num= -2;
1132 char *p;
1133 NTSTATUS err;
1134 BOOL path_contains_wcard = False;
1136 START_PROFILE(SMBfclose);
1138 if (lp_posix_pathnames()) {
1139 END_PROFILE(SMBfclose);
1140 return reply_unknown(inbuf, outbuf);
1143 outsize = set_message(outbuf,1,0,True);
1144 p = smb_buf(inbuf) + 1;
1145 p += srvstr_get_path_wcard(inbuf, path, p, sizeof(path), 0, STR_TERMINATE, &err, &path_contains_wcard);
1146 if (!NT_STATUS_IS_OK(err)) {
1147 END_PROFILE(SMBfclose);
1148 return ERROR_NT(err);
1150 p++;
1151 status_len = SVAL(p,0);
1152 p += 2;
1154 if (status_len == 0) {
1155 END_PROFILE(SMBfclose);
1156 return ERROR_DOS(ERRSRV,ERRsrverror);
1159 memcpy(status,p,21);
1161 if(dptr_fetch(status+12,&dptr_num)) {
1162 /* Close the dptr - we know it's gone */
1163 dptr_close(&dptr_num);
1166 SSVAL(outbuf,smb_vwv0,0);
1168 DEBUG(3,("search close\n"));
1170 END_PROFILE(SMBfclose);
1171 return(outsize);
1174 /****************************************************************************
1175 Reply to an open.
1176 ****************************************************************************/
1178 int reply_open(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
1180 pstring fname;
1181 int outsize = 0;
1182 uint32 fattr=0;
1183 SMB_OFF_T size = 0;
1184 time_t mtime=0;
1185 int info;
1186 SMB_STRUCT_STAT sbuf;
1187 files_struct *fsp;
1188 int oplock_request = CORE_OPLOCK_REQUEST(inbuf);
1189 int deny_mode;
1190 uint32 dos_attr = SVAL(inbuf,smb_vwv1);
1191 uint32 access_mask;
1192 uint32 share_mode;
1193 uint32 create_disposition;
1194 uint32 create_options = 0;
1195 NTSTATUS status;
1196 START_PROFILE(SMBopen);
1198 deny_mode = SVAL(inbuf,smb_vwv0);
1200 srvstr_get_path(inbuf, fname, smb_buf(inbuf)+1, sizeof(fname), 0, STR_TERMINATE, &status);
1201 if (!NT_STATUS_IS_OK(status)) {
1202 END_PROFILE(SMBopen);
1203 return ERROR_NT(status);
1206 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
1208 status = unix_convert(conn, fname, False, NULL, &sbuf);
1209 if (!NT_STATUS_IS_OK(status)) {
1210 END_PROFILE(SMBopen);
1211 return ERROR_NT(status);
1214 if (!map_open_params_to_ntcreate(fname, deny_mode, OPENX_FILE_EXISTS_OPEN,
1215 &access_mask, &share_mode, &create_disposition, &create_options)) {
1216 END_PROFILE(SMBopen);
1217 return ERROR_NT(NT_STATUS_DOS(ERRDOS, ERRbadaccess));
1220 status = open_file_ntcreate(conn,fname,&sbuf,
1221 access_mask,
1222 share_mode,
1223 create_disposition,
1224 create_options,
1225 dos_attr,
1226 oplock_request,
1227 &info, &fsp);
1229 if (!NT_STATUS_IS_OK(status)) {
1230 END_PROFILE(SMBopen);
1231 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1232 /* We have re-scheduled this call. */
1233 return -1;
1235 return ERROR_NT(status);
1238 size = sbuf.st_size;
1239 fattr = dos_mode(conn,fname,&sbuf);
1240 mtime = sbuf.st_mtime;
1242 if (fattr & aDIR) {
1243 DEBUG(3,("attempt to open a directory %s\n",fname));
1244 close_file(fsp,ERROR_CLOSE);
1245 END_PROFILE(SMBopen);
1246 return ERROR_DOS(ERRDOS,ERRnoaccess);
1249 outsize = set_message(outbuf,7,0,True);
1250 SSVAL(outbuf,smb_vwv0,fsp->fnum);
1251 SSVAL(outbuf,smb_vwv1,fattr);
1252 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1253 srv_put_dos_date3(outbuf,smb_vwv2,mtime & ~1);
1254 } else {
1255 srv_put_dos_date3(outbuf,smb_vwv2,mtime);
1257 SIVAL(outbuf,smb_vwv4,(uint32)size);
1258 SSVAL(outbuf,smb_vwv6,deny_mode);
1260 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1261 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1264 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1265 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1267 END_PROFILE(SMBopen);
1268 return(outsize);
1271 /****************************************************************************
1272 Reply to an open and X.
1273 ****************************************************************************/
1275 int reply_open_and_X(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
1277 pstring fname;
1278 uint16 open_flags = SVAL(inbuf,smb_vwv2);
1279 int deny_mode = SVAL(inbuf,smb_vwv3);
1280 uint32 smb_attr = SVAL(inbuf,smb_vwv5);
1281 /* Breakout the oplock request bits so we can set the
1282 reply bits separately. */
1283 int ex_oplock_request = EXTENDED_OPLOCK_REQUEST(inbuf);
1284 int core_oplock_request = CORE_OPLOCK_REQUEST(inbuf);
1285 int oplock_request = ex_oplock_request | core_oplock_request;
1286 #if 0
1287 int smb_sattr = SVAL(inbuf,smb_vwv4);
1288 uint32 smb_time = make_unix_date3(inbuf+smb_vwv6);
1289 #endif
1290 int smb_ofun = SVAL(inbuf,smb_vwv8);
1291 uint32 fattr=0;
1292 int mtime=0;
1293 SMB_STRUCT_STAT sbuf;
1294 int smb_action = 0;
1295 files_struct *fsp;
1296 NTSTATUS status;
1297 SMB_BIG_UINT allocation_size = (SMB_BIG_UINT)IVAL(inbuf,smb_vwv9);
1298 ssize_t retval = -1;
1299 uint32 access_mask;
1300 uint32 share_mode;
1301 uint32 create_disposition;
1302 uint32 create_options = 0;
1304 START_PROFILE(SMBopenX);
1306 /* If it's an IPC, pass off the pipe handler. */
1307 if (IS_IPC(conn)) {
1308 if (lp_nt_pipe_support()) {
1309 END_PROFILE(SMBopenX);
1310 return reply_open_pipe_and_X(conn, inbuf,outbuf,length,bufsize);
1311 } else {
1312 END_PROFILE(SMBopenX);
1313 return ERROR_DOS(ERRSRV,ERRaccess);
1317 /* XXXX we need to handle passed times, sattr and flags */
1318 srvstr_get_path(inbuf, fname, smb_buf(inbuf), sizeof(fname), 0, STR_TERMINATE, &status);
1319 if (!NT_STATUS_IS_OK(status)) {
1320 END_PROFILE(SMBopenX);
1321 return ERROR_NT(status);
1324 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
1326 status = unix_convert(conn, fname, False, NULL, &sbuf);
1327 if (!NT_STATUS_IS_OK(status)) {
1328 END_PROFILE(SMBopenX);
1329 return ERROR_NT(status);
1332 if (!map_open_params_to_ntcreate(fname, deny_mode, smb_ofun,
1333 &access_mask,
1334 &share_mode,
1335 &create_disposition,
1336 &create_options)) {
1337 END_PROFILE(SMBopenX);
1338 return ERROR_NT(NT_STATUS_DOS(ERRDOS, ERRbadaccess));
1341 status = open_file_ntcreate(conn,fname,&sbuf,
1342 access_mask,
1343 share_mode,
1344 create_disposition,
1345 create_options,
1346 smb_attr,
1347 oplock_request,
1348 &smb_action, &fsp);
1350 if (!NT_STATUS_IS_OK(status)) {
1351 END_PROFILE(SMBopenX);
1352 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1353 /* We have re-scheduled this call. */
1354 return -1;
1356 return ERROR_NT(status);
1359 /* Setting the "size" field in vwv9 and vwv10 causes the file to be set to this size,
1360 if the file is truncated or created. */
1361 if (((smb_action == FILE_WAS_CREATED) || (smb_action == FILE_WAS_OVERWRITTEN)) && allocation_size) {
1362 fsp->initial_allocation_size = smb_roundup(fsp->conn, allocation_size);
1363 if (vfs_allocate_file_space(fsp, fsp->initial_allocation_size) == -1) {
1364 close_file(fsp,ERROR_CLOSE);
1365 END_PROFILE(SMBopenX);
1366 return ERROR_NT(NT_STATUS_DISK_FULL);
1368 retval = vfs_set_filelen(fsp, (SMB_OFF_T)allocation_size);
1369 if (retval < 0) {
1370 close_file(fsp,ERROR_CLOSE);
1371 END_PROFILE(SMBopenX);
1372 return ERROR_NT(NT_STATUS_DISK_FULL);
1374 sbuf.st_size = get_allocation_size(conn,fsp,&sbuf);
1377 fattr = dos_mode(conn,fname,&sbuf);
1378 mtime = sbuf.st_mtime;
1379 if (fattr & aDIR) {
1380 close_file(fsp,ERROR_CLOSE);
1381 END_PROFILE(SMBopenX);
1382 return ERROR_DOS(ERRDOS,ERRnoaccess);
1385 /* If the caller set the extended oplock request bit
1386 and we granted one (by whatever means) - set the
1387 correct bit for extended oplock reply.
1390 if (ex_oplock_request && lp_fake_oplocks(SNUM(conn))) {
1391 smb_action |= EXTENDED_OPLOCK_GRANTED;
1394 if(ex_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1395 smb_action |= EXTENDED_OPLOCK_GRANTED;
1398 /* If the caller set the core oplock request bit
1399 and we granted one (by whatever means) - set the
1400 correct bit for core oplock reply.
1403 if (core_oplock_request && lp_fake_oplocks(SNUM(conn))) {
1404 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1407 if(core_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1408 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1411 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
1412 set_message(outbuf,19,0,True);
1413 } else {
1414 set_message(outbuf,15,0,True);
1416 SSVAL(outbuf,smb_vwv2,fsp->fnum);
1417 SSVAL(outbuf,smb_vwv3,fattr);
1418 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1419 srv_put_dos_date3(outbuf,smb_vwv4,mtime & ~1);
1420 } else {
1421 srv_put_dos_date3(outbuf,smb_vwv4,mtime);
1423 SIVAL(outbuf,smb_vwv6,(uint32)sbuf.st_size);
1424 SSVAL(outbuf,smb_vwv8,GET_OPENX_MODE(deny_mode));
1425 SSVAL(outbuf,smb_vwv11,smb_action);
1427 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
1428 SIVAL(outbuf, smb_vwv15, STD_RIGHT_ALL_ACCESS);
1431 END_PROFILE(SMBopenX);
1432 return chain_reply(inbuf,outbuf,length,bufsize);
1435 /****************************************************************************
1436 Reply to a SMBulogoffX.
1437 conn POINTER CAN BE NULL HERE !
1438 ****************************************************************************/
1440 int reply_ulogoffX(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
1442 uint16 vuid = SVAL(inbuf,smb_uid);
1443 user_struct *vuser = get_valid_user_struct(vuid);
1444 START_PROFILE(SMBulogoffX);
1446 if(vuser == 0)
1447 DEBUG(3,("ulogoff, vuser id %d does not map to user.\n", vuid));
1449 /* in user level security we are supposed to close any files
1450 open by this user */
1451 if ((vuser != 0) && (lp_security() != SEC_SHARE))
1452 file_close_user(vuid);
1454 invalidate_vuid(vuid);
1456 set_message(outbuf,2,0,True);
1458 DEBUG( 3, ( "ulogoffX vuid=%d\n", vuid ) );
1460 END_PROFILE(SMBulogoffX);
1461 return chain_reply(inbuf,outbuf,length,bufsize);
1464 /****************************************************************************
1465 Reply to a mknew or a create.
1466 ****************************************************************************/
1468 int reply_mknew(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
1470 pstring fname;
1471 int com;
1472 int outsize = 0;
1473 uint32 fattr = SVAL(inbuf,smb_vwv0);
1474 struct utimbuf times;
1475 files_struct *fsp;
1476 int oplock_request = CORE_OPLOCK_REQUEST(inbuf);
1477 SMB_STRUCT_STAT sbuf;
1478 NTSTATUS status;
1479 uint32 access_mask = FILE_GENERIC_READ | FILE_GENERIC_WRITE;
1480 uint32 share_mode = FILE_SHARE_READ|FILE_SHARE_WRITE;
1481 uint32 create_disposition;
1482 uint32 create_options = 0;
1484 START_PROFILE(SMBcreate);
1486 com = SVAL(inbuf,smb_com);
1488 times.modtime = srv_make_unix_date3(inbuf + smb_vwv1);
1490 srvstr_get_path(inbuf, fname, smb_buf(inbuf) + 1, sizeof(fname), 0, STR_TERMINATE, &status);
1491 if (!NT_STATUS_IS_OK(status)) {
1492 END_PROFILE(SMBcreate);
1493 return ERROR_NT(status);
1496 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
1498 status = unix_convert(conn, fname, False, NULL, &sbuf);
1499 if (!NT_STATUS_IS_OK(status)) {
1500 END_PROFILE(SMBcreate);
1501 return ERROR_NT(status);
1504 if (fattr & aVOLID) {
1505 DEBUG(0,("Attempt to create file (%s) with volid set - please report this\n",fname));
1508 if(com == SMBmknew) {
1509 /* We should fail if file exists. */
1510 create_disposition = FILE_CREATE;
1511 } else {
1512 /* Create if file doesn't exist, truncate if it does. */
1513 create_disposition = FILE_OVERWRITE_IF;
1516 /* Open file using ntcreate. */
1517 status = open_file_ntcreate(conn,fname,&sbuf,
1518 access_mask,
1519 share_mode,
1520 create_disposition,
1521 create_options,
1522 fattr,
1523 oplock_request,
1524 NULL, &fsp);
1526 if (!NT_STATUS_IS_OK(status)) {
1527 END_PROFILE(SMBcreate);
1528 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1529 /* We have re-scheduled this call. */
1530 return -1;
1532 return ERROR_NT(status);
1535 times.actime = sbuf.st_atime;
1536 file_utime(conn, fname, &times);
1538 outsize = set_message(outbuf,1,0,True);
1539 SSVAL(outbuf,smb_vwv0,fsp->fnum);
1541 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1542 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1545 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1546 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1549 DEBUG( 2, ( "reply_mknew: file %s\n", fname ) );
1550 DEBUG( 3, ( "reply_mknew %s fd=%d dmode=0x%x\n", fname, fsp->fh->fd, (unsigned int)fattr ) );
1552 END_PROFILE(SMBcreate);
1553 return(outsize);
1556 /****************************************************************************
1557 Reply to a create temporary file.
1558 ****************************************************************************/
1560 int reply_ctemp(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
1562 pstring fname;
1563 int outsize = 0;
1564 uint32 fattr = SVAL(inbuf,smb_vwv0);
1565 files_struct *fsp;
1566 int oplock_request = CORE_OPLOCK_REQUEST(inbuf);
1567 int tmpfd;
1568 SMB_STRUCT_STAT sbuf;
1569 char *p, *s;
1570 NTSTATUS status;
1571 unsigned int namelen;
1573 START_PROFILE(SMBctemp);
1575 srvstr_get_path(inbuf, fname, smb_buf(inbuf)+1, sizeof(fname), 0, STR_TERMINATE, &status);
1576 if (!NT_STATUS_IS_OK(status)) {
1577 END_PROFILE(SMBctemp);
1578 return ERROR_NT(status);
1580 if (*fname) {
1581 pstrcat(fname,"/TMXXXXXX");
1582 } else {
1583 pstrcat(fname,"TMXXXXXX");
1586 RESOLVE_DFSPATH(fname, conn, inbuf, outbuf);
1588 status = unix_convert(conn, fname, False, NULL, &sbuf);
1589 if (!NT_STATUS_IS_OK(status)) {
1590 END_PROFILE(SMBctemp);
1591 return ERROR_NT(status);
1594 tmpfd = smb_mkstemp(fname);
1595 if (tmpfd == -1) {
1596 END_PROFILE(SMBctemp);
1597 return(UNIXERROR(ERRDOS,ERRnoaccess));
1600 SMB_VFS_STAT(conn,fname,&sbuf);
1602 /* We should fail if file does not exist. */
1603 status = open_file_ntcreate(conn,fname,&sbuf,
1604 FILE_GENERIC_READ | FILE_GENERIC_WRITE,
1605 FILE_SHARE_READ|FILE_SHARE_WRITE,
1606 FILE_OPEN,
1608 fattr,
1609 oplock_request,
1610 NULL, &fsp);
1612 /* close fd from smb_mkstemp() */
1613 close(tmpfd);
1615 if (!NT_STATUS_IS_OK(status)) {
1616 END_PROFILE(SMBctemp);
1617 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1618 /* We have re-scheduled this call. */
1619 return -1;
1621 return ERROR_NT(status);
1624 outsize = set_message(outbuf,1,0,True);
1625 SSVAL(outbuf,smb_vwv0,fsp->fnum);
1627 /* the returned filename is relative to the directory */
1628 s = strrchr_m(fname, '/');
1629 if (!s) {
1630 s = fname;
1631 } else {
1632 s++;
1635 p = smb_buf(outbuf);
1636 #if 0
1637 /* Tested vs W2K3 - this doesn't seem to be here - null terminated filename is the only
1638 thing in the byte section. JRA */
1639 SSVALS(p, 0, -1); /* what is this? not in spec */
1640 #endif
1641 namelen = srvstr_push(outbuf, p, s, -1, STR_ASCII|STR_TERMINATE);
1642 p += namelen;
1643 outsize = set_message_end(outbuf, p);
1645 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1646 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1649 if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1650 SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1653 DEBUG( 2, ( "reply_ctemp: created temp file %s\n", fname ) );
1654 DEBUG( 3, ( "reply_ctemp %s fd=%d umode=0%o\n", fname, fsp->fh->fd,
1655 (unsigned int)sbuf.st_mode ) );
1657 END_PROFILE(SMBctemp);
1658 return(outsize);
1661 /*******************************************************************
1662 Check if a user is allowed to rename a file.
1663 ********************************************************************/
1665 static NTSTATUS can_rename(connection_struct *conn, char *fname, uint16 dirtype, SMB_STRUCT_STAT *pst)
1667 files_struct *fsp;
1668 uint32 fmode;
1669 NTSTATUS status;
1671 if (!CAN_WRITE(conn)) {
1672 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1675 fmode = dos_mode(conn,fname,pst);
1676 if ((fmode & ~dirtype) & (aHIDDEN | aSYSTEM)) {
1677 return NT_STATUS_NO_SUCH_FILE;
1680 if (S_ISDIR(pst->st_mode)) {
1681 return NT_STATUS_OK;
1684 status = open_file_ntcreate(conn, fname, pst,
1685 DELETE_ACCESS,
1686 FILE_SHARE_READ|FILE_SHARE_WRITE,
1687 FILE_OPEN,
1689 FILE_ATTRIBUTE_NORMAL,
1691 NULL, &fsp);
1693 if (!NT_STATUS_IS_OK(status)) {
1694 return status;
1696 close_file(fsp,NORMAL_CLOSE);
1697 return NT_STATUS_OK;
1700 /*******************************************************************
1701 Check if a user is allowed to delete a file.
1702 ********************************************************************/
1704 static NTSTATUS can_delete(connection_struct *conn, char *fname,
1705 uint32 dirtype, BOOL can_defer)
1707 SMB_STRUCT_STAT sbuf;
1708 uint32 fattr;
1709 files_struct *fsp;
1710 uint32 dirtype_orig = dirtype;
1711 NTSTATUS status;
1713 DEBUG(10,("can_delete: %s, dirtype = %d\n", fname, dirtype ));
1715 if (!CAN_WRITE(conn)) {
1716 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1719 if (SMB_VFS_LSTAT(conn,fname,&sbuf) != 0) {
1720 return map_nt_error_from_unix(errno);
1723 fattr = dos_mode(conn,fname,&sbuf);
1725 if (dirtype & FILE_ATTRIBUTE_NORMAL) {
1726 dirtype = aDIR|aARCH|aRONLY;
1729 dirtype &= (aDIR|aARCH|aRONLY|aHIDDEN|aSYSTEM);
1730 if (!dirtype) {
1731 return NT_STATUS_NO_SUCH_FILE;
1734 if (!dir_check_ftype(conn, fattr, dirtype)) {
1735 if (fattr & aDIR) {
1736 return NT_STATUS_FILE_IS_A_DIRECTORY;
1738 return NT_STATUS_NO_SUCH_FILE;
1741 if (dirtype_orig & 0x8000) {
1742 /* These will never be set for POSIX. */
1743 return NT_STATUS_NO_SUCH_FILE;
1746 #if 0
1747 if ((fattr & dirtype) & FILE_ATTRIBUTE_DIRECTORY) {
1748 return NT_STATUS_FILE_IS_A_DIRECTORY;
1751 if ((fattr & ~dirtype) & (FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM)) {
1752 return NT_STATUS_NO_SUCH_FILE;
1755 if (dirtype & 0xFF00) {
1756 /* These will never be set for POSIX. */
1757 return NT_STATUS_NO_SUCH_FILE;
1760 dirtype &= 0xFF;
1761 if (!dirtype) {
1762 return NT_STATUS_NO_SUCH_FILE;
1765 /* Can't delete a directory. */
1766 if (fattr & aDIR) {
1767 return NT_STATUS_FILE_IS_A_DIRECTORY;
1769 #endif
1771 #if 0 /* JRATEST */
1772 else if (dirtype & aDIR) /* Asked for a directory and it isn't. */
1773 return NT_STATUS_OBJECT_NAME_INVALID;
1774 #endif /* JRATEST */
1776 /* Fix for bug #3035 from SATOH Fumiyasu <fumiyas@miraclelinux.com>
1778 On a Windows share, a file with read-only dosmode can be opened with
1779 DELETE_ACCESS. But on a Samba share (delete readonly = no), it
1780 fails with NT_STATUS_CANNOT_DELETE error.
1782 This semantic causes a problem that a user can not
1783 rename a file with read-only dosmode on a Samba share
1784 from a Windows command prompt (i.e. cmd.exe, but can rename
1785 from Windows Explorer).
1788 if (!lp_delete_readonly(SNUM(conn))) {
1789 if (fattr & aRONLY) {
1790 return NT_STATUS_CANNOT_DELETE;
1794 /* On open checks the open itself will check the share mode, so
1795 don't do it here as we'll get it wrong. */
1797 status = open_file_ntcreate(conn, fname, &sbuf,
1798 DELETE_ACCESS,
1799 FILE_SHARE_NONE,
1800 FILE_OPEN,
1802 FILE_ATTRIBUTE_NORMAL,
1803 can_defer ? 0 : INTERNAL_OPEN_ONLY,
1804 NULL, &fsp);
1806 if (NT_STATUS_IS_OK(status)) {
1807 close_file(fsp,NORMAL_CLOSE);
1809 return status;
1812 /****************************************************************************
1813 The guts of the unlink command, split out so it may be called by the NT SMB
1814 code.
1815 ****************************************************************************/
1817 NTSTATUS unlink_internals(connection_struct *conn, uint32 dirtype,
1818 char *name, BOOL has_wild, BOOL can_defer)
1820 pstring directory;
1821 pstring mask;
1822 char *p;
1823 int count=0;
1824 NTSTATUS status = NT_STATUS_OK;
1825 SMB_STRUCT_STAT sbuf;
1827 *directory = *mask = 0;
1829 status = unix_convert(conn, name, has_wild, NULL, &sbuf);
1830 if (!NT_STATUS_IS_OK(status)) {
1831 return status;
1834 p = strrchr_m(name,'/');
1835 if (!p) {
1836 pstrcpy(directory,".");
1837 pstrcpy(mask,name);
1838 } else {
1839 *p = 0;
1840 pstrcpy(directory,name);
1841 pstrcpy(mask,p+1);
1845 * We should only check the mangled cache
1846 * here if unix_convert failed. This means
1847 * that the path in 'mask' doesn't exist
1848 * on the file system and so we need to look
1849 * for a possible mangle. This patch from
1850 * Tine Smukavec <valentin.smukavec@hermes.si>.
1853 if (!VALID_STAT(sbuf) && mangle_is_mangled(mask,conn->params))
1854 mangle_check_cache( mask, sizeof(pstring)-1, conn->params );
1856 if (!has_wild) {
1857 pstrcat(directory,"/");
1858 pstrcat(directory,mask);
1859 if (dirtype == 0) {
1860 dirtype = FILE_ATTRIBUTE_NORMAL;
1862 status = can_delete(conn,directory,dirtype,can_defer);
1863 if (!NT_STATUS_IS_OK(status)) {
1864 return status;
1867 if (SMB_VFS_UNLINK(conn,directory) == 0) {
1868 count++;
1869 notify_fname(conn, directory,
1870 FILE_NOTIFY_CHANGE_FILE,
1871 NOTIFY_ACTION_REMOVED);
1873 } else {
1874 struct smb_Dir *dir_hnd = NULL;
1875 long offset = 0;
1876 const char *dname;
1878 if ((dirtype & SAMBA_ATTRIBUTES_MASK) == aDIR) {
1879 return NT_STATUS_OBJECT_NAME_INVALID;
1882 if (strequal(mask,"????????.???")) {
1883 pstrcpy(mask,"*");
1886 status = check_name(conn, directory);
1887 if (!NT_STATUS_IS_OK(status)) {
1888 return status;
1891 dir_hnd = OpenDir(conn, directory, mask, dirtype);
1892 if (dir_hnd == NULL) {
1893 return map_nt_error_from_unix(errno);
1896 /* XXXX the CIFS spec says that if bit0 of the flags2 field is set then
1897 the pattern matches against the long name, otherwise the short name
1898 We don't implement this yet XXXX
1901 status = NT_STATUS_NO_SUCH_FILE;
1903 while ((dname = ReadDirName(dir_hnd, &offset))) {
1904 SMB_STRUCT_STAT st;
1905 pstring fname;
1906 pstrcpy(fname,dname);
1908 if (!is_visible_file(conn, directory, dname, &st, True)) {
1909 continue;
1912 /* Quick check for "." and ".." */
1913 if (fname[0] == '.') {
1914 if (!fname[1] || (fname[1] == '.' && !fname[2])) {
1915 continue;
1919 if(!mask_match(fname, mask, conn->case_sensitive)) {
1920 continue;
1923 slprintf(fname,sizeof(fname)-1, "%s/%s",directory,dname);
1924 status = can_delete(conn, fname, dirtype, can_defer);
1925 if (!NT_STATUS_IS_OK(status)) {
1926 continue;
1928 if (SMB_VFS_UNLINK(conn,fname) == 0) {
1929 count++;
1930 DEBUG(3,("unlink_internals: succesful unlink "
1931 "[%s]\n",fname));
1932 notify_action(conn, directory, dname,
1933 FILE_NOTIFY_CHANGE_FILE,
1934 NOTIFY_ACTION_REMOVED);
1938 CloseDir(dir_hnd);
1941 if (count == 0 && NT_STATUS_IS_OK(status)) {
1942 status = map_nt_error_from_unix(errno);
1945 return status;
1948 /****************************************************************************
1949 Reply to a unlink
1950 ****************************************************************************/
1952 int reply_unlink(connection_struct *conn, char *inbuf,char *outbuf, int dum_size,
1953 int dum_buffsize)
1955 int outsize = 0;
1956 pstring name;
1957 uint32 dirtype;
1958 NTSTATUS status;
1959 BOOL path_contains_wcard = False;
1961 START_PROFILE(SMBunlink);
1963 dirtype = SVAL(inbuf,smb_vwv0);
1965 srvstr_get_path_wcard(inbuf, name, smb_buf(inbuf) + 1, sizeof(name), 0, STR_TERMINATE, &status, &path_contains_wcard);
1966 if (!NT_STATUS_IS_OK(status)) {
1967 END_PROFILE(SMBunlink);
1968 return ERROR_NT(status);
1971 RESOLVE_DFSPATH_WCARD(name, conn, inbuf, outbuf);
1973 DEBUG(3,("reply_unlink : %s\n",name));
1975 status = unlink_internals(conn, dirtype, name, path_contains_wcard,
1976 True);
1977 if (!NT_STATUS_IS_OK(status)) {
1978 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
1979 /* We have re-scheduled this call. */
1980 return -1;
1982 return ERROR_NT(status);
1985 outsize = set_message(outbuf,0,0,False);
1987 END_PROFILE(SMBunlink);
1988 return outsize;
1991 /****************************************************************************
1992 Fail for readbraw.
1993 ****************************************************************************/
1995 static void fail_readraw(void)
1997 pstring errstr;
1998 slprintf(errstr, sizeof(errstr)-1, "FAIL ! reply_readbraw: socket write fail (%s)",
1999 strerror(errno) );
2000 exit_server_cleanly(errstr);
2003 #if defined(WITH_SENDFILE)
2004 /****************************************************************************
2005 Fake (read/write) sendfile. Returns -1 on read or write fail.
2006 ****************************************************************************/
2008 static ssize_t fake_sendfile(files_struct *fsp, SMB_OFF_T startpos, size_t nread, char *buf, int bufsize)
2010 ssize_t ret=0;
2012 /* Paranioa check... */
2013 if (nread > bufsize) {
2014 fail_readraw();
2017 if (nread > 0) {
2018 ret = read_file(fsp,buf,startpos,nread);
2019 if (ret == -1) {
2020 return -1;
2024 /* If we had a short read, fill with zeros. */
2025 if (ret < nread) {
2026 memset(buf, '\0', nread - ret);
2029 if (write_data(smbd_server_fd(),buf,nread) != nread) {
2030 return -1;
2033 return (ssize_t)nread;
2035 #endif
2037 /****************************************************************************
2038 Use sendfile in readbraw.
2039 ****************************************************************************/
2041 void send_file_readbraw(connection_struct *conn, files_struct *fsp, SMB_OFF_T startpos, size_t nread,
2042 ssize_t mincount, char *outbuf, int out_buffsize)
2044 ssize_t ret=0;
2046 #if defined(WITH_SENDFILE)
2048 * We can only use sendfile on a non-chained packet
2049 * but we can use on a non-oplocked file. tridge proved this
2050 * on a train in Germany :-). JRA.
2051 * reply_readbraw has already checked the length.
2054 if ( (chain_size == 0) && (nread > 0) &&
2055 (fsp->wcp == NULL) && lp_use_sendfile(SNUM(conn)) ) {
2056 DATA_BLOB header;
2058 _smb_setlen(outbuf,nread);
2059 header.data = (uint8 *)outbuf;
2060 header.length = 4;
2061 header.free = NULL;
2063 if ( SMB_VFS_SENDFILE( smbd_server_fd(), fsp, fsp->fh->fd, &header, startpos, nread) == -1) {
2064 /* Returning ENOSYS means no data at all was sent. Do this as a normal read. */
2065 if (errno == ENOSYS) {
2066 goto normal_readbraw;
2070 * Special hack for broken Linux with no working sendfile. If we
2071 * return EINTR we sent the header but not the rest of the data.
2072 * Fake this up by doing read/write calls.
2074 if (errno == EINTR) {
2075 /* Ensure we don't do this again. */
2076 set_use_sendfile(SNUM(conn), False);
2077 DEBUG(0,("send_file_readbraw: sendfile not available. Faking..\n"));
2079 if (fake_sendfile(fsp, startpos, nread, outbuf + 4, out_buffsize - 4) == -1) {
2080 DEBUG(0,("send_file_readbraw: fake_sendfile failed for file %s (%s).\n",
2081 fsp->fsp_name, strerror(errno) ));
2082 exit_server_cleanly("send_file_readbraw fake_sendfile failed");
2084 return;
2087 DEBUG(0,("send_file_readbraw: sendfile failed for file %s (%s). Terminating\n",
2088 fsp->fsp_name, strerror(errno) ));
2089 exit_server_cleanly("send_file_readbraw sendfile failed");
2094 normal_readbraw:
2096 #endif
2098 if (nread > 0) {
2099 ret = read_file(fsp,outbuf+4,startpos,nread);
2100 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
2101 if (ret < mincount)
2102 ret = 0;
2103 #else
2104 if (ret < nread)
2105 ret = 0;
2106 #endif
2109 _smb_setlen(outbuf,ret);
2110 if (write_data(smbd_server_fd(),outbuf,4+ret) != 4+ret)
2111 fail_readraw();
2114 /****************************************************************************
2115 Reply to a readbraw (core+ protocol).
2116 ****************************************************************************/
2118 int reply_readbraw(connection_struct *conn, char *inbuf, char *outbuf, int dum_size, int out_buffsize)
2120 ssize_t maxcount,mincount;
2121 size_t nread = 0;
2122 SMB_OFF_T startpos;
2123 char *header = outbuf;
2124 files_struct *fsp;
2125 START_PROFILE(SMBreadbraw);
2127 if (srv_is_signing_active()) {
2128 exit_server_cleanly("reply_readbraw: SMB signing is active - raw reads/writes are disallowed.");
2132 * Special check if an oplock break has been issued
2133 * and the readraw request croses on the wire, we must
2134 * return a zero length response here.
2137 fsp = file_fsp(inbuf,smb_vwv0);
2139 if (!FNUM_OK(fsp,conn) || !fsp->can_read) {
2141 * fsp could be NULL here so use the value from the packet. JRA.
2143 DEBUG(3,("fnum %d not open in readbraw - cache prime?\n",(int)SVAL(inbuf,smb_vwv0)));
2144 _smb_setlen(header,0);
2145 if (write_data(smbd_server_fd(),header,4) != 4)
2146 fail_readraw();
2147 END_PROFILE(SMBreadbraw);
2148 return(-1);
2151 CHECK_FSP(fsp,conn);
2153 flush_write_cache(fsp, READRAW_FLUSH);
2155 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv1);
2156 if(CVAL(inbuf,smb_wct) == 10) {
2158 * This is a large offset (64 bit) read.
2160 #ifdef LARGE_SMB_OFF_T
2162 startpos |= (((SMB_OFF_T)IVAL(inbuf,smb_vwv8)) << 32);
2164 #else /* !LARGE_SMB_OFF_T */
2167 * Ensure we haven't been sent a >32 bit offset.
2170 if(IVAL(inbuf,smb_vwv8) != 0) {
2171 DEBUG(0,("readbraw - large offset (%x << 32) used and we don't support \
2172 64 bit offsets.\n", (unsigned int)IVAL(inbuf,smb_vwv8) ));
2173 _smb_setlen(header,0);
2174 if (write_data(smbd_server_fd(),header,4) != 4)
2175 fail_readraw();
2176 END_PROFILE(SMBreadbraw);
2177 return(-1);
2180 #endif /* LARGE_SMB_OFF_T */
2182 if(startpos < 0) {
2183 DEBUG(0,("readbraw - negative 64 bit readraw offset (%.0f) !\n", (double)startpos ));
2184 _smb_setlen(header,0);
2185 if (write_data(smbd_server_fd(),header,4) != 4)
2186 fail_readraw();
2187 END_PROFILE(SMBreadbraw);
2188 return(-1);
2191 maxcount = (SVAL(inbuf,smb_vwv3) & 0xFFFF);
2192 mincount = (SVAL(inbuf,smb_vwv4) & 0xFFFF);
2194 /* ensure we don't overrun the packet size */
2195 maxcount = MIN(65535,maxcount);
2197 if (!is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)maxcount,(SMB_BIG_UINT)startpos, READ_LOCK)) {
2198 SMB_STRUCT_STAT st;
2199 SMB_OFF_T size = 0;
2201 if (SMB_VFS_FSTAT(fsp,fsp->fh->fd,&st) == 0) {
2202 size = st.st_size;
2205 if (startpos >= size) {
2206 nread = 0;
2207 } else {
2208 nread = MIN(maxcount,(size - startpos));
2212 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
2213 if (nread < mincount)
2214 nread = 0;
2215 #endif
2217 DEBUG( 3, ( "readbraw fnum=%d start=%.0f max=%lu min=%lu nread=%lu\n", fsp->fnum, (double)startpos,
2218 (unsigned long)maxcount, (unsigned long)mincount, (unsigned long)nread ) );
2220 send_file_readbraw(conn, fsp, startpos, nread, mincount, outbuf, out_buffsize);
2222 DEBUG(5,("readbraw finished\n"));
2223 END_PROFILE(SMBreadbraw);
2224 return -1;
2227 #undef DBGC_CLASS
2228 #define DBGC_CLASS DBGC_LOCKING
2230 /****************************************************************************
2231 Reply to a lockread (core+ protocol).
2232 ****************************************************************************/
2234 int reply_lockread(connection_struct *conn, char *inbuf,char *outbuf, int length, int dum_buffsiz)
2236 ssize_t nread = -1;
2237 char *data;
2238 int outsize = 0;
2239 SMB_OFF_T startpos;
2240 size_t numtoread;
2241 NTSTATUS status;
2242 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2243 struct byte_range_lock *br_lck = NULL;
2244 START_PROFILE(SMBlockread);
2246 CHECK_FSP(fsp,conn);
2247 if (!CHECK_READ(fsp,inbuf)) {
2248 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2251 release_level_2_oplocks_on_change(fsp);
2253 numtoread = SVAL(inbuf,smb_vwv1);
2254 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
2256 outsize = set_message(outbuf,5,3,True);
2257 numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
2258 data = smb_buf(outbuf) + 3;
2261 * NB. Discovered by Menny Hamburger at Mainsoft. This is a core+
2262 * protocol request that predates the read/write lock concept.
2263 * Thus instead of asking for a read lock here we need to ask
2264 * for a write lock. JRA.
2265 * Note that the requested lock size is unaffected by max_recv.
2268 br_lck = do_lock(fsp,
2269 (uint32)SVAL(inbuf,smb_pid),
2270 (SMB_BIG_UINT)numtoread,
2271 (SMB_BIG_UINT)startpos,
2272 WRITE_LOCK,
2273 WINDOWS_LOCK,
2274 False, /* Non-blocking lock. */
2275 &status);
2276 TALLOC_FREE(br_lck);
2278 if (NT_STATUS_V(status)) {
2279 END_PROFILE(SMBlockread);
2280 return ERROR_NT(status);
2284 * However the requested READ size IS affected by max_recv. Insanity.... JRA.
2287 if (numtoread > max_recv) {
2288 DEBUG(0,("reply_lockread: requested read size (%u) is greater than maximum allowed (%u). \
2289 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
2290 (unsigned int)numtoread, (unsigned int)max_recv ));
2291 numtoread = MIN(numtoread,max_recv);
2293 nread = read_file(fsp,data,startpos,numtoread);
2295 if (nread < 0) {
2296 END_PROFILE(SMBlockread);
2297 return(UNIXERROR(ERRDOS,ERRnoaccess));
2300 outsize += nread;
2301 SSVAL(outbuf,smb_vwv0,nread);
2302 SSVAL(outbuf,smb_vwv5,nread+3);
2303 SSVAL(smb_buf(outbuf),1,nread);
2305 DEBUG(3,("lockread fnum=%d num=%d nread=%d\n",
2306 fsp->fnum, (int)numtoread, (int)nread));
2308 END_PROFILE(SMBlockread);
2309 return(outsize);
2312 #undef DBGC_CLASS
2313 #define DBGC_CLASS DBGC_ALL
2315 /****************************************************************************
2316 Reply to a read.
2317 ****************************************************************************/
2319 int reply_read(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
2321 size_t numtoread;
2322 ssize_t nread = 0;
2323 char *data;
2324 SMB_OFF_T startpos;
2325 int outsize = 0;
2326 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2327 START_PROFILE(SMBread);
2329 CHECK_FSP(fsp,conn);
2330 if (!CHECK_READ(fsp,inbuf)) {
2331 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2334 numtoread = SVAL(inbuf,smb_vwv1);
2335 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
2337 outsize = set_message(outbuf,5,3,True);
2338 numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
2340 * The requested read size cannot be greater than max_recv. JRA.
2342 if (numtoread > max_recv) {
2343 DEBUG(0,("reply_read: requested read size (%u) is greater than maximum allowed (%u). \
2344 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
2345 (unsigned int)numtoread, (unsigned int)max_recv ));
2346 numtoread = MIN(numtoread,max_recv);
2349 data = smb_buf(outbuf) + 3;
2351 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)numtoread,(SMB_BIG_UINT)startpos, READ_LOCK)) {
2352 END_PROFILE(SMBread);
2353 return ERROR_DOS(ERRDOS,ERRlock);
2356 if (numtoread > 0)
2357 nread = read_file(fsp,data,startpos,numtoread);
2359 if (nread < 0) {
2360 END_PROFILE(SMBread);
2361 return(UNIXERROR(ERRDOS,ERRnoaccess));
2364 outsize += nread;
2365 SSVAL(outbuf,smb_vwv0,nread);
2366 SSVAL(outbuf,smb_vwv5,nread+3);
2367 SCVAL(smb_buf(outbuf),0,1);
2368 SSVAL(smb_buf(outbuf),1,nread);
2370 DEBUG( 3, ( "read fnum=%d num=%d nread=%d\n",
2371 fsp->fnum, (int)numtoread, (int)nread ) );
2373 END_PROFILE(SMBread);
2374 return(outsize);
2377 /****************************************************************************
2378 Reply to a read and X - possibly using sendfile.
2379 ****************************************************************************/
2381 int send_file_readX(connection_struct *conn, char *inbuf,char *outbuf,int length, int len_outbuf,
2382 files_struct *fsp, SMB_OFF_T startpos, size_t smb_maxcnt)
2384 int outsize = 0;
2385 ssize_t nread = -1;
2386 char *data = smb_buf(outbuf);
2388 #if defined(WITH_SENDFILE)
2390 * We can only use sendfile on a non-chained packet
2391 * but we can use on a non-oplocked file. tridge proved this
2392 * on a train in Germany :-). JRA.
2395 if ((chain_size == 0) && (CVAL(inbuf,smb_vwv0) == 0xFF) &&
2396 lp_use_sendfile(SNUM(conn)) && (fsp->wcp == NULL) ) {
2397 SMB_STRUCT_STAT sbuf;
2398 DATA_BLOB header;
2400 if(SMB_VFS_FSTAT(fsp,fsp->fh->fd, &sbuf) == -1)
2401 return(UNIXERROR(ERRDOS,ERRnoaccess));
2403 if (startpos > sbuf.st_size)
2404 goto normal_read;
2406 if (smb_maxcnt > (sbuf.st_size - startpos))
2407 smb_maxcnt = (sbuf.st_size - startpos);
2409 if (smb_maxcnt == 0)
2410 goto normal_read;
2413 * Set up the packet header before send. We
2414 * assume here the sendfile will work (get the
2415 * correct amount of data).
2418 SSVAL(outbuf,smb_vwv2,0xFFFF); /* Remaining - must be -1. */
2419 SSVAL(outbuf,smb_vwv5,smb_maxcnt);
2420 SSVAL(outbuf,smb_vwv6,smb_offset(data,outbuf));
2421 SSVAL(outbuf,smb_vwv7,((smb_maxcnt >> 16) & 1));
2422 SSVAL(smb_buf(outbuf),-2,smb_maxcnt);
2423 SCVAL(outbuf,smb_vwv0,0xFF);
2424 set_message(outbuf,12,smb_maxcnt,False);
2425 header.data = (uint8 *)outbuf;
2426 header.length = data - outbuf;
2427 header.free = NULL;
2429 if ((nread = SMB_VFS_SENDFILE( smbd_server_fd(), fsp, fsp->fh->fd, &header, startpos, smb_maxcnt)) == -1) {
2430 /* Returning ENOSYS means no data at all was sent. Do this as a normal read. */
2431 if (errno == ENOSYS) {
2432 goto normal_read;
2436 * Special hack for broken Linux with no working sendfile. If we
2437 * return EINTR we sent the header but not the rest of the data.
2438 * Fake this up by doing read/write calls.
2441 if (errno == EINTR) {
2442 /* Ensure we don't do this again. */
2443 set_use_sendfile(SNUM(conn), False);
2444 DEBUG(0,("send_file_readX: sendfile not available. Faking..\n"));
2446 if ((nread = fake_sendfile(fsp, startpos, smb_maxcnt, data,
2447 len_outbuf - (data-outbuf))) == -1) {
2448 DEBUG(0,("send_file_readX: fake_sendfile failed for file %s (%s).\n",
2449 fsp->fsp_name, strerror(errno) ));
2450 exit_server_cleanly("send_file_readX: fake_sendfile failed");
2452 DEBUG( 3, ( "send_file_readX: fake_sendfile fnum=%d max=%d nread=%d\n",
2453 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
2454 /* Returning -1 here means successful sendfile. */
2455 return -1;
2458 DEBUG(0,("send_file_readX: sendfile failed for file %s (%s). Terminating\n",
2459 fsp->fsp_name, strerror(errno) ));
2460 exit_server_cleanly("send_file_readX sendfile failed");
2463 DEBUG( 3, ( "send_file_readX: sendfile fnum=%d max=%d nread=%d\n",
2464 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
2465 /* Returning -1 here means successful sendfile. */
2466 return -1;
2469 normal_read:
2471 #endif
2473 nread = read_file(fsp,data,startpos,smb_maxcnt);
2475 if (nread < 0) {
2476 return(UNIXERROR(ERRDOS,ERRnoaccess));
2479 outsize = set_message(outbuf,12,nread,False);
2480 SSVAL(outbuf,smb_vwv2,0xFFFF); /* Remaining - must be -1. */
2481 SSVAL(outbuf,smb_vwv5,nread);
2482 SSVAL(outbuf,smb_vwv6,smb_offset(data,outbuf));
2483 SSVAL(outbuf,smb_vwv7,((nread >> 16) & 1));
2484 SSVAL(smb_buf(outbuf),-2,nread);
2486 DEBUG( 3, ( "send_file_readX fnum=%d max=%d nread=%d\n",
2487 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
2489 /* Returning the number of bytes we want to send back - including header. */
2490 return outsize;
2493 /****************************************************************************
2494 Reply to a read and X.
2495 ****************************************************************************/
2497 int reply_read_and_X(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
2499 files_struct *fsp = file_fsp(inbuf,smb_vwv2);
2500 SMB_OFF_T startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv3);
2501 ssize_t nread = -1;
2502 size_t smb_maxcnt = SVAL(inbuf,smb_vwv5);
2503 #if 0
2504 size_t smb_mincnt = SVAL(inbuf,smb_vwv6);
2505 #endif
2507 START_PROFILE(SMBreadX);
2509 /* If it's an IPC, pass off the pipe handler. */
2510 if (IS_IPC(conn)) {
2511 END_PROFILE(SMBreadX);
2512 return reply_pipe_read_and_X(inbuf,outbuf,length,bufsize);
2515 CHECK_FSP(fsp,conn);
2516 if (!CHECK_READ(fsp,inbuf)) {
2517 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2520 set_message(outbuf,12,0,True);
2522 if (global_client_caps & CAP_LARGE_READX) {
2523 if (SVAL(inbuf,smb_vwv7) == 1) {
2524 smb_maxcnt |= (1<<16);
2526 if (smb_maxcnt > BUFFER_SIZE) {
2527 DEBUG(0,("reply_read_and_X - read too large (%u) for reply buffer %u\n",
2528 (unsigned int)smb_maxcnt, (unsigned int)BUFFER_SIZE));
2529 END_PROFILE(SMBreadX);
2530 return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
2534 if(CVAL(inbuf,smb_wct) == 12) {
2535 #ifdef LARGE_SMB_OFF_T
2537 * This is a large offset (64 bit) read.
2539 startpos |= (((SMB_OFF_T)IVAL(inbuf,smb_vwv10)) << 32);
2541 #else /* !LARGE_SMB_OFF_T */
2544 * Ensure we haven't been sent a >32 bit offset.
2547 if(IVAL(inbuf,smb_vwv10) != 0) {
2548 DEBUG(0,("reply_read_and_X - large offset (%x << 32) used and we don't support \
2549 64 bit offsets.\n", (unsigned int)IVAL(inbuf,smb_vwv10) ));
2550 END_PROFILE(SMBreadX);
2551 return ERROR_DOS(ERRDOS,ERRbadaccess);
2554 #endif /* LARGE_SMB_OFF_T */
2558 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)smb_maxcnt,(SMB_BIG_UINT)startpos, READ_LOCK)) {
2559 END_PROFILE(SMBreadX);
2560 return ERROR_DOS(ERRDOS,ERRlock);
2563 if (schedule_aio_read_and_X(conn, inbuf, outbuf, length, bufsize, fsp, startpos, smb_maxcnt)) {
2564 END_PROFILE(SMBreadX);
2565 return -1;
2568 nread = send_file_readX(conn, inbuf, outbuf, length, bufsize, fsp, startpos, smb_maxcnt);
2569 if (nread != -1)
2570 nread = chain_reply(inbuf,outbuf,length,bufsize);
2572 END_PROFILE(SMBreadX);
2573 return nread;
2576 /****************************************************************************
2577 Reply to a writebraw (core+ or LANMAN1.0 protocol).
2578 ****************************************************************************/
2580 int reply_writebraw(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
2582 ssize_t nwritten=0;
2583 ssize_t total_written=0;
2584 size_t numtowrite=0;
2585 size_t tcount;
2586 SMB_OFF_T startpos;
2587 char *data=NULL;
2588 BOOL write_through;
2589 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2590 int outsize = 0;
2591 START_PROFILE(SMBwritebraw);
2593 if (srv_is_signing_active()) {
2594 exit_server_cleanly("reply_writebraw: SMB signing is active - raw reads/writes are disallowed.");
2597 CHECK_FSP(fsp,conn);
2598 if (!CHECK_WRITE(fsp)) {
2599 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2602 tcount = IVAL(inbuf,smb_vwv1);
2603 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv3);
2604 write_through = BITSETW(inbuf+smb_vwv7,0);
2606 /* We have to deal with slightly different formats depending
2607 on whether we are using the core+ or lanman1.0 protocol */
2609 if(Protocol <= PROTOCOL_COREPLUS) {
2610 numtowrite = SVAL(smb_buf(inbuf),-2);
2611 data = smb_buf(inbuf);
2612 } else {
2613 numtowrite = SVAL(inbuf,smb_vwv10);
2614 data = smb_base(inbuf) + SVAL(inbuf, smb_vwv11);
2617 /* force the error type */
2618 SCVAL(inbuf,smb_com,SMBwritec);
2619 SCVAL(outbuf,smb_com,SMBwritec);
2621 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)tcount,(SMB_BIG_UINT)startpos, WRITE_LOCK)) {
2622 END_PROFILE(SMBwritebraw);
2623 return(ERROR_DOS(ERRDOS,ERRlock));
2626 if (numtowrite>0)
2627 nwritten = write_file(fsp,data,startpos,numtowrite);
2629 DEBUG(3,("writebraw1 fnum=%d start=%.0f num=%d wrote=%d sync=%d\n",
2630 fsp->fnum, (double)startpos, (int)numtowrite, (int)nwritten, (int)write_through));
2632 if (nwritten < (ssize_t)numtowrite) {
2633 END_PROFILE(SMBwritebraw);
2634 return(UNIXERROR(ERRHRD,ERRdiskfull));
2637 total_written = nwritten;
2639 /* Return a message to the redirector to tell it to send more bytes */
2640 SCVAL(outbuf,smb_com,SMBwritebraw);
2641 SSVALS(outbuf,smb_vwv0,-1);
2642 outsize = set_message(outbuf,Protocol>PROTOCOL_COREPLUS?1:0,0,True);
2643 show_msg(outbuf);
2644 if (!send_smb(smbd_server_fd(),outbuf))
2645 exit_server_cleanly("reply_writebraw: send_smb failed.");
2647 /* Now read the raw data into the buffer and write it */
2648 if (read_smb_length(smbd_server_fd(),inbuf,SMB_SECONDARY_WAIT) == -1) {
2649 exit_server_cleanly("secondary writebraw failed");
2652 /* Even though this is not an smb message, smb_len returns the generic length of an smb message */
2653 numtowrite = smb_len(inbuf);
2655 /* Set up outbuf to return the correct return */
2656 outsize = set_message(outbuf,1,0,True);
2657 SCVAL(outbuf,smb_com,SMBwritec);
2659 if (numtowrite != 0) {
2661 if (numtowrite > BUFFER_SIZE) {
2662 DEBUG(0,("reply_writebraw: Oversize secondary write raw requested (%u). Terminating\n",
2663 (unsigned int)numtowrite ));
2664 exit_server_cleanly("secondary writebraw failed");
2667 if (tcount > nwritten+numtowrite) {
2668 DEBUG(3,("Client overestimated the write %d %d %d\n",
2669 (int)tcount,(int)nwritten,(int)numtowrite));
2672 if (read_data( smbd_server_fd(), inbuf+4, numtowrite) != numtowrite ) {
2673 DEBUG(0,("reply_writebraw: Oversize secondary write raw read failed (%s). Terminating\n",
2674 strerror(errno) ));
2675 exit_server_cleanly("secondary writebraw failed");
2678 nwritten = write_file(fsp,inbuf+4,startpos+nwritten,numtowrite);
2679 if (nwritten == -1) {
2680 END_PROFILE(SMBwritebraw);
2681 return(UNIXERROR(ERRHRD,ERRdiskfull));
2684 if (nwritten < (ssize_t)numtowrite) {
2685 SCVAL(outbuf,smb_rcls,ERRHRD);
2686 SSVAL(outbuf,smb_err,ERRdiskfull);
2689 if (nwritten > 0)
2690 total_written += nwritten;
2693 SSVAL(outbuf,smb_vwv0,total_written);
2695 sync_file(conn, fsp, write_through);
2697 DEBUG(3,("writebraw2 fnum=%d start=%.0f num=%d wrote=%d\n",
2698 fsp->fnum, (double)startpos, (int)numtowrite,(int)total_written));
2700 /* we won't return a status if write through is not selected - this follows what WfWg does */
2701 END_PROFILE(SMBwritebraw);
2702 if (!write_through && total_written==tcount) {
2704 #if RABBIT_PELLET_FIX
2706 * Fix for "rabbit pellet" mode, trigger an early TCP ack by
2707 * sending a SMBkeepalive. Thanks to DaveCB at Sun for this. JRA.
2709 if (!send_keepalive(smbd_server_fd()))
2710 exit_server_cleanly("reply_writebraw: send of keepalive failed");
2711 #endif
2712 return(-1);
2715 return(outsize);
2718 #undef DBGC_CLASS
2719 #define DBGC_CLASS DBGC_LOCKING
2721 /****************************************************************************
2722 Reply to a writeunlock (core+).
2723 ****************************************************************************/
2725 int reply_writeunlock(connection_struct *conn, char *inbuf,char *outbuf,
2726 int size, int dum_buffsize)
2728 ssize_t nwritten = -1;
2729 size_t numtowrite;
2730 SMB_OFF_T startpos;
2731 char *data;
2732 NTSTATUS status = NT_STATUS_OK;
2733 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2734 int outsize = 0;
2735 START_PROFILE(SMBwriteunlock);
2737 CHECK_FSP(fsp,conn);
2738 if (!CHECK_WRITE(fsp)) {
2739 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2742 numtowrite = SVAL(inbuf,smb_vwv1);
2743 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
2744 data = smb_buf(inbuf) + 3;
2746 if (numtowrite && is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)numtowrite,(SMB_BIG_UINT)startpos, WRITE_LOCK)) {
2747 END_PROFILE(SMBwriteunlock);
2748 return ERROR_DOS(ERRDOS,ERRlock);
2751 /* The special X/Open SMB protocol handling of
2752 zero length writes is *NOT* done for
2753 this call */
2754 if(numtowrite == 0) {
2755 nwritten = 0;
2756 } else {
2757 nwritten = write_file(fsp,data,startpos,numtowrite);
2760 sync_file(conn, fsp, False /* write through */);
2762 if(((nwritten == 0) && (numtowrite != 0))||(nwritten < 0)) {
2763 END_PROFILE(SMBwriteunlock);
2764 return(UNIXERROR(ERRHRD,ERRdiskfull));
2767 if (numtowrite) {
2768 status = do_unlock(fsp,
2769 (uint32)SVAL(inbuf,smb_pid),
2770 (SMB_BIG_UINT)numtowrite,
2771 (SMB_BIG_UINT)startpos,
2772 WINDOWS_LOCK);
2774 if (NT_STATUS_V(status)) {
2775 END_PROFILE(SMBwriteunlock);
2776 return ERROR_NT(status);
2780 outsize = set_message(outbuf,1,0,True);
2782 SSVAL(outbuf,smb_vwv0,nwritten);
2784 DEBUG(3,("writeunlock fnum=%d num=%d wrote=%d\n",
2785 fsp->fnum, (int)numtowrite, (int)nwritten));
2787 END_PROFILE(SMBwriteunlock);
2788 return outsize;
2791 #undef DBGC_CLASS
2792 #define DBGC_CLASS DBGC_ALL
2794 /****************************************************************************
2795 Reply to a write.
2796 ****************************************************************************/
2798 int reply_write(connection_struct *conn, char *inbuf,char *outbuf,int size,int dum_buffsize)
2800 size_t numtowrite;
2801 ssize_t nwritten = -1;
2802 SMB_OFF_T startpos;
2803 char *data;
2804 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2805 int outsize = 0;
2806 START_PROFILE(SMBwrite);
2808 /* If it's an IPC, pass off the pipe handler. */
2809 if (IS_IPC(conn)) {
2810 END_PROFILE(SMBwrite);
2811 return reply_pipe_write(inbuf,outbuf,size,dum_buffsize);
2814 CHECK_FSP(fsp,conn);
2815 if (!CHECK_WRITE(fsp)) {
2816 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2819 numtowrite = SVAL(inbuf,smb_vwv1);
2820 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
2821 data = smb_buf(inbuf) + 3;
2823 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)numtowrite,(SMB_BIG_UINT)startpos, WRITE_LOCK)) {
2824 END_PROFILE(SMBwrite);
2825 return ERROR_DOS(ERRDOS,ERRlock);
2829 * X/Open SMB protocol says that if smb_vwv1 is
2830 * zero then the file size should be extended or
2831 * truncated to the size given in smb_vwv[2-3].
2834 if(numtowrite == 0) {
2836 * This is actually an allocate call, and set EOF. JRA.
2838 nwritten = vfs_allocate_file_space(fsp, (SMB_OFF_T)startpos);
2839 if (nwritten < 0) {
2840 END_PROFILE(SMBwrite);
2841 return ERROR_NT(NT_STATUS_DISK_FULL);
2843 nwritten = vfs_set_filelen(fsp, (SMB_OFF_T)startpos);
2844 if (nwritten < 0) {
2845 END_PROFILE(SMBwrite);
2846 return ERROR_NT(NT_STATUS_DISK_FULL);
2848 } else
2849 nwritten = write_file(fsp,data,startpos,numtowrite);
2851 sync_file(conn, fsp, False);
2853 if(((nwritten == 0) && (numtowrite != 0))||(nwritten < 0)) {
2854 END_PROFILE(SMBwrite);
2855 return(UNIXERROR(ERRHRD,ERRdiskfull));
2858 outsize = set_message(outbuf,1,0,True);
2860 SSVAL(outbuf,smb_vwv0,nwritten);
2862 if (nwritten < (ssize_t)numtowrite) {
2863 SCVAL(outbuf,smb_rcls,ERRHRD);
2864 SSVAL(outbuf,smb_err,ERRdiskfull);
2867 DEBUG(3,("write fnum=%d num=%d wrote=%d\n", fsp->fnum, (int)numtowrite, (int)nwritten));
2869 END_PROFILE(SMBwrite);
2870 return(outsize);
2873 /****************************************************************************
2874 Reply to a write and X.
2875 ****************************************************************************/
2877 int reply_write_and_X(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
2879 files_struct *fsp = file_fsp(inbuf,smb_vwv2);
2880 SMB_OFF_T startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv3);
2881 size_t numtowrite = SVAL(inbuf,smb_vwv10);
2882 BOOL write_through = BITSETW(inbuf+smb_vwv7,0);
2883 ssize_t nwritten = -1;
2884 unsigned int smb_doff = SVAL(inbuf,smb_vwv11);
2885 unsigned int smblen = smb_len(inbuf);
2886 char *data;
2887 BOOL large_writeX = ((CVAL(inbuf,smb_wct) == 14) && (smblen > 0xFFFF));
2888 START_PROFILE(SMBwriteX);
2890 /* If it's an IPC, pass off the pipe handler. */
2891 if (IS_IPC(conn)) {
2892 END_PROFILE(SMBwriteX);
2893 return reply_pipe_write_and_X(inbuf,outbuf,length,bufsize);
2896 CHECK_FSP(fsp,conn);
2897 if (!CHECK_WRITE(fsp)) {
2898 return(ERROR_DOS(ERRDOS,ERRbadaccess));
2901 set_message(outbuf,6,0,True);
2903 /* Deal with possible LARGE_WRITEX */
2904 if (large_writeX) {
2905 numtowrite |= ((((size_t)SVAL(inbuf,smb_vwv9)) & 1 )<<16);
2908 if(smb_doff > smblen || (smb_doff + numtowrite > smblen)) {
2909 END_PROFILE(SMBwriteX);
2910 return ERROR_DOS(ERRDOS,ERRbadmem);
2913 data = smb_base(inbuf) + smb_doff;
2915 if(CVAL(inbuf,smb_wct) == 14) {
2916 #ifdef LARGE_SMB_OFF_T
2918 * This is a large offset (64 bit) write.
2920 startpos |= (((SMB_OFF_T)IVAL(inbuf,smb_vwv12)) << 32);
2922 #else /* !LARGE_SMB_OFF_T */
2925 * Ensure we haven't been sent a >32 bit offset.
2928 if(IVAL(inbuf,smb_vwv12) != 0) {
2929 DEBUG(0,("reply_write_and_X - large offset (%x << 32) used and we don't support \
2930 64 bit offsets.\n", (unsigned int)IVAL(inbuf,smb_vwv12) ));
2931 END_PROFILE(SMBwriteX);
2932 return ERROR_DOS(ERRDOS,ERRbadaccess);
2935 #endif /* LARGE_SMB_OFF_T */
2938 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)numtowrite,(SMB_BIG_UINT)startpos, WRITE_LOCK)) {
2939 END_PROFILE(SMBwriteX);
2940 return ERROR_DOS(ERRDOS,ERRlock);
2943 /* X/Open SMB protocol says that, unlike SMBwrite
2944 if the length is zero then NO truncation is
2945 done, just a write of zero. To truncate a file,
2946 use SMBwrite. */
2948 if(numtowrite == 0) {
2949 nwritten = 0;
2950 } else {
2952 if (schedule_aio_write_and_X(conn, inbuf, outbuf, length, bufsize,
2953 fsp,data,startpos,numtowrite)) {
2954 END_PROFILE(SMBwriteX);
2955 return -1;
2958 nwritten = write_file(fsp,data,startpos,numtowrite);
2961 if(((nwritten == 0) && (numtowrite != 0))||(nwritten < 0)) {
2962 END_PROFILE(SMBwriteX);
2963 return(UNIXERROR(ERRHRD,ERRdiskfull));
2966 SSVAL(outbuf,smb_vwv2,nwritten);
2967 if (large_writeX)
2968 SSVAL(outbuf,smb_vwv4,(nwritten>>16)&1);
2970 if (nwritten < (ssize_t)numtowrite) {
2971 SCVAL(outbuf,smb_rcls,ERRHRD);
2972 SSVAL(outbuf,smb_err,ERRdiskfull);
2975 DEBUG(3,("writeX fnum=%d num=%d wrote=%d\n",
2976 fsp->fnum, (int)numtowrite, (int)nwritten));
2978 sync_file(conn, fsp, write_through);
2980 END_PROFILE(SMBwriteX);
2981 return chain_reply(inbuf,outbuf,length,bufsize);
2984 /****************************************************************************
2985 Reply to a lseek.
2986 ****************************************************************************/
2988 int reply_lseek(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
2990 SMB_OFF_T startpos;
2991 SMB_OFF_T res= -1;
2992 int mode,umode;
2993 int outsize = 0;
2994 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
2995 START_PROFILE(SMBlseek);
2997 CHECK_FSP(fsp,conn);
2999 flush_write_cache(fsp, SEEK_FLUSH);
3001 mode = SVAL(inbuf,smb_vwv1) & 3;
3002 /* NB. This doesn't use IVAL_TO_SMB_OFF_T as startpos can be signed in this case. */
3003 startpos = (SMB_OFF_T)IVALS(inbuf,smb_vwv2);
3005 switch (mode) {
3006 case 0:
3007 umode = SEEK_SET;
3008 res = startpos;
3009 break;
3010 case 1:
3011 umode = SEEK_CUR;
3012 res = fsp->fh->pos + startpos;
3013 break;
3014 case 2:
3015 umode = SEEK_END;
3016 break;
3017 default:
3018 umode = SEEK_SET;
3019 res = startpos;
3020 break;
3023 if (umode == SEEK_END) {
3024 if((res = SMB_VFS_LSEEK(fsp,fsp->fh->fd,startpos,umode)) == -1) {
3025 if(errno == EINVAL) {
3026 SMB_OFF_T current_pos = startpos;
3027 SMB_STRUCT_STAT sbuf;
3029 if(SMB_VFS_FSTAT(fsp,fsp->fh->fd, &sbuf) == -1) {
3030 END_PROFILE(SMBlseek);
3031 return(UNIXERROR(ERRDOS,ERRnoaccess));
3034 current_pos += sbuf.st_size;
3035 if(current_pos < 0)
3036 res = SMB_VFS_LSEEK(fsp,fsp->fh->fd,0,SEEK_SET);
3040 if(res == -1) {
3041 END_PROFILE(SMBlseek);
3042 return(UNIXERROR(ERRDOS,ERRnoaccess));
3046 fsp->fh->pos = res;
3048 outsize = set_message(outbuf,2,0,True);
3049 SIVAL(outbuf,smb_vwv0,res);
3051 DEBUG(3,("lseek fnum=%d ofs=%.0f newpos = %.0f mode=%d\n",
3052 fsp->fnum, (double)startpos, (double)res, mode));
3054 END_PROFILE(SMBlseek);
3055 return(outsize);
3058 /****************************************************************************
3059 Reply to a flush.
3060 ****************************************************************************/
3062 int reply_flush(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
3064 int outsize = set_message(outbuf,0,0,False);
3065 uint16 fnum = SVAL(inbuf,smb_vwv0);
3066 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3067 START_PROFILE(SMBflush);
3069 if (fnum != 0xFFFF)
3070 CHECK_FSP(fsp,conn);
3072 if (!fsp) {
3073 file_sync_all(conn);
3074 } else {
3075 sync_file(conn,fsp, True);
3078 DEBUG(3,("flush\n"));
3079 END_PROFILE(SMBflush);
3080 return(outsize);
3083 /****************************************************************************
3084 Reply to a exit.
3085 conn POINTER CAN BE NULL HERE !
3086 ****************************************************************************/
3088 int reply_exit(connection_struct *conn,
3089 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3091 int outsize;
3092 START_PROFILE(SMBexit);
3094 file_close_pid(SVAL(inbuf,smb_pid),SVAL(inbuf,smb_uid));
3096 outsize = set_message(outbuf,0,0,False);
3098 DEBUG(3,("exit\n"));
3100 END_PROFILE(SMBexit);
3101 return(outsize);
3104 /****************************************************************************
3105 Reply to a close - has to deal with closing a directory opened by NT SMB's.
3106 ****************************************************************************/
3108 int reply_close(connection_struct *conn, char *inbuf,char *outbuf, int size,
3109 int dum_buffsize)
3111 int outsize = 0;
3112 time_t mtime;
3113 int32 eclass = 0, err = 0;
3114 files_struct *fsp = NULL;
3115 START_PROFILE(SMBclose);
3117 outsize = set_message(outbuf,0,0,False);
3119 /* If it's an IPC, pass off to the pipe handler. */
3120 if (IS_IPC(conn)) {
3121 END_PROFILE(SMBclose);
3122 return reply_pipe_close(conn, inbuf,outbuf);
3125 fsp = file_fsp(inbuf,smb_vwv0);
3128 * We can only use CHECK_FSP if we know it's not a directory.
3131 if(!fsp || (fsp->conn != conn) || (fsp->vuid != current_user.vuid)) {
3132 END_PROFILE(SMBclose);
3133 return ERROR_DOS(ERRDOS,ERRbadfid);
3136 if(fsp->is_directory) {
3138 * Special case - close NT SMB directory handle.
3140 DEBUG(3,("close directory fnum=%d\n", fsp->fnum));
3141 close_file(fsp,NORMAL_CLOSE);
3142 } else {
3144 * Close ordinary file.
3146 int close_err;
3148 DEBUG(3,("close fd=%d fnum=%d (numopen=%d)\n",
3149 fsp->fh->fd, fsp->fnum,
3150 conn->num_files_open));
3153 * Take care of any time sent in the close.
3156 mtime = srv_make_unix_date3(inbuf+smb_vwv1);
3157 fsp_set_pending_modtime(fsp, mtime);
3160 * close_file() returns the unix errno if an error
3161 * was detected on close - normally this is due to
3162 * a disk full error. If not then it was probably an I/O error.
3165 if((close_err = close_file(fsp,NORMAL_CLOSE)) != 0) {
3166 errno = close_err;
3167 END_PROFILE(SMBclose);
3168 return (UNIXERROR(ERRHRD,ERRgeneral));
3172 /* We have a cached error */
3173 if(eclass || err) {
3174 END_PROFILE(SMBclose);
3175 return ERROR_DOS(eclass,err);
3178 END_PROFILE(SMBclose);
3179 return(outsize);
3182 /****************************************************************************
3183 Reply to a writeclose (Core+ protocol).
3184 ****************************************************************************/
3186 int reply_writeclose(connection_struct *conn,
3187 char *inbuf,char *outbuf, int size, int dum_buffsize)
3189 size_t numtowrite;
3190 ssize_t nwritten = -1;
3191 int outsize = 0;
3192 int close_err = 0;
3193 SMB_OFF_T startpos;
3194 char *data;
3195 time_t mtime;
3196 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3197 START_PROFILE(SMBwriteclose);
3199 CHECK_FSP(fsp,conn);
3200 if (!CHECK_WRITE(fsp)) {
3201 return(ERROR_DOS(ERRDOS,ERRbadaccess));
3204 numtowrite = SVAL(inbuf,smb_vwv1);
3205 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
3206 mtime = srv_make_unix_date3(inbuf+smb_vwv4);
3207 data = smb_buf(inbuf) + 1;
3209 if (numtowrite && is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)numtowrite,(SMB_BIG_UINT)startpos, WRITE_LOCK)) {
3210 END_PROFILE(SMBwriteclose);
3211 return ERROR_DOS(ERRDOS,ERRlock);
3214 nwritten = write_file(fsp,data,startpos,numtowrite);
3216 set_filetime(conn, fsp->fsp_name,mtime);
3219 * More insanity. W2K only closes the file if writelen > 0.
3220 * JRA.
3223 if (numtowrite) {
3224 DEBUG(3,("reply_writeclose: zero length write doesn't close file %s\n",
3225 fsp->fsp_name ));
3226 close_err = close_file(fsp,NORMAL_CLOSE);
3229 DEBUG(3,("writeclose fnum=%d num=%d wrote=%d (numopen=%d)\n",
3230 fsp->fnum, (int)numtowrite, (int)nwritten,
3231 conn->num_files_open));
3233 if(((nwritten == 0) && (numtowrite != 0))||(nwritten < 0)) {
3234 END_PROFILE(SMBwriteclose);
3235 return(UNIXERROR(ERRHRD,ERRdiskfull));
3238 if(close_err != 0) {
3239 errno = close_err;
3240 END_PROFILE(SMBwriteclose);
3241 return(UNIXERROR(ERRHRD,ERRgeneral));
3244 outsize = set_message(outbuf,1,0,True);
3246 SSVAL(outbuf,smb_vwv0,nwritten);
3247 END_PROFILE(SMBwriteclose);
3248 return(outsize);
3251 #undef DBGC_CLASS
3252 #define DBGC_CLASS DBGC_LOCKING
3254 /****************************************************************************
3255 Reply to a lock.
3256 ****************************************************************************/
3258 int reply_lock(connection_struct *conn,
3259 char *inbuf,char *outbuf, int length, int dum_buffsize)
3261 int outsize = set_message(outbuf,0,0,False);
3262 SMB_BIG_UINT count,offset;
3263 NTSTATUS status;
3264 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3265 struct byte_range_lock *br_lck = NULL;
3267 START_PROFILE(SMBlock);
3269 CHECK_FSP(fsp,conn);
3271 release_level_2_oplocks_on_change(fsp);
3273 count = (SMB_BIG_UINT)IVAL(inbuf,smb_vwv1);
3274 offset = (SMB_BIG_UINT)IVAL(inbuf,smb_vwv3);
3276 DEBUG(3,("lock fd=%d fnum=%d offset=%.0f count=%.0f\n",
3277 fsp->fh->fd, fsp->fnum, (double)offset, (double)count));
3279 br_lck = do_lock(fsp,
3280 (uint32)SVAL(inbuf,smb_pid),
3281 count,
3282 offset,
3283 WRITE_LOCK,
3284 WINDOWS_LOCK,
3285 False, /* Non-blocking lock. */
3286 &status);
3288 TALLOC_FREE(br_lck);
3290 if (NT_STATUS_V(status)) {
3291 END_PROFILE(SMBlock);
3292 return ERROR_NT(status);
3295 END_PROFILE(SMBlock);
3296 return(outsize);
3299 /****************************************************************************
3300 Reply to a unlock.
3301 ****************************************************************************/
3303 int reply_unlock(connection_struct *conn, char *inbuf,char *outbuf, int size,
3304 int dum_buffsize)
3306 int outsize = set_message(outbuf,0,0,False);
3307 SMB_BIG_UINT count,offset;
3308 NTSTATUS status;
3309 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3310 START_PROFILE(SMBunlock);
3312 CHECK_FSP(fsp,conn);
3314 count = (SMB_BIG_UINT)IVAL(inbuf,smb_vwv1);
3315 offset = (SMB_BIG_UINT)IVAL(inbuf,smb_vwv3);
3317 status = do_unlock(fsp,
3318 (uint32)SVAL(inbuf,smb_pid),
3319 count,
3320 offset,
3321 WINDOWS_LOCK);
3323 if (NT_STATUS_V(status)) {
3324 END_PROFILE(SMBunlock);
3325 return ERROR_NT(status);
3328 DEBUG( 3, ( "unlock fd=%d fnum=%d offset=%.0f count=%.0f\n",
3329 fsp->fh->fd, fsp->fnum, (double)offset, (double)count ) );
3331 END_PROFILE(SMBunlock);
3332 return(outsize);
3335 #undef DBGC_CLASS
3336 #define DBGC_CLASS DBGC_ALL
3338 /****************************************************************************
3339 Reply to a tdis.
3340 conn POINTER CAN BE NULL HERE !
3341 ****************************************************************************/
3343 int reply_tdis(connection_struct *conn,
3344 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3346 int outsize = set_message(outbuf,0,0,False);
3347 uint16 vuid;
3348 START_PROFILE(SMBtdis);
3350 vuid = SVAL(inbuf,smb_uid);
3352 if (!conn) {
3353 DEBUG(4,("Invalid connection in tdis\n"));
3354 END_PROFILE(SMBtdis);
3355 return ERROR_DOS(ERRSRV,ERRinvnid);
3358 conn->used = False;
3360 close_cnum(conn,vuid);
3362 END_PROFILE(SMBtdis);
3363 return outsize;
3366 /****************************************************************************
3367 Reply to a echo.
3368 conn POINTER CAN BE NULL HERE !
3369 ****************************************************************************/
3371 int reply_echo(connection_struct *conn,
3372 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3374 int smb_reverb = SVAL(inbuf,smb_vwv0);
3375 int seq_num;
3376 unsigned int data_len = smb_buflen(inbuf);
3377 int outsize = set_message(outbuf,1,data_len,True);
3378 START_PROFILE(SMBecho);
3380 if (data_len > BUFFER_SIZE) {
3381 DEBUG(0,("reply_echo: data_len too large.\n"));
3382 END_PROFILE(SMBecho);
3383 return -1;
3386 /* copy any incoming data back out */
3387 if (data_len > 0)
3388 memcpy(smb_buf(outbuf),smb_buf(inbuf),data_len);
3390 if (smb_reverb > 100) {
3391 DEBUG(0,("large reverb (%d)?? Setting to 100\n",smb_reverb));
3392 smb_reverb = 100;
3395 for (seq_num =1 ; seq_num <= smb_reverb ; seq_num++) {
3396 SSVAL(outbuf,smb_vwv0,seq_num);
3398 smb_setlen(outbuf,outsize - 4);
3400 show_msg(outbuf);
3401 if (!send_smb(smbd_server_fd(),outbuf))
3402 exit_server_cleanly("reply_echo: send_smb failed.");
3405 DEBUG(3,("echo %d times\n", smb_reverb));
3407 smb_echo_count++;
3409 END_PROFILE(SMBecho);
3410 return -1;
3413 /****************************************************************************
3414 Reply to a printopen.
3415 ****************************************************************************/
3417 int reply_printopen(connection_struct *conn,
3418 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3420 int outsize = 0;
3421 files_struct *fsp;
3422 NTSTATUS status;
3424 START_PROFILE(SMBsplopen);
3426 if (!CAN_PRINT(conn)) {
3427 END_PROFILE(SMBsplopen);
3428 return ERROR_DOS(ERRDOS,ERRnoaccess);
3431 /* Open for exclusive use, write only. */
3432 status = print_fsp_open(conn, NULL, &fsp);
3434 if (!NT_STATUS_IS_OK(status)) {
3435 END_PROFILE(SMBsplopen);
3436 return(ERROR_NT(status));
3439 outsize = set_message(outbuf,1,0,True);
3440 SSVAL(outbuf,smb_vwv0,fsp->fnum);
3442 DEBUG(3,("openprint fd=%d fnum=%d\n",
3443 fsp->fh->fd, fsp->fnum));
3445 END_PROFILE(SMBsplopen);
3446 return(outsize);
3449 /****************************************************************************
3450 Reply to a printclose.
3451 ****************************************************************************/
3453 int reply_printclose(connection_struct *conn,
3454 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3456 int outsize = set_message(outbuf,0,0,False);
3457 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3458 int close_err = 0;
3459 START_PROFILE(SMBsplclose);
3461 CHECK_FSP(fsp,conn);
3463 if (!CAN_PRINT(conn)) {
3464 END_PROFILE(SMBsplclose);
3465 return ERROR_NT(NT_STATUS_DOS(ERRSRV, ERRerror));
3468 DEBUG(3,("printclose fd=%d fnum=%d\n",
3469 fsp->fh->fd,fsp->fnum));
3471 close_err = close_file(fsp,NORMAL_CLOSE);
3473 if(close_err != 0) {
3474 errno = close_err;
3475 END_PROFILE(SMBsplclose);
3476 return(UNIXERROR(ERRHRD,ERRgeneral));
3479 END_PROFILE(SMBsplclose);
3480 return(outsize);
3483 /****************************************************************************
3484 Reply to a printqueue.
3485 ****************************************************************************/
3487 int reply_printqueue(connection_struct *conn,
3488 char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3490 int outsize = set_message(outbuf,2,3,True);
3491 int max_count = SVAL(inbuf,smb_vwv0);
3492 int start_index = SVAL(inbuf,smb_vwv1);
3493 START_PROFILE(SMBsplretq);
3495 /* we used to allow the client to get the cnum wrong, but that
3496 is really quite gross and only worked when there was only
3497 one printer - I think we should now only accept it if they
3498 get it right (tridge) */
3499 if (!CAN_PRINT(conn)) {
3500 END_PROFILE(SMBsplretq);
3501 return ERROR_DOS(ERRDOS,ERRnoaccess);
3504 SSVAL(outbuf,smb_vwv0,0);
3505 SSVAL(outbuf,smb_vwv1,0);
3506 SCVAL(smb_buf(outbuf),0,1);
3507 SSVAL(smb_buf(outbuf),1,0);
3509 DEBUG(3,("printqueue start_index=%d max_count=%d\n",
3510 start_index, max_count));
3513 print_queue_struct *queue = NULL;
3514 print_status_struct status;
3515 char *p = smb_buf(outbuf) + 3;
3516 int count = print_queue_status(SNUM(conn), &queue, &status);
3517 int num_to_get = ABS(max_count);
3518 int first = (max_count>0?start_index:start_index+max_count+1);
3519 int i;
3521 if (first >= count)
3522 num_to_get = 0;
3523 else
3524 num_to_get = MIN(num_to_get,count-first);
3527 for (i=first;i<first+num_to_get;i++) {
3528 srv_put_dos_date2(p,0,queue[i].time);
3529 SCVAL(p,4,(queue[i].status==LPQ_PRINTING?2:3));
3530 SSVAL(p,5, queue[i].job);
3531 SIVAL(p,7,queue[i].size);
3532 SCVAL(p,11,0);
3533 srvstr_push(outbuf, p+12, queue[i].fs_user, 16, STR_ASCII);
3534 p += 28;
3537 if (count > 0) {
3538 outsize = set_message(outbuf,2,28*count+3,False);
3539 SSVAL(outbuf,smb_vwv0,count);
3540 SSVAL(outbuf,smb_vwv1,(max_count>0?first+count:first-1));
3541 SCVAL(smb_buf(outbuf),0,1);
3542 SSVAL(smb_buf(outbuf),1,28*count);
3545 SAFE_FREE(queue);
3547 DEBUG(3,("%d entries returned in queue\n",count));
3550 END_PROFILE(SMBsplretq);
3551 return(outsize);
3554 /****************************************************************************
3555 Reply to a printwrite.
3556 ****************************************************************************/
3558 int reply_printwrite(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3560 int numtowrite;
3561 int outsize = set_message(outbuf,0,0,False);
3562 char *data;
3563 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
3565 START_PROFILE(SMBsplwr);
3567 if (!CAN_PRINT(conn)) {
3568 END_PROFILE(SMBsplwr);
3569 return ERROR_DOS(ERRDOS,ERRnoaccess);
3572 CHECK_FSP(fsp,conn);
3573 if (!CHECK_WRITE(fsp)) {
3574 return(ERROR_DOS(ERRDOS,ERRbadaccess));
3577 numtowrite = SVAL(smb_buf(inbuf),1);
3578 data = smb_buf(inbuf) + 3;
3580 if (write_file(fsp,data,-1,numtowrite) != numtowrite) {
3581 END_PROFILE(SMBsplwr);
3582 return(UNIXERROR(ERRHRD,ERRdiskfull));
3585 DEBUG( 3, ( "printwrite fnum=%d num=%d\n", fsp->fnum, numtowrite ) );
3587 END_PROFILE(SMBsplwr);
3588 return(outsize);
3591 /****************************************************************************
3592 Reply to a mkdir.
3593 ****************************************************************************/
3595 int reply_mkdir(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3597 pstring directory;
3598 int outsize;
3599 NTSTATUS status;
3600 SMB_STRUCT_STAT sbuf;
3602 START_PROFILE(SMBmkdir);
3604 srvstr_get_path(inbuf, directory, smb_buf(inbuf) + 1, sizeof(directory), 0, STR_TERMINATE, &status);
3605 if (!NT_STATUS_IS_OK(status)) {
3606 END_PROFILE(SMBmkdir);
3607 return ERROR_NT(status);
3610 RESOLVE_DFSPATH(directory, conn, inbuf, outbuf);
3612 status = unix_convert(conn, directory, False, NULL, &sbuf);
3613 if (!NT_STATUS_IS_OK(status)) {
3614 END_PROFILE(SMBmkdir);
3615 return ERROR_NT(status);
3618 status = create_directory(conn, directory);
3620 DEBUG(5, ("create_directory returned %s\n", nt_errstr(status)));
3622 if (!NT_STATUS_IS_OK(status)) {
3624 if (!use_nt_status()
3625 && NT_STATUS_EQUAL(status,
3626 NT_STATUS_OBJECT_NAME_COLLISION)) {
3628 * Yes, in the DOS error code case we get a
3629 * ERRDOS:ERRnoaccess here. See BASE-SAMBA3ERROR
3630 * samba4 torture test.
3632 status = NT_STATUS_DOS(ERRDOS, ERRnoaccess);
3635 END_PROFILE(SMBmkdir);
3636 return ERROR_NT(status);
3639 outsize = set_message(outbuf,0,0,False);
3641 DEBUG( 3, ( "mkdir %s ret=%d\n", directory, outsize ) );
3643 END_PROFILE(SMBmkdir);
3644 return(outsize);
3647 /****************************************************************************
3648 Static function used by reply_rmdir to delete an entire directory
3649 tree recursively. Return True on ok, False on fail.
3650 ****************************************************************************/
3652 static BOOL recursive_rmdir(connection_struct *conn, char *directory)
3654 const char *dname = NULL;
3655 BOOL ret = True;
3656 long offset = 0;
3657 struct smb_Dir *dir_hnd = OpenDir(conn, directory, NULL, 0);
3659 if(dir_hnd == NULL)
3660 return False;
3662 while((dname = ReadDirName(dir_hnd, &offset))) {
3663 pstring fullname;
3664 SMB_STRUCT_STAT st;
3666 if((strcmp(dname, ".") == 0) || (strcmp(dname, "..")==0))
3667 continue;
3669 if (!is_visible_file(conn, directory, dname, &st, False))
3670 continue;
3672 /* Construct the full name. */
3673 if(strlen(directory) + strlen(dname) + 1 >= sizeof(fullname)) {
3674 errno = ENOMEM;
3675 ret = False;
3676 break;
3679 pstrcpy(fullname, directory);
3680 pstrcat(fullname, "/");
3681 pstrcat(fullname, dname);
3683 if(SMB_VFS_LSTAT(conn,fullname, &st) != 0) {
3684 ret = False;
3685 break;
3688 if(st.st_mode & S_IFDIR) {
3689 if(!recursive_rmdir(conn, fullname)) {
3690 ret = False;
3691 break;
3693 if(SMB_VFS_RMDIR(conn,fullname) != 0) {
3694 ret = False;
3695 break;
3697 } else if(SMB_VFS_UNLINK(conn,fullname) != 0) {
3698 ret = False;
3699 break;
3702 CloseDir(dir_hnd);
3703 return ret;
3706 /****************************************************************************
3707 The internals of the rmdir code - called elsewhere.
3708 ****************************************************************************/
3710 BOOL rmdir_internals(connection_struct *conn, const char *directory)
3712 int ret;
3713 SMB_STRUCT_STAT st;
3715 ret = SMB_VFS_RMDIR(conn,directory);
3716 if (ret == 0) {
3717 notify_fname(conn, directory, FILE_NOTIFY_CHANGE_DIR_NAME,
3718 NOTIFY_ACTION_REMOVED);
3719 return True;
3722 if(((errno == ENOTEMPTY)||(errno == EEXIST)) && lp_veto_files(SNUM(conn))) {
3724 * Check to see if the only thing in this directory are
3725 * vetoed files/directories. If so then delete them and
3726 * retry. If we fail to delete any of them (and we *don't*
3727 * do a recursive delete) then fail the rmdir.
3729 const char *dname;
3730 long dirpos = 0;
3731 struct smb_Dir *dir_hnd = OpenDir(conn, directory, NULL, 0);
3733 if(dir_hnd == NULL) {
3734 errno = ENOTEMPTY;
3735 goto err;
3738 while ((dname = ReadDirName(dir_hnd,&dirpos))) {
3739 if((strcmp(dname, ".") == 0) || (strcmp(dname, "..")==0))
3740 continue;
3741 if (!is_visible_file(conn, directory, dname, &st, False))
3742 continue;
3743 if(!IS_VETO_PATH(conn, dname)) {
3744 CloseDir(dir_hnd);
3745 errno = ENOTEMPTY;
3746 goto err;
3750 /* We only have veto files/directories. Recursive delete. */
3752 RewindDir(dir_hnd,&dirpos);
3753 while ((dname = ReadDirName(dir_hnd,&dirpos))) {
3754 pstring fullname;
3756 if((strcmp(dname, ".") == 0) || (strcmp(dname, "..")==0))
3757 continue;
3758 if (!is_visible_file(conn, directory, dname, &st, False))
3759 continue;
3761 /* Construct the full name. */
3762 if(strlen(directory) + strlen(dname) + 1 >= sizeof(fullname)) {
3763 errno = ENOMEM;
3764 break;
3767 pstrcpy(fullname, directory);
3768 pstrcat(fullname, "/");
3769 pstrcat(fullname, dname);
3771 if(SMB_VFS_LSTAT(conn,fullname, &st) != 0)
3772 break;
3773 if(st.st_mode & S_IFDIR) {
3774 if(lp_recursive_veto_delete(SNUM(conn))) {
3775 if(!recursive_rmdir(conn, fullname))
3776 break;
3778 if(SMB_VFS_RMDIR(conn,fullname) != 0)
3779 break;
3780 } else if(SMB_VFS_UNLINK(conn,fullname) != 0)
3781 break;
3783 CloseDir(dir_hnd);
3784 /* Retry the rmdir */
3785 ret = SMB_VFS_RMDIR(conn,directory);
3788 err:
3790 if (ret != 0) {
3791 DEBUG(3,("rmdir_internals: couldn't remove directory %s : "
3792 "%s\n", directory,strerror(errno)));
3793 return False;
3796 notify_fname(conn, directory, FILE_NOTIFY_CHANGE_DIR_NAME,
3797 NOTIFY_ACTION_REMOVED);
3799 return True;
3802 /****************************************************************************
3803 Reply to a rmdir.
3804 ****************************************************************************/
3806 int reply_rmdir(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
3808 pstring directory;
3809 int outsize = 0;
3810 SMB_STRUCT_STAT sbuf;
3811 NTSTATUS status;
3812 START_PROFILE(SMBrmdir);
3814 srvstr_get_path(inbuf, directory, smb_buf(inbuf) + 1, sizeof(directory), 0, STR_TERMINATE, &status);
3815 if (!NT_STATUS_IS_OK(status)) {
3816 END_PROFILE(SMBrmdir);
3817 return ERROR_NT(status);
3820 RESOLVE_DFSPATH(directory, conn, inbuf, outbuf)
3822 status = unix_convert(conn, directory, False, NULL, &sbuf);
3823 if (!NT_STATUS_IS_OK(status)) {
3824 END_PROFILE(SMBrmdir);
3825 return ERROR_NT(status);
3828 status = check_name(conn, directory);
3829 if (!NT_STATUS_IS_OK(status)) {
3830 END_PROFILE(SMBrmdir);
3831 return ERROR_NT(status);
3834 dptr_closepath(directory,SVAL(inbuf,smb_pid));
3835 if (!rmdir_internals(conn, directory)) {
3836 END_PROFILE(SMBrmdir);
3837 return UNIXERROR(ERRDOS, ERRbadpath);
3840 outsize = set_message(outbuf,0,0,False);
3842 DEBUG( 3, ( "rmdir %s\n", directory ) );
3844 END_PROFILE(SMBrmdir);
3845 return(outsize);
3848 /*******************************************************************
3849 Resolve wildcards in a filename rename.
3850 Note that name is in UNIX charset and thus potentially can be more
3851 than fstring buffer (255 bytes) especially in default UTF-8 case.
3852 Therefore, we use pstring inside and all calls should ensure that
3853 name2 is at least pstring-long (they do already)
3854 ********************************************************************/
3856 static BOOL resolve_wildcards(const char *name1, char *name2)
3858 pstring root1,root2;
3859 pstring ext1,ext2;
3860 char *p,*p2, *pname1, *pname2;
3861 int available_space, actual_space;
3864 pname1 = strrchr_m(name1,'/');
3865 pname2 = strrchr_m(name2,'/');
3867 if (!pname1 || !pname2)
3868 return(False);
3870 pstrcpy(root1,pname1);
3871 pstrcpy(root2,pname2);
3872 p = strrchr_m(root1,'.');
3873 if (p) {
3874 *p = 0;
3875 pstrcpy(ext1,p+1);
3876 } else {
3877 pstrcpy(ext1,"");
3879 p = strrchr_m(root2,'.');
3880 if (p) {
3881 *p = 0;
3882 pstrcpy(ext2,p+1);
3883 } else {
3884 pstrcpy(ext2,"");
3887 p = root1;
3888 p2 = root2;
3889 while (*p2) {
3890 if (*p2 == '?') {
3891 *p2 = *p;
3892 p2++;
3893 } else if (*p2 == '*') {
3894 pstrcpy(p2, p);
3895 break;
3896 } else {
3897 p2++;
3899 if (*p)
3900 p++;
3903 p = ext1;
3904 p2 = ext2;
3905 while (*p2) {
3906 if (*p2 == '?') {
3907 *p2 = *p;
3908 p2++;
3909 } else if (*p2 == '*') {
3910 pstrcpy(p2, p);
3911 break;
3912 } else {
3913 p2++;
3915 if (*p)
3916 p++;
3919 available_space = sizeof(pstring) - PTR_DIFF(pname2, name2);
3921 if (ext2[0]) {
3922 actual_space = snprintf(pname2, available_space - 1, "%s.%s", root2, ext2);
3923 if (actual_space >= available_space - 1) {
3924 DEBUG(1,("resolve_wildcards: can't fit resolved name into specified buffer (overrun by %d bytes)\n",
3925 actual_space - available_space));
3927 } else {
3928 pstrcpy_base(pname2, root2, name2);
3931 return(True);
3934 /****************************************************************************
3935 Ensure open files have their names updated. Updated to notify other smbd's
3936 asynchronously.
3937 ****************************************************************************/
3939 static void rename_open_files(connection_struct *conn, struct share_mode_lock *lck,
3940 SMB_DEV_T dev, SMB_INO_T inode, const char *newname)
3942 files_struct *fsp;
3943 BOOL did_rename = False;
3945 for(fsp = file_find_di_first(dev, inode); fsp; fsp = file_find_di_next(fsp)) {
3946 /* fsp_name is a relative path under the fsp. To change this for other
3947 sharepaths we need to manipulate relative paths. */
3948 /* TODO - create the absolute path and manipulate the newname
3949 relative to the sharepath. */
3950 if (fsp->conn != conn) {
3951 continue;
3953 DEBUG(10,("rename_open_files: renaming file fnum %d (dev = %x, inode = %.0f) from %s -> %s\n",
3954 fsp->fnum, (unsigned int)fsp->dev, (double)fsp->inode,
3955 fsp->fsp_name, newname ));
3956 string_set(&fsp->fsp_name, newname);
3957 did_rename = True;
3960 if (!did_rename) {
3961 DEBUG(10,("rename_open_files: no open files on dev %x, inode %.0f for %s\n",
3962 (unsigned int)dev, (double)inode, newname ));
3965 /* Send messages to all smbd's (not ourself) that the name has changed. */
3966 rename_share_filename(lck, conn->connectpath, newname);
3969 /****************************************************************************
3970 We need to check if the source path is a parent directory of the destination
3971 (ie. a rename of /foo/bar/baz -> /foo/bar/baz/bibble/bobble. If so we must
3972 refuse the rename with a sharing violation. Under UNIX the above call can
3973 *succeed* if /foo/bar/baz is a symlink to another area in the share. We
3974 probably need to check that the client is a Windows one before disallowing
3975 this as a UNIX client (one with UNIX extensions) can know the source is a
3976 symlink and make this decision intelligently. Found by an excellent bug
3977 report from <AndyLiebman@aol.com>.
3978 ****************************************************************************/
3980 static BOOL rename_path_prefix_equal(const char *src, const char *dest)
3982 const char *psrc = src;
3983 const char *pdst = dest;
3984 size_t slen;
3986 if (psrc[0] == '.' && psrc[1] == '/') {
3987 psrc += 2;
3989 if (pdst[0] == '.' && pdst[1] == '/') {
3990 pdst += 2;
3992 if ((slen = strlen(psrc)) > strlen(pdst)) {
3993 return False;
3995 return ((memcmp(psrc, pdst, slen) == 0) && pdst[slen] == '/');
3998 /****************************************************************************
3999 Rename an open file - given an fsp.
4000 ****************************************************************************/
4002 NTSTATUS rename_internals_fsp(connection_struct *conn, files_struct *fsp, char *newname, uint32 attrs, BOOL replace_if_exists)
4004 SMB_STRUCT_STAT sbuf;
4005 pstring newname_last_component;
4006 NTSTATUS status = NT_STATUS_OK;
4007 BOOL dest_exists;
4008 struct share_mode_lock *lck = NULL;
4010 ZERO_STRUCT(sbuf);
4012 status = unix_convert(conn, newname, False, newname_last_component, &sbuf);
4013 if (!NT_STATUS_IS_OK(status)) {
4014 return status;
4017 /* Ensure newname contains a '/' */
4018 if(strrchr_m(newname,'/') == 0) {
4019 pstring tmpstr;
4021 pstrcpy(tmpstr, "./");
4022 pstrcat(tmpstr, newname);
4023 pstrcpy(newname, tmpstr);
4027 * Check for special case with case preserving and not
4028 * case sensitive. If the old last component differs from the original
4029 * last component only by case, then we should allow
4030 * the rename (user is trying to change the case of the
4031 * filename).
4034 if((conn->case_sensitive == False) && (conn->case_preserve == True) &&
4035 strequal(newname, fsp->fsp_name)) {
4036 char *p;
4037 pstring newname_modified_last_component;
4040 * Get the last component of the modified name.
4041 * Note that we guarantee that newname contains a '/'
4042 * character above.
4044 p = strrchr_m(newname,'/');
4045 pstrcpy(newname_modified_last_component,p+1);
4047 if(strcsequal(newname_modified_last_component,
4048 newname_last_component) == False) {
4050 * Replace the modified last component with
4051 * the original.
4053 pstrcpy(p+1, newname_last_component);
4058 * If the src and dest names are identical - including case,
4059 * don't do the rename, just return success.
4062 if (strcsequal(fsp->fsp_name, newname)) {
4063 DEBUG(3,("rename_internals_fsp: identical names in rename %s - returning success\n",
4064 newname));
4065 return NT_STATUS_OK;
4068 dest_exists = vfs_object_exist(conn,newname,NULL);
4070 if(!replace_if_exists && dest_exists) {
4071 DEBUG(3,("rename_internals_fsp: dest exists doing rename %s -> %s\n",
4072 fsp->fsp_name,newname));
4073 return NT_STATUS_OBJECT_NAME_COLLISION;
4076 status = can_rename(conn,newname,attrs,&sbuf);
4078 if (dest_exists && !NT_STATUS_IS_OK(status)) {
4079 DEBUG(3,("rename_internals: Error %s rename %s -> %s\n",
4080 nt_errstr(status), fsp->fsp_name,newname));
4081 if (NT_STATUS_EQUAL(status,NT_STATUS_SHARING_VIOLATION))
4082 status = NT_STATUS_ACCESS_DENIED;
4083 return status;
4086 if (rename_path_prefix_equal(fsp->fsp_name, newname)) {
4087 return NT_STATUS_ACCESS_DENIED;
4090 lck = get_share_mode_lock(NULL, fsp->dev, fsp->inode, NULL, NULL);
4092 if(SMB_VFS_RENAME(conn,fsp->fsp_name, newname) == 0) {
4093 DEBUG(3,("rename_internals_fsp: succeeded doing rename on %s -> %s\n",
4094 fsp->fsp_name,newname));
4095 rename_open_files(conn, lck, fsp->dev, fsp->inode, newname);
4096 TALLOC_FREE(lck);
4097 return NT_STATUS_OK;
4100 TALLOC_FREE(lck);
4102 if (errno == ENOTDIR || errno == EISDIR) {
4103 status = NT_STATUS_OBJECT_NAME_COLLISION;
4104 } else {
4105 status = map_nt_error_from_unix(errno);
4108 DEBUG(3,("rename_internals_fsp: Error %s rename %s -> %s\n",
4109 nt_errstr(status), fsp->fsp_name,newname));
4111 return status;
4114 /****************************************************************************
4115 The guts of the rename command, split out so it may be called by the NT SMB
4116 code.
4117 ****************************************************************************/
4119 NTSTATUS rename_internals(connection_struct *conn, char *name, char *newname, uint32 attrs, BOOL replace_if_exists, BOOL has_wild)
4121 pstring directory;
4122 pstring mask;
4123 pstring last_component_src;
4124 pstring last_component_dest;
4125 char *p;
4126 int count=0;
4127 NTSTATUS status = NT_STATUS_OK;
4128 SMB_STRUCT_STAT sbuf1, sbuf2;
4129 struct share_mode_lock *lck = NULL;
4131 *directory = *mask = 0;
4133 ZERO_STRUCT(sbuf1);
4134 ZERO_STRUCT(sbuf2);
4136 status = unix_convert(conn, name, has_wild, last_component_src, &sbuf1);
4137 if (!NT_STATUS_IS_OK(status)) {
4138 return status;
4141 status = unix_convert(conn, newname, True, last_component_dest, &sbuf2);
4142 if (!NT_STATUS_IS_OK(status)) {
4143 return status;
4147 * Split the old name into directory and last component
4148 * strings. Note that unix_convert may have stripped off a
4149 * leading ./ from both name and newname if the rename is
4150 * at the root of the share. We need to make sure either both
4151 * name and newname contain a / character or neither of them do
4152 * as this is checked in resolve_wildcards().
4155 p = strrchr_m(name,'/');
4156 if (!p) {
4157 pstrcpy(directory,".");
4158 pstrcpy(mask,name);
4159 } else {
4160 *p = 0;
4161 pstrcpy(directory,name);
4162 pstrcpy(mask,p+1);
4163 *p = '/'; /* Replace needed for exceptional test below. */
4167 * We should only check the mangled cache
4168 * here if unix_convert failed. This means
4169 * that the path in 'mask' doesn't exist
4170 * on the file system and so we need to look
4171 * for a possible mangle. This patch from
4172 * Tine Smukavec <valentin.smukavec@hermes.si>.
4175 if (!VALID_STAT(sbuf1) && mangle_is_mangled(mask, conn->params))
4176 mangle_check_cache( mask, sizeof(pstring)-1, conn->params );
4178 if (!has_wild) {
4180 * No wildcards - just process the one file.
4182 BOOL is_short_name = mangle_is_8_3(name, True, conn->params);
4184 /* Add a terminating '/' to the directory name. */
4185 pstrcat(directory,"/");
4186 pstrcat(directory,mask);
4188 /* Ensure newname contains a '/' also */
4189 if(strrchr_m(newname,'/') == 0) {
4190 pstring tmpstr;
4192 pstrcpy(tmpstr, "./");
4193 pstrcat(tmpstr, newname);
4194 pstrcpy(newname, tmpstr);
4197 DEBUG(3,("rename_internals: case_sensitive = %d, case_preserve = %d, short case preserve = %d, \
4198 directory = %s, newname = %s, last_component_dest = %s, is_8_3 = %d\n",
4199 conn->case_sensitive, conn->case_preserve, conn->short_case_preserve, directory,
4200 newname, last_component_dest, is_short_name));
4203 * Check for special case with case preserving and not
4204 * case sensitive, if directory and newname are identical,
4205 * and the old last component differs from the original
4206 * last component only by case, then we should allow
4207 * the rename (user is trying to change the case of the
4208 * filename).
4210 if((conn->case_sensitive == False) &&
4211 (((conn->case_preserve == True) &&
4212 (is_short_name == False)) ||
4213 ((conn->short_case_preserve == True) &&
4214 (is_short_name == True))) &&
4215 strcsequal(directory, newname)) {
4216 pstring modified_last_component;
4219 * Get the last component of the modified name.
4220 * Note that we guarantee that newname contains a '/'
4221 * character above.
4223 p = strrchr_m(newname,'/');
4224 pstrcpy(modified_last_component,p+1);
4226 if(strcsequal(modified_last_component,
4227 last_component_dest) == False) {
4229 * Replace the modified last component with
4230 * the original.
4232 pstrcpy(p+1, last_component_dest);
4236 resolve_wildcards(directory,newname);
4239 * The source object must exist.
4242 if (!vfs_object_exist(conn, directory, &sbuf1)) {
4243 DEBUG(3,("rename_internals: source doesn't exist doing rename %s -> %s\n",
4244 directory,newname));
4246 if (errno == ENOTDIR || errno == EISDIR || errno == ENOENT) {
4248 * Must return different errors depending on whether the parent
4249 * directory existed or not.
4252 p = strrchr_m(directory, '/');
4253 if (!p)
4254 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4255 *p = '\0';
4256 if (vfs_object_exist(conn, directory, NULL))
4257 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4258 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
4260 status = map_nt_error_from_unix(errno);
4261 DEBUG(3,("rename_internals: Error %s rename %s -> %s\n",
4262 nt_errstr(status), directory,newname));
4264 return status;
4267 status = can_rename(conn,directory,attrs,&sbuf1);
4269 if (!NT_STATUS_IS_OK(status)) {
4270 DEBUG(3,("rename_internals: Error %s rename %s -> %s\n",
4271 nt_errstr(status), directory,newname));
4272 return status;
4276 * If the src and dest names are identical - including case,
4277 * don't do the rename, just return success.
4280 if (strcsequal(directory, newname)) {
4281 rename_open_files(conn, NULL, sbuf1.st_dev, sbuf1.st_ino, newname);
4282 DEBUG(3,("rename_internals: identical names in rename %s - returning success\n", directory));
4283 return NT_STATUS_OK;
4286 if(!replace_if_exists && vfs_object_exist(conn,newname,NULL)) {
4287 DEBUG(3,("rename_internals: dest exists doing rename %s -> %s\n",
4288 directory,newname));
4289 return NT_STATUS_OBJECT_NAME_COLLISION;
4292 if (rename_path_prefix_equal(directory, newname)) {
4293 return NT_STATUS_SHARING_VIOLATION;
4296 lck = get_share_mode_lock(NULL, sbuf1.st_dev, sbuf1.st_ino, NULL, NULL);
4298 if(SMB_VFS_RENAME(conn,directory, newname) == 0) {
4299 DEBUG(3,("rename_internals: succeeded doing rename on %s -> %s\n",
4300 directory,newname));
4301 rename_open_files(conn, lck, sbuf1.st_dev, sbuf1.st_ino, newname);
4302 TALLOC_FREE(lck);
4303 return NT_STATUS_OK;
4306 TALLOC_FREE(lck);
4307 if (errno == ENOTDIR || errno == EISDIR) {
4308 status = NT_STATUS_OBJECT_NAME_COLLISION;
4309 } else {
4310 status = map_nt_error_from_unix(errno);
4313 DEBUG(3,("rename_internals: Error %s rename %s -> %s\n",
4314 nt_errstr(status), directory,newname));
4316 return status;
4317 } else {
4319 * Wildcards - process each file that matches.
4321 struct smb_Dir *dir_hnd = NULL;
4322 const char *dname;
4323 long offset = 0;
4324 pstring destname;
4326 if (strequal(mask,"????????.???"))
4327 pstrcpy(mask,"*");
4329 status = check_name(conn, directory);
4330 if (!NT_STATUS_IS_OK(status)) {
4331 return status;
4334 dir_hnd = OpenDir(conn, directory, mask, attrs);
4335 if (dir_hnd == NULL) {
4336 return map_nt_error_from_unix(errno);
4339 status = NT_STATUS_NO_SUCH_FILE;
4340 /* Was status = NT_STATUS_OBJECT_NAME_NOT_FOUND; - gentest fix. JRA */
4342 while ((dname = ReadDirName(dir_hnd, &offset))) {
4343 pstring fname;
4344 BOOL sysdir_entry = False;
4346 pstrcpy(fname,dname);
4348 /* Quick check for "." and ".." */
4349 if (fname[0] == '.') {
4350 if (!fname[1] || (fname[1] == '.' && !fname[2])) {
4351 if (attrs & aDIR) {
4352 sysdir_entry = True;
4353 } else {
4354 continue;
4359 if (!is_visible_file(conn, directory, dname, &sbuf1, False)) {
4360 continue;
4363 if(!mask_match(fname, mask, conn->case_sensitive)) {
4364 continue;
4367 if (sysdir_entry) {
4368 status = NT_STATUS_OBJECT_NAME_INVALID;
4369 break;
4372 status = NT_STATUS_ACCESS_DENIED;
4373 slprintf(fname,sizeof(fname)-1,"%s/%s",directory,dname);
4374 if (!vfs_object_exist(conn, fname, &sbuf1)) {
4375 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
4376 DEBUG(6,("rename %s failed. Error %s\n", fname, nt_errstr(status)));
4377 continue;
4379 status = can_rename(conn,fname,attrs,&sbuf1);
4380 if (!NT_STATUS_IS_OK(status)) {
4381 DEBUG(6,("rename %s refused\n", fname));
4382 continue;
4384 pstrcpy(destname,newname);
4386 if (!resolve_wildcards(fname,destname)) {
4387 DEBUG(6,("resolve_wildcards %s %s failed\n",
4388 fname, destname));
4389 continue;
4392 if (strcsequal(fname,destname)) {
4393 rename_open_files(conn, NULL, sbuf1.st_dev, sbuf1.st_ino, newname);
4394 DEBUG(3,("rename_internals: identical names in wildcard rename %s - success\n", fname));
4395 count++;
4396 status = NT_STATUS_OK;
4397 continue;
4400 if (!replace_if_exists && vfs_file_exist(conn,destname, NULL)) {
4401 DEBUG(6,("file_exist %s\n", destname));
4402 status = NT_STATUS_OBJECT_NAME_COLLISION;
4403 continue;
4406 if (rename_path_prefix_equal(fname, destname)) {
4407 return NT_STATUS_SHARING_VIOLATION;
4410 lck = get_share_mode_lock(NULL, sbuf1.st_dev, sbuf1.st_ino, NULL, NULL);
4412 if (!SMB_VFS_RENAME(conn,fname,destname)) {
4413 rename_open_files(conn, lck, sbuf1.st_dev, sbuf1.st_ino, newname);
4414 count++;
4415 status = NT_STATUS_OK;
4417 TALLOC_FREE(lck);
4418 DEBUG(3,("rename_internals: doing rename on %s -> %s\n",fname,destname));
4420 CloseDir(dir_hnd);
4423 #if 0
4424 /* Don't think needed any more - JRA. */
4425 if (!NT_STATUS_EQUAL(error,NT_STATUS_NO_SUCH_FILE)) {
4426 if (!rcdest && bad_path_dest) {
4427 if (ms_has_wild(last_component_dest))
4428 return NT_STATUS_OBJECT_NAME_INVALID;
4429 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
4432 #endif
4434 if (count == 0 && NT_STATUS_IS_OK(status)) {
4435 status = map_nt_error_from_unix(errno);
4438 return status;
4441 /****************************************************************************
4442 Reply to a mv.
4443 ****************************************************************************/
4445 int reply_mv(connection_struct *conn, char *inbuf,char *outbuf, int dum_size,
4446 int dum_buffsize)
4448 int outsize = 0;
4449 pstring name;
4450 pstring newname;
4451 char *p;
4452 uint32 attrs = SVAL(inbuf,smb_vwv0);
4453 NTSTATUS status;
4454 BOOL path1_contains_wcard = False;
4455 BOOL path2_contains_wcard = False;
4457 START_PROFILE(SMBmv);
4459 p = smb_buf(inbuf) + 1;
4460 p += srvstr_get_path_wcard(inbuf, name, p, sizeof(name), 0, STR_TERMINATE, &status, &path1_contains_wcard);
4461 if (!NT_STATUS_IS_OK(status)) {
4462 END_PROFILE(SMBmv);
4463 return ERROR_NT(status);
4465 p++;
4466 p += srvstr_get_path_wcard(inbuf, newname, p, sizeof(newname), 0, STR_TERMINATE, &status, &path2_contains_wcard);
4467 if (!NT_STATUS_IS_OK(status)) {
4468 END_PROFILE(SMBmv);
4469 return ERROR_NT(status);
4472 RESOLVE_DFSPATH_WCARD(name, conn, inbuf, outbuf);
4473 RESOLVE_DFSPATH_WCARD(newname, conn, inbuf, outbuf);
4475 DEBUG(3,("reply_mv : %s -> %s\n",name,newname));
4477 status = rename_internals(conn, name, newname, attrs, False, path1_contains_wcard);
4478 if (!NT_STATUS_IS_OK(status)) {
4479 END_PROFILE(SMBmv);
4480 if (open_was_deferred(SVAL(inbuf,smb_mid))) {
4481 /* We have re-scheduled this call. */
4482 return -1;
4484 return ERROR_NT(status);
4487 outsize = set_message(outbuf,0,0,False);
4489 END_PROFILE(SMBmv);
4490 return(outsize);
4493 /*******************************************************************
4494 Copy a file as part of a reply_copy.
4495 ******************************************************************/
4498 * TODO: check error codes on all callers
4501 NTSTATUS copy_file(char *src, char *dest1,connection_struct *conn, int ofun,
4502 int count, BOOL target_is_directory)
4504 SMB_STRUCT_STAT src_sbuf, sbuf2;
4505 SMB_OFF_T ret=-1;
4506 files_struct *fsp1,*fsp2;
4507 pstring dest;
4508 uint32 dosattrs;
4509 uint32 new_create_disposition;
4510 NTSTATUS status;
4511 int close_err;
4513 pstrcpy(dest,dest1);
4514 if (target_is_directory) {
4515 char *p = strrchr_m(src,'/');
4516 if (p) {
4517 p++;
4518 } else {
4519 p = src;
4521 pstrcat(dest,"/");
4522 pstrcat(dest,p);
4525 if (!vfs_file_exist(conn,src,&src_sbuf)) {
4526 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4529 if (!target_is_directory && count) {
4530 new_create_disposition = FILE_OPEN;
4531 } else {
4532 if (!map_open_params_to_ntcreate(dest1,0,ofun,
4533 NULL, NULL, &new_create_disposition, NULL)) {
4534 return NT_STATUS_INVALID_PARAMETER;
4538 status = open_file_ntcreate(conn,src,&src_sbuf,
4539 FILE_GENERIC_READ,
4540 FILE_SHARE_READ|FILE_SHARE_WRITE,
4541 FILE_OPEN,
4543 FILE_ATTRIBUTE_NORMAL,
4544 INTERNAL_OPEN_ONLY,
4545 NULL, &fsp1);
4547 if (!NT_STATUS_IS_OK(status)) {
4548 return status;
4551 dosattrs = dos_mode(conn, src, &src_sbuf);
4552 if (SMB_VFS_STAT(conn,dest,&sbuf2) == -1) {
4553 ZERO_STRUCTP(&sbuf2);
4556 status = open_file_ntcreate(conn,dest,&sbuf2,
4557 FILE_GENERIC_WRITE,
4558 FILE_SHARE_READ|FILE_SHARE_WRITE,
4559 new_create_disposition,
4561 dosattrs,
4562 INTERNAL_OPEN_ONLY,
4563 NULL, &fsp2);
4565 if (!NT_STATUS_IS_OK(status)) {
4566 close_file(fsp1,ERROR_CLOSE);
4567 return status;
4570 if ((ofun&3) == 1) {
4571 if(SMB_VFS_LSEEK(fsp2,fsp2->fh->fd,0,SEEK_END) == -1) {
4572 DEBUG(0,("copy_file: error - vfs lseek returned error %s\n", strerror(errno) ));
4574 * Stop the copy from occurring.
4576 ret = -1;
4577 src_sbuf.st_size = 0;
4581 if (src_sbuf.st_size) {
4582 ret = vfs_transfer_file(fsp1, fsp2, src_sbuf.st_size);
4585 close_file(fsp1,NORMAL_CLOSE);
4587 /* Ensure the modtime is set correctly on the destination file. */
4588 fsp_set_pending_modtime( fsp2, src_sbuf.st_mtime);
4591 * As we are opening fsp1 read-only we only expect
4592 * an error on close on fsp2 if we are out of space.
4593 * Thus we don't look at the error return from the
4594 * close of fsp1.
4596 close_err = close_file(fsp2,NORMAL_CLOSE);
4598 if (close_err != 0) {
4599 return map_nt_error_from_unix(close_err);
4602 if (ret != (SMB_OFF_T)src_sbuf.st_size) {
4603 return NT_STATUS_DISK_FULL;
4606 return NT_STATUS_OK;
4609 /****************************************************************************
4610 Reply to a file copy.
4611 ****************************************************************************/
4613 int reply_copy(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
4615 int outsize = 0;
4616 pstring name;
4617 pstring directory;
4618 pstring mask,newname;
4619 char *p;
4620 int count=0;
4621 int error = ERRnoaccess;
4622 int err = 0;
4623 BOOL has_wild;
4624 BOOL exists=False;
4625 int tid2 = SVAL(inbuf,smb_vwv0);
4626 int ofun = SVAL(inbuf,smb_vwv1);
4627 int flags = SVAL(inbuf,smb_vwv2);
4628 BOOL target_is_directory=False;
4629 BOOL path_contains_wcard1 = False;
4630 BOOL path_contains_wcard2 = False;
4631 SMB_STRUCT_STAT sbuf1, sbuf2;
4632 NTSTATUS status;
4633 START_PROFILE(SMBcopy);
4635 *directory = *mask = 0;
4637 p = smb_buf(inbuf);
4638 p += srvstr_get_path_wcard(inbuf, name, p, sizeof(name), 0, STR_TERMINATE, &status, &path_contains_wcard1);
4639 if (!NT_STATUS_IS_OK(status)) {
4640 END_PROFILE(SMBcopy);
4641 return ERROR_NT(status);
4643 p += srvstr_get_path_wcard(inbuf, newname, p, sizeof(newname), 0, STR_TERMINATE, &status, &path_contains_wcard2);
4644 if (!NT_STATUS_IS_OK(status)) {
4645 END_PROFILE(SMBcopy);
4646 return ERROR_NT(status);
4649 DEBUG(3,("reply_copy : %s -> %s\n",name,newname));
4651 if (tid2 != conn->cnum) {
4652 /* can't currently handle inter share copies XXXX */
4653 DEBUG(3,("Rejecting inter-share copy\n"));
4654 END_PROFILE(SMBcopy);
4655 return ERROR_DOS(ERRSRV,ERRinvdevice);
4658 RESOLVE_DFSPATH_WCARD(name, conn, inbuf, outbuf);
4659 RESOLVE_DFSPATH_WCARD(newname, conn, inbuf, outbuf);
4661 status = unix_convert(conn, name, path_contains_wcard1, NULL, &sbuf1);
4662 if (!NT_STATUS_IS_OK(status)) {
4663 END_PROFILE(SMBcopy);
4664 return ERROR_NT(status);
4667 status = unix_convert(conn, newname, path_contains_wcard2, NULL, &sbuf2);
4668 if (!NT_STATUS_IS_OK(status)) {
4669 END_PROFILE(SMBcopy);
4670 return ERROR_NT(status);
4673 target_is_directory = VALID_STAT_OF_DIR(sbuf2);
4675 if ((flags&1) && target_is_directory) {
4676 END_PROFILE(SMBcopy);
4677 return ERROR_DOS(ERRDOS,ERRbadfile);
4680 if ((flags&2) && !target_is_directory) {
4681 END_PROFILE(SMBcopy);
4682 return ERROR_DOS(ERRDOS,ERRbadpath);
4685 if ((flags&(1<<5)) && VALID_STAT_OF_DIR(sbuf1)) {
4686 /* wants a tree copy! XXXX */
4687 DEBUG(3,("Rejecting tree copy\n"));
4688 END_PROFILE(SMBcopy);
4689 return ERROR_DOS(ERRSRV,ERRerror);
4692 p = strrchr_m(name,'/');
4693 if (!p) {
4694 pstrcpy(directory,"./");
4695 pstrcpy(mask,name);
4696 } else {
4697 *p = 0;
4698 pstrcpy(directory,name);
4699 pstrcpy(mask,p+1);
4703 * We should only check the mangled cache
4704 * here if unix_convert failed. This means
4705 * that the path in 'mask' doesn't exist
4706 * on the file system and so we need to look
4707 * for a possible mangle. This patch from
4708 * Tine Smukavec <valentin.smukavec@hermes.si>.
4711 if (!VALID_STAT(sbuf1) && mangle_is_mangled(mask, conn->params))
4712 mangle_check_cache( mask, sizeof(pstring)-1, conn->params );
4714 has_wild = path_contains_wcard1;
4716 if (!has_wild) {
4717 pstrcat(directory,"/");
4718 pstrcat(directory,mask);
4719 if (resolve_wildcards(directory,newname)
4720 && NT_STATUS_IS_OK(status = copy_file(
4721 directory,newname,conn,ofun,
4722 count,target_is_directory)))
4723 count++;
4724 if(!count && !NT_STATUS_IS_OK(status)) {
4725 END_PROFILE(SMBcopy);
4726 return ERROR_NT(status);
4728 if (!count) {
4729 exists = vfs_file_exist(conn,directory,NULL);
4731 } else {
4732 struct smb_Dir *dir_hnd = NULL;
4733 const char *dname;
4734 long offset = 0;
4735 pstring destname;
4737 if (strequal(mask,"????????.???"))
4738 pstrcpy(mask,"*");
4740 status = check_name(conn, directory);
4741 if (!NT_STATUS_IS_OK(status)) {
4742 return ERROR_NT(status);
4745 dir_hnd = OpenDir(conn, directory, mask, 0);
4746 if (dir_hnd == NULL) {
4747 status = map_nt_error_from_unix(errno);
4748 return ERROR_NT(status);
4751 error = ERRbadfile;
4753 while ((dname = ReadDirName(dir_hnd, &offset))) {
4754 pstring fname;
4755 pstrcpy(fname,dname);
4757 if (!is_visible_file(conn, directory, dname, &sbuf1, False)) {
4758 continue;
4761 if(!mask_match(fname, mask, conn->case_sensitive)) {
4762 continue;
4765 error = ERRnoaccess;
4766 slprintf(fname,sizeof(fname)-1, "%s/%s",directory,dname);
4767 pstrcpy(destname,newname);
4768 if (resolve_wildcards(fname,destname) &&
4769 NT_STATUS_IS_OK(status = copy_file(
4770 fname,destname,conn,ofun,
4771 count,target_is_directory))) {
4772 count++;
4774 DEBUG(3,("reply_copy : doing copy on %s -> %s\n",fname,destname));
4776 CloseDir(dir_hnd);
4779 if (count == 0) {
4780 if(err) {
4781 /* Error on close... */
4782 errno = err;
4783 END_PROFILE(SMBcopy);
4784 return(UNIXERROR(ERRHRD,ERRgeneral));
4787 END_PROFILE(SMBcopy);
4788 return ERROR_DOS(ERRDOS,error);
4791 outsize = set_message(outbuf,1,0,True);
4792 SSVAL(outbuf,smb_vwv0,count);
4794 END_PROFILE(SMBcopy);
4795 return(outsize);
4798 /****************************************************************************
4799 Reply to a setdir.
4800 ****************************************************************************/
4802 int reply_setdir(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
4804 int snum;
4805 int outsize = 0;
4806 pstring newdir;
4807 NTSTATUS status;
4809 START_PROFILE(pathworks_setdir);
4811 snum = SNUM(conn);
4812 if (!CAN_SETDIR(snum)) {
4813 END_PROFILE(pathworks_setdir);
4814 return ERROR_DOS(ERRDOS,ERRnoaccess);
4817 srvstr_get_path(inbuf, newdir, smb_buf(inbuf) + 1, sizeof(newdir), 0, STR_TERMINATE, &status);
4818 if (!NT_STATUS_IS_OK(status)) {
4819 END_PROFILE(pathworks_setdir);
4820 return ERROR_NT(status);
4823 RESOLVE_DFSPATH(newdir, conn, inbuf, outbuf);
4825 if (strlen(newdir) != 0) {
4826 if (!vfs_directory_exist(conn,newdir,NULL)) {
4827 END_PROFILE(pathworks_setdir);
4828 return ERROR_DOS(ERRDOS,ERRbadpath);
4830 set_conn_connectpath(conn,newdir);
4833 outsize = set_message(outbuf,0,0,False);
4834 SCVAL(outbuf,smb_reh,CVAL(inbuf,smb_reh));
4836 DEBUG(3,("setdir %s\n", newdir));
4838 END_PROFILE(pathworks_setdir);
4839 return(outsize);
4842 #undef DBGC_CLASS
4843 #define DBGC_CLASS DBGC_LOCKING
4845 /****************************************************************************
4846 Get a lock pid, dealing with large count requests.
4847 ****************************************************************************/
4849 uint32 get_lock_pid( char *data, int data_offset, BOOL large_file_format)
4851 if(!large_file_format)
4852 return (uint32)SVAL(data,SMB_LPID_OFFSET(data_offset));
4853 else
4854 return (uint32)SVAL(data,SMB_LARGE_LPID_OFFSET(data_offset));
4857 /****************************************************************************
4858 Get a lock count, dealing with large count requests.
4859 ****************************************************************************/
4861 SMB_BIG_UINT get_lock_count( char *data, int data_offset, BOOL large_file_format)
4863 SMB_BIG_UINT count = 0;
4865 if(!large_file_format) {
4866 count = (SMB_BIG_UINT)IVAL(data,SMB_LKLEN_OFFSET(data_offset));
4867 } else {
4869 #if defined(HAVE_LONGLONG)
4870 count = (((SMB_BIG_UINT) IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset))) << 32) |
4871 ((SMB_BIG_UINT) IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset)));
4872 #else /* HAVE_LONGLONG */
4875 * NT4.x seems to be broken in that it sends large file (64 bit)
4876 * lockingX calls even if the CAP_LARGE_FILES was *not*
4877 * negotiated. For boxes without large unsigned ints truncate the
4878 * lock count by dropping the top 32 bits.
4881 if(IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset)) != 0) {
4882 DEBUG(3,("get_lock_count: truncating lock count (high)0x%x (low)0x%x to just low count.\n",
4883 (unsigned int)IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset)),
4884 (unsigned int)IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset)) ));
4885 SIVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset),0);
4888 count = (SMB_BIG_UINT)IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset));
4889 #endif /* HAVE_LONGLONG */
4892 return count;
4895 #if !defined(HAVE_LONGLONG)
4896 /****************************************************************************
4897 Pathetically try and map a 64 bit lock offset into 31 bits. I hate Windows :-).
4898 ****************************************************************************/
4900 static uint32 map_lock_offset(uint32 high, uint32 low)
4902 unsigned int i;
4903 uint32 mask = 0;
4904 uint32 highcopy = high;
4907 * Try and find out how many significant bits there are in high.
4910 for(i = 0; highcopy; i++)
4911 highcopy >>= 1;
4914 * We use 31 bits not 32 here as POSIX
4915 * lock offsets may not be negative.
4918 mask = (~0) << (31 - i);
4920 if(low & mask)
4921 return 0; /* Fail. */
4923 high <<= (31 - i);
4925 return (high|low);
4927 #endif /* !defined(HAVE_LONGLONG) */
4929 /****************************************************************************
4930 Get a lock offset, dealing with large offset requests.
4931 ****************************************************************************/
4933 SMB_BIG_UINT get_lock_offset( char *data, int data_offset, BOOL large_file_format, BOOL *err)
4935 SMB_BIG_UINT offset = 0;
4937 *err = False;
4939 if(!large_file_format) {
4940 offset = (SMB_BIG_UINT)IVAL(data,SMB_LKOFF_OFFSET(data_offset));
4941 } else {
4943 #if defined(HAVE_LONGLONG)
4944 offset = (((SMB_BIG_UINT) IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset))) << 32) |
4945 ((SMB_BIG_UINT) IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset)));
4946 #else /* HAVE_LONGLONG */
4949 * NT4.x seems to be broken in that it sends large file (64 bit)
4950 * lockingX calls even if the CAP_LARGE_FILES was *not*
4951 * negotiated. For boxes without large unsigned ints mangle the
4952 * lock offset by mapping the top 32 bits onto the lower 32.
4955 if(IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset)) != 0) {
4956 uint32 low = IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
4957 uint32 high = IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset));
4958 uint32 new_low = 0;
4960 if((new_low = map_lock_offset(high, low)) == 0) {
4961 *err = True;
4962 return (SMB_BIG_UINT)-1;
4965 DEBUG(3,("get_lock_offset: truncating lock offset (high)0x%x (low)0x%x to offset 0x%x.\n",
4966 (unsigned int)high, (unsigned int)low, (unsigned int)new_low ));
4967 SIVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset),0);
4968 SIVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset),new_low);
4971 offset = (SMB_BIG_UINT)IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
4972 #endif /* HAVE_LONGLONG */
4975 return offset;
4978 /****************************************************************************
4979 Reply to a lockingX request.
4980 ****************************************************************************/
4982 int reply_lockingX(connection_struct *conn, char *inbuf, char *outbuf,
4983 int length, int bufsize)
4985 files_struct *fsp = file_fsp(inbuf,smb_vwv2);
4986 unsigned char locktype = CVAL(inbuf,smb_vwv3);
4987 unsigned char oplocklevel = CVAL(inbuf,smb_vwv3+1);
4988 uint16 num_ulocks = SVAL(inbuf,smb_vwv6);
4989 uint16 num_locks = SVAL(inbuf,smb_vwv7);
4990 SMB_BIG_UINT count = 0, offset = 0;
4991 uint32 lock_pid;
4992 int32 lock_timeout = IVAL(inbuf,smb_vwv4);
4993 int i;
4994 char *data;
4995 BOOL large_file_format =
4996 (locktype & LOCKING_ANDX_LARGE_FILES)?True:False;
4997 BOOL err;
4998 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
5000 START_PROFILE(SMBlockingX);
5002 CHECK_FSP(fsp,conn);
5004 data = smb_buf(inbuf);
5006 if (locktype & LOCKING_ANDX_CHANGE_LOCKTYPE) {
5007 /* we don't support these - and CANCEL_LOCK makes w2k
5008 and XP reboot so I don't really want to be
5009 compatible! (tridge) */
5010 return ERROR_NT(NT_STATUS_DOS(ERRDOS, ERRnoatomiclocks));
5013 /* Check if this is an oplock break on a file
5014 we have granted an oplock on.
5016 if ((locktype & LOCKING_ANDX_OPLOCK_RELEASE)) {
5017 /* Client can insist on breaking to none. */
5018 BOOL break_to_none = (oplocklevel == 0);
5019 BOOL result;
5021 DEBUG(5,("reply_lockingX: oplock break reply (%u) from client "
5022 "for fnum = %d\n", (unsigned int)oplocklevel,
5023 fsp->fnum ));
5026 * Make sure we have granted an exclusive or batch oplock on
5027 * this file.
5030 if (fsp->oplock_type == 0) {
5032 /* The Samba4 nbench simulator doesn't understand
5033 the difference between break to level2 and break
5034 to none from level2 - it sends oplock break
5035 replies in both cases. Don't keep logging an error
5036 message here - just ignore it. JRA. */
5038 DEBUG(5,("reply_lockingX: Error : oplock break from "
5039 "client for fnum = %d (oplock=%d) and no "
5040 "oplock granted on this file (%s).\n",
5041 fsp->fnum, fsp->oplock_type, fsp->fsp_name));
5043 /* if this is a pure oplock break request then don't
5044 * send a reply */
5045 if (num_locks == 0 && num_ulocks == 0) {
5046 END_PROFILE(SMBlockingX);
5047 return -1;
5048 } else {
5049 END_PROFILE(SMBlockingX);
5050 return ERROR_DOS(ERRDOS,ERRlock);
5054 if ((fsp->sent_oplock_break == BREAK_TO_NONE_SENT) ||
5055 (break_to_none)) {
5056 result = remove_oplock(fsp);
5057 } else {
5058 result = downgrade_oplock(fsp);
5061 if (!result) {
5062 DEBUG(0, ("reply_lockingX: error in removing "
5063 "oplock on file %s\n", fsp->fsp_name));
5064 /* Hmmm. Is this panic justified? */
5065 smb_panic("internal tdb error");
5068 reply_to_oplock_break_requests(fsp);
5070 /* if this is a pure oplock break request then don't send a
5071 * reply */
5072 if (num_locks == 0 && num_ulocks == 0) {
5073 /* Sanity check - ensure a pure oplock break is not a
5074 chained request. */
5075 if(CVAL(inbuf,smb_vwv0) != 0xff)
5076 DEBUG(0,("reply_lockingX: Error : pure oplock "
5077 "break is a chained %d request !\n",
5078 (unsigned int)CVAL(inbuf,smb_vwv0) ));
5079 END_PROFILE(SMBlockingX);
5080 return -1;
5085 * We do this check *after* we have checked this is not a oplock break
5086 * response message. JRA.
5089 release_level_2_oplocks_on_change(fsp);
5091 /* Data now points at the beginning of the list
5092 of smb_unlkrng structs */
5093 for(i = 0; i < (int)num_ulocks; i++) {
5094 lock_pid = get_lock_pid( data, i, large_file_format);
5095 count = get_lock_count( data, i, large_file_format);
5096 offset = get_lock_offset( data, i, large_file_format, &err);
5099 * There is no error code marked "stupid client bug".... :-).
5101 if(err) {
5102 END_PROFILE(SMBlockingX);
5103 return ERROR_DOS(ERRDOS,ERRnoaccess);
5106 DEBUG(10,("reply_lockingX: unlock start=%.0f, len=%.0f for "
5107 "pid %u, file %s\n", (double)offset, (double)count,
5108 (unsigned int)lock_pid, fsp->fsp_name ));
5110 status = do_unlock(fsp,
5111 lock_pid,
5112 count,
5113 offset,
5114 WINDOWS_LOCK);
5116 if (NT_STATUS_V(status)) {
5117 END_PROFILE(SMBlockingX);
5118 return ERROR_NT(status);
5122 /* Setup the timeout in seconds. */
5124 if (!lp_blocking_locks(SNUM(conn))) {
5125 lock_timeout = 0;
5128 /* Now do any requested locks */
5129 data += ((large_file_format ? 20 : 10)*num_ulocks);
5131 /* Data now points at the beginning of the list
5132 of smb_lkrng structs */
5134 for(i = 0; i < (int)num_locks; i++) {
5135 enum brl_type lock_type = ((locktype & LOCKING_ANDX_SHARED_LOCK) ?
5136 READ_LOCK:WRITE_LOCK);
5137 lock_pid = get_lock_pid( data, i, large_file_format);
5138 count = get_lock_count( data, i, large_file_format);
5139 offset = get_lock_offset( data, i, large_file_format, &err);
5142 * There is no error code marked "stupid client bug".... :-).
5144 if(err) {
5145 END_PROFILE(SMBlockingX);
5146 return ERROR_DOS(ERRDOS,ERRnoaccess);
5149 DEBUG(10,("reply_lockingX: lock start=%.0f, len=%.0f for pid "
5150 "%u, file %s timeout = %d\n", (double)offset,
5151 (double)count, (unsigned int)lock_pid,
5152 fsp->fsp_name, (int)lock_timeout ));
5154 if (locktype & LOCKING_ANDX_CANCEL_LOCK) {
5155 if (lp_blocking_locks(SNUM(conn))) {
5157 /* Schedule a message to ourselves to
5158 remove the blocking lock record and
5159 return the right error. */
5161 if (!blocking_lock_cancel(fsp,
5162 lock_pid,
5163 offset,
5164 count,
5165 WINDOWS_LOCK,
5166 locktype,
5167 NT_STATUS_FILE_LOCK_CONFLICT)) {
5168 END_PROFILE(SMBlockingX);
5169 return ERROR_NT(NT_STATUS_DOS(ERRDOS, ERRcancelviolation));
5172 /* Remove a matching pending lock. */
5173 status = do_lock_cancel(fsp,
5174 lock_pid,
5175 count,
5176 offset,
5177 WINDOWS_LOCK);
5178 } else {
5179 BOOL blocking_lock = lock_timeout ? True : False;
5180 BOOL defer_lock = False;
5181 struct byte_range_lock *br_lck;
5183 br_lck = do_lock(fsp,
5184 lock_pid,
5185 count,
5186 offset,
5187 lock_type,
5188 WINDOWS_LOCK,
5189 blocking_lock,
5190 &status);
5192 if (br_lck && blocking_lock && ERROR_WAS_LOCK_DENIED(status)) {
5193 /* Windows internal resolution for blocking locks seems
5194 to be about 200ms... Don't wait for less than that. JRA. */
5195 if (lock_timeout != -1 && lock_timeout < lp_lock_spin_time()) {
5196 lock_timeout = lp_lock_spin_time();
5198 defer_lock = True;
5201 /* This heuristic seems to match W2K3 very well. If a
5202 lock sent with timeout of zero would fail with NT_STATUS_FILE_LOCK_CONFLICT
5203 it pretends we asked for a timeout of between 150 - 300 milliseconds as
5204 far as I can tell. Replacement for do_lock_spin(). JRA. */
5206 if (br_lck && lp_blocking_locks(SNUM(conn)) && !blocking_lock &&
5207 NT_STATUS_EQUAL((status), NT_STATUS_FILE_LOCK_CONFLICT)) {
5208 defer_lock = True;
5209 lock_timeout = lp_lock_spin_time();
5212 if (br_lck && defer_lock) {
5214 * A blocking lock was requested. Package up
5215 * this smb into a queued request and push it
5216 * onto the blocking lock queue.
5218 if(push_blocking_lock_request(br_lck,
5219 inbuf, length,
5220 fsp,
5221 lock_timeout,
5223 lock_pid,
5224 lock_type,
5225 WINDOWS_LOCK,
5226 offset,
5227 count)) {
5228 TALLOC_FREE(br_lck);
5229 END_PROFILE(SMBlockingX);
5230 return -1;
5234 TALLOC_FREE(br_lck);
5237 if (NT_STATUS_V(status)) {
5238 END_PROFILE(SMBlockingX);
5239 return ERROR_NT(status);
5243 /* If any of the above locks failed, then we must unlock
5244 all of the previous locks (X/Open spec). */
5246 if (!(locktype & LOCKING_ANDX_CANCEL_LOCK) &&
5247 (i != num_locks) &&
5248 (num_locks != 0)) {
5250 * Ensure we don't do a remove on the lock that just failed,
5251 * as under POSIX rules, if we have a lock already there, we
5252 * will delete it (and we shouldn't) .....
5254 for(i--; i >= 0; i--) {
5255 lock_pid = get_lock_pid( data, i, large_file_format);
5256 count = get_lock_count( data, i, large_file_format);
5257 offset = get_lock_offset( data, i, large_file_format,
5258 &err);
5261 * There is no error code marked "stupid client
5262 * bug".... :-).
5264 if(err) {
5265 END_PROFILE(SMBlockingX);
5266 return ERROR_DOS(ERRDOS,ERRnoaccess);
5269 do_unlock(fsp,
5270 lock_pid,
5271 count,
5272 offset,
5273 WINDOWS_LOCK);
5275 END_PROFILE(SMBlockingX);
5276 return ERROR_NT(status);
5279 set_message(outbuf,2,0,True);
5281 DEBUG(3, ("lockingX fnum=%d type=%d num_locks=%d num_ulocks=%d\n",
5282 fsp->fnum, (unsigned int)locktype, num_locks, num_ulocks));
5284 END_PROFILE(SMBlockingX);
5285 return chain_reply(inbuf,outbuf,length,bufsize);
5288 #undef DBGC_CLASS
5289 #define DBGC_CLASS DBGC_ALL
5291 /****************************************************************************
5292 Reply to a SMBreadbmpx (read block multiplex) request.
5293 ****************************************************************************/
5295 int reply_readbmpx(connection_struct *conn, char *inbuf,char *outbuf,int length,int bufsize)
5297 ssize_t nread = -1;
5298 ssize_t total_read;
5299 char *data;
5300 SMB_OFF_T startpos;
5301 int outsize;
5302 size_t maxcount;
5303 int max_per_packet;
5304 size_t tcount;
5305 int pad;
5306 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
5307 START_PROFILE(SMBreadBmpx);
5309 /* this function doesn't seem to work - disable by default */
5310 if (!lp_readbmpx()) {
5311 END_PROFILE(SMBreadBmpx);
5312 return ERROR_DOS(ERRSRV,ERRuseSTD);
5315 outsize = set_message(outbuf,8,0,True);
5317 CHECK_FSP(fsp,conn);
5318 if (!CHECK_READ(fsp,inbuf)) {
5319 return(ERROR_DOS(ERRDOS,ERRbadaccess));
5322 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv1);
5323 maxcount = SVAL(inbuf,smb_vwv3);
5325 data = smb_buf(outbuf);
5326 pad = ((long)data)%4;
5327 if (pad)
5328 pad = 4 - pad;
5329 data += pad;
5331 max_per_packet = bufsize-(outsize+pad);
5332 tcount = maxcount;
5333 total_read = 0;
5335 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)maxcount,(SMB_BIG_UINT)startpos, READ_LOCK)) {
5336 END_PROFILE(SMBreadBmpx);
5337 return ERROR_DOS(ERRDOS,ERRlock);
5340 do {
5341 size_t N = MIN(max_per_packet,tcount-total_read);
5343 nread = read_file(fsp,data,startpos,N);
5345 if (nread <= 0)
5346 nread = 0;
5348 if (nread < (ssize_t)N)
5349 tcount = total_read + nread;
5351 set_message(outbuf,8,nread+pad,False);
5352 SIVAL(outbuf,smb_vwv0,startpos);
5353 SSVAL(outbuf,smb_vwv2,tcount);
5354 SSVAL(outbuf,smb_vwv6,nread);
5355 SSVAL(outbuf,smb_vwv7,smb_offset(data,outbuf));
5357 show_msg(outbuf);
5358 if (!send_smb(smbd_server_fd(),outbuf))
5359 exit_server_cleanly("reply_readbmpx: send_smb failed.");
5361 total_read += nread;
5362 startpos += nread;
5363 } while (total_read < (ssize_t)tcount);
5365 END_PROFILE(SMBreadBmpx);
5366 return(-1);
5369 /****************************************************************************
5370 Reply to a SMBsetattrE.
5371 ****************************************************************************/
5373 int reply_setattrE(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
5375 struct utimbuf unix_times;
5376 int outsize = 0;
5377 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
5378 START_PROFILE(SMBsetattrE);
5380 outsize = set_message(outbuf,0,0,False);
5382 if(!fsp || (fsp->conn != conn)) {
5383 END_PROFILE(SMBsetattrE);
5384 return ERROR_DOS(ERRDOS,ERRbadfid);
5388 * Convert the DOS times into unix times. Ignore create
5389 * time as UNIX can't set this.
5392 unix_times.actime = srv_make_unix_date2(inbuf+smb_vwv3);
5393 unix_times.modtime = srv_make_unix_date2(inbuf+smb_vwv5);
5396 * Patch from Ray Frush <frush@engr.colostate.edu>
5397 * Sometimes times are sent as zero - ignore them.
5400 if (null_mtime(unix_times.actime) && null_mtime(unix_times.modtime)) {
5401 /* Ignore request */
5402 if( DEBUGLVL( 3 ) ) {
5403 dbgtext( "reply_setattrE fnum=%d ", fsp->fnum);
5404 dbgtext( "ignoring zero request - not setting timestamps of 0\n" );
5406 END_PROFILE(SMBsetattrE);
5407 return(outsize);
5408 } else if (!null_mtime(unix_times.actime) && null_mtime(unix_times.modtime)) {
5409 /* set modify time = to access time if modify time was unset */
5410 unix_times.modtime = unix_times.actime;
5413 /* Set the date on this file */
5414 /* Should we set pending modtime here ? JRA */
5415 if(file_utime(conn, fsp->fsp_name, &unix_times)) {
5416 END_PROFILE(SMBsetattrE);
5417 return ERROR_DOS(ERRDOS,ERRnoaccess);
5420 DEBUG( 3, ( "reply_setattrE fnum=%d actime=%d modtime=%d\n",
5421 fsp->fnum, (int)unix_times.actime, (int)unix_times.modtime ) );
5423 END_PROFILE(SMBsetattrE);
5424 return(outsize);
5428 /* Back from the dead for OS/2..... JRA. */
5430 /****************************************************************************
5431 Reply to a SMBwritebmpx (write block multiplex primary) request.
5432 ****************************************************************************/
5434 int reply_writebmpx(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
5436 size_t numtowrite;
5437 ssize_t nwritten = -1;
5438 int outsize = 0;
5439 SMB_OFF_T startpos;
5440 size_t tcount;
5441 BOOL write_through;
5442 int smb_doff;
5443 char *data;
5444 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
5445 START_PROFILE(SMBwriteBmpx);
5447 CHECK_FSP(fsp,conn);
5448 if (!CHECK_WRITE(fsp)) {
5449 return(ERROR_DOS(ERRDOS,ERRbadaccess));
5451 if (HAS_CACHED_ERROR(fsp)) {
5452 return(CACHED_ERROR(fsp));
5455 tcount = SVAL(inbuf,smb_vwv1);
5456 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv3);
5457 write_through = BITSETW(inbuf+smb_vwv7,0);
5458 numtowrite = SVAL(inbuf,smb_vwv10);
5459 smb_doff = SVAL(inbuf,smb_vwv11);
5461 data = smb_base(inbuf) + smb_doff;
5463 /* If this fails we need to send an SMBwriteC response,
5464 not an SMBwritebmpx - set this up now so we don't forget */
5465 SCVAL(outbuf,smb_com,SMBwritec);
5467 if (is_locked(fsp,(uint32)SVAL(inbuf,smb_pid),(SMB_BIG_UINT)tcount,(SMB_BIG_UINT)startpos,WRITE_LOCK)) {
5468 END_PROFILE(SMBwriteBmpx);
5469 return(ERROR_DOS(ERRDOS,ERRlock));
5472 nwritten = write_file(fsp,data,startpos,numtowrite);
5474 sync_file(conn, fsp, write_through);
5476 if(nwritten < (ssize_t)numtowrite) {
5477 END_PROFILE(SMBwriteBmpx);
5478 return(UNIXERROR(ERRHRD,ERRdiskfull));
5481 /* If the maximum to be written to this file
5482 is greater than what we just wrote then set
5483 up a secondary struct to be attached to this
5484 fd, we will use this to cache error messages etc. */
5486 if((ssize_t)tcount > nwritten) {
5487 write_bmpx_struct *wbms;
5488 if(fsp->wbmpx_ptr != NULL)
5489 wbms = fsp->wbmpx_ptr; /* Use an existing struct */
5490 else
5491 wbms = SMB_MALLOC_P(write_bmpx_struct);
5492 if(!wbms) {
5493 DEBUG(0,("Out of memory in reply_readmpx\n"));
5494 END_PROFILE(SMBwriteBmpx);
5495 return(ERROR_DOS(ERRSRV,ERRnoresource));
5497 wbms->wr_mode = write_through;
5498 wbms->wr_discard = False; /* No errors yet */
5499 wbms->wr_total_written = nwritten;
5500 wbms->wr_errclass = 0;
5501 wbms->wr_error = 0;
5502 fsp->wbmpx_ptr = wbms;
5505 /* We are returning successfully, set the message type back to
5506 SMBwritebmpx */
5507 SCVAL(outbuf,smb_com,SMBwriteBmpx);
5509 outsize = set_message(outbuf,1,0,True);
5511 SSVALS(outbuf,smb_vwv0,-1); /* We don't support smb_remaining */
5513 DEBUG( 3, ( "writebmpx fnum=%d num=%d wrote=%d\n",
5514 fsp->fnum, (int)numtowrite, (int)nwritten ) );
5516 if (write_through && tcount==nwritten) {
5517 /* We need to send both a primary and a secondary response */
5518 smb_setlen(outbuf,outsize - 4);
5519 show_msg(outbuf);
5520 if (!send_smb(smbd_server_fd(),outbuf))
5521 exit_server_cleanly("reply_writebmpx: send_smb failed.");
5523 /* Now the secondary */
5524 outsize = set_message(outbuf,1,0,True);
5525 SCVAL(outbuf,smb_com,SMBwritec);
5526 SSVAL(outbuf,smb_vwv0,nwritten);
5529 END_PROFILE(SMBwriteBmpx);
5530 return(outsize);
5533 /****************************************************************************
5534 Reply to a SMBwritebs (write block multiplex secondary) request.
5535 ****************************************************************************/
5537 int reply_writebs(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, int dum_buffsize)
5539 size_t numtowrite;
5540 ssize_t nwritten = -1;
5541 int outsize = 0;
5542 SMB_OFF_T startpos;
5543 size_t tcount;
5544 BOOL write_through;
5545 int smb_doff;
5546 char *data;
5547 write_bmpx_struct *wbms;
5548 BOOL send_response = False;
5549 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
5550 START_PROFILE(SMBwriteBs);
5552 CHECK_FSP(fsp,conn);
5553 if (!CHECK_WRITE(fsp)) {
5554 return(ERROR_DOS(ERRDOS,ERRbadaccess));
5557 tcount = SVAL(inbuf,smb_vwv1);
5558 startpos = IVAL_TO_SMB_OFF_T(inbuf,smb_vwv2);
5559 numtowrite = SVAL(inbuf,smb_vwv6);
5560 smb_doff = SVAL(inbuf,smb_vwv7);
5562 data = smb_base(inbuf) + smb_doff;
5564 /* We need to send an SMBwriteC response, not an SMBwritebs */
5565 SCVAL(outbuf,smb_com,SMBwritec);
5567 /* This fd should have an auxiliary struct attached,
5568 check that it does */
5569 wbms = fsp->wbmpx_ptr;
5570 if(!wbms) {
5571 END_PROFILE(SMBwriteBs);
5572 return(-1);
5575 /* If write through is set we can return errors, else we must cache them */
5576 write_through = wbms->wr_mode;
5578 /* Check for an earlier error */
5579 if(wbms->wr_discard) {
5580 END_PROFILE(SMBwriteBs);
5581 return -1; /* Just discard the packet */
5584 nwritten = write_file(fsp,data,startpos,numtowrite);
5586 sync_file(conn, fsp, write_through);
5588 if (nwritten < (ssize_t)numtowrite) {
5589 if(write_through) {
5590 /* We are returning an error - we can delete the aux struct */
5591 if (wbms)
5592 free((char *)wbms);
5593 fsp->wbmpx_ptr = NULL;
5594 END_PROFILE(SMBwriteBs);
5595 return(ERROR_DOS(ERRHRD,ERRdiskfull));
5597 wbms->wr_errclass = ERRHRD;
5598 wbms->wr_error = ERRdiskfull;
5599 wbms->wr_status = NT_STATUS_DISK_FULL;
5600 wbms->wr_discard = True;
5601 END_PROFILE(SMBwriteBs);
5602 return -1;
5605 /* Increment the total written, if this matches tcount
5606 we can discard the auxiliary struct (hurrah !) and return a writeC */
5607 wbms->wr_total_written += nwritten;
5608 if(wbms->wr_total_written >= tcount) {
5609 if (write_through) {
5610 outsize = set_message(outbuf,1,0,True);
5611 SSVAL(outbuf,smb_vwv0,wbms->wr_total_written);
5612 send_response = True;
5615 free((char *)wbms);
5616 fsp->wbmpx_ptr = NULL;
5619 if(send_response) {
5620 END_PROFILE(SMBwriteBs);
5621 return(outsize);
5624 END_PROFILE(SMBwriteBs);
5625 return(-1);
5628 /****************************************************************************
5629 Reply to a SMBgetattrE.
5630 ****************************************************************************/
5632 int reply_getattrE(connection_struct *conn, char *inbuf,char *outbuf, int size, int dum_buffsize)
5634 SMB_STRUCT_STAT sbuf;
5635 int outsize = 0;
5636 int mode;
5637 files_struct *fsp = file_fsp(inbuf,smb_vwv0);
5638 START_PROFILE(SMBgetattrE);
5640 outsize = set_message(outbuf,11,0,True);
5642 if(!fsp || (fsp->conn != conn)) {
5643 END_PROFILE(SMBgetattrE);
5644 return ERROR_DOS(ERRDOS,ERRbadfid);
5647 /* Do an fstat on this file */
5648 if(fsp_stat(fsp, &sbuf)) {
5649 END_PROFILE(SMBgetattrE);
5650 return(UNIXERROR(ERRDOS,ERRnoaccess));
5653 mode = dos_mode(conn,fsp->fsp_name,&sbuf);
5656 * Convert the times into dos times. Set create
5657 * date to be last modify date as UNIX doesn't save
5658 * this.
5661 srv_put_dos_date2(outbuf,smb_vwv0,get_create_time(&sbuf,lp_fake_dir_create_times(SNUM(conn))));
5662 srv_put_dos_date2(outbuf,smb_vwv2,sbuf.st_atime);
5663 /* Should we check pending modtime here ? JRA */
5664 srv_put_dos_date2(outbuf,smb_vwv4,sbuf.st_mtime);
5666 if (mode & aDIR) {
5667 SIVAL(outbuf,smb_vwv6,0);
5668 SIVAL(outbuf,smb_vwv8,0);
5669 } else {
5670 uint32 allocation_size = get_allocation_size(conn,fsp, &sbuf);
5671 SIVAL(outbuf,smb_vwv6,(uint32)sbuf.st_size);
5672 SIVAL(outbuf,smb_vwv8,allocation_size);
5674 SSVAL(outbuf,smb_vwv10, mode);
5676 DEBUG( 3, ( "reply_getattrE fnum=%d\n", fsp->fnum));
5678 END_PROFILE(SMBgetattrE);
5679 return(outsize);