smbtorture Remove random file name before we start RW2
[Samba.git] / source3 / smbd / reply.c
blobdea265f67931886973487d0de4fee013be248c1a
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.
7 Copyright (C) Volker Lendecke 2007
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 This file handles most of the reply_ calls that the server
24 makes to handle specific protocols
27 #include "includes.h"
28 #include "printing.h"
29 #include "smbd/globals.h"
30 #include "fake_file.h"
31 #include "../librpc/gen_ndr/ndr_spoolss_c.h"
32 #include "rpc_client/cli_spoolss.h"
33 #include "rpc_client/init_spoolss.h"
34 #include "rpc_server/rpc_ncacn_np.h"
35 #include "libcli/security/security.h"
37 /****************************************************************************
38 Ensure we check the path in *exactly* the same way as W2K for a findfirst/findnext
39 path or anything including wildcards.
40 We're assuming here that '/' is not the second byte in any multibyte char
41 set (a safe assumption). '\\' *may* be the second byte in a multibyte char
42 set.
43 ****************************************************************************/
45 /* Custom version for processing POSIX paths. */
46 #define IS_PATH_SEP(c,posix_only) ((c) == '/' || (!(posix_only) && (c) == '\\'))
48 static NTSTATUS check_path_syntax_internal(char *path,
49 bool posix_path,
50 bool *p_last_component_contains_wcard)
52 char *d = path;
53 const char *s = path;
54 NTSTATUS ret = NT_STATUS_OK;
55 bool start_of_name_component = True;
56 bool stream_started = false;
58 *p_last_component_contains_wcard = False;
60 while (*s) {
61 if (stream_started) {
62 switch (*s) {
63 case '/':
64 case '\\':
65 return NT_STATUS_OBJECT_NAME_INVALID;
66 case ':':
67 if (s[1] == '\0') {
68 return NT_STATUS_OBJECT_NAME_INVALID;
70 if (strchr_m(&s[1], ':')) {
71 return NT_STATUS_OBJECT_NAME_INVALID;
73 break;
77 if ((*s == ':') && !posix_path && !stream_started) {
78 if (*p_last_component_contains_wcard) {
79 return NT_STATUS_OBJECT_NAME_INVALID;
81 /* Stream names allow more characters than file names.
82 We're overloading posix_path here to allow a wider
83 range of characters. If stream_started is true this
84 is still a Windows path even if posix_path is true.
85 JRA.
87 stream_started = true;
88 start_of_name_component = false;
89 posix_path = true;
91 if (s[1] == '\0') {
92 return NT_STATUS_OBJECT_NAME_INVALID;
96 if (!stream_started && IS_PATH_SEP(*s,posix_path)) {
98 * Safe to assume is not the second part of a mb char
99 * as this is handled below.
101 /* Eat multiple '/' or '\\' */
102 while (IS_PATH_SEP(*s,posix_path)) {
103 s++;
105 if ((d != path) && (*s != '\0')) {
106 /* We only care about non-leading or trailing '/' or '\\' */
107 *d++ = '/';
110 start_of_name_component = True;
111 /* New component. */
112 *p_last_component_contains_wcard = False;
113 continue;
116 if (start_of_name_component) {
117 if ((s[0] == '.') && (s[1] == '.') && (IS_PATH_SEP(s[2],posix_path) || s[2] == '\0')) {
118 /* Uh oh - "/../" or "\\..\\" or "/..\0" or "\\..\0" ! */
121 * No mb char starts with '.' so we're safe checking the directory separator here.
124 /* If we just added a '/' - delete it */
125 if ((d > path) && (*(d-1) == '/')) {
126 *(d-1) = '\0';
127 d--;
130 /* Are we at the start ? Can't go back further if so. */
131 if (d <= path) {
132 ret = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
133 break;
135 /* Go back one level... */
136 /* We know this is safe as '/' cannot be part of a mb sequence. */
137 /* NOTE - if this assumption is invalid we are not in good shape... */
138 /* Decrement d first as d points to the *next* char to write into. */
139 for (d--; d > path; d--) {
140 if (*d == '/')
141 break;
143 s += 2; /* Else go past the .. */
144 /* We're still at the start of a name component, just the previous one. */
145 continue;
147 } else if ((s[0] == '.') && ((s[1] == '\0') || IS_PATH_SEP(s[1],posix_path))) {
148 if (posix_path) {
149 /* Eat the '.' */
150 s++;
151 continue;
157 if (!(*s & 0x80)) {
158 if (!posix_path) {
159 if (*s <= 0x1f || *s == '|') {
160 return NT_STATUS_OBJECT_NAME_INVALID;
162 switch (*s) {
163 case '*':
164 case '?':
165 case '<':
166 case '>':
167 case '"':
168 *p_last_component_contains_wcard = True;
169 break;
170 default:
171 break;
174 *d++ = *s++;
175 } else {
176 size_t siz;
177 /* Get the size of the next MB character. */
178 next_codepoint(s,&siz);
179 switch(siz) {
180 case 5:
181 *d++ = *s++;
182 /*fall through*/
183 case 4:
184 *d++ = *s++;
185 /*fall through*/
186 case 3:
187 *d++ = *s++;
188 /*fall through*/
189 case 2:
190 *d++ = *s++;
191 /*fall through*/
192 case 1:
193 *d++ = *s++;
194 break;
195 default:
196 DEBUG(0,("check_path_syntax_internal: character length assumptions invalid !\n"));
197 *d = '\0';
198 return NT_STATUS_INVALID_PARAMETER;
201 start_of_name_component = False;
204 *d = '\0';
206 return ret;
209 /****************************************************************************
210 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
211 No wildcards allowed.
212 ****************************************************************************/
214 NTSTATUS check_path_syntax(char *path)
216 bool ignore;
217 return check_path_syntax_internal(path, False, &ignore);
220 /****************************************************************************
221 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
222 Wildcards allowed - p_contains_wcard returns true if the last component contained
223 a wildcard.
224 ****************************************************************************/
226 NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard)
228 return check_path_syntax_internal(path, False, p_contains_wcard);
231 /****************************************************************************
232 Check the path for a POSIX client.
233 We're assuming here that '/' is not the second byte in any multibyte char
234 set (a safe assumption).
235 ****************************************************************************/
237 NTSTATUS check_path_syntax_posix(char *path)
239 bool ignore;
240 return check_path_syntax_internal(path, True, &ignore);
243 /****************************************************************************
244 Pull a string and check the path allowing a wilcard - provide for error return.
245 ****************************************************************************/
247 size_t srvstr_get_path_wcard(TALLOC_CTX *ctx,
248 const char *base_ptr,
249 uint16 smb_flags2,
250 char **pp_dest,
251 const char *src,
252 size_t src_len,
253 int flags,
254 NTSTATUS *err,
255 bool *contains_wcard)
257 size_t ret;
259 *pp_dest = NULL;
261 ret = srvstr_pull_talloc(ctx, base_ptr, smb_flags2, pp_dest, src,
262 src_len, flags);
264 if (!*pp_dest) {
265 *err = NT_STATUS_INVALID_PARAMETER;
266 return ret;
269 *contains_wcard = False;
271 if (smb_flags2 & FLAGS2_DFS_PATHNAMES) {
273 * For a DFS path the function parse_dfs_path()
274 * will do the path processing, just make a copy.
276 *err = NT_STATUS_OK;
277 return ret;
280 if (lp_posix_pathnames()) {
281 *err = check_path_syntax_posix(*pp_dest);
282 } else {
283 *err = check_path_syntax_wcard(*pp_dest, contains_wcard);
286 return ret;
289 /****************************************************************************
290 Pull a string and check the path - provide for error return.
291 ****************************************************************************/
293 size_t srvstr_get_path(TALLOC_CTX *ctx,
294 const char *base_ptr,
295 uint16 smb_flags2,
296 char **pp_dest,
297 const char *src,
298 size_t src_len,
299 int flags,
300 NTSTATUS *err)
302 bool ignore;
303 return srvstr_get_path_wcard(ctx, base_ptr, smb_flags2, pp_dest, src,
304 src_len, flags, err, &ignore);
307 size_t srvstr_get_path_req_wcard(TALLOC_CTX *mem_ctx, struct smb_request *req,
308 char **pp_dest, const char *src, int flags,
309 NTSTATUS *err, bool *contains_wcard)
311 return srvstr_get_path_wcard(mem_ctx, (char *)req->inbuf, req->flags2,
312 pp_dest, src, smbreq_bufrem(req, src),
313 flags, err, contains_wcard);
316 size_t srvstr_get_path_req(TALLOC_CTX *mem_ctx, struct smb_request *req,
317 char **pp_dest, const char *src, int flags,
318 NTSTATUS *err)
320 bool ignore;
321 return srvstr_get_path_req_wcard(mem_ctx, req, pp_dest, src,
322 flags, err, &ignore);
325 /****************************************************************************
326 Check if we have a correct fsp pointing to a file. Basic check for open fsp.
327 ****************************************************************************/
329 bool check_fsp_open(connection_struct *conn, struct smb_request *req,
330 files_struct *fsp)
332 if ((fsp == NULL) || (conn == NULL)) {
333 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
334 return False;
336 if ((conn != fsp->conn) || (req->vuid != fsp->vuid)) {
337 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
338 return False;
340 return True;
343 /****************************************************************************
344 Check if we have a correct fsp pointing to a file.
345 ****************************************************************************/
347 bool check_fsp(connection_struct *conn, struct smb_request *req,
348 files_struct *fsp)
350 if (!check_fsp_open(conn, req, fsp)) {
351 return False;
353 if (fsp->is_directory) {
354 reply_nterror(req, NT_STATUS_INVALID_DEVICE_REQUEST);
355 return False;
357 if (fsp->fh->fd == -1) {
358 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
359 return False;
361 fsp->num_smb_operations++;
362 return True;
365 /****************************************************************************
366 Check if we have a correct fsp pointing to a quota fake file. Replacement for
367 the CHECK_NTQUOTA_HANDLE_OK macro.
368 ****************************************************************************/
370 bool check_fsp_ntquota_handle(connection_struct *conn, struct smb_request *req,
371 files_struct *fsp)
373 if (!check_fsp_open(conn, req, fsp)) {
374 return false;
377 if (fsp->is_directory) {
378 return false;
381 if (fsp->fake_file_handle == NULL) {
382 return false;
385 if (fsp->fake_file_handle->type != FAKE_FILE_TYPE_QUOTA) {
386 return false;
389 if (fsp->fake_file_handle->private_data == NULL) {
390 return false;
393 return true;
396 static bool netbios_session_retarget(struct smbd_server_connection *sconn,
397 const char *name, int name_type)
399 char *trim_name;
400 char *trim_name_type;
401 const char *retarget_parm;
402 char *retarget;
403 char *p;
404 int retarget_type = 0x20;
405 int retarget_port = 139;
406 struct sockaddr_storage retarget_addr;
407 struct sockaddr_in *in_addr;
408 bool ret = false;
409 uint8_t outbuf[10];
411 if (get_socket_port(sconn->sock) != 139) {
412 return false;
415 trim_name = talloc_strdup(talloc_tos(), name);
416 if (trim_name == NULL) {
417 goto fail;
419 trim_char(trim_name, ' ', ' ');
421 trim_name_type = talloc_asprintf(trim_name, "%s#%2.2x", trim_name,
422 name_type);
423 if (trim_name_type == NULL) {
424 goto fail;
427 retarget_parm = lp_parm_const_string(-1, "netbios retarget",
428 trim_name_type, NULL);
429 if (retarget_parm == NULL) {
430 retarget_parm = lp_parm_const_string(-1, "netbios retarget",
431 trim_name, NULL);
433 if (retarget_parm == NULL) {
434 goto fail;
437 retarget = talloc_strdup(trim_name, retarget_parm);
438 if (retarget == NULL) {
439 goto fail;
442 DEBUG(10, ("retargeting %s to %s\n", trim_name_type, retarget));
444 p = strchr(retarget, ':');
445 if (p != NULL) {
446 *p++ = '\0';
447 retarget_port = atoi(p);
450 p = strchr_m(retarget, '#');
451 if (p != NULL) {
452 *p++ = '\0';
453 sscanf(p, "%x", &retarget_type);
456 ret = resolve_name(retarget, &retarget_addr, retarget_type, false);
457 if (!ret) {
458 DEBUG(10, ("could not resolve %s\n", retarget));
459 goto fail;
462 if (retarget_addr.ss_family != AF_INET) {
463 DEBUG(10, ("Retarget target not an IPv4 addr\n"));
464 goto fail;
467 in_addr = (struct sockaddr_in *)(void *)&retarget_addr;
469 _smb_setlen(outbuf, 6);
470 SCVAL(outbuf, 0, 0x84);
471 *(uint32_t *)(outbuf+4) = in_addr->sin_addr.s_addr;
472 *(uint16_t *)(outbuf+8) = htons(retarget_port);
474 if (!srv_send_smb(sconn, (char *)outbuf, false, 0, false,
475 NULL)) {
476 exit_server_cleanly("netbios_session_regarget: srv_send_smb "
477 "failed.");
480 ret = true;
481 fail:
482 TALLOC_FREE(trim_name);
483 return ret;
486 /****************************************************************************
487 Reply to a (netbios-level) special message.
488 ****************************************************************************/
490 void reply_special(struct smbd_server_connection *sconn, char *inbuf, size_t inbuf_size)
492 int msg_type = CVAL(inbuf,0);
493 int msg_flags = CVAL(inbuf,1);
495 * We only really use 4 bytes of the outbuf, but for the smb_setlen
496 * calculation & friends (srv_send_smb uses that) we need the full smb
497 * header.
499 char outbuf[smb_size];
501 memset(outbuf, '\0', sizeof(outbuf));
503 smb_setlen(outbuf,0);
505 switch (msg_type) {
506 case 0x81: /* session request */
508 /* inbuf_size is guarenteed to be at least 4. */
509 fstring name1,name2;
510 int name_type1, name_type2;
511 int name_len1, name_len2;
513 *name1 = *name2 = 0;
515 if (sconn->nbt.got_session) {
516 exit_server_cleanly("multiple session request not permitted");
519 SCVAL(outbuf,0,0x82);
520 SCVAL(outbuf,3,0);
522 /* inbuf_size is guaranteed to be at least 4. */
523 name_len1 = name_len((unsigned char *)(inbuf+4),inbuf_size - 4);
524 if (name_len1 <= 0 || name_len1 > inbuf_size - 4) {
525 DEBUG(0,("Invalid name length in session request\n"));
526 break;
528 name_len2 = name_len((unsigned char *)(inbuf+4+name_len1),inbuf_size - 4 - name_len1);
529 if (name_len2 <= 0 || name_len2 > inbuf_size - 4 - name_len1) {
530 DEBUG(0,("Invalid name length in session request\n"));
531 break;
534 name_type1 = name_extract((unsigned char *)inbuf,
535 inbuf_size,(unsigned int)4,name1);
536 name_type2 = name_extract((unsigned char *)inbuf,
537 inbuf_size,(unsigned int)(4 + name_len1),name2);
539 if (name_type1 == -1 || name_type2 == -1) {
540 DEBUG(0,("Invalid name type in session request\n"));
541 break;
544 DEBUG(2,("netbios connect: name1=%s0x%x name2=%s0x%x\n",
545 name1, name_type1, name2, name_type2));
547 if (netbios_session_retarget(sconn, name1, name_type1)) {
548 exit_server_cleanly("retargeted client");
552 * Windows NT/2k uses "*SMBSERVER" and XP uses
553 * "*SMBSERV" arrggg!!!
555 if (strequal(name1, "*SMBSERVER ")
556 || strequal(name1, "*SMBSERV ")) {
557 fstrcpy(name1, sconn->client_id.addr);
560 set_local_machine_name(name1, True);
561 set_remote_machine_name(name2, True);
563 DEBUG(2,("netbios connect: local=%s remote=%s, name type = %x\n",
564 get_local_machine_name(), get_remote_machine_name(),
565 name_type2));
567 if (name_type2 == 'R') {
568 /* We are being asked for a pathworks session ---
569 no thanks! */
570 SCVAL(outbuf, 0,0x83);
571 break;
574 /* only add the client's machine name to the list
575 of possibly valid usernames if we are operating
576 in share mode security */
577 if (lp_security() == SEC_SHARE) {
578 add_session_user(sconn, get_remote_machine_name());
581 reload_services(sconn->msg_ctx, sconn->sock, True);
582 reopen_logs();
584 sconn->nbt.got_session = true;
585 break;
588 case 0x89: /* session keepalive request
589 (some old clients produce this?) */
590 SCVAL(outbuf,0,SMBkeepalive);
591 SCVAL(outbuf,3,0);
592 break;
594 case 0x82: /* positive session response */
595 case 0x83: /* negative session response */
596 case 0x84: /* retarget session response */
597 DEBUG(0,("Unexpected session response\n"));
598 break;
600 case SMBkeepalive: /* session keepalive */
601 default:
602 return;
605 DEBUG(5,("init msg_type=0x%x msg_flags=0x%x\n",
606 msg_type, msg_flags));
608 srv_send_smb(sconn, outbuf, false, 0, false, NULL);
609 return;
612 /****************************************************************************
613 Reply to a tcon.
614 conn POINTER CAN BE NULL HERE !
615 ****************************************************************************/
617 void reply_tcon(struct smb_request *req)
619 connection_struct *conn = req->conn;
620 const char *service;
621 char *service_buf = NULL;
622 char *password = NULL;
623 char *dev = NULL;
624 int pwlen=0;
625 NTSTATUS nt_status;
626 const char *p;
627 DATA_BLOB password_blob;
628 TALLOC_CTX *ctx = talloc_tos();
629 struct smbd_server_connection *sconn = req->sconn;
631 START_PROFILE(SMBtcon);
633 if (req->buflen < 4) {
634 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
635 END_PROFILE(SMBtcon);
636 return;
639 p = (const char *)req->buf + 1;
640 p += srvstr_pull_req_talloc(ctx, req, &service_buf, p, STR_TERMINATE);
641 p += 1;
642 pwlen = srvstr_pull_req_talloc(ctx, req, &password, p, STR_TERMINATE);
643 p += pwlen+1;
644 p += srvstr_pull_req_talloc(ctx, req, &dev, p, STR_TERMINATE);
645 p += 1;
647 if (service_buf == NULL || password == NULL || dev == NULL) {
648 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
649 END_PROFILE(SMBtcon);
650 return;
652 p = strrchr_m(service_buf,'\\');
653 if (p) {
654 service = p+1;
655 } else {
656 service = service_buf;
659 password_blob = data_blob(password, pwlen+1);
661 conn = make_connection(sconn,service,password_blob,dev,
662 req->vuid,&nt_status);
663 req->conn = conn;
665 data_blob_clear_free(&password_blob);
667 if (!conn) {
668 reply_nterror(req, nt_status);
669 END_PROFILE(SMBtcon);
670 return;
673 reply_outbuf(req, 2, 0);
674 SSVAL(req->outbuf,smb_vwv0,sconn->smb1.negprot.max_recv);
675 SSVAL(req->outbuf,smb_vwv1,conn->cnum);
676 SSVAL(req->outbuf,smb_tid,conn->cnum);
678 DEBUG(3,("tcon service=%s cnum=%d\n",
679 service, conn->cnum));
681 END_PROFILE(SMBtcon);
682 return;
685 /****************************************************************************
686 Reply to a tcon and X.
687 conn POINTER CAN BE NULL HERE !
688 ****************************************************************************/
690 void reply_tcon_and_X(struct smb_request *req)
692 connection_struct *conn = req->conn;
693 const char *service = NULL;
694 DATA_BLOB password;
695 TALLOC_CTX *ctx = talloc_tos();
696 /* what the cleint thinks the device is */
697 char *client_devicetype = NULL;
698 /* what the server tells the client the share represents */
699 const char *server_devicetype;
700 NTSTATUS nt_status;
701 int passlen;
702 char *path = NULL;
703 const char *p, *q;
704 uint16 tcon_flags;
705 struct smbd_server_connection *sconn = req->sconn;
707 START_PROFILE(SMBtconX);
709 if (req->wct < 4) {
710 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
711 END_PROFILE(SMBtconX);
712 return;
715 passlen = SVAL(req->vwv+3, 0);
716 tcon_flags = SVAL(req->vwv+2, 0);
718 /* we might have to close an old one */
719 if ((tcon_flags & 0x1) && conn) {
720 close_cnum(conn,req->vuid);
721 req->conn = NULL;
722 conn = NULL;
725 if ((passlen > MAX_PASS_LEN) || (passlen >= req->buflen)) {
726 reply_force_doserror(req, ERRDOS, ERRbuftoosmall);
727 END_PROFILE(SMBtconX);
728 return;
731 if (sconn->smb1.negprot.encrypted_passwords) {
732 password = data_blob_talloc(talloc_tos(), req->buf, passlen);
733 if (lp_security() == SEC_SHARE) {
735 * Security = share always has a pad byte
736 * after the password.
738 p = (const char *)req->buf + passlen + 1;
739 } else {
740 p = (const char *)req->buf + passlen;
742 } else {
743 password = data_blob_talloc(talloc_tos(), req->buf, passlen+1);
744 /* Ensure correct termination */
745 password.data[passlen]=0;
746 p = (const char *)req->buf + passlen + 1;
749 p += srvstr_pull_req_talloc(ctx, req, &path, p, STR_TERMINATE);
751 if (path == NULL) {
752 data_blob_clear_free(&password);
753 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
754 END_PROFILE(SMBtconX);
755 return;
759 * the service name can be either: \\server\share
760 * or share directly like on the DELL PowerVault 705
762 if (*path=='\\') {
763 q = strchr_m(path+2,'\\');
764 if (!q) {
765 data_blob_clear_free(&password);
766 reply_nterror(req, NT_STATUS_BAD_NETWORK_NAME);
767 END_PROFILE(SMBtconX);
768 return;
770 service = q+1;
771 } else {
772 service = path;
775 p += srvstr_pull_talloc(ctx, req->inbuf, req->flags2,
776 &client_devicetype, p,
777 MIN(6, smbreq_bufrem(req, p)), STR_ASCII);
779 if (client_devicetype == NULL) {
780 data_blob_clear_free(&password);
781 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
782 END_PROFILE(SMBtconX);
783 return;
786 DEBUG(4,("Client requested device type [%s] for share [%s]\n", client_devicetype, service));
788 conn = make_connection(sconn, service, password, client_devicetype,
789 req->vuid, &nt_status);
790 req->conn =conn;
792 data_blob_clear_free(&password);
794 if (!conn) {
795 reply_nterror(req, nt_status);
796 END_PROFILE(SMBtconX);
797 return;
800 if ( IS_IPC(conn) )
801 server_devicetype = "IPC";
802 else if ( IS_PRINT(conn) )
803 server_devicetype = "LPT1:";
804 else
805 server_devicetype = "A:";
807 if (get_Protocol() < PROTOCOL_NT1) {
808 reply_outbuf(req, 2, 0);
809 if (message_push_string(&req->outbuf, server_devicetype,
810 STR_TERMINATE|STR_ASCII) == -1) {
811 reply_nterror(req, NT_STATUS_NO_MEMORY);
812 END_PROFILE(SMBtconX);
813 return;
815 } else {
816 /* NT sets the fstype of IPC$ to the null string */
817 const char *fstype = IS_IPC(conn) ? "" : lp_fstype(SNUM(conn));
819 if (tcon_flags & TCONX_FLAG_EXTENDED_RESPONSE) {
820 /* Return permissions. */
821 uint32 perm1 = 0;
822 uint32 perm2 = 0;
824 reply_outbuf(req, 7, 0);
826 if (IS_IPC(conn)) {
827 perm1 = FILE_ALL_ACCESS;
828 perm2 = FILE_ALL_ACCESS;
829 } else {
830 perm1 = CAN_WRITE(conn) ?
831 SHARE_ALL_ACCESS :
832 SHARE_READ_ONLY;
835 SIVAL(req->outbuf, smb_vwv3, perm1);
836 SIVAL(req->outbuf, smb_vwv5, perm2);
837 } else {
838 reply_outbuf(req, 3, 0);
841 if ((message_push_string(&req->outbuf, server_devicetype,
842 STR_TERMINATE|STR_ASCII) == -1)
843 || (message_push_string(&req->outbuf, fstype,
844 STR_TERMINATE) == -1)) {
845 reply_nterror(req, NT_STATUS_NO_MEMORY);
846 END_PROFILE(SMBtconX);
847 return;
850 /* what does setting this bit do? It is set by NT4 and
851 may affect the ability to autorun mounted cdroms */
852 SSVAL(req->outbuf, smb_vwv2, SMB_SUPPORT_SEARCH_BITS|
853 (lp_csc_policy(SNUM(conn)) << 2));
855 if (lp_msdfs_root(SNUM(conn)) && lp_host_msdfs()) {
856 DEBUG(2,("Serving %s as a Dfs root\n",
857 lp_servicename(SNUM(conn)) ));
858 SSVAL(req->outbuf, smb_vwv2,
859 SMB_SHARE_IN_DFS | SVAL(req->outbuf, smb_vwv2));
864 DEBUG(3,("tconX service=%s \n",
865 service));
867 /* set the incoming and outgoing tid to the just created one */
868 SSVAL(req->inbuf,smb_tid,conn->cnum);
869 SSVAL(req->outbuf,smb_tid,conn->cnum);
871 END_PROFILE(SMBtconX);
873 req->tid = conn->cnum;
874 chain_reply(req);
875 return;
878 /****************************************************************************
879 Reply to an unknown type.
880 ****************************************************************************/
882 void reply_unknown_new(struct smb_request *req, uint8 type)
884 DEBUG(0, ("unknown command type (%s): type=%d (0x%X)\n",
885 smb_fn_name(type), type, type));
886 reply_force_doserror(req, ERRSRV, ERRunknownsmb);
887 return;
890 /****************************************************************************
891 Reply to an ioctl.
892 conn POINTER CAN BE NULL HERE !
893 ****************************************************************************/
895 void reply_ioctl(struct smb_request *req)
897 connection_struct *conn = req->conn;
898 uint16 device;
899 uint16 function;
900 uint32 ioctl_code;
901 int replysize;
902 char *p;
904 START_PROFILE(SMBioctl);
906 if (req->wct < 3) {
907 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
908 END_PROFILE(SMBioctl);
909 return;
912 device = SVAL(req->vwv+1, 0);
913 function = SVAL(req->vwv+2, 0);
914 ioctl_code = (device << 16) + function;
916 DEBUG(4, ("Received IOCTL (code 0x%x)\n", ioctl_code));
918 switch (ioctl_code) {
919 case IOCTL_QUERY_JOB_INFO:
920 replysize = 32;
921 break;
922 default:
923 reply_force_doserror(req, ERRSRV, ERRnosupport);
924 END_PROFILE(SMBioctl);
925 return;
928 reply_outbuf(req, 8, replysize+1);
929 SSVAL(req->outbuf,smb_vwv1,replysize); /* Total data bytes returned */
930 SSVAL(req->outbuf,smb_vwv5,replysize); /* Data bytes this buffer */
931 SSVAL(req->outbuf,smb_vwv6,52); /* Offset to data */
932 p = smb_buf(req->outbuf);
933 memset(p, '\0', replysize+1); /* valgrind-safe. */
934 p += 1; /* Allow for alignment */
936 switch (ioctl_code) {
937 case IOCTL_QUERY_JOB_INFO:
939 files_struct *fsp = file_fsp(
940 req, SVAL(req->vwv+0, 0));
941 if (!fsp) {
942 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
943 END_PROFILE(SMBioctl);
944 return;
946 /* Job number */
947 if (fsp->print_file) {
948 SSVAL(p, 0, fsp->print_file->rap_jobid);
949 } else {
950 SSVAL(p, 0, 0);
952 srvstr_push((char *)req->outbuf, req->flags2, p+2,
953 global_myname(), 15,
954 STR_TERMINATE|STR_ASCII);
955 if (conn) {
956 srvstr_push((char *)req->outbuf, req->flags2,
957 p+18, lp_servicename(SNUM(conn)),
958 13, STR_TERMINATE|STR_ASCII);
959 } else {
960 memset(p+18, 0, 13);
962 break;
966 END_PROFILE(SMBioctl);
967 return;
970 /****************************************************************************
971 Strange checkpath NTSTATUS mapping.
972 ****************************************************************************/
974 static NTSTATUS map_checkpath_error(uint16_t flags2, NTSTATUS status)
976 /* Strange DOS error code semantics only for checkpath... */
977 if (!(flags2 & FLAGS2_32_BIT_ERROR_CODES)) {
978 if (NT_STATUS_EQUAL(NT_STATUS_OBJECT_NAME_INVALID,status)) {
979 /* We need to map to ERRbadpath */
980 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
983 return status;
986 /****************************************************************************
987 Reply to a checkpath.
988 ****************************************************************************/
990 void reply_checkpath(struct smb_request *req)
992 connection_struct *conn = req->conn;
993 struct smb_filename *smb_fname = NULL;
994 char *name = NULL;
995 NTSTATUS status;
996 TALLOC_CTX *ctx = talloc_tos();
998 START_PROFILE(SMBcheckpath);
1000 srvstr_get_path_req(ctx, req, &name, (const char *)req->buf + 1,
1001 STR_TERMINATE, &status);
1003 if (!NT_STATUS_IS_OK(status)) {
1004 status = map_checkpath_error(req->flags2, status);
1005 reply_nterror(req, status);
1006 END_PROFILE(SMBcheckpath);
1007 return;
1010 DEBUG(3,("reply_checkpath %s mode=%d\n", name, (int)SVAL(req->vwv+0, 0)));
1012 status = filename_convert(ctx,
1013 conn,
1014 req->flags2 & FLAGS2_DFS_PATHNAMES,
1015 name,
1017 NULL,
1018 &smb_fname);
1020 if (!NT_STATUS_IS_OK(status)) {
1021 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1022 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1023 ERRSRV, ERRbadpath);
1024 END_PROFILE(SMBcheckpath);
1025 return;
1027 goto path_err;
1030 if (!VALID_STAT(smb_fname->st) &&
1031 (SMB_VFS_STAT(conn, smb_fname) != 0)) {
1032 DEBUG(3,("reply_checkpath: stat of %s failed (%s)\n",
1033 smb_fname_str_dbg(smb_fname), strerror(errno)));
1034 status = map_nt_error_from_unix(errno);
1035 goto path_err;
1038 if (!S_ISDIR(smb_fname->st.st_ex_mode)) {
1039 reply_botherror(req, NT_STATUS_NOT_A_DIRECTORY,
1040 ERRDOS, ERRbadpath);
1041 goto out;
1044 reply_outbuf(req, 0, 0);
1046 path_err:
1047 /* We special case this - as when a Windows machine
1048 is parsing a path is steps through the components
1049 one at a time - if a component fails it expects
1050 ERRbadpath, not ERRbadfile.
1052 status = map_checkpath_error(req->flags2, status);
1053 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1055 * Windows returns different error codes if
1056 * the parent directory is valid but not the
1057 * last component - it returns NT_STATUS_OBJECT_NAME_NOT_FOUND
1058 * for that case and NT_STATUS_OBJECT_PATH_NOT_FOUND
1059 * if the path is invalid.
1061 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
1062 ERRDOS, ERRbadpath);
1063 goto out;
1066 reply_nterror(req, status);
1068 out:
1069 TALLOC_FREE(smb_fname);
1070 END_PROFILE(SMBcheckpath);
1071 return;
1074 /****************************************************************************
1075 Reply to a getatr.
1076 ****************************************************************************/
1078 void reply_getatr(struct smb_request *req)
1080 connection_struct *conn = req->conn;
1081 struct smb_filename *smb_fname = NULL;
1082 char *fname = NULL;
1083 int mode=0;
1084 SMB_OFF_T size=0;
1085 time_t mtime=0;
1086 const char *p;
1087 NTSTATUS status;
1088 TALLOC_CTX *ctx = talloc_tos();
1089 bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
1091 START_PROFILE(SMBgetatr);
1093 p = (const char *)req->buf + 1;
1094 p += srvstr_get_path_req(ctx, req, &fname, p, STR_TERMINATE, &status);
1095 if (!NT_STATUS_IS_OK(status)) {
1096 reply_nterror(req, status);
1097 goto out;
1100 /* dos smetimes asks for a stat of "" - it returns a "hidden directory"
1101 under WfWg - weird! */
1102 if (*fname == '\0') {
1103 mode = aHIDDEN | aDIR;
1104 if (!CAN_WRITE(conn)) {
1105 mode |= aRONLY;
1107 size = 0;
1108 mtime = 0;
1109 } else {
1110 status = filename_convert(ctx,
1111 conn,
1112 req->flags2 & FLAGS2_DFS_PATHNAMES,
1113 fname,
1115 NULL,
1116 &smb_fname);
1117 if (!NT_STATUS_IS_OK(status)) {
1118 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1119 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1120 ERRSRV, ERRbadpath);
1121 goto out;
1123 reply_nterror(req, status);
1124 goto out;
1126 if (!VALID_STAT(smb_fname->st) &&
1127 (SMB_VFS_STAT(conn, smb_fname) != 0)) {
1128 DEBUG(3,("reply_getatr: stat of %s failed (%s)\n",
1129 smb_fname_str_dbg(smb_fname),
1130 strerror(errno)));
1131 reply_nterror(req, map_nt_error_from_unix(errno));
1132 goto out;
1135 mode = dos_mode(conn, smb_fname);
1136 size = smb_fname->st.st_ex_size;
1138 if (ask_sharemode) {
1139 struct timespec write_time_ts;
1140 struct file_id fileid;
1142 ZERO_STRUCT(write_time_ts);
1143 fileid = vfs_file_id_from_sbuf(conn, &smb_fname->st);
1144 get_file_infos(fileid, 0, NULL, &write_time_ts);
1145 if (!null_timespec(write_time_ts)) {
1146 update_stat_ex_mtime(&smb_fname->st, write_time_ts);
1150 mtime = convert_timespec_to_time_t(smb_fname->st.st_ex_mtime);
1151 if (mode & aDIR) {
1152 size = 0;
1156 reply_outbuf(req, 10, 0);
1158 SSVAL(req->outbuf,smb_vwv0,mode);
1159 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1160 srv_put_dos_date3((char *)req->outbuf,smb_vwv1,mtime & ~1);
1161 } else {
1162 srv_put_dos_date3((char *)req->outbuf,smb_vwv1,mtime);
1164 SIVAL(req->outbuf,smb_vwv3,(uint32)size);
1166 if (get_Protocol() >= PROTOCOL_NT1) {
1167 SSVAL(req->outbuf, smb_flg2,
1168 SVAL(req->outbuf, smb_flg2) | FLAGS2_IS_LONG_NAME);
1171 DEBUG(3,("reply_getatr: name=%s mode=%d size=%u\n",
1172 smb_fname_str_dbg(smb_fname), mode, (unsigned int)size));
1174 out:
1175 TALLOC_FREE(smb_fname);
1176 TALLOC_FREE(fname);
1177 END_PROFILE(SMBgetatr);
1178 return;
1181 /****************************************************************************
1182 Reply to a setatr.
1183 ****************************************************************************/
1185 void reply_setatr(struct smb_request *req)
1187 struct smb_file_time ft;
1188 connection_struct *conn = req->conn;
1189 struct smb_filename *smb_fname = NULL;
1190 char *fname = NULL;
1191 int mode;
1192 time_t mtime;
1193 const char *p;
1194 NTSTATUS status;
1195 TALLOC_CTX *ctx = talloc_tos();
1197 START_PROFILE(SMBsetatr);
1199 ZERO_STRUCT(ft);
1201 if (req->wct < 2) {
1202 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1203 goto out;
1206 p = (const char *)req->buf + 1;
1207 p += srvstr_get_path_req(ctx, req, &fname, p, STR_TERMINATE, &status);
1208 if (!NT_STATUS_IS_OK(status)) {
1209 reply_nterror(req, status);
1210 goto out;
1213 status = filename_convert(ctx,
1214 conn,
1215 req->flags2 & FLAGS2_DFS_PATHNAMES,
1216 fname,
1218 NULL,
1219 &smb_fname);
1220 if (!NT_STATUS_IS_OK(status)) {
1221 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1222 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1223 ERRSRV, ERRbadpath);
1224 goto out;
1226 reply_nterror(req, status);
1227 goto out;
1230 if (smb_fname->base_name[0] == '.' &&
1231 smb_fname->base_name[1] == '\0') {
1233 * Not sure here is the right place to catch this
1234 * condition. Might be moved to somewhere else later -- vl
1236 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
1237 goto out;
1240 mode = SVAL(req->vwv+0, 0);
1241 mtime = srv_make_unix_date3(req->vwv+1);
1243 ft.mtime = convert_time_t_to_timespec(mtime);
1244 status = smb_set_file_time(conn, NULL, smb_fname, &ft, true);
1245 if (!NT_STATUS_IS_OK(status)) {
1246 reply_nterror(req, status);
1247 goto out;
1250 if (mode != FILE_ATTRIBUTE_NORMAL) {
1251 if (VALID_STAT_OF_DIR(smb_fname->st))
1252 mode |= aDIR;
1253 else
1254 mode &= ~aDIR;
1256 if (file_set_dosmode(conn, smb_fname, mode, NULL,
1257 false) != 0) {
1258 reply_nterror(req, map_nt_error_from_unix(errno));
1259 goto out;
1263 reply_outbuf(req, 0, 0);
1265 DEBUG(3, ("setatr name=%s mode=%d\n", smb_fname_str_dbg(smb_fname),
1266 mode));
1267 out:
1268 TALLOC_FREE(smb_fname);
1269 END_PROFILE(SMBsetatr);
1270 return;
1273 /****************************************************************************
1274 Reply to a dskattr.
1275 ****************************************************************************/
1277 void reply_dskattr(struct smb_request *req)
1279 connection_struct *conn = req->conn;
1280 uint64_t dfree,dsize,bsize;
1281 START_PROFILE(SMBdskattr);
1283 if (get_dfree_info(conn,".",True,&bsize,&dfree,&dsize) == (uint64_t)-1) {
1284 reply_nterror(req, map_nt_error_from_unix(errno));
1285 END_PROFILE(SMBdskattr);
1286 return;
1289 reply_outbuf(req, 5, 0);
1291 if (get_Protocol() <= PROTOCOL_LANMAN2) {
1292 double total_space, free_space;
1293 /* we need to scale this to a number that DOS6 can handle. We
1294 use floating point so we can handle large drives on systems
1295 that don't have 64 bit integers
1297 we end up displaying a maximum of 2G to DOS systems
1299 total_space = dsize * (double)bsize;
1300 free_space = dfree * (double)bsize;
1302 dsize = (uint64_t)((total_space+63*512) / (64*512));
1303 dfree = (uint64_t)((free_space+63*512) / (64*512));
1305 if (dsize > 0xFFFF) dsize = 0xFFFF;
1306 if (dfree > 0xFFFF) dfree = 0xFFFF;
1308 SSVAL(req->outbuf,smb_vwv0,dsize);
1309 SSVAL(req->outbuf,smb_vwv1,64); /* this must be 64 for dos systems */
1310 SSVAL(req->outbuf,smb_vwv2,512); /* and this must be 512 */
1311 SSVAL(req->outbuf,smb_vwv3,dfree);
1312 } else {
1313 SSVAL(req->outbuf,smb_vwv0,dsize);
1314 SSVAL(req->outbuf,smb_vwv1,bsize/512);
1315 SSVAL(req->outbuf,smb_vwv2,512);
1316 SSVAL(req->outbuf,smb_vwv3,dfree);
1319 DEBUG(3,("dskattr dfree=%d\n", (unsigned int)dfree));
1321 END_PROFILE(SMBdskattr);
1322 return;
1326 * Utility function to split the filename from the directory.
1328 static NTSTATUS split_fname_dir_mask(TALLOC_CTX *ctx, const char *fname_in,
1329 char **fname_dir_out,
1330 char **fname_mask_out)
1332 const char *p = NULL;
1333 char *fname_dir = NULL;
1334 char *fname_mask = NULL;
1336 p = strrchr_m(fname_in, '/');
1337 if (!p) {
1338 fname_dir = talloc_strdup(ctx, ".");
1339 fname_mask = talloc_strdup(ctx, fname_in);
1340 } else {
1341 fname_dir = talloc_strndup(ctx, fname_in,
1342 PTR_DIFF(p, fname_in));
1343 fname_mask = talloc_strdup(ctx, p+1);
1346 if (!fname_dir || !fname_mask) {
1347 TALLOC_FREE(fname_dir);
1348 TALLOC_FREE(fname_mask);
1349 return NT_STATUS_NO_MEMORY;
1352 *fname_dir_out = fname_dir;
1353 *fname_mask_out = fname_mask;
1354 return NT_STATUS_OK;
1357 /****************************************************************************
1358 Reply to a search.
1359 Can be called from SMBsearch, SMBffirst or SMBfunique.
1360 ****************************************************************************/
1362 void reply_search(struct smb_request *req)
1364 connection_struct *conn = req->conn;
1365 char *path = NULL;
1366 const char *mask = NULL;
1367 char *directory = NULL;
1368 struct smb_filename *smb_fname = NULL;
1369 char *fname = NULL;
1370 SMB_OFF_T size;
1371 uint32 mode;
1372 struct timespec date;
1373 uint32 dirtype;
1374 unsigned int numentries = 0;
1375 unsigned int maxentries = 0;
1376 bool finished = False;
1377 const char *p;
1378 int status_len;
1379 char status[21];
1380 int dptr_num= -1;
1381 bool check_descend = False;
1382 bool expect_close = False;
1383 NTSTATUS nt_status;
1384 bool mask_contains_wcard = False;
1385 bool allow_long_path_components = (req->flags2 & FLAGS2_LONG_PATH_COMPONENTS) ? True : False;
1386 TALLOC_CTX *ctx = talloc_tos();
1387 bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
1388 struct dptr_struct *dirptr = NULL;
1389 struct smbd_server_connection *sconn = req->sconn;
1391 START_PROFILE(SMBsearch);
1393 if (req->wct < 2) {
1394 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1395 goto out;
1398 if (lp_posix_pathnames()) {
1399 reply_unknown_new(req, req->cmd);
1400 goto out;
1403 /* If we were called as SMBffirst then we must expect close. */
1404 if(req->cmd == SMBffirst) {
1405 expect_close = True;
1408 reply_outbuf(req, 1, 3);
1409 maxentries = SVAL(req->vwv+0, 0);
1410 dirtype = SVAL(req->vwv+1, 0);
1411 p = (const char *)req->buf + 1;
1412 p += srvstr_get_path_req_wcard(ctx, req, &path, p, STR_TERMINATE,
1413 &nt_status, &mask_contains_wcard);
1414 if (!NT_STATUS_IS_OK(nt_status)) {
1415 reply_nterror(req, nt_status);
1416 goto out;
1419 p++;
1420 status_len = SVAL(p, 0);
1421 p += 2;
1423 /* dirtype &= ~aDIR; */
1425 if (status_len == 0) {
1426 nt_status = filename_convert(ctx, conn,
1427 req->flags2 & FLAGS2_DFS_PATHNAMES,
1428 path,
1429 UCF_ALWAYS_ALLOW_WCARD_LCOMP,
1430 &mask_contains_wcard,
1431 &smb_fname);
1432 if (!NT_STATUS_IS_OK(nt_status)) {
1433 if (NT_STATUS_EQUAL(nt_status,NT_STATUS_PATH_NOT_COVERED)) {
1434 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1435 ERRSRV, ERRbadpath);
1436 goto out;
1438 reply_nterror(req, nt_status);
1439 goto out;
1442 directory = smb_fname->base_name;
1444 p = strrchr_m(directory,'/');
1445 if ((p != NULL) && (*directory != '/')) {
1446 mask = p + 1;
1447 directory = talloc_strndup(ctx, directory,
1448 PTR_DIFF(p, directory));
1449 } else {
1450 mask = directory;
1451 directory = talloc_strdup(ctx,".");
1454 if (!directory) {
1455 reply_nterror(req, NT_STATUS_NO_MEMORY);
1456 goto out;
1459 memset((char *)status,'\0',21);
1460 SCVAL(status,0,(dirtype & 0x1F));
1462 nt_status = dptr_create(conn,
1463 NULL, /* fsp */
1464 directory,
1465 True,
1466 expect_close,
1467 req->smbpid,
1468 mask,
1469 mask_contains_wcard,
1470 dirtype,
1471 &dirptr);
1472 if (!NT_STATUS_IS_OK(nt_status)) {
1473 reply_nterror(req, nt_status);
1474 goto out;
1476 dptr_num = dptr_dnum(dirptr);
1477 } else {
1478 int status_dirtype;
1479 const char *dirpath;
1481 memcpy(status,p,21);
1482 status_dirtype = CVAL(status,0) & 0x1F;
1483 if (status_dirtype != (dirtype & 0x1F)) {
1484 dirtype = status_dirtype;
1487 dirptr = dptr_fetch(sconn, status+12,&dptr_num);
1488 if (!dirptr) {
1489 goto SearchEmpty;
1491 dirpath = dptr_path(sconn, dptr_num);
1492 directory = talloc_strdup(ctx, dirpath);
1493 if (!directory) {
1494 reply_nterror(req, NT_STATUS_NO_MEMORY);
1495 goto out;
1498 mask = dptr_wcard(sconn, dptr_num);
1499 if (!mask) {
1500 goto SearchEmpty;
1503 * For a 'continue' search we have no string. So
1504 * check from the initial saved string.
1506 mask_contains_wcard = ms_has_wild(mask);
1507 dirtype = dptr_attr(sconn, dptr_num);
1510 DEBUG(4,("dptr_num is %d\n",dptr_num));
1512 /* Initialize per SMBsearch/SMBffirst/SMBfunique operation data */
1513 dptr_init_search_op(dirptr);
1515 if ((dirtype&0x1F) == aVOLID) {
1516 char buf[DIR_STRUCT_SIZE];
1517 memcpy(buf,status,21);
1518 if (!make_dir_struct(ctx,buf,"???????????",volume_label(SNUM(conn)),
1519 0,aVOLID,0,!allow_long_path_components)) {
1520 reply_nterror(req, NT_STATUS_NO_MEMORY);
1521 goto out;
1523 dptr_fill(sconn, buf+12,dptr_num);
1524 if (dptr_zero(buf+12) && (status_len==0)) {
1525 numentries = 1;
1526 } else {
1527 numentries = 0;
1529 if (message_push_blob(&req->outbuf,
1530 data_blob_const(buf, sizeof(buf)))
1531 == -1) {
1532 reply_nterror(req, NT_STATUS_NO_MEMORY);
1533 goto out;
1535 } else {
1536 unsigned int i;
1537 maxentries = MIN(
1538 maxentries,
1539 ((BUFFER_SIZE -
1540 ((uint8 *)smb_buf(req->outbuf) + 3 - req->outbuf))
1541 /DIR_STRUCT_SIZE));
1543 DEBUG(8,("dirpath=<%s> dontdescend=<%s>\n",
1544 directory,lp_dontdescend(SNUM(conn))));
1545 if (in_list(directory, lp_dontdescend(SNUM(conn)),True)) {
1546 check_descend = True;
1549 for (i=numentries;(i<maxentries) && !finished;i++) {
1550 finished = !get_dir_entry(ctx,
1551 dirptr,
1552 mask,
1553 dirtype,
1554 &fname,
1555 &size,
1556 &mode,
1557 &date,
1558 check_descend,
1559 ask_sharemode);
1560 if (!finished) {
1561 char buf[DIR_STRUCT_SIZE];
1562 memcpy(buf,status,21);
1563 if (!make_dir_struct(ctx,
1564 buf,
1565 mask,
1566 fname,
1567 size,
1568 mode,
1569 convert_timespec_to_time_t(date),
1570 !allow_long_path_components)) {
1571 reply_nterror(req, NT_STATUS_NO_MEMORY);
1572 goto out;
1574 if (!dptr_fill(sconn, buf+12,dptr_num)) {
1575 break;
1577 if (message_push_blob(&req->outbuf,
1578 data_blob_const(buf, sizeof(buf)))
1579 == -1) {
1580 reply_nterror(req, NT_STATUS_NO_MEMORY);
1581 goto out;
1583 numentries++;
1588 SearchEmpty:
1590 /* If we were called as SMBffirst with smb_search_id == NULL
1591 and no entries were found then return error and close dirptr
1592 (X/Open spec) */
1594 if (numentries == 0) {
1595 dptr_close(sconn, &dptr_num);
1596 } else if(expect_close && status_len == 0) {
1597 /* Close the dptr - we know it's gone */
1598 dptr_close(sconn, &dptr_num);
1601 /* If we were called as SMBfunique, then we can close the dirptr now ! */
1602 if(dptr_num >= 0 && req->cmd == SMBfunique) {
1603 dptr_close(sconn, &dptr_num);
1606 if ((numentries == 0) && !mask_contains_wcard) {
1607 reply_botherror(req, STATUS_NO_MORE_FILES, ERRDOS, ERRnofiles);
1608 goto out;
1611 SSVAL(req->outbuf,smb_vwv0,numentries);
1612 SSVAL(req->outbuf,smb_vwv1,3 + numentries * DIR_STRUCT_SIZE);
1613 SCVAL(smb_buf(req->outbuf),0,5);
1614 SSVAL(smb_buf(req->outbuf),1,numentries*DIR_STRUCT_SIZE);
1616 /* The replies here are never long name. */
1617 SSVAL(req->outbuf, smb_flg2,
1618 SVAL(req->outbuf, smb_flg2) & (~FLAGS2_IS_LONG_NAME));
1619 if (!allow_long_path_components) {
1620 SSVAL(req->outbuf, smb_flg2,
1621 SVAL(req->outbuf, smb_flg2)
1622 & (~FLAGS2_LONG_PATH_COMPONENTS));
1625 /* This SMB *always* returns ASCII names. Remove the unicode bit in flags2. */
1626 SSVAL(req->outbuf, smb_flg2,
1627 (SVAL(req->outbuf, smb_flg2) & (~FLAGS2_UNICODE_STRINGS)));
1629 DEBUG(4,("%s mask=%s path=%s dtype=%d nument=%u of %u\n",
1630 smb_fn_name(req->cmd),
1631 mask,
1632 directory,
1633 dirtype,
1634 numentries,
1635 maxentries ));
1636 out:
1637 TALLOC_FREE(directory);
1638 TALLOC_FREE(smb_fname);
1639 END_PROFILE(SMBsearch);
1640 return;
1643 /****************************************************************************
1644 Reply to a fclose (stop directory search).
1645 ****************************************************************************/
1647 void reply_fclose(struct smb_request *req)
1649 int status_len;
1650 char status[21];
1651 int dptr_num= -2;
1652 const char *p;
1653 char *path = NULL;
1654 NTSTATUS err;
1655 bool path_contains_wcard = False;
1656 TALLOC_CTX *ctx = talloc_tos();
1657 struct smbd_server_connection *sconn = req->sconn;
1659 START_PROFILE(SMBfclose);
1661 if (lp_posix_pathnames()) {
1662 reply_unknown_new(req, req->cmd);
1663 END_PROFILE(SMBfclose);
1664 return;
1667 p = (const char *)req->buf + 1;
1668 p += srvstr_get_path_req_wcard(ctx, req, &path, p, STR_TERMINATE,
1669 &err, &path_contains_wcard);
1670 if (!NT_STATUS_IS_OK(err)) {
1671 reply_nterror(req, err);
1672 END_PROFILE(SMBfclose);
1673 return;
1675 p++;
1676 status_len = SVAL(p,0);
1677 p += 2;
1679 if (status_len == 0) {
1680 reply_force_doserror(req, ERRSRV, ERRsrverror);
1681 END_PROFILE(SMBfclose);
1682 return;
1685 memcpy(status,p,21);
1687 if(dptr_fetch(sconn, status+12,&dptr_num)) {
1688 /* Close the dptr - we know it's gone */
1689 dptr_close(sconn, &dptr_num);
1692 reply_outbuf(req, 1, 0);
1693 SSVAL(req->outbuf,smb_vwv0,0);
1695 DEBUG(3,("search close\n"));
1697 END_PROFILE(SMBfclose);
1698 return;
1701 /****************************************************************************
1702 Reply to an open.
1703 ****************************************************************************/
1705 void reply_open(struct smb_request *req)
1707 connection_struct *conn = req->conn;
1708 struct smb_filename *smb_fname = NULL;
1709 char *fname = NULL;
1710 uint32 fattr=0;
1711 SMB_OFF_T size = 0;
1712 time_t mtime=0;
1713 int info;
1714 files_struct *fsp;
1715 int oplock_request;
1716 int deny_mode;
1717 uint32 dos_attr;
1718 uint32 access_mask;
1719 uint32 share_mode;
1720 uint32 create_disposition;
1721 uint32 create_options = 0;
1722 uint32_t private_flags = 0;
1723 NTSTATUS status;
1724 bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
1725 TALLOC_CTX *ctx = talloc_tos();
1727 START_PROFILE(SMBopen);
1729 if (req->wct < 2) {
1730 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1731 goto out;
1734 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
1735 deny_mode = SVAL(req->vwv+0, 0);
1736 dos_attr = SVAL(req->vwv+1, 0);
1738 srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf+1,
1739 STR_TERMINATE, &status);
1740 if (!NT_STATUS_IS_OK(status)) {
1741 reply_nterror(req, status);
1742 goto out;
1745 status = filename_convert(ctx,
1746 conn,
1747 req->flags2 & FLAGS2_DFS_PATHNAMES,
1748 fname,
1750 NULL,
1751 &smb_fname);
1752 if (!NT_STATUS_IS_OK(status)) {
1753 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1754 reply_botherror(req,
1755 NT_STATUS_PATH_NOT_COVERED,
1756 ERRSRV, ERRbadpath);
1757 goto out;
1759 reply_nterror(req, status);
1760 goto out;
1763 if (!map_open_params_to_ntcreate(smb_fname, deny_mode,
1764 OPENX_FILE_EXISTS_OPEN, &access_mask,
1765 &share_mode, &create_disposition,
1766 &create_options, &private_flags)) {
1767 reply_force_doserror(req, ERRDOS, ERRbadaccess);
1768 goto out;
1771 status = SMB_VFS_CREATE_FILE(
1772 conn, /* conn */
1773 req, /* req */
1774 0, /* root_dir_fid */
1775 smb_fname, /* fname */
1776 access_mask, /* access_mask */
1777 share_mode, /* share_access */
1778 create_disposition, /* create_disposition*/
1779 create_options, /* create_options */
1780 dos_attr, /* file_attributes */
1781 oplock_request, /* oplock_request */
1782 0, /* allocation_size */
1783 private_flags,
1784 NULL, /* sd */
1785 NULL, /* ea_list */
1786 &fsp, /* result */
1787 &info); /* pinfo */
1789 if (!NT_STATUS_IS_OK(status)) {
1790 if (open_was_deferred(req->mid)) {
1791 /* We have re-scheduled this call. */
1792 goto out;
1794 reply_openerror(req, status);
1795 goto out;
1798 size = smb_fname->st.st_ex_size;
1799 fattr = dos_mode(conn, smb_fname);
1801 /* Deal with other possible opens having a modified
1802 write time. JRA. */
1803 if (ask_sharemode) {
1804 struct timespec write_time_ts;
1806 ZERO_STRUCT(write_time_ts);
1807 get_file_infos(fsp->file_id, 0, NULL, &write_time_ts);
1808 if (!null_timespec(write_time_ts)) {
1809 update_stat_ex_mtime(&smb_fname->st, write_time_ts);
1813 mtime = convert_timespec_to_time_t(smb_fname->st.st_ex_mtime);
1815 if (fattr & aDIR) {
1816 DEBUG(3,("attempt to open a directory %s\n",
1817 fsp_str_dbg(fsp)));
1818 close_file(req, fsp, ERROR_CLOSE);
1819 reply_botherror(req, NT_STATUS_ACCESS_DENIED,
1820 ERRDOS, ERRnoaccess);
1821 goto out;
1824 reply_outbuf(req, 7, 0);
1825 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
1826 SSVAL(req->outbuf,smb_vwv1,fattr);
1827 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1828 srv_put_dos_date3((char *)req->outbuf,smb_vwv2,mtime & ~1);
1829 } else {
1830 srv_put_dos_date3((char *)req->outbuf,smb_vwv2,mtime);
1832 SIVAL(req->outbuf,smb_vwv4,(uint32)size);
1833 SSVAL(req->outbuf,smb_vwv6,deny_mode);
1835 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1836 SCVAL(req->outbuf,smb_flg,
1837 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1840 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1841 SCVAL(req->outbuf,smb_flg,
1842 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1844 out:
1845 TALLOC_FREE(smb_fname);
1846 END_PROFILE(SMBopen);
1847 return;
1850 /****************************************************************************
1851 Reply to an open and X.
1852 ****************************************************************************/
1854 void reply_open_and_X(struct smb_request *req)
1856 connection_struct *conn = req->conn;
1857 struct smb_filename *smb_fname = NULL;
1858 char *fname = NULL;
1859 uint16 open_flags;
1860 int deny_mode;
1861 uint32 smb_attr;
1862 /* Breakout the oplock request bits so we can set the
1863 reply bits separately. */
1864 int ex_oplock_request;
1865 int core_oplock_request;
1866 int oplock_request;
1867 #if 0
1868 int smb_sattr = SVAL(req->vwv+4, 0);
1869 uint32 smb_time = make_unix_date3(req->vwv+6);
1870 #endif
1871 int smb_ofun;
1872 uint32 fattr=0;
1873 int mtime=0;
1874 int smb_action = 0;
1875 files_struct *fsp;
1876 NTSTATUS status;
1877 uint64_t allocation_size;
1878 ssize_t retval = -1;
1879 uint32 access_mask;
1880 uint32 share_mode;
1881 uint32 create_disposition;
1882 uint32 create_options = 0;
1883 uint32_t private_flags = 0;
1884 TALLOC_CTX *ctx = talloc_tos();
1886 START_PROFILE(SMBopenX);
1888 if (req->wct < 15) {
1889 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1890 goto out;
1893 open_flags = SVAL(req->vwv+2, 0);
1894 deny_mode = SVAL(req->vwv+3, 0);
1895 smb_attr = SVAL(req->vwv+5, 0);
1896 ex_oplock_request = EXTENDED_OPLOCK_REQUEST(req->inbuf);
1897 core_oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
1898 oplock_request = ex_oplock_request | core_oplock_request;
1899 smb_ofun = SVAL(req->vwv+8, 0);
1900 allocation_size = (uint64_t)IVAL(req->vwv+9, 0);
1902 /* If it's an IPC, pass off the pipe handler. */
1903 if (IS_IPC(conn)) {
1904 if (lp_nt_pipe_support()) {
1905 reply_open_pipe_and_X(conn, req);
1906 } else {
1907 reply_nterror(req, NT_STATUS_NETWORK_ACCESS_DENIED);
1909 goto out;
1912 /* XXXX we need to handle passed times, sattr and flags */
1913 srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf,
1914 STR_TERMINATE, &status);
1915 if (!NT_STATUS_IS_OK(status)) {
1916 reply_nterror(req, status);
1917 goto out;
1920 status = filename_convert(ctx,
1921 conn,
1922 req->flags2 & FLAGS2_DFS_PATHNAMES,
1923 fname,
1925 NULL,
1926 &smb_fname);
1927 if (!NT_STATUS_IS_OK(status)) {
1928 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1929 reply_botherror(req,
1930 NT_STATUS_PATH_NOT_COVERED,
1931 ERRSRV, ERRbadpath);
1932 goto out;
1934 reply_nterror(req, status);
1935 goto out;
1938 if (!map_open_params_to_ntcreate(smb_fname, deny_mode, smb_ofun,
1939 &access_mask, &share_mode,
1940 &create_disposition,
1941 &create_options,
1942 &private_flags)) {
1943 reply_force_doserror(req, ERRDOS, ERRbadaccess);
1944 goto out;
1947 status = SMB_VFS_CREATE_FILE(
1948 conn, /* conn */
1949 req, /* req */
1950 0, /* root_dir_fid */
1951 smb_fname, /* fname */
1952 access_mask, /* access_mask */
1953 share_mode, /* share_access */
1954 create_disposition, /* create_disposition*/
1955 create_options, /* create_options */
1956 smb_attr, /* file_attributes */
1957 oplock_request, /* oplock_request */
1958 0, /* allocation_size */
1959 private_flags,
1960 NULL, /* sd */
1961 NULL, /* ea_list */
1962 &fsp, /* result */
1963 &smb_action); /* pinfo */
1965 if (!NT_STATUS_IS_OK(status)) {
1966 if (open_was_deferred(req->mid)) {
1967 /* We have re-scheduled this call. */
1968 goto out;
1970 reply_openerror(req, status);
1971 goto out;
1974 /* Setting the "size" field in vwv9 and vwv10 causes the file to be set to this size,
1975 if the file is truncated or created. */
1976 if (((smb_action == FILE_WAS_CREATED) || (smb_action == FILE_WAS_OVERWRITTEN)) && allocation_size) {
1977 fsp->initial_allocation_size = smb_roundup(fsp->conn, allocation_size);
1978 if (vfs_allocate_file_space(fsp, fsp->initial_allocation_size) == -1) {
1979 close_file(req, fsp, ERROR_CLOSE);
1980 reply_nterror(req, NT_STATUS_DISK_FULL);
1981 goto out;
1983 retval = vfs_set_filelen(fsp, (SMB_OFF_T)allocation_size);
1984 if (retval < 0) {
1985 close_file(req, fsp, ERROR_CLOSE);
1986 reply_nterror(req, NT_STATUS_DISK_FULL);
1987 goto out;
1989 status = vfs_stat_fsp(fsp);
1990 if (!NT_STATUS_IS_OK(status)) {
1991 close_file(req, fsp, ERROR_CLOSE);
1992 reply_nterror(req, status);
1993 goto out;
1997 fattr = dos_mode(conn, fsp->fsp_name);
1998 mtime = convert_timespec_to_time_t(fsp->fsp_name->st.st_ex_mtime);
1999 if (fattr & aDIR) {
2000 close_file(req, fsp, ERROR_CLOSE);
2001 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
2002 goto out;
2005 /* If the caller set the extended oplock request bit
2006 and we granted one (by whatever means) - set the
2007 correct bit for extended oplock reply.
2010 if (ex_oplock_request && lp_fake_oplocks(SNUM(conn))) {
2011 smb_action |= EXTENDED_OPLOCK_GRANTED;
2014 if(ex_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2015 smb_action |= EXTENDED_OPLOCK_GRANTED;
2018 /* If the caller set the core oplock request bit
2019 and we granted one (by whatever means) - set the
2020 correct bit for core oplock reply.
2023 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
2024 reply_outbuf(req, 19, 0);
2025 } else {
2026 reply_outbuf(req, 15, 0);
2029 if (core_oplock_request && lp_fake_oplocks(SNUM(conn))) {
2030 SCVAL(req->outbuf, smb_flg,
2031 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2034 if(core_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2035 SCVAL(req->outbuf, smb_flg,
2036 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2039 SSVAL(req->outbuf,smb_vwv2,fsp->fnum);
2040 SSVAL(req->outbuf,smb_vwv3,fattr);
2041 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
2042 srv_put_dos_date3((char *)req->outbuf,smb_vwv4,mtime & ~1);
2043 } else {
2044 srv_put_dos_date3((char *)req->outbuf,smb_vwv4,mtime);
2046 SIVAL(req->outbuf,smb_vwv6,(uint32)fsp->fsp_name->st.st_ex_size);
2047 SSVAL(req->outbuf,smb_vwv8,GET_OPENX_MODE(deny_mode));
2048 SSVAL(req->outbuf,smb_vwv11,smb_action);
2050 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
2051 SIVAL(req->outbuf, smb_vwv15, SEC_STD_ALL);
2054 chain_reply(req);
2055 out:
2056 TALLOC_FREE(smb_fname);
2057 END_PROFILE(SMBopenX);
2058 return;
2061 /****************************************************************************
2062 Reply to a SMBulogoffX.
2063 ****************************************************************************/
2065 void reply_ulogoffX(struct smb_request *req)
2067 struct smbd_server_connection *sconn = req->sconn;
2068 user_struct *vuser;
2070 START_PROFILE(SMBulogoffX);
2072 vuser = get_valid_user_struct(sconn, req->vuid);
2074 if(vuser == NULL) {
2075 DEBUG(3,("ulogoff, vuser id %d does not map to user.\n",
2076 req->vuid));
2079 /* in user level security we are supposed to close any files
2080 open by this user */
2081 if ((vuser != NULL) && (lp_security() != SEC_SHARE)) {
2082 file_close_user(sconn, req->vuid);
2085 invalidate_vuid(sconn, req->vuid);
2087 reply_outbuf(req, 2, 0);
2089 DEBUG( 3, ( "ulogoffX vuid=%d\n", req->vuid ) );
2091 END_PROFILE(SMBulogoffX);
2092 req->vuid = UID_FIELD_INVALID;
2093 chain_reply(req);
2096 /****************************************************************************
2097 Reply to a mknew or a create.
2098 ****************************************************************************/
2100 void reply_mknew(struct smb_request *req)
2102 connection_struct *conn = req->conn;
2103 struct smb_filename *smb_fname = NULL;
2104 char *fname = NULL;
2105 uint32 fattr = 0;
2106 struct smb_file_time ft;
2107 files_struct *fsp;
2108 int oplock_request = 0;
2109 NTSTATUS status;
2110 uint32 access_mask = FILE_GENERIC_READ | FILE_GENERIC_WRITE;
2111 uint32 share_mode = FILE_SHARE_READ|FILE_SHARE_WRITE;
2112 uint32 create_disposition;
2113 uint32 create_options = 0;
2114 TALLOC_CTX *ctx = talloc_tos();
2116 START_PROFILE(SMBcreate);
2117 ZERO_STRUCT(ft);
2119 if (req->wct < 3) {
2120 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2121 goto out;
2124 fattr = SVAL(req->vwv+0, 0);
2125 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
2127 /* mtime. */
2128 ft.mtime = convert_time_t_to_timespec(srv_make_unix_date3(req->vwv+1));
2130 srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf + 1,
2131 STR_TERMINATE, &status);
2132 if (!NT_STATUS_IS_OK(status)) {
2133 reply_nterror(req, status);
2134 goto out;
2137 status = filename_convert(ctx,
2138 conn,
2139 req->flags2 & FLAGS2_DFS_PATHNAMES,
2140 fname,
2142 NULL,
2143 &smb_fname);
2144 if (!NT_STATUS_IS_OK(status)) {
2145 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
2146 reply_botherror(req,
2147 NT_STATUS_PATH_NOT_COVERED,
2148 ERRSRV, ERRbadpath);
2149 goto out;
2151 reply_nterror(req, status);
2152 goto out;
2155 if (fattr & aVOLID) {
2156 DEBUG(0,("Attempt to create file (%s) with volid set - "
2157 "please report this\n",
2158 smb_fname_str_dbg(smb_fname)));
2161 if(req->cmd == SMBmknew) {
2162 /* We should fail if file exists. */
2163 create_disposition = FILE_CREATE;
2164 } else {
2165 /* Create if file doesn't exist, truncate if it does. */
2166 create_disposition = FILE_OVERWRITE_IF;
2169 status = SMB_VFS_CREATE_FILE(
2170 conn, /* conn */
2171 req, /* req */
2172 0, /* root_dir_fid */
2173 smb_fname, /* fname */
2174 access_mask, /* access_mask */
2175 share_mode, /* share_access */
2176 create_disposition, /* create_disposition*/
2177 create_options, /* create_options */
2178 fattr, /* file_attributes */
2179 oplock_request, /* oplock_request */
2180 0, /* allocation_size */
2181 0, /* private_flags */
2182 NULL, /* sd */
2183 NULL, /* ea_list */
2184 &fsp, /* result */
2185 NULL); /* pinfo */
2187 if (!NT_STATUS_IS_OK(status)) {
2188 if (open_was_deferred(req->mid)) {
2189 /* We have re-scheduled this call. */
2190 goto out;
2192 reply_openerror(req, status);
2193 goto out;
2196 ft.atime = smb_fname->st.st_ex_atime; /* atime. */
2197 status = smb_set_file_time(conn, fsp, smb_fname, &ft, true);
2198 if (!NT_STATUS_IS_OK(status)) {
2199 END_PROFILE(SMBcreate);
2200 goto out;
2203 reply_outbuf(req, 1, 0);
2204 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
2206 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
2207 SCVAL(req->outbuf,smb_flg,
2208 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2211 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2212 SCVAL(req->outbuf,smb_flg,
2213 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2216 DEBUG(2, ("reply_mknew: file %s\n", smb_fname_str_dbg(smb_fname)));
2217 DEBUG(3, ("reply_mknew %s fd=%d dmode=0x%x\n",
2218 smb_fname_str_dbg(smb_fname), fsp->fh->fd,
2219 (unsigned int)fattr));
2221 out:
2222 TALLOC_FREE(smb_fname);
2223 END_PROFILE(SMBcreate);
2224 return;
2227 /****************************************************************************
2228 Reply to a create temporary file.
2229 ****************************************************************************/
2231 void reply_ctemp(struct smb_request *req)
2233 connection_struct *conn = req->conn;
2234 struct smb_filename *smb_fname = NULL;
2235 char *fname = NULL;
2236 uint32 fattr;
2237 files_struct *fsp;
2238 int oplock_request;
2239 int tmpfd;
2240 char *s;
2241 NTSTATUS status;
2242 TALLOC_CTX *ctx = talloc_tos();
2244 START_PROFILE(SMBctemp);
2246 if (req->wct < 3) {
2247 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2248 goto out;
2251 fattr = SVAL(req->vwv+0, 0);
2252 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
2254 srvstr_get_path_req(ctx, req, &fname, (const char *)req->buf+1,
2255 STR_TERMINATE, &status);
2256 if (!NT_STATUS_IS_OK(status)) {
2257 reply_nterror(req, status);
2258 goto out;
2260 if (*fname) {
2261 fname = talloc_asprintf(ctx,
2262 "%s/TMXXXXXX",
2263 fname);
2264 } else {
2265 fname = talloc_strdup(ctx, "TMXXXXXX");
2268 if (!fname) {
2269 reply_nterror(req, NT_STATUS_NO_MEMORY);
2270 goto out;
2273 status = filename_convert(ctx, conn,
2274 req->flags2 & FLAGS2_DFS_PATHNAMES,
2275 fname,
2277 NULL,
2278 &smb_fname);
2279 if (!NT_STATUS_IS_OK(status)) {
2280 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
2281 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
2282 ERRSRV, ERRbadpath);
2283 goto out;
2285 reply_nterror(req, status);
2286 goto out;
2289 tmpfd = mkstemp(smb_fname->base_name);
2290 if (tmpfd == -1) {
2291 reply_nterror(req, map_nt_error_from_unix(errno));
2292 goto out;
2295 SMB_VFS_STAT(conn, smb_fname);
2297 /* We should fail if file does not exist. */
2298 status = SMB_VFS_CREATE_FILE(
2299 conn, /* conn */
2300 req, /* req */
2301 0, /* root_dir_fid */
2302 smb_fname, /* fname */
2303 FILE_GENERIC_READ | FILE_GENERIC_WRITE, /* access_mask */
2304 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */
2305 FILE_OPEN, /* create_disposition*/
2306 0, /* create_options */
2307 fattr, /* file_attributes */
2308 oplock_request, /* oplock_request */
2309 0, /* allocation_size */
2310 0, /* private_flags */
2311 NULL, /* sd */
2312 NULL, /* ea_list */
2313 &fsp, /* result */
2314 NULL); /* pinfo */
2316 /* close fd from mkstemp() */
2317 close(tmpfd);
2319 if (!NT_STATUS_IS_OK(status)) {
2320 if (open_was_deferred(req->mid)) {
2321 /* We have re-scheduled this call. */
2322 goto out;
2324 reply_openerror(req, status);
2325 goto out;
2328 reply_outbuf(req, 1, 0);
2329 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
2331 /* the returned filename is relative to the directory */
2332 s = strrchr_m(fsp->fsp_name->base_name, '/');
2333 if (!s) {
2334 s = fsp->fsp_name->base_name;
2335 } else {
2336 s++;
2339 #if 0
2340 /* Tested vs W2K3 - this doesn't seem to be here - null terminated filename is the only
2341 thing in the byte section. JRA */
2342 SSVALS(p, 0, -1); /* what is this? not in spec */
2343 #endif
2344 if (message_push_string(&req->outbuf, s, STR_ASCII|STR_TERMINATE)
2345 == -1) {
2346 reply_nterror(req, NT_STATUS_NO_MEMORY);
2347 goto out;
2350 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
2351 SCVAL(req->outbuf, smb_flg,
2352 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2355 if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2356 SCVAL(req->outbuf, smb_flg,
2357 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2360 DEBUG(2, ("reply_ctemp: created temp file %s\n", fsp_str_dbg(fsp)));
2361 DEBUG(3, ("reply_ctemp %s fd=%d umode=0%o\n", fsp_str_dbg(fsp),
2362 fsp->fh->fd, (unsigned int)smb_fname->st.st_ex_mode));
2363 out:
2364 TALLOC_FREE(smb_fname);
2365 END_PROFILE(SMBctemp);
2366 return;
2369 /*******************************************************************
2370 Check if a user is allowed to rename a file.
2371 ********************************************************************/
2373 static NTSTATUS can_rename(connection_struct *conn, files_struct *fsp,
2374 uint16 dirtype)
2376 uint32 fmode;
2378 if (!CAN_WRITE(conn)) {
2379 return NT_STATUS_MEDIA_WRITE_PROTECTED;
2382 fmode = dos_mode(conn, fsp->fsp_name);
2383 if ((fmode & ~dirtype) & (aHIDDEN | aSYSTEM)) {
2384 return NT_STATUS_NO_SUCH_FILE;
2387 if (S_ISDIR(fsp->fsp_name->st.st_ex_mode)) {
2388 if (fsp->posix_open) {
2389 return NT_STATUS_OK;
2392 /* If no pathnames are open below this
2393 directory, allow the rename. */
2395 if (file_find_subpath(fsp)) {
2396 return NT_STATUS_ACCESS_DENIED;
2398 return NT_STATUS_OK;
2401 if (fsp->access_mask & (DELETE_ACCESS|FILE_WRITE_ATTRIBUTES)) {
2402 return NT_STATUS_OK;
2405 return NT_STATUS_ACCESS_DENIED;
2408 /*******************************************************************
2409 * unlink a file with all relevant access checks
2410 *******************************************************************/
2412 static NTSTATUS do_unlink(connection_struct *conn,
2413 struct smb_request *req,
2414 struct smb_filename *smb_fname,
2415 uint32 dirtype)
2417 uint32 fattr;
2418 files_struct *fsp;
2419 uint32 dirtype_orig = dirtype;
2420 NTSTATUS status;
2421 int ret;
2422 bool posix_paths = lp_posix_pathnames();
2424 DEBUG(10,("do_unlink: %s, dirtype = %d\n",
2425 smb_fname_str_dbg(smb_fname),
2426 dirtype));
2428 if (!CAN_WRITE(conn)) {
2429 return NT_STATUS_MEDIA_WRITE_PROTECTED;
2432 if (posix_paths) {
2433 ret = SMB_VFS_LSTAT(conn, smb_fname);
2434 } else {
2435 ret = SMB_VFS_STAT(conn, smb_fname);
2437 if (ret != 0) {
2438 return map_nt_error_from_unix(errno);
2441 fattr = dos_mode(conn, smb_fname);
2443 if (dirtype & FILE_ATTRIBUTE_NORMAL) {
2444 dirtype = aDIR|aARCH|aRONLY;
2447 dirtype &= (aDIR|aARCH|aRONLY|aHIDDEN|aSYSTEM);
2448 if (!dirtype) {
2449 return NT_STATUS_NO_SUCH_FILE;
2452 if (!dir_check_ftype(conn, fattr, dirtype)) {
2453 if (fattr & aDIR) {
2454 return NT_STATUS_FILE_IS_A_DIRECTORY;
2456 return NT_STATUS_NO_SUCH_FILE;
2459 if (dirtype_orig & 0x8000) {
2460 /* These will never be set for POSIX. */
2461 return NT_STATUS_NO_SUCH_FILE;
2464 #if 0
2465 if ((fattr & dirtype) & FILE_ATTRIBUTE_DIRECTORY) {
2466 return NT_STATUS_FILE_IS_A_DIRECTORY;
2469 if ((fattr & ~dirtype) & (FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM)) {
2470 return NT_STATUS_NO_SUCH_FILE;
2473 if (dirtype & 0xFF00) {
2474 /* These will never be set for POSIX. */
2475 return NT_STATUS_NO_SUCH_FILE;
2478 dirtype &= 0xFF;
2479 if (!dirtype) {
2480 return NT_STATUS_NO_SUCH_FILE;
2483 /* Can't delete a directory. */
2484 if (fattr & aDIR) {
2485 return NT_STATUS_FILE_IS_A_DIRECTORY;
2487 #endif
2489 #if 0 /* JRATEST */
2490 else if (dirtype & aDIR) /* Asked for a directory and it isn't. */
2491 return NT_STATUS_OBJECT_NAME_INVALID;
2492 #endif /* JRATEST */
2494 /* On open checks the open itself will check the share mode, so
2495 don't do it here as we'll get it wrong. */
2497 status = SMB_VFS_CREATE_FILE
2498 (conn, /* conn */
2499 req, /* req */
2500 0, /* root_dir_fid */
2501 smb_fname, /* fname */
2502 DELETE_ACCESS, /* access_mask */
2503 FILE_SHARE_NONE, /* share_access */
2504 FILE_OPEN, /* create_disposition*/
2505 FILE_NON_DIRECTORY_FILE, /* create_options */
2506 /* file_attributes */
2507 posix_paths ? FILE_FLAG_POSIX_SEMANTICS|0777 :
2508 FILE_ATTRIBUTE_NORMAL,
2509 0, /* oplock_request */
2510 0, /* allocation_size */
2511 0, /* private_flags */
2512 NULL, /* sd */
2513 NULL, /* ea_list */
2514 &fsp, /* result */
2515 NULL); /* pinfo */
2517 if (!NT_STATUS_IS_OK(status)) {
2518 DEBUG(10, ("SMB_VFS_CREATEFILE failed: %s\n",
2519 nt_errstr(status)));
2520 return status;
2523 status = can_set_delete_on_close(fsp, fattr);
2524 if (!NT_STATUS_IS_OK(status)) {
2525 DEBUG(10, ("do_unlink can_set_delete_on_close for file %s - "
2526 "(%s)\n",
2527 smb_fname_str_dbg(smb_fname),
2528 nt_errstr(status)));
2529 close_file(req, fsp, NORMAL_CLOSE);
2530 return status;
2533 /* The set is across all open files on this dev/inode pair. */
2534 if (!set_delete_on_close(fsp, True, &conn->server_info->utok)) {
2535 close_file(req, fsp, NORMAL_CLOSE);
2536 return NT_STATUS_ACCESS_DENIED;
2539 return close_file(req, fsp, NORMAL_CLOSE);
2542 /****************************************************************************
2543 The guts of the unlink command, split out so it may be called by the NT SMB
2544 code.
2545 ****************************************************************************/
2547 NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req,
2548 uint32 dirtype, struct smb_filename *smb_fname,
2549 bool has_wild)
2551 char *fname_dir = NULL;
2552 char *fname_mask = NULL;
2553 int count=0;
2554 NTSTATUS status = NT_STATUS_OK;
2555 TALLOC_CTX *ctx = talloc_tos();
2557 /* Split up the directory from the filename/mask. */
2558 status = split_fname_dir_mask(ctx, smb_fname->base_name,
2559 &fname_dir, &fname_mask);
2560 if (!NT_STATUS_IS_OK(status)) {
2561 goto out;
2565 * We should only check the mangled cache
2566 * here if unix_convert failed. This means
2567 * that the path in 'mask' doesn't exist
2568 * on the file system and so we need to look
2569 * for a possible mangle. This patch from
2570 * Tine Smukavec <valentin.smukavec@hermes.si>.
2573 if (!VALID_STAT(smb_fname->st) &&
2574 mangle_is_mangled(fname_mask, conn->params)) {
2575 char *new_mask = NULL;
2576 mangle_lookup_name_from_8_3(ctx, fname_mask,
2577 &new_mask, conn->params);
2578 if (new_mask) {
2579 TALLOC_FREE(fname_mask);
2580 fname_mask = new_mask;
2584 if (!has_wild) {
2587 * Only one file needs to be unlinked. Append the mask back
2588 * onto the directory.
2590 TALLOC_FREE(smb_fname->base_name);
2591 if (ISDOT(fname_dir)) {
2592 /* Ensure we use canonical names on open. */
2593 smb_fname->base_name = talloc_asprintf(smb_fname,
2594 "%s",
2595 fname_mask);
2596 } else {
2597 smb_fname->base_name = talloc_asprintf(smb_fname,
2598 "%s/%s",
2599 fname_dir,
2600 fname_mask);
2602 smb_fname->base_name = talloc_asprintf(smb_fname,
2603 "%s/%s",
2604 fname_dir,
2605 fname_mask);
2606 if (!smb_fname->base_name) {
2607 status = NT_STATUS_NO_MEMORY;
2608 goto out;
2610 if (dirtype == 0) {
2611 dirtype = FILE_ATTRIBUTE_NORMAL;
2614 status = check_name(conn, smb_fname->base_name);
2615 if (!NT_STATUS_IS_OK(status)) {
2616 goto out;
2619 status = do_unlink(conn, req, smb_fname, dirtype);
2620 if (!NT_STATUS_IS_OK(status)) {
2621 goto out;
2624 count++;
2625 } else {
2626 struct smb_Dir *dir_hnd = NULL;
2627 long offset = 0;
2628 const char *dname = NULL;
2629 char *talloced = NULL;
2631 if ((dirtype & SAMBA_ATTRIBUTES_MASK) == aDIR) {
2632 status = NT_STATUS_OBJECT_NAME_INVALID;
2633 goto out;
2636 if (strequal(fname_mask,"????????.???")) {
2637 TALLOC_FREE(fname_mask);
2638 fname_mask = talloc_strdup(ctx, "*");
2639 if (!fname_mask) {
2640 status = NT_STATUS_NO_MEMORY;
2641 goto out;
2645 status = check_name(conn, fname_dir);
2646 if (!NT_STATUS_IS_OK(status)) {
2647 goto out;
2650 dir_hnd = OpenDir(talloc_tos(), conn, fname_dir, fname_mask,
2651 dirtype);
2652 if (dir_hnd == NULL) {
2653 status = map_nt_error_from_unix(errno);
2654 goto out;
2657 /* XXXX the CIFS spec says that if bit0 of the flags2 field is set then
2658 the pattern matches against the long name, otherwise the short name
2659 We don't implement this yet XXXX
2662 status = NT_STATUS_NO_SUCH_FILE;
2664 while ((dname = ReadDirName(dir_hnd, &offset,
2665 &smb_fname->st, &talloced))) {
2666 TALLOC_CTX *frame = talloc_stackframe();
2668 if (!is_visible_file(conn, fname_dir, dname,
2669 &smb_fname->st, true)) {
2670 TALLOC_FREE(frame);
2671 TALLOC_FREE(talloced);
2672 continue;
2675 /* Quick check for "." and ".." */
2676 if (ISDOT(dname) || ISDOTDOT(dname)) {
2677 TALLOC_FREE(frame);
2678 TALLOC_FREE(talloced);
2679 continue;
2682 if(!mask_match(dname, fname_mask,
2683 conn->case_sensitive)) {
2684 TALLOC_FREE(frame);
2685 TALLOC_FREE(talloced);
2686 continue;
2689 TALLOC_FREE(smb_fname->base_name);
2690 if (ISDOT(fname_dir)) {
2691 /* Ensure we use canonical names on open. */
2692 smb_fname->base_name =
2693 talloc_asprintf(smb_fname, "%s",
2694 dname);
2695 } else {
2696 smb_fname->base_name =
2697 talloc_asprintf(smb_fname, "%s/%s",
2698 fname_dir, dname);
2701 if (!smb_fname->base_name) {
2702 TALLOC_FREE(dir_hnd);
2703 status = NT_STATUS_NO_MEMORY;
2704 TALLOC_FREE(frame);
2705 TALLOC_FREE(talloced);
2706 goto out;
2709 status = check_name(conn, smb_fname->base_name);
2710 if (!NT_STATUS_IS_OK(status)) {
2711 TALLOC_FREE(dir_hnd);
2712 TALLOC_FREE(frame);
2713 TALLOC_FREE(talloced);
2714 goto out;
2717 status = do_unlink(conn, req, smb_fname, dirtype);
2718 if (!NT_STATUS_IS_OK(status)) {
2719 TALLOC_FREE(frame);
2720 TALLOC_FREE(talloced);
2721 continue;
2724 count++;
2725 DEBUG(3,("unlink_internals: successful unlink [%s]\n",
2726 smb_fname->base_name));
2728 TALLOC_FREE(frame);
2729 TALLOC_FREE(talloced);
2731 TALLOC_FREE(dir_hnd);
2734 if (count == 0 && NT_STATUS_IS_OK(status) && errno != 0) {
2735 status = map_nt_error_from_unix(errno);
2738 out:
2739 TALLOC_FREE(fname_dir);
2740 TALLOC_FREE(fname_mask);
2741 return status;
2744 /****************************************************************************
2745 Reply to a unlink
2746 ****************************************************************************/
2748 void reply_unlink(struct smb_request *req)
2750 connection_struct *conn = req->conn;
2751 char *name = NULL;
2752 struct smb_filename *smb_fname = NULL;
2753 uint32 dirtype;
2754 NTSTATUS status;
2755 bool path_contains_wcard = False;
2756 TALLOC_CTX *ctx = talloc_tos();
2758 START_PROFILE(SMBunlink);
2760 if (req->wct < 1) {
2761 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2762 goto out;
2765 dirtype = SVAL(req->vwv+0, 0);
2767 srvstr_get_path_req_wcard(ctx, req, &name, (const char *)req->buf + 1,
2768 STR_TERMINATE, &status,
2769 &path_contains_wcard);
2770 if (!NT_STATUS_IS_OK(status)) {
2771 reply_nterror(req, status);
2772 goto out;
2775 status = filename_convert(ctx, conn,
2776 req->flags2 & FLAGS2_DFS_PATHNAMES,
2777 name,
2778 UCF_COND_ALLOW_WCARD_LCOMP,
2779 &path_contains_wcard,
2780 &smb_fname);
2781 if (!NT_STATUS_IS_OK(status)) {
2782 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
2783 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
2784 ERRSRV, ERRbadpath);
2785 goto out;
2787 reply_nterror(req, status);
2788 goto out;
2791 DEBUG(3,("reply_unlink : %s\n", smb_fname_str_dbg(smb_fname)));
2793 status = unlink_internals(conn, req, dirtype, smb_fname,
2794 path_contains_wcard);
2795 if (!NT_STATUS_IS_OK(status)) {
2796 if (open_was_deferred(req->mid)) {
2797 /* We have re-scheduled this call. */
2798 goto out;
2800 reply_nterror(req, status);
2801 goto out;
2804 reply_outbuf(req, 0, 0);
2805 out:
2806 TALLOC_FREE(smb_fname);
2807 END_PROFILE(SMBunlink);
2808 return;
2811 /****************************************************************************
2812 Fail for readbraw.
2813 ****************************************************************************/
2815 static void fail_readraw(void)
2817 const char *errstr = talloc_asprintf(talloc_tos(),
2818 "FAIL ! reply_readbraw: socket write fail (%s)",
2819 strerror(errno));
2820 if (!errstr) {
2821 errstr = "";
2823 exit_server_cleanly(errstr);
2826 /****************************************************************************
2827 Fake (read/write) sendfile. Returns -1 on read or write fail.
2828 ****************************************************************************/
2830 ssize_t fake_sendfile(files_struct *fsp, SMB_OFF_T startpos, size_t nread)
2832 size_t bufsize;
2833 size_t tosend = nread;
2834 char *buf;
2836 if (nread == 0) {
2837 return 0;
2840 bufsize = MIN(nread, 65536);
2842 if (!(buf = SMB_MALLOC_ARRAY(char, bufsize))) {
2843 return -1;
2846 while (tosend > 0) {
2847 ssize_t ret;
2848 size_t cur_read;
2850 if (tosend > bufsize) {
2851 cur_read = bufsize;
2852 } else {
2853 cur_read = tosend;
2855 ret = read_file(fsp,buf,startpos,cur_read);
2856 if (ret == -1) {
2857 SAFE_FREE(buf);
2858 return -1;
2861 /* If we had a short read, fill with zeros. */
2862 if (ret < cur_read) {
2863 memset(buf + ret, '\0', cur_read - ret);
2866 if (write_data(fsp->conn->sconn->sock, buf, cur_read)
2867 != cur_read) {
2868 char addr[INET6_ADDRSTRLEN];
2870 * Try and give an error message saying what
2871 * client failed.
2873 DEBUG(0, ("write_data failed for client %s. "
2874 "Error %s\n",
2875 get_peer_addr(fsp->conn->sconn->sock, addr,
2876 sizeof(addr)),
2877 strerror(errno)));
2878 SAFE_FREE(buf);
2879 return -1;
2881 tosend -= cur_read;
2882 startpos += cur_read;
2885 SAFE_FREE(buf);
2886 return (ssize_t)nread;
2889 /****************************************************************************
2890 Deal with the case of sendfile reading less bytes from the file than
2891 requested. Fill with zeros (all we can do).
2892 ****************************************************************************/
2894 void sendfile_short_send(files_struct *fsp,
2895 ssize_t nread,
2896 size_t headersize,
2897 size_t smb_maxcnt)
2899 #define SHORT_SEND_BUFSIZE 1024
2900 if (nread < headersize) {
2901 DEBUG(0,("sendfile_short_send: sendfile failed to send "
2902 "header for file %s (%s). Terminating\n",
2903 fsp_str_dbg(fsp), strerror(errno)));
2904 exit_server_cleanly("sendfile_short_send failed");
2907 nread -= headersize;
2909 if (nread < smb_maxcnt) {
2910 char *buf = SMB_CALLOC_ARRAY(char, SHORT_SEND_BUFSIZE);
2911 if (!buf) {
2912 exit_server_cleanly("sendfile_short_send: "
2913 "malloc failed");
2916 DEBUG(0,("sendfile_short_send: filling truncated file %s "
2917 "with zeros !\n", fsp_str_dbg(fsp)));
2919 while (nread < smb_maxcnt) {
2921 * We asked for the real file size and told sendfile
2922 * to not go beyond the end of the file. But it can
2923 * happen that in between our fstat call and the
2924 * sendfile call the file was truncated. This is very
2925 * bad because we have already announced the larger
2926 * number of bytes to the client.
2928 * The best we can do now is to send 0-bytes, just as
2929 * a read from a hole in a sparse file would do.
2931 * This should happen rarely enough that I don't care
2932 * about efficiency here :-)
2934 size_t to_write;
2936 to_write = MIN(SHORT_SEND_BUFSIZE, smb_maxcnt - nread);
2937 if (write_data(fsp->conn->sconn->sock, buf, to_write)
2938 != to_write) {
2939 char addr[INET6_ADDRSTRLEN];
2941 * Try and give an error message saying what
2942 * client failed.
2944 DEBUG(0, ("write_data failed for client %s. "
2945 "Error %s\n",
2946 get_peer_addr(
2947 fsp->conn->sconn->sock, addr,
2948 sizeof(addr)),
2949 strerror(errno)));
2950 exit_server_cleanly("sendfile_short_send: "
2951 "write_data failed");
2953 nread += to_write;
2955 SAFE_FREE(buf);
2959 /****************************************************************************
2960 Return a readbraw error (4 bytes of zero).
2961 ****************************************************************************/
2963 static void reply_readbraw_error(struct smbd_server_connection *sconn)
2965 char header[4];
2967 SIVAL(header,0,0);
2969 smbd_lock_socket(sconn);
2970 if (write_data(sconn->sock,header,4) != 4) {
2971 char addr[INET6_ADDRSTRLEN];
2973 * Try and give an error message saying what
2974 * client failed.
2976 DEBUG(0, ("write_data failed for client %s. "
2977 "Error %s\n",
2978 get_peer_addr(sconn->sock, addr, sizeof(addr)),
2979 strerror(errno)));
2981 fail_readraw();
2983 smbd_unlock_socket(sconn);
2986 /****************************************************************************
2987 Use sendfile in readbraw.
2988 ****************************************************************************/
2990 static void send_file_readbraw(connection_struct *conn,
2991 struct smb_request *req,
2992 files_struct *fsp,
2993 SMB_OFF_T startpos,
2994 size_t nread,
2995 ssize_t mincount)
2997 struct smbd_server_connection *sconn = req->sconn;
2998 char *outbuf = NULL;
2999 ssize_t ret=0;
3002 * We can only use sendfile on a non-chained packet
3003 * but we can use on a non-oplocked file. tridge proved this
3004 * on a train in Germany :-). JRA.
3005 * reply_readbraw has already checked the length.
3008 if ( !req_is_in_chain(req) && (nread > 0) && (fsp->base_fsp == NULL) &&
3009 (fsp->wcp == NULL) &&
3010 lp_use_sendfile(SNUM(conn), req->sconn->smb1.signing_state) ) {
3011 ssize_t sendfile_read = -1;
3012 char header[4];
3013 DATA_BLOB header_blob;
3015 _smb_setlen(header,nread);
3016 header_blob = data_blob_const(header, 4);
3018 sendfile_read = SMB_VFS_SENDFILE(sconn->sock, fsp,
3019 &header_blob, startpos,
3020 nread);
3021 if (sendfile_read == -1) {
3022 /* Returning ENOSYS means no data at all was sent.
3023 * Do this as a normal read. */
3024 if (errno == ENOSYS) {
3025 goto normal_readbraw;
3029 * Special hack for broken Linux with no working sendfile. If we
3030 * return EINTR we sent the header but not the rest of the data.
3031 * Fake this up by doing read/write calls.
3033 if (errno == EINTR) {
3034 /* Ensure we don't do this again. */
3035 set_use_sendfile(SNUM(conn), False);
3036 DEBUG(0,("send_file_readbraw: sendfile not available. Faking..\n"));
3038 if (fake_sendfile(fsp, startpos, nread) == -1) {
3039 DEBUG(0,("send_file_readbraw: "
3040 "fake_sendfile failed for "
3041 "file %s (%s).\n",
3042 fsp_str_dbg(fsp),
3043 strerror(errno)));
3044 exit_server_cleanly("send_file_readbraw fake_sendfile failed");
3046 return;
3049 DEBUG(0,("send_file_readbraw: sendfile failed for "
3050 "file %s (%s). Terminating\n",
3051 fsp_str_dbg(fsp), strerror(errno)));
3052 exit_server_cleanly("send_file_readbraw sendfile failed");
3053 } else if (sendfile_read == 0) {
3055 * Some sendfile implementations return 0 to indicate
3056 * that there was a short read, but nothing was
3057 * actually written to the socket. In this case,
3058 * fallback to the normal read path so the header gets
3059 * the correct byte count.
3061 DEBUG(3, ("send_file_readbraw: sendfile sent zero "
3062 "bytes falling back to the normal read: "
3063 "%s\n", fsp_str_dbg(fsp)));
3064 goto normal_readbraw;
3067 /* Deal with possible short send. */
3068 if (sendfile_read != 4+nread) {
3069 sendfile_short_send(fsp, sendfile_read, 4, nread);
3071 return;
3074 normal_readbraw:
3076 outbuf = TALLOC_ARRAY(NULL, char, nread+4);
3077 if (!outbuf) {
3078 DEBUG(0,("send_file_readbraw: TALLOC_ARRAY failed for size %u.\n",
3079 (unsigned)(nread+4)));
3080 reply_readbraw_error(sconn);
3081 return;
3084 if (nread > 0) {
3085 ret = read_file(fsp,outbuf+4,startpos,nread);
3086 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
3087 if (ret < mincount)
3088 ret = 0;
3089 #else
3090 if (ret < nread)
3091 ret = 0;
3092 #endif
3095 _smb_setlen(outbuf,ret);
3096 if (write_data(sconn->sock, outbuf, 4+ret) != 4+ret) {
3097 char addr[INET6_ADDRSTRLEN];
3099 * Try and give an error message saying what
3100 * client failed.
3102 DEBUG(0, ("write_data failed for client %s. "
3103 "Error %s\n",
3104 get_peer_addr(fsp->conn->sconn->sock, addr,
3105 sizeof(addr)),
3106 strerror(errno)));
3108 fail_readraw();
3111 TALLOC_FREE(outbuf);
3114 /****************************************************************************
3115 Reply to a readbraw (core+ protocol).
3116 ****************************************************************************/
3118 void reply_readbraw(struct smb_request *req)
3120 connection_struct *conn = req->conn;
3121 struct smbd_server_connection *sconn = req->sconn;
3122 ssize_t maxcount,mincount;
3123 size_t nread = 0;
3124 SMB_OFF_T startpos;
3125 files_struct *fsp;
3126 struct lock_struct lock;
3127 SMB_OFF_T size = 0;
3129 START_PROFILE(SMBreadbraw);
3131 if (srv_is_signing_active(sconn) ||
3132 is_encrypted_packet(req->inbuf)) {
3133 exit_server_cleanly("reply_readbraw: SMB signing/sealing is active - "
3134 "raw reads/writes are disallowed.");
3137 if (req->wct < 8) {
3138 reply_readbraw_error(sconn);
3139 END_PROFILE(SMBreadbraw);
3140 return;
3143 if (sconn->smb1.echo_handler.trusted_fde) {
3144 DEBUG(2,("SMBreadbraw rejected with NOT_SUPPORTED because of "
3145 "'async smb echo handler = yes'\n"));
3146 reply_readbraw_error(sconn);
3147 END_PROFILE(SMBreadbraw);
3148 return;
3152 * Special check if an oplock break has been issued
3153 * and the readraw request croses on the wire, we must
3154 * return a zero length response here.
3157 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
3160 * We have to do a check_fsp by hand here, as
3161 * we must always return 4 zero bytes on error,
3162 * not a NTSTATUS.
3165 if (!fsp || !conn || conn != fsp->conn ||
3166 req->vuid != fsp->vuid ||
3167 fsp->is_directory || fsp->fh->fd == -1) {
3169 * fsp could be NULL here so use the value from the packet. JRA.
3171 DEBUG(3,("reply_readbraw: fnum %d not valid "
3172 "- cache prime?\n",
3173 (int)SVAL(req->vwv+0, 0)));
3174 reply_readbraw_error(sconn);
3175 END_PROFILE(SMBreadbraw);
3176 return;
3179 /* Do a "by hand" version of CHECK_READ. */
3180 if (!(fsp->can_read ||
3181 ((req->flags2 & FLAGS2_READ_PERMIT_EXECUTE) &&
3182 (fsp->access_mask & FILE_EXECUTE)))) {
3183 DEBUG(3,("reply_readbraw: fnum %d not readable.\n",
3184 (int)SVAL(req->vwv+0, 0)));
3185 reply_readbraw_error(sconn);
3186 END_PROFILE(SMBreadbraw);
3187 return;
3190 flush_write_cache(fsp, READRAW_FLUSH);
3192 startpos = IVAL_TO_SMB_OFF_T(req->vwv+1, 0);
3193 if(req->wct == 10) {
3195 * This is a large offset (64 bit) read.
3197 #ifdef LARGE_SMB_OFF_T
3199 startpos |= (((SMB_OFF_T)IVAL(req->vwv+8, 0)) << 32);
3201 #else /* !LARGE_SMB_OFF_T */
3204 * Ensure we haven't been sent a >32 bit offset.
3207 if(IVAL(req->vwv+8, 0) != 0) {
3208 DEBUG(0,("reply_readbraw: large offset "
3209 "(%x << 32) used and we don't support "
3210 "64 bit offsets.\n",
3211 (unsigned int)IVAL(req->vwv+8, 0) ));
3212 reply_readbraw_error();
3213 END_PROFILE(SMBreadbraw);
3214 return;
3217 #endif /* LARGE_SMB_OFF_T */
3219 if(startpos < 0) {
3220 DEBUG(0,("reply_readbraw: negative 64 bit "
3221 "readraw offset (%.0f) !\n",
3222 (double)startpos ));
3223 reply_readbraw_error(sconn);
3224 END_PROFILE(SMBreadbraw);
3225 return;
3229 maxcount = (SVAL(req->vwv+3, 0) & 0xFFFF);
3230 mincount = (SVAL(req->vwv+4, 0) & 0xFFFF);
3232 /* ensure we don't overrun the packet size */
3233 maxcount = MIN(65535,maxcount);
3235 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
3236 (uint64_t)startpos, (uint64_t)maxcount, READ_LOCK,
3237 &lock);
3239 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
3240 reply_readbraw_error(sconn);
3241 END_PROFILE(SMBreadbraw);
3242 return;
3245 if (fsp_stat(fsp) == 0) {
3246 size = fsp->fsp_name->st.st_ex_size;
3249 if (startpos >= size) {
3250 nread = 0;
3251 } else {
3252 nread = MIN(maxcount,(size - startpos));
3255 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
3256 if (nread < mincount)
3257 nread = 0;
3258 #endif
3260 DEBUG( 3, ( "reply_readbraw: fnum=%d start=%.0f max=%lu "
3261 "min=%lu nread=%lu\n",
3262 fsp->fnum, (double)startpos,
3263 (unsigned long)maxcount,
3264 (unsigned long)mincount,
3265 (unsigned long)nread ) );
3267 send_file_readbraw(conn, req, fsp, startpos, nread, mincount);
3269 DEBUG(5,("reply_readbraw finished\n"));
3271 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
3273 END_PROFILE(SMBreadbraw);
3274 return;
3277 #undef DBGC_CLASS
3278 #define DBGC_CLASS DBGC_LOCKING
3280 /****************************************************************************
3281 Reply to a lockread (core+ protocol).
3282 ****************************************************************************/
3284 void reply_lockread(struct smb_request *req)
3286 connection_struct *conn = req->conn;
3287 ssize_t nread = -1;
3288 char *data;
3289 SMB_OFF_T startpos;
3290 size_t numtoread;
3291 NTSTATUS status;
3292 files_struct *fsp;
3293 struct byte_range_lock *br_lck = NULL;
3294 char *p = NULL;
3295 struct smbd_server_connection *sconn = req->sconn;
3297 START_PROFILE(SMBlockread);
3299 if (req->wct < 5) {
3300 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3301 END_PROFILE(SMBlockread);
3302 return;
3305 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
3307 if (!check_fsp(conn, req, fsp)) {
3308 END_PROFILE(SMBlockread);
3309 return;
3312 if (!CHECK_READ(fsp,req)) {
3313 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3314 END_PROFILE(SMBlockread);
3315 return;
3318 numtoread = SVAL(req->vwv+1, 0);
3319 startpos = IVAL_TO_SMB_OFF_T(req->vwv+2, 0);
3321 numtoread = MIN(BUFFER_SIZE - (smb_size + 3*2 + 3), numtoread);
3323 reply_outbuf(req, 5, numtoread + 3);
3325 data = smb_buf(req->outbuf) + 3;
3328 * NB. Discovered by Menny Hamburger at Mainsoft. This is a core+
3329 * protocol request that predates the read/write lock concept.
3330 * Thus instead of asking for a read lock here we need to ask
3331 * for a write lock. JRA.
3332 * Note that the requested lock size is unaffected by max_recv.
3335 br_lck = do_lock(req->sconn->msg_ctx,
3336 fsp,
3337 (uint64_t)req->smbpid,
3338 (uint64_t)numtoread,
3339 (uint64_t)startpos,
3340 WRITE_LOCK,
3341 WINDOWS_LOCK,
3342 False, /* Non-blocking lock. */
3343 &status,
3344 NULL,
3345 NULL);
3346 TALLOC_FREE(br_lck);
3348 if (NT_STATUS_V(status)) {
3349 reply_nterror(req, status);
3350 END_PROFILE(SMBlockread);
3351 return;
3355 * However the requested READ size IS affected by max_recv. Insanity.... JRA.
3358 if (numtoread > sconn->smb1.negprot.max_recv) {
3359 DEBUG(0,("reply_lockread: requested read size (%u) is greater than maximum allowed (%u). \
3360 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
3361 (unsigned int)numtoread,
3362 (unsigned int)sconn->smb1.negprot.max_recv));
3363 numtoread = MIN(numtoread, sconn->smb1.negprot.max_recv);
3365 nread = read_file(fsp,data,startpos,numtoread);
3367 if (nread < 0) {
3368 reply_nterror(req, map_nt_error_from_unix(errno));
3369 END_PROFILE(SMBlockread);
3370 return;
3373 srv_set_message((char *)req->outbuf, 5, nread+3, False);
3375 SSVAL(req->outbuf,smb_vwv0,nread);
3376 SSVAL(req->outbuf,smb_vwv5,nread+3);
3377 p = smb_buf(req->outbuf);
3378 SCVAL(p,0,0); /* pad byte. */
3379 SSVAL(p,1,nread);
3381 DEBUG(3,("lockread fnum=%d num=%d nread=%d\n",
3382 fsp->fnum, (int)numtoread, (int)nread));
3384 END_PROFILE(SMBlockread);
3385 return;
3388 #undef DBGC_CLASS
3389 #define DBGC_CLASS DBGC_ALL
3391 /****************************************************************************
3392 Reply to a read.
3393 ****************************************************************************/
3395 void reply_read(struct smb_request *req)
3397 connection_struct *conn = req->conn;
3398 size_t numtoread;
3399 ssize_t nread = 0;
3400 char *data;
3401 SMB_OFF_T startpos;
3402 int outsize = 0;
3403 files_struct *fsp;
3404 struct lock_struct lock;
3405 struct smbd_server_connection *sconn = req->sconn;
3407 START_PROFILE(SMBread);
3409 if (req->wct < 3) {
3410 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3411 END_PROFILE(SMBread);
3412 return;
3415 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
3417 if (!check_fsp(conn, req, fsp)) {
3418 END_PROFILE(SMBread);
3419 return;
3422 if (!CHECK_READ(fsp,req)) {
3423 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3424 END_PROFILE(SMBread);
3425 return;
3428 numtoread = SVAL(req->vwv+1, 0);
3429 startpos = IVAL_TO_SMB_OFF_T(req->vwv+2, 0);
3431 numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
3434 * The requested read size cannot be greater than max_recv. JRA.
3436 if (numtoread > sconn->smb1.negprot.max_recv) {
3437 DEBUG(0,("reply_read: requested read size (%u) is greater than maximum allowed (%u). \
3438 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
3439 (unsigned int)numtoread,
3440 (unsigned int)sconn->smb1.negprot.max_recv));
3441 numtoread = MIN(numtoread, sconn->smb1.negprot.max_recv);
3444 reply_outbuf(req, 5, numtoread+3);
3446 data = smb_buf(req->outbuf) + 3;
3448 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
3449 (uint64_t)startpos, (uint64_t)numtoread, READ_LOCK,
3450 &lock);
3452 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
3453 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
3454 END_PROFILE(SMBread);
3455 return;
3458 if (numtoread > 0)
3459 nread = read_file(fsp,data,startpos,numtoread);
3461 if (nread < 0) {
3462 reply_nterror(req, map_nt_error_from_unix(errno));
3463 goto strict_unlock;
3466 srv_set_message((char *)req->outbuf, 5, nread+3, False);
3468 SSVAL(req->outbuf,smb_vwv0,nread);
3469 SSVAL(req->outbuf,smb_vwv5,nread+3);
3470 SCVAL(smb_buf(req->outbuf),0,1);
3471 SSVAL(smb_buf(req->outbuf),1,nread);
3473 DEBUG( 3, ( "read fnum=%d num=%d nread=%d\n",
3474 fsp->fnum, (int)numtoread, (int)nread ) );
3476 strict_unlock:
3477 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
3479 END_PROFILE(SMBread);
3480 return;
3483 /****************************************************************************
3484 Setup readX header.
3485 ****************************************************************************/
3487 static int setup_readX_header(struct smb_request *req, char *outbuf,
3488 size_t smb_maxcnt)
3490 int outsize;
3491 char *data;
3493 outsize = srv_set_message(outbuf,12,smb_maxcnt,False);
3494 data = smb_buf(outbuf);
3496 memset(outbuf+smb_vwv0,'\0',24); /* valgrind init. */
3498 SCVAL(outbuf,smb_vwv0,0xFF);
3499 SSVAL(outbuf,smb_vwv2,0xFFFF); /* Remaining - must be -1. */
3500 SSVAL(outbuf,smb_vwv5,smb_maxcnt);
3501 SSVAL(outbuf,smb_vwv6,
3502 req_wct_ofs(req)
3503 + 1 /* the wct field */
3504 + 12 * sizeof(uint16_t) /* vwv */
3505 + 2); /* the buflen field */
3506 SSVAL(outbuf,smb_vwv7,(smb_maxcnt >> 16));
3507 SSVAL(outbuf,smb_vwv11,smb_maxcnt);
3508 /* Reset the outgoing length, set_message truncates at 0x1FFFF. */
3509 _smb_setlen_large(outbuf,(smb_size + 12*2 + smb_maxcnt - 4));
3510 return outsize;
3513 /****************************************************************************
3514 Reply to a read and X - possibly using sendfile.
3515 ****************************************************************************/
3517 static void send_file_readX(connection_struct *conn, struct smb_request *req,
3518 files_struct *fsp, SMB_OFF_T startpos,
3519 size_t smb_maxcnt)
3521 ssize_t nread = -1;
3522 struct lock_struct lock;
3523 int saved_errno = 0;
3525 if(fsp_stat(fsp) == -1) {
3526 reply_nterror(req, map_nt_error_from_unix(errno));
3527 return;
3530 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
3531 (uint64_t)startpos, (uint64_t)smb_maxcnt, READ_LOCK,
3532 &lock);
3534 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
3535 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
3536 return;
3539 if (!S_ISREG(fsp->fsp_name->st.st_ex_mode) ||
3540 (startpos > fsp->fsp_name->st.st_ex_size)
3541 || (smb_maxcnt > (fsp->fsp_name->st.st_ex_size - startpos))) {
3543 * We already know that we would do a short read, so don't
3544 * try the sendfile() path.
3546 goto nosendfile_read;
3550 * We can only use sendfile on a non-chained packet
3551 * but we can use on a non-oplocked file. tridge proved this
3552 * on a train in Germany :-). JRA.
3555 if (!req_is_in_chain(req) &&
3556 !is_encrypted_packet(req->inbuf) && (fsp->base_fsp == NULL) &&
3557 (fsp->wcp == NULL) &&
3558 lp_use_sendfile(SNUM(conn), req->sconn->smb1.signing_state) ) {
3559 uint8 headerbuf[smb_size + 12 * 2];
3560 DATA_BLOB header;
3563 * Set up the packet header before send. We
3564 * assume here the sendfile will work (get the
3565 * correct amount of data).
3568 header = data_blob_const(headerbuf, sizeof(headerbuf));
3570 construct_reply_common_req(req, (char *)headerbuf);
3571 setup_readX_header(req, (char *)headerbuf, smb_maxcnt);
3573 nread = SMB_VFS_SENDFILE(req->sconn->sock, fsp, &header,
3574 startpos, smb_maxcnt);
3575 if (nread == -1) {
3576 /* Returning ENOSYS means no data at all was sent.
3577 Do this as a normal read. */
3578 if (errno == ENOSYS) {
3579 goto normal_read;
3583 * Special hack for broken Linux with no working sendfile. If we
3584 * return EINTR we sent the header but not the rest of the data.
3585 * Fake this up by doing read/write calls.
3588 if (errno == EINTR) {
3589 /* Ensure we don't do this again. */
3590 set_use_sendfile(SNUM(conn), False);
3591 DEBUG(0,("send_file_readX: sendfile not available. Faking..\n"));
3592 nread = fake_sendfile(fsp, startpos,
3593 smb_maxcnt);
3594 if (nread == -1) {
3595 DEBUG(0,("send_file_readX: "
3596 "fake_sendfile failed for "
3597 "file %s (%s).\n",
3598 fsp_str_dbg(fsp),
3599 strerror(errno)));
3600 exit_server_cleanly("send_file_readX: fake_sendfile failed");
3602 DEBUG( 3, ( "send_file_readX: fake_sendfile fnum=%d max=%d nread=%d\n",
3603 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3604 /* No outbuf here means successful sendfile. */
3605 goto strict_unlock;
3608 DEBUG(0,("send_file_readX: sendfile failed for file "
3609 "%s (%s). Terminating\n", fsp_str_dbg(fsp),
3610 strerror(errno)));
3611 exit_server_cleanly("send_file_readX sendfile failed");
3612 } else if (nread == 0) {
3614 * Some sendfile implementations return 0 to indicate
3615 * that there was a short read, but nothing was
3616 * actually written to the socket. In this case,
3617 * fallback to the normal read path so the header gets
3618 * the correct byte count.
3620 DEBUG(3, ("send_file_readX: sendfile sent zero bytes "
3621 "falling back to the normal read: %s\n",
3622 fsp_str_dbg(fsp)));
3623 goto normal_read;
3626 DEBUG( 3, ( "send_file_readX: sendfile fnum=%d max=%d nread=%d\n",
3627 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3629 /* Deal with possible short send. */
3630 if (nread != smb_maxcnt + sizeof(headerbuf)) {
3631 sendfile_short_send(fsp, nread, sizeof(headerbuf), smb_maxcnt);
3633 /* No outbuf here means successful sendfile. */
3634 SMB_PERFCOUNT_SET_MSGLEN_OUT(&req->pcd, nread);
3635 SMB_PERFCOUNT_END(&req->pcd);
3636 goto strict_unlock;
3639 normal_read:
3641 if ((smb_maxcnt & 0xFF0000) > 0x10000) {
3642 uint8 headerbuf[smb_size + 2*12];
3644 construct_reply_common_req(req, (char *)headerbuf);
3645 setup_readX_header(req, (char *)headerbuf, smb_maxcnt);
3647 /* Send out the header. */
3648 if (write_data(req->sconn->sock, (char *)headerbuf,
3649 sizeof(headerbuf)) != sizeof(headerbuf)) {
3651 char addr[INET6_ADDRSTRLEN];
3653 * Try and give an error message saying what
3654 * client failed.
3656 DEBUG(0, ("write_data failed for client %s. "
3657 "Error %s\n",
3658 get_peer_addr(req->sconn->sock, addr,
3659 sizeof(addr)),
3660 strerror(errno)));
3662 DEBUG(0,("send_file_readX: write_data failed for file "
3663 "%s (%s). Terminating\n", fsp_str_dbg(fsp),
3664 strerror(errno)));
3665 exit_server_cleanly("send_file_readX sendfile failed");
3667 nread = fake_sendfile(fsp, startpos, smb_maxcnt);
3668 if (nread == -1) {
3669 DEBUG(0,("send_file_readX: fake_sendfile failed for "
3670 "file %s (%s).\n", fsp_str_dbg(fsp),
3671 strerror(errno)));
3672 exit_server_cleanly("send_file_readX: fake_sendfile failed");
3674 goto strict_unlock;
3677 nosendfile_read:
3679 reply_outbuf(req, 12, smb_maxcnt);
3681 nread = read_file(fsp, smb_buf(req->outbuf), startpos, smb_maxcnt);
3682 saved_errno = errno;
3684 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
3686 if (nread < 0) {
3687 reply_nterror(req, map_nt_error_from_unix(saved_errno));
3688 return;
3691 setup_readX_header(req, (char *)req->outbuf, nread);
3693 DEBUG( 3, ( "send_file_readX fnum=%d max=%d nread=%d\n",
3694 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3696 chain_reply(req);
3697 return;
3699 strict_unlock:
3700 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
3701 TALLOC_FREE(req->outbuf);
3702 return;
3705 /****************************************************************************
3706 Reply to a read and X.
3707 ****************************************************************************/
3709 void reply_read_and_X(struct smb_request *req)
3711 connection_struct *conn = req->conn;
3712 files_struct *fsp;
3713 SMB_OFF_T startpos;
3714 size_t smb_maxcnt;
3715 bool big_readX = False;
3716 #if 0
3717 size_t smb_mincnt = SVAL(req->vwv+6, 0);
3718 #endif
3720 START_PROFILE(SMBreadX);
3722 if ((req->wct != 10) && (req->wct != 12)) {
3723 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3724 return;
3727 fsp = file_fsp(req, SVAL(req->vwv+2, 0));
3728 startpos = IVAL_TO_SMB_OFF_T(req->vwv+3, 0);
3729 smb_maxcnt = SVAL(req->vwv+5, 0);
3731 /* If it's an IPC, pass off the pipe handler. */
3732 if (IS_IPC(conn)) {
3733 reply_pipe_read_and_X(req);
3734 END_PROFILE(SMBreadX);
3735 return;
3738 if (!check_fsp(conn, req, fsp)) {
3739 END_PROFILE(SMBreadX);
3740 return;
3743 if (!CHECK_READ(fsp,req)) {
3744 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3745 END_PROFILE(SMBreadX);
3746 return;
3749 if (global_client_caps & CAP_LARGE_READX) {
3750 size_t upper_size = SVAL(req->vwv+7, 0);
3751 smb_maxcnt |= (upper_size<<16);
3752 if (upper_size > 1) {
3753 /* Can't do this on a chained packet. */
3754 if ((CVAL(req->vwv+0, 0) != 0xFF)) {
3755 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
3756 END_PROFILE(SMBreadX);
3757 return;
3759 /* We currently don't do this on signed or sealed data. */
3760 if (srv_is_signing_active(req->sconn) ||
3761 is_encrypted_packet(req->inbuf)) {
3762 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
3763 END_PROFILE(SMBreadX);
3764 return;
3766 /* Is there room in the reply for this data ? */
3767 if (smb_maxcnt > (0xFFFFFF - (smb_size -4 + 12*2))) {
3768 reply_nterror(req,
3769 NT_STATUS_INVALID_PARAMETER);
3770 END_PROFILE(SMBreadX);
3771 return;
3773 big_readX = True;
3777 if (req->wct == 12) {
3778 #ifdef LARGE_SMB_OFF_T
3780 * This is a large offset (64 bit) read.
3782 startpos |= (((SMB_OFF_T)IVAL(req->vwv+10, 0)) << 32);
3784 #else /* !LARGE_SMB_OFF_T */
3787 * Ensure we haven't been sent a >32 bit offset.
3790 if(IVAL(req->vwv+10, 0) != 0) {
3791 DEBUG(0,("reply_read_and_X - large offset (%x << 32) "
3792 "used and we don't support 64 bit offsets.\n",
3793 (unsigned int)IVAL(req->vwv+10, 0) ));
3794 END_PROFILE(SMBreadX);
3795 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3796 return;
3799 #endif /* LARGE_SMB_OFF_T */
3803 if (!big_readX) {
3804 NTSTATUS status = schedule_aio_read_and_X(conn,
3805 req,
3806 fsp,
3807 startpos,
3808 smb_maxcnt);
3809 if (NT_STATUS_IS_OK(status)) {
3810 /* Read scheduled - we're done. */
3811 goto out;
3813 if (!NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
3814 /* Real error - report to client. */
3815 END_PROFILE(SMBreadX);
3816 reply_nterror(req, status);
3817 return;
3819 /* NT_STATUS_RETRY - fall back to sync read. */
3822 smbd_lock_socket(req->sconn);
3823 send_file_readX(conn, req, fsp, startpos, smb_maxcnt);
3824 smbd_unlock_socket(req->sconn);
3826 out:
3827 END_PROFILE(SMBreadX);
3828 return;
3831 /****************************************************************************
3832 Error replies to writebraw must have smb_wct == 1. Fix this up.
3833 ****************************************************************************/
3835 void error_to_writebrawerr(struct smb_request *req)
3837 uint8 *old_outbuf = req->outbuf;
3839 reply_outbuf(req, 1, 0);
3841 memcpy(req->outbuf, old_outbuf, smb_size);
3842 TALLOC_FREE(old_outbuf);
3845 /****************************************************************************
3846 Read 4 bytes of a smb packet and return the smb length of the packet.
3847 Store the result in the buffer. This version of the function will
3848 never return a session keepalive (length of zero).
3849 Timeout is in milliseconds.
3850 ****************************************************************************/
3852 static NTSTATUS read_smb_length(int fd, char *inbuf, unsigned int timeout,
3853 size_t *len)
3855 uint8_t msgtype = SMBkeepalive;
3857 while (msgtype == SMBkeepalive) {
3858 NTSTATUS status;
3860 status = read_smb_length_return_keepalive(fd, inbuf, timeout,
3861 len);
3862 if (!NT_STATUS_IS_OK(status)) {
3863 char addr[INET6_ADDRSTRLEN];
3864 /* Try and give an error message
3865 * saying what client failed. */
3866 DEBUG(0, ("read_fd_with_timeout failed for "
3867 "client %s read error = %s.\n",
3868 get_peer_addr(fd,addr,sizeof(addr)),
3869 nt_errstr(status)));
3870 return status;
3873 msgtype = CVAL(inbuf, 0);
3876 DEBUG(10,("read_smb_length: got smb length of %lu\n",
3877 (unsigned long)len));
3879 return NT_STATUS_OK;
3882 /****************************************************************************
3883 Reply to a writebraw (core+ or LANMAN1.0 protocol).
3884 ****************************************************************************/
3886 void reply_writebraw(struct smb_request *req)
3888 connection_struct *conn = req->conn;
3889 char *buf = NULL;
3890 ssize_t nwritten=0;
3891 ssize_t total_written=0;
3892 size_t numtowrite=0;
3893 size_t tcount;
3894 SMB_OFF_T startpos;
3895 char *data=NULL;
3896 bool write_through;
3897 files_struct *fsp;
3898 struct lock_struct lock;
3899 NTSTATUS status;
3901 START_PROFILE(SMBwritebraw);
3904 * If we ever reply with an error, it must have the SMB command
3905 * type of SMBwritec, not SMBwriteBraw, as this tells the client
3906 * we're finished.
3908 SCVAL(req->inbuf,smb_com,SMBwritec);
3910 if (srv_is_signing_active(req->sconn)) {
3911 END_PROFILE(SMBwritebraw);
3912 exit_server_cleanly("reply_writebraw: SMB signing is active - "
3913 "raw reads/writes are disallowed.");
3916 if (req->wct < 12) {
3917 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3918 error_to_writebrawerr(req);
3919 END_PROFILE(SMBwritebraw);
3920 return;
3923 if (req->sconn->smb1.echo_handler.trusted_fde) {
3924 DEBUG(2,("SMBwritebraw rejected with NOT_SUPPORTED because of "
3925 "'async smb echo handler = yes'\n"));
3926 reply_nterror(req, NT_STATUS_NOT_SUPPORTED);
3927 error_to_writebrawerr(req);
3928 END_PROFILE(SMBwritebraw);
3929 return;
3932 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
3933 if (!check_fsp(conn, req, fsp)) {
3934 error_to_writebrawerr(req);
3935 END_PROFILE(SMBwritebraw);
3936 return;
3939 if (!CHECK_WRITE(fsp)) {
3940 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
3941 error_to_writebrawerr(req);
3942 END_PROFILE(SMBwritebraw);
3943 return;
3946 tcount = IVAL(req->vwv+1, 0);
3947 startpos = IVAL_TO_SMB_OFF_T(req->vwv+3, 0);
3948 write_through = BITSETW(req->vwv+7,0);
3950 /* We have to deal with slightly different formats depending
3951 on whether we are using the core+ or lanman1.0 protocol */
3953 if(get_Protocol() <= PROTOCOL_COREPLUS) {
3954 numtowrite = SVAL(smb_buf(req->inbuf),-2);
3955 data = smb_buf(req->inbuf);
3956 } else {
3957 numtowrite = SVAL(req->vwv+10, 0);
3958 data = smb_base(req->inbuf) + SVAL(req->vwv+11, 0);
3961 /* Ensure we don't write bytes past the end of this packet. */
3962 if (data + numtowrite > smb_base(req->inbuf) + smb_len(req->inbuf)) {
3963 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3964 error_to_writebrawerr(req);
3965 END_PROFILE(SMBwritebraw);
3966 return;
3969 if (!fsp->print_file) {
3970 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
3971 (uint64_t)startpos, (uint64_t)tcount, WRITE_LOCK,
3972 &lock);
3974 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
3975 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
3976 error_to_writebrawerr(req);
3977 END_PROFILE(SMBwritebraw);
3978 return;
3982 if (numtowrite>0) {
3983 nwritten = write_file(req,fsp,data,startpos,numtowrite);
3986 DEBUG(3,("reply_writebraw: initial write fnum=%d start=%.0f num=%d "
3987 "wrote=%d sync=%d\n",
3988 fsp->fnum, (double)startpos, (int)numtowrite,
3989 (int)nwritten, (int)write_through));
3991 if (nwritten < (ssize_t)numtowrite) {
3992 reply_nterror(req, NT_STATUS_DISK_FULL);
3993 error_to_writebrawerr(req);
3994 goto strict_unlock;
3997 total_written = nwritten;
3999 /* Allocate a buffer of 64k + length. */
4000 buf = TALLOC_ARRAY(NULL, char, 65540);
4001 if (!buf) {
4002 reply_nterror(req, NT_STATUS_NO_MEMORY);
4003 error_to_writebrawerr(req);
4004 goto strict_unlock;
4007 /* Return a SMBwritebraw message to the redirector to tell
4008 * it to send more bytes */
4010 memcpy(buf, req->inbuf, smb_size);
4011 srv_set_message(buf,get_Protocol()>PROTOCOL_COREPLUS?1:0,0,True);
4012 SCVAL(buf,smb_com,SMBwritebraw);
4013 SSVALS(buf,smb_vwv0,0xFFFF);
4014 show_msg(buf);
4015 if (!srv_send_smb(req->sconn,
4016 buf,
4017 false, 0, /* no signing */
4018 IS_CONN_ENCRYPTED(conn),
4019 &req->pcd)) {
4020 exit_server_cleanly("reply_writebraw: srv_send_smb "
4021 "failed.");
4024 /* Now read the raw data into the buffer and write it */
4025 status = read_smb_length(req->sconn->sock, buf, SMB_SECONDARY_WAIT,
4026 &numtowrite);
4027 if (!NT_STATUS_IS_OK(status)) {
4028 exit_server_cleanly("secondary writebraw failed");
4031 /* Set up outbuf to return the correct size */
4032 reply_outbuf(req, 1, 0);
4034 if (numtowrite != 0) {
4036 if (numtowrite > 0xFFFF) {
4037 DEBUG(0,("reply_writebraw: Oversize secondary write "
4038 "raw requested (%u). Terminating\n",
4039 (unsigned int)numtowrite ));
4040 exit_server_cleanly("secondary writebraw failed");
4043 if (tcount > nwritten+numtowrite) {
4044 DEBUG(3,("reply_writebraw: Client overestimated the "
4045 "write %d %d %d\n",
4046 (int)tcount,(int)nwritten,(int)numtowrite));
4049 status = read_data(req->sconn->sock, buf+4, numtowrite);
4051 if (!NT_STATUS_IS_OK(status)) {
4052 char addr[INET6_ADDRSTRLEN];
4053 /* Try and give an error message
4054 * saying what client failed. */
4055 DEBUG(0, ("reply_writebraw: Oversize secondary write "
4056 "raw read failed (%s) for client %s. "
4057 "Terminating\n", nt_errstr(status),
4058 get_peer_addr(req->sconn->sock, addr,
4059 sizeof(addr))));
4060 exit_server_cleanly("secondary writebraw failed");
4063 nwritten = write_file(req,fsp,buf+4,startpos+nwritten,numtowrite);
4064 if (nwritten == -1) {
4065 TALLOC_FREE(buf);
4066 reply_nterror(req, map_nt_error_from_unix(errno));
4067 error_to_writebrawerr(req);
4068 goto strict_unlock;
4071 if (nwritten < (ssize_t)numtowrite) {
4072 SCVAL(req->outbuf,smb_rcls,ERRHRD);
4073 SSVAL(req->outbuf,smb_err,ERRdiskfull);
4076 if (nwritten > 0) {
4077 total_written += nwritten;
4081 TALLOC_FREE(buf);
4082 SSVAL(req->outbuf,smb_vwv0,total_written);
4084 status = sync_file(conn, fsp, write_through);
4085 if (!NT_STATUS_IS_OK(status)) {
4086 DEBUG(5,("reply_writebraw: sync_file for %s returned %s\n",
4087 fsp_str_dbg(fsp), nt_errstr(status)));
4088 reply_nterror(req, status);
4089 error_to_writebrawerr(req);
4090 goto strict_unlock;
4093 DEBUG(3,("reply_writebraw: secondart write fnum=%d start=%.0f num=%d "
4094 "wrote=%d\n",
4095 fsp->fnum, (double)startpos, (int)numtowrite,
4096 (int)total_written));
4098 if (!fsp->print_file) {
4099 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4102 /* We won't return a status if write through is not selected - this
4103 * follows what WfWg does */
4104 END_PROFILE(SMBwritebraw);
4106 if (!write_through && total_written==tcount) {
4108 #if RABBIT_PELLET_FIX
4110 * Fix for "rabbit pellet" mode, trigger an early TCP ack by
4111 * sending a SMBkeepalive. Thanks to DaveCB at Sun for this.
4112 * JRA.
4114 if (!send_keepalive(req->sconn->sock)) {
4115 exit_server_cleanly("reply_writebraw: send of "
4116 "keepalive failed");
4118 #endif
4119 TALLOC_FREE(req->outbuf);
4121 return;
4123 strict_unlock:
4124 if (!fsp->print_file) {
4125 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4128 END_PROFILE(SMBwritebraw);
4129 return;
4132 #undef DBGC_CLASS
4133 #define DBGC_CLASS DBGC_LOCKING
4135 /****************************************************************************
4136 Reply to a writeunlock (core+).
4137 ****************************************************************************/
4139 void reply_writeunlock(struct smb_request *req)
4141 connection_struct *conn = req->conn;
4142 ssize_t nwritten = -1;
4143 size_t numtowrite;
4144 SMB_OFF_T startpos;
4145 const char *data;
4146 NTSTATUS status = NT_STATUS_OK;
4147 files_struct *fsp;
4148 struct lock_struct lock;
4149 int saved_errno = 0;
4151 START_PROFILE(SMBwriteunlock);
4153 if (req->wct < 5) {
4154 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4155 END_PROFILE(SMBwriteunlock);
4156 return;
4159 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4161 if (!check_fsp(conn, req, fsp)) {
4162 END_PROFILE(SMBwriteunlock);
4163 return;
4166 if (!CHECK_WRITE(fsp)) {
4167 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
4168 END_PROFILE(SMBwriteunlock);
4169 return;
4172 numtowrite = SVAL(req->vwv+1, 0);
4173 startpos = IVAL_TO_SMB_OFF_T(req->vwv+2, 0);
4174 data = (const char *)req->buf + 3;
4176 if (!fsp->print_file && numtowrite > 0) {
4177 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
4178 (uint64_t)startpos, (uint64_t)numtowrite, WRITE_LOCK,
4179 &lock);
4181 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
4182 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
4183 END_PROFILE(SMBwriteunlock);
4184 return;
4188 /* The special X/Open SMB protocol handling of
4189 zero length writes is *NOT* done for
4190 this call */
4191 if(numtowrite == 0) {
4192 nwritten = 0;
4193 } else {
4194 nwritten = write_file(req,fsp,data,startpos,numtowrite);
4195 saved_errno = errno;
4198 status = sync_file(conn, fsp, False /* write through */);
4199 if (!NT_STATUS_IS_OK(status)) {
4200 DEBUG(5,("reply_writeunlock: sync_file for %s returned %s\n",
4201 fsp_str_dbg(fsp), nt_errstr(status)));
4202 reply_nterror(req, status);
4203 goto strict_unlock;
4206 if(nwritten < 0) {
4207 reply_nterror(req, map_nt_error_from_unix(saved_errno));
4208 goto strict_unlock;
4211 if((nwritten < numtowrite) && (numtowrite != 0)) {
4212 reply_nterror(req, NT_STATUS_DISK_FULL);
4213 goto strict_unlock;
4216 if (numtowrite && !fsp->print_file) {
4217 status = do_unlock(req->sconn->msg_ctx,
4218 fsp,
4219 (uint64_t)req->smbpid,
4220 (uint64_t)numtowrite,
4221 (uint64_t)startpos,
4222 WINDOWS_LOCK);
4224 if (NT_STATUS_V(status)) {
4225 reply_nterror(req, status);
4226 goto strict_unlock;
4230 reply_outbuf(req, 1, 0);
4232 SSVAL(req->outbuf,smb_vwv0,nwritten);
4234 DEBUG(3,("writeunlock fnum=%d num=%d wrote=%d\n",
4235 fsp->fnum, (int)numtowrite, (int)nwritten));
4237 strict_unlock:
4238 if (numtowrite && !fsp->print_file) {
4239 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4242 END_PROFILE(SMBwriteunlock);
4243 return;
4246 #undef DBGC_CLASS
4247 #define DBGC_CLASS DBGC_ALL
4249 /****************************************************************************
4250 Reply to a write.
4251 ****************************************************************************/
4253 void reply_write(struct smb_request *req)
4255 connection_struct *conn = req->conn;
4256 size_t numtowrite;
4257 ssize_t nwritten = -1;
4258 SMB_OFF_T startpos;
4259 const char *data;
4260 files_struct *fsp;
4261 struct lock_struct lock;
4262 NTSTATUS status;
4263 int saved_errno = 0;
4265 START_PROFILE(SMBwrite);
4267 if (req->wct < 5) {
4268 END_PROFILE(SMBwrite);
4269 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4270 return;
4273 /* If it's an IPC, pass off the pipe handler. */
4274 if (IS_IPC(conn)) {
4275 reply_pipe_write(req);
4276 END_PROFILE(SMBwrite);
4277 return;
4280 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4282 if (!check_fsp(conn, req, fsp)) {
4283 END_PROFILE(SMBwrite);
4284 return;
4287 if (!CHECK_WRITE(fsp)) {
4288 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
4289 END_PROFILE(SMBwrite);
4290 return;
4293 numtowrite = SVAL(req->vwv+1, 0);
4294 startpos = IVAL_TO_SMB_OFF_T(req->vwv+2, 0);
4295 data = (const char *)req->buf + 3;
4297 if (!fsp->print_file) {
4298 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
4299 (uint64_t)startpos, (uint64_t)numtowrite, WRITE_LOCK,
4300 &lock);
4302 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
4303 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
4304 END_PROFILE(SMBwrite);
4305 return;
4310 * X/Open SMB protocol says that if smb_vwv1 is
4311 * zero then the file size should be extended or
4312 * truncated to the size given in smb_vwv[2-3].
4315 if(numtowrite == 0) {
4317 * This is actually an allocate call, and set EOF. JRA.
4319 nwritten = vfs_allocate_file_space(fsp, (SMB_OFF_T)startpos);
4320 if (nwritten < 0) {
4321 reply_nterror(req, NT_STATUS_DISK_FULL);
4322 goto strict_unlock;
4324 nwritten = vfs_set_filelen(fsp, (SMB_OFF_T)startpos);
4325 if (nwritten < 0) {
4326 reply_nterror(req, NT_STATUS_DISK_FULL);
4327 goto strict_unlock;
4329 trigger_write_time_update_immediate(fsp);
4330 } else {
4331 nwritten = write_file(req,fsp,data,startpos,numtowrite);
4334 status = sync_file(conn, fsp, False);
4335 if (!NT_STATUS_IS_OK(status)) {
4336 DEBUG(5,("reply_write: sync_file for %s returned %s\n",
4337 fsp_str_dbg(fsp), nt_errstr(status)));
4338 reply_nterror(req, status);
4339 goto strict_unlock;
4342 if(nwritten < 0) {
4343 reply_nterror(req, map_nt_error_from_unix(saved_errno));
4344 goto strict_unlock;
4347 if((nwritten == 0) && (numtowrite != 0)) {
4348 reply_nterror(req, NT_STATUS_DISK_FULL);
4349 goto strict_unlock;
4352 reply_outbuf(req, 1, 0);
4354 SSVAL(req->outbuf,smb_vwv0,nwritten);
4356 if (nwritten < (ssize_t)numtowrite) {
4357 SCVAL(req->outbuf,smb_rcls,ERRHRD);
4358 SSVAL(req->outbuf,smb_err,ERRdiskfull);
4361 DEBUG(3,("write fnum=%d num=%d wrote=%d\n", fsp->fnum, (int)numtowrite, (int)nwritten));
4363 strict_unlock:
4364 if (!fsp->print_file) {
4365 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4368 END_PROFILE(SMBwrite);
4369 return;
4372 /****************************************************************************
4373 Ensure a buffer is a valid writeX for recvfile purposes.
4374 ****************************************************************************/
4376 #define STANDARD_WRITE_AND_X_HEADER_SIZE (smb_size - 4 + /* basic header */ \
4377 (2*14) + /* word count (including bcc) */ \
4378 1 /* pad byte */)
4380 bool is_valid_writeX_buffer(struct smbd_server_connection *sconn,
4381 const uint8_t *inbuf)
4383 size_t numtowrite;
4384 connection_struct *conn = NULL;
4385 unsigned int doff = 0;
4386 size_t len = smb_len_large(inbuf);
4388 if (is_encrypted_packet(inbuf)) {
4389 /* Can't do this on encrypted
4390 * connections. */
4391 return false;
4394 if (CVAL(inbuf,smb_com) != SMBwriteX) {
4395 return false;
4398 if (CVAL(inbuf,smb_vwv0) != 0xFF ||
4399 CVAL(inbuf,smb_wct) != 14) {
4400 DEBUG(10,("is_valid_writeX_buffer: chained or "
4401 "invalid word length.\n"));
4402 return false;
4405 conn = conn_find(sconn, SVAL(inbuf, smb_tid));
4406 if (conn == NULL) {
4407 DEBUG(10,("is_valid_writeX_buffer: bad tid\n"));
4408 return false;
4410 if (IS_IPC(conn)) {
4411 DEBUG(10,("is_valid_writeX_buffer: IPC$ tid\n"));
4412 return false;
4414 if (IS_PRINT(conn)) {
4415 DEBUG(10,("is_valid_writeX_buffer: printing tid\n"));
4416 return false;
4418 doff = SVAL(inbuf,smb_vwv11);
4420 numtowrite = SVAL(inbuf,smb_vwv10);
4422 if (len > doff && len - doff > 0xFFFF) {
4423 numtowrite |= (((size_t)SVAL(inbuf,smb_vwv9))<<16);
4426 if (numtowrite == 0) {
4427 DEBUG(10,("is_valid_writeX_buffer: zero write\n"));
4428 return false;
4431 /* Ensure the sizes match up. */
4432 if (doff < STANDARD_WRITE_AND_X_HEADER_SIZE) {
4433 /* no pad byte...old smbclient :-( */
4434 DEBUG(10,("is_valid_writeX_buffer: small doff %u (min %u)\n",
4435 (unsigned int)doff,
4436 (unsigned int)STANDARD_WRITE_AND_X_HEADER_SIZE));
4437 return false;
4440 if (len - doff != numtowrite) {
4441 DEBUG(10,("is_valid_writeX_buffer: doff mismatch "
4442 "len = %u, doff = %u, numtowrite = %u\n",
4443 (unsigned int)len,
4444 (unsigned int)doff,
4445 (unsigned int)numtowrite ));
4446 return false;
4449 DEBUG(10,("is_valid_writeX_buffer: true "
4450 "len = %u, doff = %u, numtowrite = %u\n",
4451 (unsigned int)len,
4452 (unsigned int)doff,
4453 (unsigned int)numtowrite ));
4455 return true;
4458 /****************************************************************************
4459 Reply to a write and X.
4460 ****************************************************************************/
4462 void reply_write_and_X(struct smb_request *req)
4464 connection_struct *conn = req->conn;
4465 files_struct *fsp;
4466 struct lock_struct lock;
4467 SMB_OFF_T startpos;
4468 size_t numtowrite;
4469 bool write_through;
4470 ssize_t nwritten;
4471 unsigned int smb_doff;
4472 unsigned int smblen;
4473 char *data;
4474 NTSTATUS status;
4475 int saved_errno = 0;
4477 START_PROFILE(SMBwriteX);
4479 if ((req->wct != 12) && (req->wct != 14)) {
4480 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4481 END_PROFILE(SMBwriteX);
4482 return;
4485 numtowrite = SVAL(req->vwv+10, 0);
4486 smb_doff = SVAL(req->vwv+11, 0);
4487 smblen = smb_len(req->inbuf);
4489 if (req->unread_bytes > 0xFFFF ||
4490 (smblen > smb_doff &&
4491 smblen - smb_doff > 0xFFFF)) {
4492 numtowrite |= (((size_t)SVAL(req->vwv+9, 0))<<16);
4495 if (req->unread_bytes) {
4496 /* Can't do a recvfile write on IPC$ */
4497 if (IS_IPC(conn)) {
4498 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4499 END_PROFILE(SMBwriteX);
4500 return;
4502 if (numtowrite != req->unread_bytes) {
4503 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4504 END_PROFILE(SMBwriteX);
4505 return;
4507 } else {
4508 if (smb_doff > smblen || smb_doff + numtowrite < numtowrite ||
4509 smb_doff + numtowrite > smblen) {
4510 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4511 END_PROFILE(SMBwriteX);
4512 return;
4516 /* If it's an IPC, pass off the pipe handler. */
4517 if (IS_IPC(conn)) {
4518 if (req->unread_bytes) {
4519 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4520 END_PROFILE(SMBwriteX);
4521 return;
4523 reply_pipe_write_and_X(req);
4524 END_PROFILE(SMBwriteX);
4525 return;
4528 fsp = file_fsp(req, SVAL(req->vwv+2, 0));
4529 startpos = IVAL_TO_SMB_OFF_T(req->vwv+3, 0);
4530 write_through = BITSETW(req->vwv+7,0);
4532 if (!check_fsp(conn, req, fsp)) {
4533 END_PROFILE(SMBwriteX);
4534 return;
4537 if (!CHECK_WRITE(fsp)) {
4538 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
4539 END_PROFILE(SMBwriteX);
4540 return;
4543 data = smb_base(req->inbuf) + smb_doff;
4545 if(req->wct == 14) {
4546 #ifdef LARGE_SMB_OFF_T
4548 * This is a large offset (64 bit) write.
4550 startpos |= (((SMB_OFF_T)IVAL(req->vwv+12, 0)) << 32);
4552 #else /* !LARGE_SMB_OFF_T */
4555 * Ensure we haven't been sent a >32 bit offset.
4558 if(IVAL(req->vwv+12, 0) != 0) {
4559 DEBUG(0,("reply_write_and_X - large offset (%x << 32) "
4560 "used and we don't support 64 bit offsets.\n",
4561 (unsigned int)IVAL(req->vwv+12, 0) ));
4562 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
4563 END_PROFILE(SMBwriteX);
4564 return;
4567 #endif /* LARGE_SMB_OFF_T */
4570 /* X/Open SMB protocol says that, unlike SMBwrite
4571 if the length is zero then NO truncation is
4572 done, just a write of zero. To truncate a file,
4573 use SMBwrite. */
4575 if(numtowrite == 0) {
4576 nwritten = 0;
4577 } else {
4578 if (req->unread_bytes == 0) {
4579 status = schedule_aio_write_and_X(conn,
4580 req,
4581 fsp,
4582 data,
4583 startpos,
4584 numtowrite);
4586 if (NT_STATUS_IS_OK(status)) {
4587 /* write scheduled - we're done. */
4588 goto out;
4590 if (!NT_STATUS_EQUAL(status, NT_STATUS_RETRY)) {
4591 /* Real error - report to client. */
4592 reply_nterror(req, status);
4593 goto out;
4595 /* NT_STATUS_RETRY - fall through to sync write. */
4598 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
4599 (uint64_t)startpos, (uint64_t)numtowrite, WRITE_LOCK,
4600 &lock);
4602 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
4603 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
4604 goto out;
4607 nwritten = write_file(req,fsp,data,startpos,numtowrite);
4608 saved_errno = errno;
4610 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4613 if(nwritten < 0) {
4614 reply_nterror(req, map_nt_error_from_unix(saved_errno));
4615 goto out;
4618 if((nwritten == 0) && (numtowrite != 0)) {
4619 reply_nterror(req, NT_STATUS_DISK_FULL);
4620 goto out;
4623 reply_outbuf(req, 6, 0);
4624 SSVAL(req->outbuf,smb_vwv2,nwritten);
4625 SSVAL(req->outbuf,smb_vwv4,nwritten>>16);
4627 if (nwritten < (ssize_t)numtowrite) {
4628 SCVAL(req->outbuf,smb_rcls,ERRHRD);
4629 SSVAL(req->outbuf,smb_err,ERRdiskfull);
4632 DEBUG(3,("writeX fnum=%d num=%d wrote=%d\n",
4633 fsp->fnum, (int)numtowrite, (int)nwritten));
4635 status = sync_file(conn, fsp, write_through);
4636 if (!NT_STATUS_IS_OK(status)) {
4637 DEBUG(5,("reply_write_and_X: sync_file for %s returned %s\n",
4638 fsp_str_dbg(fsp), nt_errstr(status)));
4639 reply_nterror(req, status);
4640 goto out;
4643 END_PROFILE(SMBwriteX);
4644 chain_reply(req);
4645 return;
4647 out:
4648 END_PROFILE(SMBwriteX);
4649 return;
4652 /****************************************************************************
4653 Reply to a lseek.
4654 ****************************************************************************/
4656 void reply_lseek(struct smb_request *req)
4658 connection_struct *conn = req->conn;
4659 SMB_OFF_T startpos;
4660 SMB_OFF_T res= -1;
4661 int mode,umode;
4662 files_struct *fsp;
4664 START_PROFILE(SMBlseek);
4666 if (req->wct < 4) {
4667 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4668 END_PROFILE(SMBlseek);
4669 return;
4672 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4674 if (!check_fsp(conn, req, fsp)) {
4675 return;
4678 flush_write_cache(fsp, SEEK_FLUSH);
4680 mode = SVAL(req->vwv+1, 0) & 3;
4681 /* NB. This doesn't use IVAL_TO_SMB_OFF_T as startpos can be signed in this case. */
4682 startpos = (SMB_OFF_T)IVALS(req->vwv+2, 0);
4684 switch (mode) {
4685 case 0:
4686 umode = SEEK_SET;
4687 res = startpos;
4688 break;
4689 case 1:
4690 umode = SEEK_CUR;
4691 res = fsp->fh->pos + startpos;
4692 break;
4693 case 2:
4694 umode = SEEK_END;
4695 break;
4696 default:
4697 umode = SEEK_SET;
4698 res = startpos;
4699 break;
4702 if (umode == SEEK_END) {
4703 if((res = SMB_VFS_LSEEK(fsp,startpos,umode)) == -1) {
4704 if(errno == EINVAL) {
4705 SMB_OFF_T current_pos = startpos;
4707 if(fsp_stat(fsp) == -1) {
4708 reply_nterror(req,
4709 map_nt_error_from_unix(errno));
4710 END_PROFILE(SMBlseek);
4711 return;
4714 current_pos += fsp->fsp_name->st.st_ex_size;
4715 if(current_pos < 0)
4716 res = SMB_VFS_LSEEK(fsp,0,SEEK_SET);
4720 if(res == -1) {
4721 reply_nterror(req, map_nt_error_from_unix(errno));
4722 END_PROFILE(SMBlseek);
4723 return;
4727 fsp->fh->pos = res;
4729 reply_outbuf(req, 2, 0);
4730 SIVAL(req->outbuf,smb_vwv0,res);
4732 DEBUG(3,("lseek fnum=%d ofs=%.0f newpos = %.0f mode=%d\n",
4733 fsp->fnum, (double)startpos, (double)res, mode));
4735 END_PROFILE(SMBlseek);
4736 return;
4739 /****************************************************************************
4740 Reply to a flush.
4741 ****************************************************************************/
4743 void reply_flush(struct smb_request *req)
4745 connection_struct *conn = req->conn;
4746 uint16 fnum;
4747 files_struct *fsp;
4749 START_PROFILE(SMBflush);
4751 if (req->wct < 1) {
4752 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4753 return;
4756 fnum = SVAL(req->vwv+0, 0);
4757 fsp = file_fsp(req, fnum);
4759 if ((fnum != 0xFFFF) && !check_fsp(conn, req, fsp)) {
4760 return;
4763 if (!fsp) {
4764 file_sync_all(conn);
4765 } else {
4766 NTSTATUS status = sync_file(conn, fsp, True);
4767 if (!NT_STATUS_IS_OK(status)) {
4768 DEBUG(5,("reply_flush: sync_file for %s returned %s\n",
4769 fsp_str_dbg(fsp), nt_errstr(status)));
4770 reply_nterror(req, status);
4771 END_PROFILE(SMBflush);
4772 return;
4776 reply_outbuf(req, 0, 0);
4778 DEBUG(3,("flush\n"));
4779 END_PROFILE(SMBflush);
4780 return;
4783 /****************************************************************************
4784 Reply to a exit.
4785 conn POINTER CAN BE NULL HERE !
4786 ****************************************************************************/
4788 void reply_exit(struct smb_request *req)
4790 START_PROFILE(SMBexit);
4792 file_close_pid(req->sconn, req->smbpid, req->vuid);
4794 reply_outbuf(req, 0, 0);
4796 DEBUG(3,("exit\n"));
4798 END_PROFILE(SMBexit);
4799 return;
4802 /****************************************************************************
4803 Reply to a close - has to deal with closing a directory opened by NT SMB's.
4804 ****************************************************************************/
4806 void reply_close(struct smb_request *req)
4808 connection_struct *conn = req->conn;
4809 NTSTATUS status = NT_STATUS_OK;
4810 files_struct *fsp = NULL;
4811 START_PROFILE(SMBclose);
4813 if (req->wct < 3) {
4814 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4815 END_PROFILE(SMBclose);
4816 return;
4819 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4822 * We can only use check_fsp if we know it's not a directory.
4825 if (!check_fsp_open(conn, req, fsp)) {
4826 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
4827 END_PROFILE(SMBclose);
4828 return;
4831 if(fsp->is_directory) {
4833 * Special case - close NT SMB directory handle.
4835 DEBUG(3,("close directory fnum=%d\n", fsp->fnum));
4836 status = close_file(req, fsp, NORMAL_CLOSE);
4837 } else {
4838 time_t t;
4840 * Close ordinary file.
4843 DEBUG(3,("close fd=%d fnum=%d (numopen=%d)\n",
4844 fsp->fh->fd, fsp->fnum,
4845 conn->num_files_open));
4848 * Take care of any time sent in the close.
4851 t = srv_make_unix_date3(req->vwv+1);
4852 set_close_write_time(fsp, convert_time_t_to_timespec(t));
4855 * close_file() returns the unix errno if an error
4856 * was detected on close - normally this is due to
4857 * a disk full error. If not then it was probably an I/O error.
4860 status = close_file(req, fsp, NORMAL_CLOSE);
4863 if (!NT_STATUS_IS_OK(status)) {
4864 reply_nterror(req, status);
4865 END_PROFILE(SMBclose);
4866 return;
4869 reply_outbuf(req, 0, 0);
4870 END_PROFILE(SMBclose);
4871 return;
4874 /****************************************************************************
4875 Reply to a writeclose (Core+ protocol).
4876 ****************************************************************************/
4878 void reply_writeclose(struct smb_request *req)
4880 connection_struct *conn = req->conn;
4881 size_t numtowrite;
4882 ssize_t nwritten = -1;
4883 NTSTATUS close_status = NT_STATUS_OK;
4884 SMB_OFF_T startpos;
4885 const char *data;
4886 struct timespec mtime;
4887 files_struct *fsp;
4888 struct lock_struct lock;
4890 START_PROFILE(SMBwriteclose);
4892 if (req->wct < 6) {
4893 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4894 END_PROFILE(SMBwriteclose);
4895 return;
4898 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4900 if (!check_fsp(conn, req, fsp)) {
4901 END_PROFILE(SMBwriteclose);
4902 return;
4904 if (!CHECK_WRITE(fsp)) {
4905 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
4906 END_PROFILE(SMBwriteclose);
4907 return;
4910 numtowrite = SVAL(req->vwv+1, 0);
4911 startpos = IVAL_TO_SMB_OFF_T(req->vwv+2, 0);
4912 mtime = convert_time_t_to_timespec(srv_make_unix_date3(req->vwv+4));
4913 data = (const char *)req->buf + 1;
4915 if (!fsp->print_file) {
4916 init_strict_lock_struct(fsp, (uint64_t)req->smbpid,
4917 (uint64_t)startpos, (uint64_t)numtowrite, WRITE_LOCK,
4918 &lock);
4920 if (!SMB_VFS_STRICT_LOCK(conn, fsp, &lock)) {
4921 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
4922 END_PROFILE(SMBwriteclose);
4923 return;
4927 nwritten = write_file(req,fsp,data,startpos,numtowrite);
4929 set_close_write_time(fsp, mtime);
4932 * More insanity. W2K only closes the file if writelen > 0.
4933 * JRA.
4936 if (numtowrite) {
4937 DEBUG(3,("reply_writeclose: zero length write doesn't close "
4938 "file %s\n", fsp_str_dbg(fsp)));
4939 close_status = close_file(req, fsp, NORMAL_CLOSE);
4942 DEBUG(3,("writeclose fnum=%d num=%d wrote=%d (numopen=%d)\n",
4943 fsp->fnum, (int)numtowrite, (int)nwritten,
4944 conn->num_files_open));
4946 if(((nwritten == 0) && (numtowrite != 0))||(nwritten < 0)) {
4947 reply_nterror(req, NT_STATUS_DISK_FULL);
4948 goto strict_unlock;
4951 if(!NT_STATUS_IS_OK(close_status)) {
4952 reply_nterror(req, close_status);
4953 goto strict_unlock;
4956 reply_outbuf(req, 1, 0);
4958 SSVAL(req->outbuf,smb_vwv0,nwritten);
4960 strict_unlock:
4961 if (numtowrite && !fsp->print_file) {
4962 SMB_VFS_STRICT_UNLOCK(conn, fsp, &lock);
4965 END_PROFILE(SMBwriteclose);
4966 return;
4969 #undef DBGC_CLASS
4970 #define DBGC_CLASS DBGC_LOCKING
4972 /****************************************************************************
4973 Reply to a lock.
4974 ****************************************************************************/
4976 void reply_lock(struct smb_request *req)
4978 connection_struct *conn = req->conn;
4979 uint64_t count,offset;
4980 NTSTATUS status;
4981 files_struct *fsp;
4982 struct byte_range_lock *br_lck = NULL;
4984 START_PROFILE(SMBlock);
4986 if (req->wct < 5) {
4987 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
4988 END_PROFILE(SMBlock);
4989 return;
4992 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
4994 if (!check_fsp(conn, req, fsp)) {
4995 END_PROFILE(SMBlock);
4996 return;
4999 count = (uint64_t)IVAL(req->vwv+1, 0);
5000 offset = (uint64_t)IVAL(req->vwv+3, 0);
5002 DEBUG(3,("lock fd=%d fnum=%d offset=%.0f count=%.0f\n",
5003 fsp->fh->fd, fsp->fnum, (double)offset, (double)count));
5005 br_lck = do_lock(req->sconn->msg_ctx,
5006 fsp,
5007 (uint64_t)req->smbpid,
5008 count,
5009 offset,
5010 WRITE_LOCK,
5011 WINDOWS_LOCK,
5012 False, /* Non-blocking lock. */
5013 &status,
5014 NULL,
5015 NULL);
5017 TALLOC_FREE(br_lck);
5019 if (NT_STATUS_V(status)) {
5020 reply_nterror(req, status);
5021 END_PROFILE(SMBlock);
5022 return;
5025 reply_outbuf(req, 0, 0);
5027 END_PROFILE(SMBlock);
5028 return;
5031 /****************************************************************************
5032 Reply to a unlock.
5033 ****************************************************************************/
5035 void reply_unlock(struct smb_request *req)
5037 connection_struct *conn = req->conn;
5038 uint64_t count,offset;
5039 NTSTATUS status;
5040 files_struct *fsp;
5042 START_PROFILE(SMBunlock);
5044 if (req->wct < 5) {
5045 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5046 END_PROFILE(SMBunlock);
5047 return;
5050 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
5052 if (!check_fsp(conn, req, fsp)) {
5053 END_PROFILE(SMBunlock);
5054 return;
5057 count = (uint64_t)IVAL(req->vwv+1, 0);
5058 offset = (uint64_t)IVAL(req->vwv+3, 0);
5060 status = do_unlock(req->sconn->msg_ctx,
5061 fsp,
5062 (uint64_t)req->smbpid,
5063 count,
5064 offset,
5065 WINDOWS_LOCK);
5067 if (NT_STATUS_V(status)) {
5068 reply_nterror(req, status);
5069 END_PROFILE(SMBunlock);
5070 return;
5073 DEBUG( 3, ( "unlock fd=%d fnum=%d offset=%.0f count=%.0f\n",
5074 fsp->fh->fd, fsp->fnum, (double)offset, (double)count ) );
5076 reply_outbuf(req, 0, 0);
5078 END_PROFILE(SMBunlock);
5079 return;
5082 #undef DBGC_CLASS
5083 #define DBGC_CLASS DBGC_ALL
5085 /****************************************************************************
5086 Reply to a tdis.
5087 conn POINTER CAN BE NULL HERE !
5088 ****************************************************************************/
5090 void reply_tdis(struct smb_request *req)
5092 connection_struct *conn = req->conn;
5093 START_PROFILE(SMBtdis);
5095 if (!conn) {
5096 DEBUG(4,("Invalid connection in tdis\n"));
5097 reply_nterror(req, NT_STATUS_NETWORK_NAME_DELETED);
5098 END_PROFILE(SMBtdis);
5099 return;
5102 conn->used = False;
5104 close_cnum(conn,req->vuid);
5105 req->conn = NULL;
5107 reply_outbuf(req, 0, 0);
5108 END_PROFILE(SMBtdis);
5109 return;
5112 /****************************************************************************
5113 Reply to a echo.
5114 conn POINTER CAN BE NULL HERE !
5115 ****************************************************************************/
5117 void reply_echo(struct smb_request *req)
5119 connection_struct *conn = req->conn;
5120 struct smb_perfcount_data local_pcd;
5121 struct smb_perfcount_data *cur_pcd;
5122 int smb_reverb;
5123 int seq_num;
5125 START_PROFILE(SMBecho);
5127 smb_init_perfcount_data(&local_pcd);
5129 if (req->wct < 1) {
5130 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5131 END_PROFILE(SMBecho);
5132 return;
5135 smb_reverb = SVAL(req->vwv+0, 0);
5137 reply_outbuf(req, 1, req->buflen);
5139 /* copy any incoming data back out */
5140 if (req->buflen > 0) {
5141 memcpy(smb_buf(req->outbuf), req->buf, req->buflen);
5144 if (smb_reverb > 100) {
5145 DEBUG(0,("large reverb (%d)?? Setting to 100\n",smb_reverb));
5146 smb_reverb = 100;
5149 for (seq_num = 1 ; seq_num <= smb_reverb ; seq_num++) {
5151 /* this makes sure we catch the request pcd */
5152 if (seq_num == smb_reverb) {
5153 cur_pcd = &req->pcd;
5154 } else {
5155 SMB_PERFCOUNT_COPY_CONTEXT(&req->pcd, &local_pcd);
5156 cur_pcd = &local_pcd;
5159 SSVAL(req->outbuf,smb_vwv0,seq_num);
5161 show_msg((char *)req->outbuf);
5162 if (!srv_send_smb(req->sconn,
5163 (char *)req->outbuf,
5164 true, req->seqnum+1,
5165 IS_CONN_ENCRYPTED(conn)||req->encrypted,
5166 cur_pcd))
5167 exit_server_cleanly("reply_echo: srv_send_smb failed.");
5170 DEBUG(3,("echo %d times\n", smb_reverb));
5172 TALLOC_FREE(req->outbuf);
5174 END_PROFILE(SMBecho);
5175 return;
5178 /****************************************************************************
5179 Reply to a printopen.
5180 ****************************************************************************/
5182 void reply_printopen(struct smb_request *req)
5184 connection_struct *conn = req->conn;
5185 files_struct *fsp;
5186 NTSTATUS status;
5188 START_PROFILE(SMBsplopen);
5190 if (req->wct < 2) {
5191 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5192 END_PROFILE(SMBsplopen);
5193 return;
5196 if (!CAN_PRINT(conn)) {
5197 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
5198 END_PROFILE(SMBsplopen);
5199 return;
5202 status = file_new(req, conn, &fsp);
5203 if(!NT_STATUS_IS_OK(status)) {
5204 reply_nterror(req, status);
5205 END_PROFILE(SMBsplopen);
5206 return;
5209 /* Open for exclusive use, write only. */
5210 status = print_spool_open(fsp, NULL, req->vuid);
5212 if (!NT_STATUS_IS_OK(status)) {
5213 file_free(req, fsp);
5214 reply_nterror(req, status);
5215 END_PROFILE(SMBsplopen);
5216 return;
5219 reply_outbuf(req, 1, 0);
5220 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
5222 DEBUG(3,("openprint fd=%d fnum=%d\n",
5223 fsp->fh->fd, fsp->fnum));
5225 END_PROFILE(SMBsplopen);
5226 return;
5229 /****************************************************************************
5230 Reply to a printclose.
5231 ****************************************************************************/
5233 void reply_printclose(struct smb_request *req)
5235 connection_struct *conn = req->conn;
5236 files_struct *fsp;
5237 NTSTATUS status;
5239 START_PROFILE(SMBsplclose);
5241 if (req->wct < 1) {
5242 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5243 END_PROFILE(SMBsplclose);
5244 return;
5247 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
5249 if (!check_fsp(conn, req, fsp)) {
5250 END_PROFILE(SMBsplclose);
5251 return;
5254 if (!CAN_PRINT(conn)) {
5255 reply_force_doserror(req, ERRSRV, ERRerror);
5256 END_PROFILE(SMBsplclose);
5257 return;
5260 DEBUG(3,("printclose fd=%d fnum=%d\n",
5261 fsp->fh->fd,fsp->fnum));
5263 status = close_file(req, fsp, NORMAL_CLOSE);
5265 if(!NT_STATUS_IS_OK(status)) {
5266 reply_nterror(req, status);
5267 END_PROFILE(SMBsplclose);
5268 return;
5271 reply_outbuf(req, 0, 0);
5273 END_PROFILE(SMBsplclose);
5274 return;
5277 /****************************************************************************
5278 Reply to a printqueue.
5279 ****************************************************************************/
5281 void reply_printqueue(struct smb_request *req)
5283 connection_struct *conn = req->conn;
5284 int max_count;
5285 int start_index;
5287 START_PROFILE(SMBsplretq);
5289 if (req->wct < 2) {
5290 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5291 END_PROFILE(SMBsplretq);
5292 return;
5295 max_count = SVAL(req->vwv+0, 0);
5296 start_index = SVAL(req->vwv+1, 0);
5298 /* we used to allow the client to get the cnum wrong, but that
5299 is really quite gross and only worked when there was only
5300 one printer - I think we should now only accept it if they
5301 get it right (tridge) */
5302 if (!CAN_PRINT(conn)) {
5303 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
5304 END_PROFILE(SMBsplretq);
5305 return;
5308 reply_outbuf(req, 2, 3);
5309 SSVAL(req->outbuf,smb_vwv0,0);
5310 SSVAL(req->outbuf,smb_vwv1,0);
5311 SCVAL(smb_buf(req->outbuf),0,1);
5312 SSVAL(smb_buf(req->outbuf),1,0);
5314 DEBUG(3,("printqueue start_index=%d max_count=%d\n",
5315 start_index, max_count));
5318 TALLOC_CTX *mem_ctx = talloc_tos();
5319 NTSTATUS status;
5320 WERROR werr;
5321 const char *sharename = lp_servicename(SNUM(conn));
5322 struct rpc_pipe_client *cli = NULL;
5323 struct dcerpc_binding_handle *b = NULL;
5324 struct policy_handle handle;
5325 struct spoolss_DevmodeContainer devmode_ctr;
5326 union spoolss_JobInfo *info;
5327 uint32_t count;
5328 uint32_t num_to_get;
5329 uint32_t first;
5330 uint32_t i;
5332 ZERO_STRUCT(handle);
5334 status = rpc_pipe_open_interface(conn,
5335 &ndr_table_spoolss.syntax_id,
5336 conn->server_info,
5337 &conn->sconn->client_id,
5338 conn->sconn->msg_ctx,
5339 &cli);
5340 if (!NT_STATUS_IS_OK(status)) {
5341 DEBUG(0, ("reply_printqueue: "
5342 "could not connect to spoolss: %s\n",
5343 nt_errstr(status)));
5344 reply_nterror(req, status);
5345 goto out;
5347 b = cli->binding_handle;
5349 ZERO_STRUCT(devmode_ctr);
5351 status = dcerpc_spoolss_OpenPrinter(b, mem_ctx,
5352 sharename,
5353 NULL, devmode_ctr,
5354 SEC_FLAG_MAXIMUM_ALLOWED,
5355 &handle,
5356 &werr);
5357 if (!NT_STATUS_IS_OK(status)) {
5358 reply_nterror(req, status);
5359 goto out;
5361 if (!W_ERROR_IS_OK(werr)) {
5362 reply_nterror(req, werror_to_ntstatus(werr));
5363 goto out;
5366 werr = rpccli_spoolss_enumjobs(cli, mem_ctx,
5367 &handle,
5368 0, /* firstjob */
5369 0xff, /* numjobs */
5370 2, /* level */
5371 0, /* offered */
5372 &count,
5373 &info);
5374 if (!W_ERROR_IS_OK(werr)) {
5375 reply_nterror(req, werror_to_ntstatus(werr));
5376 goto out;
5379 if (max_count > 0) {
5380 first = start_index;
5381 } else {
5382 first = start_index + max_count + 1;
5385 if (first >= count) {
5386 num_to_get = first;
5387 } else {
5388 num_to_get = first + MIN(ABS(max_count), count - first);
5391 for (i = first; i < num_to_get; i++) {
5392 char blob[28];
5393 char *p = blob;
5394 time_t qtime = spoolss_Time_to_time_t(&info[i].info2.submitted);
5395 int qstatus;
5396 uint16_t qrapjobid = pjobid_to_rap(sharename,
5397 info[i].info2.job_id);
5399 if (info[i].info2.status == JOB_STATUS_PRINTING) {
5400 qstatus = 2;
5401 } else {
5402 qstatus = 3;
5405 srv_put_dos_date2(p, 0, qtime);
5406 SCVAL(p, 4, qstatus);
5407 SSVAL(p, 5, qrapjobid);
5408 SIVAL(p, 7, info[i].info2.size);
5409 SCVAL(p, 11, 0);
5410 srvstr_push(blob, req->flags2, p+12,
5411 info[i].info2.notify_name, 16, STR_ASCII);
5413 if (message_push_blob(
5414 &req->outbuf,
5415 data_blob_const(
5416 blob, sizeof(blob))) == -1) {
5417 reply_nterror(req, NT_STATUS_NO_MEMORY);
5418 goto out;
5422 if (count > 0) {
5423 SSVAL(req->outbuf,smb_vwv0,count);
5424 SSVAL(req->outbuf,smb_vwv1,
5425 (max_count>0?first+count:first-1));
5426 SCVAL(smb_buf(req->outbuf),0,1);
5427 SSVAL(smb_buf(req->outbuf),1,28*count);
5431 DEBUG(3, ("%u entries returned in queue\n",
5432 (unsigned)count));
5434 out:
5435 if (b && is_valid_policy_hnd(&handle)) {
5436 dcerpc_spoolss_ClosePrinter(b, mem_ctx, &handle, &werr);
5441 END_PROFILE(SMBsplretq);
5442 return;
5445 /****************************************************************************
5446 Reply to a printwrite.
5447 ****************************************************************************/
5449 void reply_printwrite(struct smb_request *req)
5451 connection_struct *conn = req->conn;
5452 int numtowrite;
5453 const char *data;
5454 files_struct *fsp;
5456 START_PROFILE(SMBsplwr);
5458 if (req->wct < 1) {
5459 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5460 END_PROFILE(SMBsplwr);
5461 return;
5464 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
5466 if (!check_fsp(conn, req, fsp)) {
5467 END_PROFILE(SMBsplwr);
5468 return;
5471 if (!fsp->print_file) {
5472 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
5473 END_PROFILE(SMBsplwr);
5474 return;
5477 if (!CHECK_WRITE(fsp)) {
5478 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
5479 END_PROFILE(SMBsplwr);
5480 return;
5483 numtowrite = SVAL(req->buf, 1);
5485 if (req->buflen < numtowrite + 3) {
5486 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
5487 END_PROFILE(SMBsplwr);
5488 return;
5491 data = (const char *)req->buf + 3;
5493 if (write_file(req,fsp,data,(SMB_OFF_T)-1,numtowrite) != numtowrite) {
5494 reply_nterror(req, map_nt_error_from_unix(errno));
5495 END_PROFILE(SMBsplwr);
5496 return;
5499 DEBUG( 3, ( "printwrite fnum=%d num=%d\n", fsp->fnum, numtowrite ) );
5501 END_PROFILE(SMBsplwr);
5502 return;
5505 /****************************************************************************
5506 Reply to a mkdir.
5507 ****************************************************************************/
5509 void reply_mkdir(struct smb_request *req)
5511 connection_struct *conn = req->conn;
5512 struct smb_filename *smb_dname = NULL;
5513 char *directory = NULL;
5514 NTSTATUS status;
5515 TALLOC_CTX *ctx = talloc_tos();
5517 START_PROFILE(SMBmkdir);
5519 srvstr_get_path_req(ctx, req, &directory, (const char *)req->buf + 1,
5520 STR_TERMINATE, &status);
5521 if (!NT_STATUS_IS_OK(status)) {
5522 reply_nterror(req, status);
5523 goto out;
5526 status = filename_convert(ctx, conn,
5527 req->flags2 & FLAGS2_DFS_PATHNAMES,
5528 directory,
5530 NULL,
5531 &smb_dname);
5532 if (!NT_STATUS_IS_OK(status)) {
5533 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
5534 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
5535 ERRSRV, ERRbadpath);
5536 goto out;
5538 reply_nterror(req, status);
5539 goto out;
5542 status = create_directory(conn, req, smb_dname);
5544 DEBUG(5, ("create_directory returned %s\n", nt_errstr(status)));
5546 if (!NT_STATUS_IS_OK(status)) {
5548 if (!use_nt_status()
5549 && NT_STATUS_EQUAL(status,
5550 NT_STATUS_OBJECT_NAME_COLLISION)) {
5552 * Yes, in the DOS error code case we get a
5553 * ERRDOS:ERRnoaccess here. See BASE-SAMBA3ERROR
5554 * samba4 torture test.
5556 status = NT_STATUS_DOS(ERRDOS, ERRnoaccess);
5559 reply_nterror(req, status);
5560 goto out;
5563 reply_outbuf(req, 0, 0);
5565 DEBUG(3, ("mkdir %s\n", smb_dname->base_name));
5566 out:
5567 TALLOC_FREE(smb_dname);
5568 END_PROFILE(SMBmkdir);
5569 return;
5572 /****************************************************************************
5573 Reply to a rmdir.
5574 ****************************************************************************/
5576 void reply_rmdir(struct smb_request *req)
5578 connection_struct *conn = req->conn;
5579 struct smb_filename *smb_dname = NULL;
5580 char *directory = NULL;
5581 NTSTATUS status;
5582 TALLOC_CTX *ctx = talloc_tos();
5583 files_struct *fsp = NULL;
5584 int info = 0;
5585 struct smbd_server_connection *sconn = req->sconn;
5587 START_PROFILE(SMBrmdir);
5589 srvstr_get_path_req(ctx, req, &directory, (const char *)req->buf + 1,
5590 STR_TERMINATE, &status);
5591 if (!NT_STATUS_IS_OK(status)) {
5592 reply_nterror(req, status);
5593 goto out;
5596 status = filename_convert(ctx, conn,
5597 req->flags2 & FLAGS2_DFS_PATHNAMES,
5598 directory,
5600 NULL,
5601 &smb_dname);
5602 if (!NT_STATUS_IS_OK(status)) {
5603 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
5604 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
5605 ERRSRV, ERRbadpath);
5606 goto out;
5608 reply_nterror(req, status);
5609 goto out;
5612 if (is_ntfs_stream_smb_fname(smb_dname)) {
5613 reply_nterror(req, NT_STATUS_NOT_A_DIRECTORY);
5614 goto out;
5617 status = SMB_VFS_CREATE_FILE(
5618 conn, /* conn */
5619 req, /* req */
5620 0, /* root_dir_fid */
5621 smb_dname, /* fname */
5622 DELETE_ACCESS, /* access_mask */
5623 (FILE_SHARE_READ | FILE_SHARE_WRITE | /* share_access */
5624 FILE_SHARE_DELETE),
5625 FILE_OPEN, /* create_disposition*/
5626 FILE_DIRECTORY_FILE, /* create_options */
5627 FILE_ATTRIBUTE_DIRECTORY, /* file_attributes */
5628 0, /* oplock_request */
5629 0, /* allocation_size */
5630 0, /* private_flags */
5631 NULL, /* sd */
5632 NULL, /* ea_list */
5633 &fsp, /* result */
5634 &info); /* pinfo */
5636 if (!NT_STATUS_IS_OK(status)) {
5637 if (open_was_deferred(req->mid)) {
5638 /* We have re-scheduled this call. */
5639 goto out;
5641 reply_nterror(req, status);
5642 goto out;
5645 status = can_set_delete_on_close(fsp, FILE_ATTRIBUTE_DIRECTORY);
5646 if (!NT_STATUS_IS_OK(status)) {
5647 close_file(req, fsp, ERROR_CLOSE);
5648 reply_nterror(req, status);
5649 goto out;
5652 if (!set_delete_on_close(fsp, true, &conn->server_info->utok)) {
5653 close_file(req, fsp, ERROR_CLOSE);
5654 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
5655 goto out;
5658 status = close_file(req, fsp, NORMAL_CLOSE);
5659 if (!NT_STATUS_IS_OK(status)) {
5660 reply_nterror(req, status);
5661 } else {
5662 reply_outbuf(req, 0, 0);
5665 dptr_closepath(sconn, smb_dname->base_name, req->smbpid);
5667 DEBUG(3, ("rmdir %s\n", smb_fname_str_dbg(smb_dname)));
5668 out:
5669 TALLOC_FREE(smb_dname);
5670 END_PROFILE(SMBrmdir);
5671 return;
5674 /*******************************************************************
5675 Resolve wildcards in a filename rename.
5676 ********************************************************************/
5678 static bool resolve_wildcards(TALLOC_CTX *ctx,
5679 const char *name1,
5680 const char *name2,
5681 char **pp_newname)
5683 char *name2_copy = NULL;
5684 char *root1 = NULL;
5685 char *root2 = NULL;
5686 char *ext1 = NULL;
5687 char *ext2 = NULL;
5688 char *p,*p2, *pname1, *pname2;
5690 name2_copy = talloc_strdup(ctx, name2);
5691 if (!name2_copy) {
5692 return False;
5695 pname1 = strrchr_m(name1,'/');
5696 pname2 = strrchr_m(name2_copy,'/');
5698 if (!pname1 || !pname2) {
5699 return False;
5702 /* Truncate the copy of name2 at the last '/' */
5703 *pname2 = '\0';
5705 /* Now go past the '/' */
5706 pname1++;
5707 pname2++;
5709 root1 = talloc_strdup(ctx, pname1);
5710 root2 = talloc_strdup(ctx, pname2);
5712 if (!root1 || !root2) {
5713 return False;
5716 p = strrchr_m(root1,'.');
5717 if (p) {
5718 *p = 0;
5719 ext1 = talloc_strdup(ctx, p+1);
5720 } else {
5721 ext1 = talloc_strdup(ctx, "");
5723 p = strrchr_m(root2,'.');
5724 if (p) {
5725 *p = 0;
5726 ext2 = talloc_strdup(ctx, p+1);
5727 } else {
5728 ext2 = talloc_strdup(ctx, "");
5731 if (!ext1 || !ext2) {
5732 return False;
5735 p = root1;
5736 p2 = root2;
5737 while (*p2) {
5738 if (*p2 == '?') {
5739 /* Hmmm. Should this be mb-aware ? */
5740 *p2 = *p;
5741 p2++;
5742 } else if (*p2 == '*') {
5743 *p2 = '\0';
5744 root2 = talloc_asprintf(ctx, "%s%s",
5745 root2,
5747 if (!root2) {
5748 return False;
5750 break;
5751 } else {
5752 p2++;
5754 if (*p) {
5755 p++;
5759 p = ext1;
5760 p2 = ext2;
5761 while (*p2) {
5762 if (*p2 == '?') {
5763 /* Hmmm. Should this be mb-aware ? */
5764 *p2 = *p;
5765 p2++;
5766 } else if (*p2 == '*') {
5767 *p2 = '\0';
5768 ext2 = talloc_asprintf(ctx, "%s%s",
5769 ext2,
5771 if (!ext2) {
5772 return False;
5774 break;
5775 } else {
5776 p2++;
5778 if (*p) {
5779 p++;
5783 if (*ext2) {
5784 *pp_newname = talloc_asprintf(ctx, "%s/%s.%s",
5785 name2_copy,
5786 root2,
5787 ext2);
5788 } else {
5789 *pp_newname = talloc_asprintf(ctx, "%s/%s",
5790 name2_copy,
5791 root2);
5794 if (!*pp_newname) {
5795 return False;
5798 return True;
5801 /****************************************************************************
5802 Ensure open files have their names updated. Updated to notify other smbd's
5803 asynchronously.
5804 ****************************************************************************/
5806 static void rename_open_files(connection_struct *conn,
5807 struct share_mode_lock *lck,
5808 uint32_t orig_name_hash,
5809 const struct smb_filename *smb_fname_dst)
5811 files_struct *fsp;
5812 bool did_rename = False;
5813 NTSTATUS status;
5814 uint32_t new_name_hash;
5816 for(fsp = file_find_di_first(conn->sconn, lck->id); fsp;
5817 fsp = file_find_di_next(fsp)) {
5818 /* fsp_name is a relative path under the fsp. To change this for other
5819 sharepaths we need to manipulate relative paths. */
5820 /* TODO - create the absolute path and manipulate the newname
5821 relative to the sharepath. */
5822 if (!strequal(fsp->conn->connectpath, conn->connectpath)) {
5823 continue;
5825 if (fsp->name_hash != orig_name_hash) {
5826 continue;
5828 DEBUG(10, ("rename_open_files: renaming file fnum %d "
5829 "(file_id %s) from %s -> %s\n", fsp->fnum,
5830 file_id_string_tos(&fsp->file_id), fsp_str_dbg(fsp),
5831 smb_fname_str_dbg(smb_fname_dst)));
5833 status = fsp_set_smb_fname(fsp, smb_fname_dst);
5834 if (NT_STATUS_IS_OK(status)) {
5835 did_rename = True;
5836 new_name_hash = fsp->name_hash;
5840 if (!did_rename) {
5841 DEBUG(10, ("rename_open_files: no open files on file_id %s "
5842 "for %s\n", file_id_string_tos(&lck->id),
5843 smb_fname_str_dbg(smb_fname_dst)));
5846 /* Send messages to all smbd's (not ourself) that the name has changed. */
5847 rename_share_filename(conn->sconn->msg_ctx, lck, conn->connectpath,
5848 orig_name_hash, new_name_hash,
5849 smb_fname_dst);
5853 /****************************************************************************
5854 We need to check if the source path is a parent directory of the destination
5855 (ie. a rename of /foo/bar/baz -> /foo/bar/baz/bibble/bobble. If so we must
5856 refuse the rename with a sharing violation. Under UNIX the above call can
5857 *succeed* if /foo/bar/baz is a symlink to another area in the share. We
5858 probably need to check that the client is a Windows one before disallowing
5859 this as a UNIX client (one with UNIX extensions) can know the source is a
5860 symlink and make this decision intelligently. Found by an excellent bug
5861 report from <AndyLiebman@aol.com>.
5862 ****************************************************************************/
5864 static bool rename_path_prefix_equal(const struct smb_filename *smb_fname_src,
5865 const struct smb_filename *smb_fname_dst)
5867 const char *psrc = smb_fname_src->base_name;
5868 const char *pdst = smb_fname_dst->base_name;
5869 size_t slen;
5871 if (psrc[0] == '.' && psrc[1] == '/') {
5872 psrc += 2;
5874 if (pdst[0] == '.' && pdst[1] == '/') {
5875 pdst += 2;
5877 if ((slen = strlen(psrc)) > strlen(pdst)) {
5878 return False;
5880 return ((memcmp(psrc, pdst, slen) == 0) && pdst[slen] == '/');
5884 * Do the notify calls from a rename
5887 static void notify_rename(connection_struct *conn, bool is_dir,
5888 const struct smb_filename *smb_fname_src,
5889 const struct smb_filename *smb_fname_dst)
5891 char *parent_dir_src = NULL;
5892 char *parent_dir_dst = NULL;
5893 uint32 mask;
5895 mask = is_dir ? FILE_NOTIFY_CHANGE_DIR_NAME
5896 : FILE_NOTIFY_CHANGE_FILE_NAME;
5898 if (!parent_dirname(talloc_tos(), smb_fname_src->base_name,
5899 &parent_dir_src, NULL) ||
5900 !parent_dirname(talloc_tos(), smb_fname_dst->base_name,
5901 &parent_dir_dst, NULL)) {
5902 goto out;
5905 if (strcmp(parent_dir_src, parent_dir_dst) == 0) {
5906 notify_fname(conn, NOTIFY_ACTION_OLD_NAME, mask,
5907 smb_fname_src->base_name);
5908 notify_fname(conn, NOTIFY_ACTION_NEW_NAME, mask,
5909 smb_fname_dst->base_name);
5911 else {
5912 notify_fname(conn, NOTIFY_ACTION_REMOVED, mask,
5913 smb_fname_src->base_name);
5914 notify_fname(conn, NOTIFY_ACTION_ADDED, mask,
5915 smb_fname_dst->base_name);
5918 /* this is a strange one. w2k3 gives an additional event for
5919 CHANGE_ATTRIBUTES and CHANGE_CREATION on the new file when renaming
5920 files, but not directories */
5921 if (!is_dir) {
5922 notify_fname(conn, NOTIFY_ACTION_MODIFIED,
5923 FILE_NOTIFY_CHANGE_ATTRIBUTES
5924 |FILE_NOTIFY_CHANGE_CREATION,
5925 smb_fname_dst->base_name);
5927 out:
5928 TALLOC_FREE(parent_dir_src);
5929 TALLOC_FREE(parent_dir_dst);
5932 /****************************************************************************
5933 Rename an open file - given an fsp.
5934 ****************************************************************************/
5936 NTSTATUS rename_internals_fsp(connection_struct *conn,
5937 files_struct *fsp,
5938 const struct smb_filename *smb_fname_dst_in,
5939 uint32 attrs,
5940 bool replace_if_exists)
5942 TALLOC_CTX *ctx = talloc_tos();
5943 struct smb_filename *smb_fname_dst = NULL;
5944 NTSTATUS status = NT_STATUS_OK;
5945 struct share_mode_lock *lck = NULL;
5946 bool dst_exists, old_is_stream, new_is_stream;
5948 status = check_name(conn, smb_fname_dst_in->base_name);
5949 if (!NT_STATUS_IS_OK(status)) {
5950 return status;
5953 /* Make a copy of the dst smb_fname structs */
5955 status = copy_smb_filename(ctx, smb_fname_dst_in, &smb_fname_dst);
5956 if (!NT_STATUS_IS_OK(status)) {
5957 goto out;
5961 * Check for special case with case preserving and not
5962 * case sensitive. If the old last component differs from the original
5963 * last component only by case, then we should allow
5964 * the rename (user is trying to change the case of the
5965 * filename).
5967 if((conn->case_sensitive == False) && (conn->case_preserve == True) &&
5968 strequal(fsp->fsp_name->base_name, smb_fname_dst->base_name) &&
5969 strequal(fsp->fsp_name->stream_name, smb_fname_dst->stream_name)) {
5970 char *last_slash;
5971 char *fname_dst_lcomp_base_mod = NULL;
5972 struct smb_filename *smb_fname_orig_lcomp = NULL;
5975 * Get the last component of the destination name.
5977 last_slash = strrchr_m(smb_fname_dst->base_name, '/');
5978 if (last_slash) {
5979 fname_dst_lcomp_base_mod = talloc_strdup(ctx, last_slash + 1);
5980 } else {
5981 fname_dst_lcomp_base_mod = talloc_strdup(ctx, smb_fname_dst->base_name);
5983 if (!fname_dst_lcomp_base_mod) {
5984 status = NT_STATUS_NO_MEMORY;
5985 goto out;
5989 * Create an smb_filename struct using the original last
5990 * component of the destination.
5992 status = create_synthetic_smb_fname_split(ctx,
5993 smb_fname_dst->original_lcomp, NULL,
5994 &smb_fname_orig_lcomp);
5995 if (!NT_STATUS_IS_OK(status)) {
5996 TALLOC_FREE(fname_dst_lcomp_base_mod);
5997 goto out;
6000 /* If the base names only differ by case, use original. */
6001 if(!strcsequal(fname_dst_lcomp_base_mod,
6002 smb_fname_orig_lcomp->base_name)) {
6003 char *tmp;
6005 * Replace the modified last component with the
6006 * original.
6008 if (last_slash) {
6009 *last_slash = '\0'; /* Truncate at the '/' */
6010 tmp = talloc_asprintf(smb_fname_dst,
6011 "%s/%s",
6012 smb_fname_dst->base_name,
6013 smb_fname_orig_lcomp->base_name);
6014 } else {
6015 tmp = talloc_asprintf(smb_fname_dst,
6016 "%s",
6017 smb_fname_orig_lcomp->base_name);
6019 if (tmp == NULL) {
6020 status = NT_STATUS_NO_MEMORY;
6021 TALLOC_FREE(fname_dst_lcomp_base_mod);
6022 TALLOC_FREE(smb_fname_orig_lcomp);
6023 goto out;
6025 TALLOC_FREE(smb_fname_dst->base_name);
6026 smb_fname_dst->base_name = tmp;
6029 /* If the stream_names only differ by case, use original. */
6030 if(!strcsequal(smb_fname_dst->stream_name,
6031 smb_fname_orig_lcomp->stream_name)) {
6032 char *tmp = NULL;
6033 /* Use the original stream. */
6034 tmp = talloc_strdup(smb_fname_dst,
6035 smb_fname_orig_lcomp->stream_name);
6036 if (tmp == NULL) {
6037 status = NT_STATUS_NO_MEMORY;
6038 TALLOC_FREE(fname_dst_lcomp_base_mod);
6039 TALLOC_FREE(smb_fname_orig_lcomp);
6040 goto out;
6042 TALLOC_FREE(smb_fname_dst->stream_name);
6043 smb_fname_dst->stream_name = tmp;
6045 TALLOC_FREE(fname_dst_lcomp_base_mod);
6046 TALLOC_FREE(smb_fname_orig_lcomp);
6050 * If the src and dest names are identical - including case,
6051 * don't do the rename, just return success.
6054 if (strcsequal(fsp->fsp_name->base_name, smb_fname_dst->base_name) &&
6055 strcsequal(fsp->fsp_name->stream_name,
6056 smb_fname_dst->stream_name)) {
6057 DEBUG(3, ("rename_internals_fsp: identical names in rename %s "
6058 "- returning success\n",
6059 smb_fname_str_dbg(smb_fname_dst)));
6060 status = NT_STATUS_OK;
6061 goto out;
6064 old_is_stream = is_ntfs_stream_smb_fname(fsp->fsp_name);
6065 new_is_stream = is_ntfs_stream_smb_fname(smb_fname_dst);
6067 /* Return the correct error code if both names aren't streams. */
6068 if (!old_is_stream && new_is_stream) {
6069 status = NT_STATUS_OBJECT_NAME_INVALID;
6070 goto out;
6073 if (old_is_stream && !new_is_stream) {
6074 status = NT_STATUS_INVALID_PARAMETER;
6075 goto out;
6078 dst_exists = SMB_VFS_STAT(conn, smb_fname_dst) == 0;
6080 if(!replace_if_exists && dst_exists) {
6081 DEBUG(3, ("rename_internals_fsp: dest exists doing rename "
6082 "%s -> %s\n", smb_fname_str_dbg(fsp->fsp_name),
6083 smb_fname_str_dbg(smb_fname_dst)));
6084 status = NT_STATUS_OBJECT_NAME_COLLISION;
6085 goto out;
6088 if (dst_exists) {
6089 struct file_id fileid = vfs_file_id_from_sbuf(conn,
6090 &smb_fname_dst->st);
6091 files_struct *dst_fsp = file_find_di_first(conn->sconn,
6092 fileid);
6093 /* The file can be open when renaming a stream */
6094 if (dst_fsp && !new_is_stream) {
6095 DEBUG(3, ("rename_internals_fsp: Target file open\n"));
6096 status = NT_STATUS_ACCESS_DENIED;
6097 goto out;
6101 /* Ensure we have a valid stat struct for the source. */
6102 status = vfs_stat_fsp(fsp);
6103 if (!NT_STATUS_IS_OK(status)) {
6104 goto out;
6107 status = can_rename(conn, fsp, attrs);
6109 if (!NT_STATUS_IS_OK(status)) {
6110 DEBUG(3, ("rename_internals_fsp: Error %s rename %s -> %s\n",
6111 nt_errstr(status), smb_fname_str_dbg(fsp->fsp_name),
6112 smb_fname_str_dbg(smb_fname_dst)));
6113 if (NT_STATUS_EQUAL(status,NT_STATUS_SHARING_VIOLATION))
6114 status = NT_STATUS_ACCESS_DENIED;
6115 goto out;
6118 if (rename_path_prefix_equal(fsp->fsp_name, smb_fname_dst)) {
6119 status = NT_STATUS_ACCESS_DENIED;
6122 lck = get_share_mode_lock(talloc_tos(), fsp->file_id, NULL, NULL,
6123 NULL);
6126 * We have the file open ourselves, so not being able to get the
6127 * corresponding share mode lock is a fatal error.
6130 SMB_ASSERT(lck != NULL);
6132 if(SMB_VFS_RENAME(conn, fsp->fsp_name, smb_fname_dst) == 0) {
6133 uint32 create_options = fsp->fh->private_options;
6135 DEBUG(3, ("rename_internals_fsp: succeeded doing rename on "
6136 "%s -> %s\n", smb_fname_str_dbg(fsp->fsp_name),
6137 smb_fname_str_dbg(smb_fname_dst)));
6139 if (!lp_posix_pathnames() &&
6140 (lp_map_archive(SNUM(conn)) ||
6141 lp_store_dos_attributes(SNUM(conn)))) {
6142 /* We must set the archive bit on the newly
6143 renamed file. */
6144 if (SMB_VFS_STAT(conn, smb_fname_dst) == 0) {
6145 uint32_t old_dosmode = dos_mode(conn,
6146 smb_fname_dst);
6147 file_set_dosmode(conn,
6148 smb_fname_dst,
6149 old_dosmode | FILE_ATTRIBUTE_ARCHIVE,
6150 NULL,
6151 true);
6155 notify_rename(conn, fsp->is_directory, fsp->fsp_name,
6156 smb_fname_dst);
6158 rename_open_files(conn, lck, fsp->name_hash, smb_fname_dst);
6161 * A rename acts as a new file create w.r.t. allowing an initial delete
6162 * on close, probably because in Windows there is a new handle to the
6163 * new file. If initial delete on close was requested but not
6164 * originally set, we need to set it here. This is probably not 100% correct,
6165 * but will work for the CIFSFS client which in non-posix mode
6166 * depends on these semantics. JRA.
6169 if (create_options & FILE_DELETE_ON_CLOSE) {
6170 status = can_set_delete_on_close(fsp, 0);
6172 if (NT_STATUS_IS_OK(status)) {
6173 /* Note that here we set the *inital* delete on close flag,
6174 * not the regular one. The magic gets handled in close. */
6175 fsp->initial_delete_on_close = True;
6178 TALLOC_FREE(lck);
6179 status = NT_STATUS_OK;
6180 goto out;
6183 TALLOC_FREE(lck);
6185 if (errno == ENOTDIR || errno == EISDIR) {
6186 status = NT_STATUS_OBJECT_NAME_COLLISION;
6187 } else {
6188 status = map_nt_error_from_unix(errno);
6191 DEBUG(3, ("rename_internals_fsp: Error %s rename %s -> %s\n",
6192 nt_errstr(status), smb_fname_str_dbg(fsp->fsp_name),
6193 smb_fname_str_dbg(smb_fname_dst)));
6195 out:
6196 TALLOC_FREE(smb_fname_dst);
6198 return status;
6201 /****************************************************************************
6202 The guts of the rename command, split out so it may be called by the NT SMB
6203 code.
6204 ****************************************************************************/
6206 NTSTATUS rename_internals(TALLOC_CTX *ctx,
6207 connection_struct *conn,
6208 struct smb_request *req,
6209 struct smb_filename *smb_fname_src,
6210 struct smb_filename *smb_fname_dst,
6211 uint32 attrs,
6212 bool replace_if_exists,
6213 bool src_has_wild,
6214 bool dest_has_wild,
6215 uint32_t access_mask)
6217 char *fname_src_dir = NULL;
6218 char *fname_src_mask = NULL;
6219 int count=0;
6220 NTSTATUS status = NT_STATUS_OK;
6221 struct smb_Dir *dir_hnd = NULL;
6222 const char *dname = NULL;
6223 char *talloced = NULL;
6224 long offset = 0;
6225 int create_options = 0;
6226 bool posix_pathnames = lp_posix_pathnames();
6229 * Split the old name into directory and last component
6230 * strings. Note that unix_convert may have stripped off a
6231 * leading ./ from both name and newname if the rename is
6232 * at the root of the share. We need to make sure either both
6233 * name and newname contain a / character or neither of them do
6234 * as this is checked in resolve_wildcards().
6237 /* Split up the directory from the filename/mask. */
6238 status = split_fname_dir_mask(ctx, smb_fname_src->base_name,
6239 &fname_src_dir, &fname_src_mask);
6240 if (!NT_STATUS_IS_OK(status)) {
6241 status = NT_STATUS_NO_MEMORY;
6242 goto out;
6246 * We should only check the mangled cache
6247 * here if unix_convert failed. This means
6248 * that the path in 'mask' doesn't exist
6249 * on the file system and so we need to look
6250 * for a possible mangle. This patch from
6251 * Tine Smukavec <valentin.smukavec@hermes.si>.
6254 if (!VALID_STAT(smb_fname_src->st) &&
6255 mangle_is_mangled(fname_src_mask, conn->params)) {
6256 char *new_mask = NULL;
6257 mangle_lookup_name_from_8_3(ctx, fname_src_mask, &new_mask,
6258 conn->params);
6259 if (new_mask) {
6260 TALLOC_FREE(fname_src_mask);
6261 fname_src_mask = new_mask;
6265 if (!src_has_wild) {
6266 files_struct *fsp;
6269 * Only one file needs to be renamed. Append the mask back
6270 * onto the directory.
6272 TALLOC_FREE(smb_fname_src->base_name);
6273 if (ISDOT(fname_src_dir)) {
6274 /* Ensure we use canonical names on open. */
6275 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6276 "%s",
6277 fname_src_mask);
6278 } else {
6279 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6280 "%s/%s",
6281 fname_src_dir,
6282 fname_src_mask);
6284 if (!smb_fname_src->base_name) {
6285 status = NT_STATUS_NO_MEMORY;
6286 goto out;
6289 DEBUG(3, ("rename_internals: case_sensitive = %d, "
6290 "case_preserve = %d, short case preserve = %d, "
6291 "directory = %s, newname = %s, "
6292 "last_component_dest = %s\n",
6293 conn->case_sensitive, conn->case_preserve,
6294 conn->short_case_preserve,
6295 smb_fname_str_dbg(smb_fname_src),
6296 smb_fname_str_dbg(smb_fname_dst),
6297 smb_fname_dst->original_lcomp));
6299 /* The dest name still may have wildcards. */
6300 if (dest_has_wild) {
6301 char *fname_dst_mod = NULL;
6302 if (!resolve_wildcards(smb_fname_dst,
6303 smb_fname_src->base_name,
6304 smb_fname_dst->base_name,
6305 &fname_dst_mod)) {
6306 DEBUG(6, ("rename_internals: resolve_wildcards "
6307 "%s %s failed\n",
6308 smb_fname_src->base_name,
6309 smb_fname_dst->base_name));
6310 status = NT_STATUS_NO_MEMORY;
6311 goto out;
6313 TALLOC_FREE(smb_fname_dst->base_name);
6314 smb_fname_dst->base_name = fname_dst_mod;
6317 ZERO_STRUCT(smb_fname_src->st);
6318 if (posix_pathnames) {
6319 SMB_VFS_LSTAT(conn, smb_fname_src);
6320 } else {
6321 SMB_VFS_STAT(conn, smb_fname_src);
6324 if (S_ISDIR(smb_fname_src->st.st_ex_mode)) {
6325 create_options |= FILE_DIRECTORY_FILE;
6328 status = SMB_VFS_CREATE_FILE(
6329 conn, /* conn */
6330 req, /* req */
6331 0, /* root_dir_fid */
6332 smb_fname_src, /* fname */
6333 access_mask, /* access_mask */
6334 (FILE_SHARE_READ | /* share_access */
6335 FILE_SHARE_WRITE),
6336 FILE_OPEN, /* create_disposition*/
6337 create_options, /* create_options */
6338 posix_pathnames ? FILE_FLAG_POSIX_SEMANTICS|0777 : 0, /* file_attributes */
6339 0, /* oplock_request */
6340 0, /* allocation_size */
6341 0, /* private_flags */
6342 NULL, /* sd */
6343 NULL, /* ea_list */
6344 &fsp, /* result */
6345 NULL); /* pinfo */
6347 if (!NT_STATUS_IS_OK(status)) {
6348 DEBUG(3, ("Could not open rename source %s: %s\n",
6349 smb_fname_str_dbg(smb_fname_src),
6350 nt_errstr(status)));
6351 goto out;
6354 status = rename_internals_fsp(conn, fsp, smb_fname_dst,
6355 attrs, replace_if_exists);
6357 close_file(req, fsp, NORMAL_CLOSE);
6359 DEBUG(3, ("rename_internals: Error %s rename %s -> %s\n",
6360 nt_errstr(status), smb_fname_str_dbg(smb_fname_src),
6361 smb_fname_str_dbg(smb_fname_dst)));
6363 goto out;
6367 * Wildcards - process each file that matches.
6369 if (strequal(fname_src_mask, "????????.???")) {
6370 TALLOC_FREE(fname_src_mask);
6371 fname_src_mask = talloc_strdup(ctx, "*");
6372 if (!fname_src_mask) {
6373 status = NT_STATUS_NO_MEMORY;
6374 goto out;
6378 status = check_name(conn, fname_src_dir);
6379 if (!NT_STATUS_IS_OK(status)) {
6380 goto out;
6383 dir_hnd = OpenDir(talloc_tos(), conn, fname_src_dir, fname_src_mask,
6384 attrs);
6385 if (dir_hnd == NULL) {
6386 status = map_nt_error_from_unix(errno);
6387 goto out;
6390 status = NT_STATUS_NO_SUCH_FILE;
6392 * Was status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
6393 * - gentest fix. JRA
6396 while ((dname = ReadDirName(dir_hnd, &offset, &smb_fname_src->st,
6397 &talloced))) {
6398 files_struct *fsp = NULL;
6399 char *destname = NULL;
6400 bool sysdir_entry = False;
6402 /* Quick check for "." and ".." */
6403 if (ISDOT(dname) || ISDOTDOT(dname)) {
6404 if (attrs & aDIR) {
6405 sysdir_entry = True;
6406 } else {
6407 TALLOC_FREE(talloced);
6408 continue;
6412 if (!is_visible_file(conn, fname_src_dir, dname,
6413 &smb_fname_src->st, false)) {
6414 TALLOC_FREE(talloced);
6415 continue;
6418 if(!mask_match(dname, fname_src_mask, conn->case_sensitive)) {
6419 TALLOC_FREE(talloced);
6420 continue;
6423 if (sysdir_entry) {
6424 status = NT_STATUS_OBJECT_NAME_INVALID;
6425 break;
6428 TALLOC_FREE(smb_fname_src->base_name);
6429 if (ISDOT(fname_src_dir)) {
6430 /* Ensure we use canonical names on open. */
6431 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6432 "%s",
6433 dname);
6434 } else {
6435 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6436 "%s/%s",
6437 fname_src_dir,
6438 dname);
6440 if (!smb_fname_src->base_name) {
6441 status = NT_STATUS_NO_MEMORY;
6442 goto out;
6445 if (!resolve_wildcards(ctx, smb_fname_src->base_name,
6446 smb_fname_dst->base_name,
6447 &destname)) {
6448 DEBUG(6, ("resolve_wildcards %s %s failed\n",
6449 smb_fname_src->base_name, destname));
6450 TALLOC_FREE(talloced);
6451 continue;
6453 if (!destname) {
6454 status = NT_STATUS_NO_MEMORY;
6455 goto out;
6458 TALLOC_FREE(smb_fname_dst->base_name);
6459 smb_fname_dst->base_name = destname;
6461 ZERO_STRUCT(smb_fname_src->st);
6462 if (posix_pathnames) {
6463 SMB_VFS_LSTAT(conn, smb_fname_src);
6464 } else {
6465 SMB_VFS_STAT(conn, smb_fname_src);
6468 create_options = 0;
6470 if (S_ISDIR(smb_fname_src->st.st_ex_mode)) {
6471 create_options |= FILE_DIRECTORY_FILE;
6474 status = SMB_VFS_CREATE_FILE(
6475 conn, /* conn */
6476 req, /* req */
6477 0, /* root_dir_fid */
6478 smb_fname_src, /* fname */
6479 access_mask, /* access_mask */
6480 (FILE_SHARE_READ | /* share_access */
6481 FILE_SHARE_WRITE),
6482 FILE_OPEN, /* create_disposition*/
6483 create_options, /* create_options */
6484 posix_pathnames ? FILE_FLAG_POSIX_SEMANTICS|0777 : 0, /* file_attributes */
6485 0, /* oplock_request */
6486 0, /* allocation_size */
6487 0, /* private_flags */
6488 NULL, /* sd */
6489 NULL, /* ea_list */
6490 &fsp, /* result */
6491 NULL); /* pinfo */
6493 if (!NT_STATUS_IS_OK(status)) {
6494 DEBUG(3,("rename_internals: SMB_VFS_CREATE_FILE "
6495 "returned %s rename %s -> %s\n",
6496 nt_errstr(status),
6497 smb_fname_str_dbg(smb_fname_src),
6498 smb_fname_str_dbg(smb_fname_dst)));
6499 break;
6502 smb_fname_dst->original_lcomp = talloc_strdup(smb_fname_dst,
6503 dname);
6504 if (!smb_fname_dst->original_lcomp) {
6505 status = NT_STATUS_NO_MEMORY;
6506 goto out;
6509 status = rename_internals_fsp(conn, fsp, smb_fname_dst,
6510 attrs, replace_if_exists);
6512 close_file(req, fsp, NORMAL_CLOSE);
6514 if (!NT_STATUS_IS_OK(status)) {
6515 DEBUG(3, ("rename_internals_fsp returned %s for "
6516 "rename %s -> %s\n", nt_errstr(status),
6517 smb_fname_str_dbg(smb_fname_src),
6518 smb_fname_str_dbg(smb_fname_dst)));
6519 break;
6522 count++;
6524 DEBUG(3,("rename_internals: doing rename on %s -> "
6525 "%s\n", smb_fname_str_dbg(smb_fname_src),
6526 smb_fname_str_dbg(smb_fname_src)));
6527 TALLOC_FREE(talloced);
6529 TALLOC_FREE(dir_hnd);
6531 if (count == 0 && NT_STATUS_IS_OK(status) && errno != 0) {
6532 status = map_nt_error_from_unix(errno);
6535 out:
6536 TALLOC_FREE(talloced);
6537 TALLOC_FREE(fname_src_dir);
6538 TALLOC_FREE(fname_src_mask);
6539 return status;
6542 /****************************************************************************
6543 Reply to a mv.
6544 ****************************************************************************/
6546 void reply_mv(struct smb_request *req)
6548 connection_struct *conn = req->conn;
6549 char *name = NULL;
6550 char *newname = NULL;
6551 const char *p;
6552 uint32 attrs;
6553 NTSTATUS status;
6554 bool src_has_wcard = False;
6555 bool dest_has_wcard = False;
6556 TALLOC_CTX *ctx = talloc_tos();
6557 struct smb_filename *smb_fname_src = NULL;
6558 struct smb_filename *smb_fname_dst = NULL;
6559 bool stream_rename = false;
6561 START_PROFILE(SMBmv);
6563 if (req->wct < 1) {
6564 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6565 goto out;
6568 attrs = SVAL(req->vwv+0, 0);
6570 p = (const char *)req->buf + 1;
6571 p += srvstr_get_path_req_wcard(ctx, req, &name, p, STR_TERMINATE,
6572 &status, &src_has_wcard);
6573 if (!NT_STATUS_IS_OK(status)) {
6574 reply_nterror(req, status);
6575 goto out;
6577 p++;
6578 p += srvstr_get_path_req_wcard(ctx, req, &newname, p, STR_TERMINATE,
6579 &status, &dest_has_wcard);
6580 if (!NT_STATUS_IS_OK(status)) {
6581 reply_nterror(req, status);
6582 goto out;
6585 if (!lp_posix_pathnames()) {
6586 /* The newname must begin with a ':' if the
6587 name contains a ':'. */
6588 if (strchr_m(name, ':')) {
6589 if (newname[0] != ':') {
6590 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6591 goto out;
6593 stream_rename = true;
6597 status = filename_convert(ctx,
6598 conn,
6599 req->flags2 & FLAGS2_DFS_PATHNAMES,
6600 name,
6601 UCF_COND_ALLOW_WCARD_LCOMP,
6602 &src_has_wcard,
6603 &smb_fname_src);
6605 if (!NT_STATUS_IS_OK(status)) {
6606 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
6607 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
6608 ERRSRV, ERRbadpath);
6609 goto out;
6611 reply_nterror(req, status);
6612 goto out;
6615 status = filename_convert(ctx,
6616 conn,
6617 req->flags2 & FLAGS2_DFS_PATHNAMES,
6618 newname,
6619 UCF_COND_ALLOW_WCARD_LCOMP | UCF_SAVE_LCOMP,
6620 &dest_has_wcard,
6621 &smb_fname_dst);
6623 if (!NT_STATUS_IS_OK(status)) {
6624 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
6625 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
6626 ERRSRV, ERRbadpath);
6627 goto out;
6629 reply_nterror(req, status);
6630 goto out;
6633 if (stream_rename) {
6634 /* smb_fname_dst->base_name must be the same as
6635 smb_fname_src->base_name. */
6636 TALLOC_FREE(smb_fname_dst->base_name);
6637 smb_fname_dst->base_name = talloc_strdup(smb_fname_dst,
6638 smb_fname_src->base_name);
6639 if (!smb_fname_dst->base_name) {
6640 reply_nterror(req, NT_STATUS_NO_MEMORY);
6641 goto out;
6645 DEBUG(3,("reply_mv : %s -> %s\n", smb_fname_str_dbg(smb_fname_src),
6646 smb_fname_str_dbg(smb_fname_dst)));
6648 status = rename_internals(ctx, conn, req, smb_fname_src, smb_fname_dst,
6649 attrs, False, src_has_wcard, dest_has_wcard,
6650 DELETE_ACCESS);
6651 if (!NT_STATUS_IS_OK(status)) {
6652 if (open_was_deferred(req->mid)) {
6653 /* We have re-scheduled this call. */
6654 goto out;
6656 reply_nterror(req, status);
6657 goto out;
6660 reply_outbuf(req, 0, 0);
6661 out:
6662 TALLOC_FREE(smb_fname_src);
6663 TALLOC_FREE(smb_fname_dst);
6664 END_PROFILE(SMBmv);
6665 return;
6668 /*******************************************************************
6669 Copy a file as part of a reply_copy.
6670 ******************************************************************/
6673 * TODO: check error codes on all callers
6676 NTSTATUS copy_file(TALLOC_CTX *ctx,
6677 connection_struct *conn,
6678 struct smb_filename *smb_fname_src,
6679 struct smb_filename *smb_fname_dst,
6680 int ofun,
6681 int count,
6682 bool target_is_directory)
6684 struct smb_filename *smb_fname_dst_tmp = NULL;
6685 SMB_OFF_T ret=-1;
6686 files_struct *fsp1,*fsp2;
6687 uint32 dosattrs;
6688 uint32 new_create_disposition;
6689 NTSTATUS status;
6692 status = copy_smb_filename(ctx, smb_fname_dst, &smb_fname_dst_tmp);
6693 if (!NT_STATUS_IS_OK(status)) {
6694 return status;
6698 * If the target is a directory, extract the last component from the
6699 * src filename and append it to the dst filename
6701 if (target_is_directory) {
6702 const char *p;
6704 /* dest/target can't be a stream if it's a directory. */
6705 SMB_ASSERT(smb_fname_dst->stream_name == NULL);
6707 p = strrchr_m(smb_fname_src->base_name,'/');
6708 if (p) {
6709 p++;
6710 } else {
6711 p = smb_fname_src->base_name;
6713 smb_fname_dst_tmp->base_name =
6714 talloc_asprintf_append(smb_fname_dst_tmp->base_name, "/%s",
6716 if (!smb_fname_dst_tmp->base_name) {
6717 status = NT_STATUS_NO_MEMORY;
6718 goto out;
6722 status = vfs_file_exist(conn, smb_fname_src);
6723 if (!NT_STATUS_IS_OK(status)) {
6724 goto out;
6727 if (!target_is_directory && count) {
6728 new_create_disposition = FILE_OPEN;
6729 } else {
6730 if (!map_open_params_to_ntcreate(smb_fname_dst_tmp, 0, ofun,
6731 NULL, NULL,
6732 &new_create_disposition,
6733 NULL,
6734 NULL)) {
6735 status = NT_STATUS_INVALID_PARAMETER;
6736 goto out;
6740 /* Open the src file for reading. */
6741 status = SMB_VFS_CREATE_FILE(
6742 conn, /* conn */
6743 NULL, /* req */
6744 0, /* root_dir_fid */
6745 smb_fname_src, /* fname */
6746 FILE_GENERIC_READ, /* access_mask */
6747 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */
6748 FILE_OPEN, /* create_disposition*/
6749 0, /* create_options */
6750 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
6751 INTERNAL_OPEN_ONLY, /* oplock_request */
6752 0, /* allocation_size */
6753 0, /* private_flags */
6754 NULL, /* sd */
6755 NULL, /* ea_list */
6756 &fsp1, /* result */
6757 NULL); /* psbuf */
6759 if (!NT_STATUS_IS_OK(status)) {
6760 goto out;
6763 dosattrs = dos_mode(conn, smb_fname_src);
6765 if (SMB_VFS_STAT(conn, smb_fname_dst_tmp) == -1) {
6766 ZERO_STRUCTP(&smb_fname_dst_tmp->st);
6769 /* Open the dst file for writing. */
6770 status = SMB_VFS_CREATE_FILE(
6771 conn, /* conn */
6772 NULL, /* req */
6773 0, /* root_dir_fid */
6774 smb_fname_dst, /* fname */
6775 FILE_GENERIC_WRITE, /* access_mask */
6776 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */
6777 new_create_disposition, /* create_disposition*/
6778 0, /* create_options */
6779 dosattrs, /* file_attributes */
6780 INTERNAL_OPEN_ONLY, /* oplock_request */
6781 0, /* allocation_size */
6782 0, /* private_flags */
6783 NULL, /* sd */
6784 NULL, /* ea_list */
6785 &fsp2, /* result */
6786 NULL); /* psbuf */
6788 if (!NT_STATUS_IS_OK(status)) {
6789 close_file(NULL, fsp1, ERROR_CLOSE);
6790 goto out;
6793 if (ofun & OPENX_FILE_EXISTS_OPEN) {
6794 ret = SMB_VFS_LSEEK(fsp2, 0, SEEK_END);
6795 if (ret == -1) {
6796 DEBUG(0, ("error - vfs lseek returned error %s\n",
6797 strerror(errno)));
6798 status = map_nt_error_from_unix(errno);
6799 close_file(NULL, fsp1, ERROR_CLOSE);
6800 close_file(NULL, fsp2, ERROR_CLOSE);
6801 goto out;
6805 /* Do the actual copy. */
6806 if (smb_fname_src->st.st_ex_size) {
6807 ret = vfs_transfer_file(fsp1, fsp2, smb_fname_src->st.st_ex_size);
6808 } else {
6809 ret = 0;
6812 close_file(NULL, fsp1, NORMAL_CLOSE);
6814 /* Ensure the modtime is set correctly on the destination file. */
6815 set_close_write_time(fsp2, smb_fname_src->st.st_ex_mtime);
6818 * As we are opening fsp1 read-only we only expect
6819 * an error on close on fsp2 if we are out of space.
6820 * Thus we don't look at the error return from the
6821 * close of fsp1.
6823 status = close_file(NULL, fsp2, NORMAL_CLOSE);
6825 if (!NT_STATUS_IS_OK(status)) {
6826 goto out;
6829 if (ret != (SMB_OFF_T)smb_fname_src->st.st_ex_size) {
6830 status = NT_STATUS_DISK_FULL;
6831 goto out;
6834 status = NT_STATUS_OK;
6836 out:
6837 TALLOC_FREE(smb_fname_dst_tmp);
6838 return status;
6841 /****************************************************************************
6842 Reply to a file copy.
6843 ****************************************************************************/
6845 void reply_copy(struct smb_request *req)
6847 connection_struct *conn = req->conn;
6848 struct smb_filename *smb_fname_src = NULL;
6849 struct smb_filename *smb_fname_dst = NULL;
6850 char *fname_src = NULL;
6851 char *fname_dst = NULL;
6852 char *fname_src_mask = NULL;
6853 char *fname_src_dir = NULL;
6854 const char *p;
6855 int count=0;
6856 int error = ERRnoaccess;
6857 int tid2;
6858 int ofun;
6859 int flags;
6860 bool target_is_directory=False;
6861 bool source_has_wild = False;
6862 bool dest_has_wild = False;
6863 NTSTATUS status;
6864 TALLOC_CTX *ctx = talloc_tos();
6866 START_PROFILE(SMBcopy);
6868 if (req->wct < 3) {
6869 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6870 goto out;
6873 tid2 = SVAL(req->vwv+0, 0);
6874 ofun = SVAL(req->vwv+1, 0);
6875 flags = SVAL(req->vwv+2, 0);
6877 p = (const char *)req->buf;
6878 p += srvstr_get_path_req_wcard(ctx, req, &fname_src, p, STR_TERMINATE,
6879 &status, &source_has_wild);
6880 if (!NT_STATUS_IS_OK(status)) {
6881 reply_nterror(req, status);
6882 goto out;
6884 p += srvstr_get_path_req_wcard(ctx, req, &fname_dst, p, STR_TERMINATE,
6885 &status, &dest_has_wild);
6886 if (!NT_STATUS_IS_OK(status)) {
6887 reply_nterror(req, status);
6888 goto out;
6891 DEBUG(3,("reply_copy : %s -> %s\n", fname_src, fname_dst));
6893 if (tid2 != conn->cnum) {
6894 /* can't currently handle inter share copies XXXX */
6895 DEBUG(3,("Rejecting inter-share copy\n"));
6896 reply_nterror(req, NT_STATUS_BAD_DEVICE_TYPE);
6897 goto out;
6900 status = filename_convert(ctx, conn,
6901 req->flags2 & FLAGS2_DFS_PATHNAMES,
6902 fname_src,
6903 UCF_COND_ALLOW_WCARD_LCOMP,
6904 &source_has_wild,
6905 &smb_fname_src);
6906 if (!NT_STATUS_IS_OK(status)) {
6907 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
6908 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
6909 ERRSRV, ERRbadpath);
6910 goto out;
6912 reply_nterror(req, status);
6913 goto out;
6916 status = filename_convert(ctx, conn,
6917 req->flags2 & FLAGS2_DFS_PATHNAMES,
6918 fname_dst,
6919 UCF_COND_ALLOW_WCARD_LCOMP,
6920 &dest_has_wild,
6921 &smb_fname_dst);
6922 if (!NT_STATUS_IS_OK(status)) {
6923 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
6924 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
6925 ERRSRV, ERRbadpath);
6926 goto out;
6928 reply_nterror(req, status);
6929 goto out;
6932 target_is_directory = VALID_STAT_OF_DIR(smb_fname_dst->st);
6934 if ((flags&1) && target_is_directory) {
6935 reply_nterror(req, NT_STATUS_NO_SUCH_FILE);
6936 goto out;
6939 if ((flags&2) && !target_is_directory) {
6940 reply_nterror(req, NT_STATUS_OBJECT_PATH_NOT_FOUND);
6941 goto out;
6944 if ((flags&(1<<5)) && VALID_STAT_OF_DIR(smb_fname_src->st)) {
6945 /* wants a tree copy! XXXX */
6946 DEBUG(3,("Rejecting tree copy\n"));
6947 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
6948 goto out;
6951 /* Split up the directory from the filename/mask. */
6952 status = split_fname_dir_mask(ctx, smb_fname_src->base_name,
6953 &fname_src_dir, &fname_src_mask);
6954 if (!NT_STATUS_IS_OK(status)) {
6955 reply_nterror(req, NT_STATUS_NO_MEMORY);
6956 goto out;
6960 * We should only check the mangled cache
6961 * here if unix_convert failed. This means
6962 * that the path in 'mask' doesn't exist
6963 * on the file system and so we need to look
6964 * for a possible mangle. This patch from
6965 * Tine Smukavec <valentin.smukavec@hermes.si>.
6967 if (!VALID_STAT(smb_fname_src->st) &&
6968 mangle_is_mangled(fname_src_mask, conn->params)) {
6969 char *new_mask = NULL;
6970 mangle_lookup_name_from_8_3(ctx, fname_src_mask,
6971 &new_mask, conn->params);
6973 /* Use demangled name if one was successfully found. */
6974 if (new_mask) {
6975 TALLOC_FREE(fname_src_mask);
6976 fname_src_mask = new_mask;
6980 if (!source_has_wild) {
6983 * Only one file needs to be copied. Append the mask back onto
6984 * the directory.
6986 TALLOC_FREE(smb_fname_src->base_name);
6987 if (ISDOT(fname_src_dir)) {
6988 /* Ensure we use canonical names on open. */
6989 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6990 "%s",
6991 fname_src_mask);
6992 } else {
6993 smb_fname_src->base_name = talloc_asprintf(smb_fname_src,
6994 "%s/%s",
6995 fname_src_dir,
6996 fname_src_mask);
6998 if (!smb_fname_src->base_name) {
6999 reply_nterror(req, NT_STATUS_NO_MEMORY);
7000 goto out;
7003 if (dest_has_wild) {
7004 char *fname_dst_mod = NULL;
7005 if (!resolve_wildcards(smb_fname_dst,
7006 smb_fname_src->base_name,
7007 smb_fname_dst->base_name,
7008 &fname_dst_mod)) {
7009 reply_nterror(req, NT_STATUS_NO_MEMORY);
7010 goto out;
7012 TALLOC_FREE(smb_fname_dst->base_name);
7013 smb_fname_dst->base_name = fname_dst_mod;
7016 status = check_name(conn, smb_fname_src->base_name);
7017 if (!NT_STATUS_IS_OK(status)) {
7018 reply_nterror(req, status);
7019 goto out;
7022 status = check_name(conn, smb_fname_dst->base_name);
7023 if (!NT_STATUS_IS_OK(status)) {
7024 reply_nterror(req, status);
7025 goto out;
7028 status = copy_file(ctx, conn, smb_fname_src, smb_fname_dst,
7029 ofun, count, target_is_directory);
7031 if(!NT_STATUS_IS_OK(status)) {
7032 reply_nterror(req, status);
7033 goto out;
7034 } else {
7035 count++;
7037 } else {
7038 struct smb_Dir *dir_hnd = NULL;
7039 const char *dname = NULL;
7040 char *talloced = NULL;
7041 long offset = 0;
7044 * There is a wildcard that requires us to actually read the
7045 * src dir and copy each file matching the mask to the dst.
7046 * Right now streams won't be copied, but this could
7047 * presumably be added with a nested loop for reach dir entry.
7049 SMB_ASSERT(!smb_fname_src->stream_name);
7050 SMB_ASSERT(!smb_fname_dst->stream_name);
7052 smb_fname_src->stream_name = NULL;
7053 smb_fname_dst->stream_name = NULL;
7055 if (strequal(fname_src_mask,"????????.???")) {
7056 TALLOC_FREE(fname_src_mask);
7057 fname_src_mask = talloc_strdup(ctx, "*");
7058 if (!fname_src_mask) {
7059 reply_nterror(req, NT_STATUS_NO_MEMORY);
7060 goto out;
7064 status = check_name(conn, fname_src_dir);
7065 if (!NT_STATUS_IS_OK(status)) {
7066 reply_nterror(req, status);
7067 goto out;
7070 dir_hnd = OpenDir(ctx, conn, fname_src_dir, fname_src_mask, 0);
7071 if (dir_hnd == NULL) {
7072 status = map_nt_error_from_unix(errno);
7073 reply_nterror(req, status);
7074 goto out;
7077 error = ERRbadfile;
7079 /* Iterate over the src dir copying each entry to the dst. */
7080 while ((dname = ReadDirName(dir_hnd, &offset,
7081 &smb_fname_src->st, &talloced))) {
7082 char *destname = NULL;
7084 if (ISDOT(dname) || ISDOTDOT(dname)) {
7085 TALLOC_FREE(talloced);
7086 continue;
7089 if (!is_visible_file(conn, fname_src_dir, dname,
7090 &smb_fname_src->st, false)) {
7091 TALLOC_FREE(talloced);
7092 continue;
7095 if(!mask_match(dname, fname_src_mask,
7096 conn->case_sensitive)) {
7097 TALLOC_FREE(talloced);
7098 continue;
7101 error = ERRnoaccess;
7103 /* Get the src smb_fname struct setup. */
7104 TALLOC_FREE(smb_fname_src->base_name);
7105 if (ISDOT(fname_src_dir)) {
7106 /* Ensure we use canonical names on open. */
7107 smb_fname_src->base_name =
7108 talloc_asprintf(smb_fname_src, "%s",
7109 dname);
7110 } else {
7111 smb_fname_src->base_name =
7112 talloc_asprintf(smb_fname_src, "%s/%s",
7113 fname_src_dir, dname);
7116 if (!smb_fname_src->base_name) {
7117 TALLOC_FREE(dir_hnd);
7118 TALLOC_FREE(talloced);
7119 reply_nterror(req, NT_STATUS_NO_MEMORY);
7120 goto out;
7123 if (!resolve_wildcards(ctx, smb_fname_src->base_name,
7124 smb_fname_dst->base_name,
7125 &destname)) {
7126 TALLOC_FREE(talloced);
7127 continue;
7129 if (!destname) {
7130 TALLOC_FREE(dir_hnd);
7131 TALLOC_FREE(talloced);
7132 reply_nterror(req, NT_STATUS_NO_MEMORY);
7133 goto out;
7136 TALLOC_FREE(smb_fname_dst->base_name);
7137 smb_fname_dst->base_name = destname;
7139 status = check_name(conn, smb_fname_src->base_name);
7140 if (!NT_STATUS_IS_OK(status)) {
7141 TALLOC_FREE(dir_hnd);
7142 TALLOC_FREE(talloced);
7143 reply_nterror(req, status);
7144 goto out;
7147 status = check_name(conn, smb_fname_dst->base_name);
7148 if (!NT_STATUS_IS_OK(status)) {
7149 TALLOC_FREE(dir_hnd);
7150 TALLOC_FREE(talloced);
7151 reply_nterror(req, status);
7152 goto out;
7155 DEBUG(3,("reply_copy : doing copy on %s -> %s\n",
7156 smb_fname_src->base_name,
7157 smb_fname_dst->base_name));
7159 status = copy_file(ctx, conn, smb_fname_src,
7160 smb_fname_dst, ofun, count,
7161 target_is_directory);
7162 if (NT_STATUS_IS_OK(status)) {
7163 count++;
7166 TALLOC_FREE(talloced);
7168 TALLOC_FREE(dir_hnd);
7171 if (count == 0) {
7172 reply_nterror(req, dos_to_ntstatus(ERRDOS, error));
7173 goto out;
7176 reply_outbuf(req, 1, 0);
7177 SSVAL(req->outbuf,smb_vwv0,count);
7178 out:
7179 TALLOC_FREE(smb_fname_src);
7180 TALLOC_FREE(smb_fname_dst);
7181 TALLOC_FREE(fname_src);
7182 TALLOC_FREE(fname_dst);
7183 TALLOC_FREE(fname_src_mask);
7184 TALLOC_FREE(fname_src_dir);
7186 END_PROFILE(SMBcopy);
7187 return;
7190 #undef DBGC_CLASS
7191 #define DBGC_CLASS DBGC_LOCKING
7193 /****************************************************************************
7194 Get a lock pid, dealing with large count requests.
7195 ****************************************************************************/
7197 uint64_t get_lock_pid(const uint8_t *data, int data_offset,
7198 bool large_file_format)
7200 if(!large_file_format)
7201 return (uint64_t)SVAL(data,SMB_LPID_OFFSET(data_offset));
7202 else
7203 return (uint64_t)SVAL(data,SMB_LARGE_LPID_OFFSET(data_offset));
7206 /****************************************************************************
7207 Get a lock count, dealing with large count requests.
7208 ****************************************************************************/
7210 uint64_t get_lock_count(const uint8_t *data, int data_offset,
7211 bool large_file_format)
7213 uint64_t count = 0;
7215 if(!large_file_format) {
7216 count = (uint64_t)IVAL(data,SMB_LKLEN_OFFSET(data_offset));
7217 } else {
7219 #if defined(HAVE_LONGLONG)
7220 count = (((uint64_t) IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset))) << 32) |
7221 ((uint64_t) IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset)));
7222 #else /* HAVE_LONGLONG */
7225 * NT4.x seems to be broken in that it sends large file (64 bit)
7226 * lockingX calls even if the CAP_LARGE_FILES was *not*
7227 * negotiated. For boxes without large unsigned ints truncate the
7228 * lock count by dropping the top 32 bits.
7231 if(IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset)) != 0) {
7232 DEBUG(3,("get_lock_count: truncating lock count (high)0x%x (low)0x%x to just low count.\n",
7233 (unsigned int)IVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset)),
7234 (unsigned int)IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset)) ));
7235 SIVAL(data,SMB_LARGE_LKLEN_OFFSET_HIGH(data_offset),0);
7238 count = (uint64_t)IVAL(data,SMB_LARGE_LKLEN_OFFSET_LOW(data_offset));
7239 #endif /* HAVE_LONGLONG */
7242 return count;
7245 #if !defined(HAVE_LONGLONG)
7246 /****************************************************************************
7247 Pathetically try and map a 64 bit lock offset into 31 bits. I hate Windows :-).
7248 ****************************************************************************/
7250 static uint32 map_lock_offset(uint32 high, uint32 low)
7252 unsigned int i;
7253 uint32 mask = 0;
7254 uint32 highcopy = high;
7257 * Try and find out how many significant bits there are in high.
7260 for(i = 0; highcopy; i++)
7261 highcopy >>= 1;
7264 * We use 31 bits not 32 here as POSIX
7265 * lock offsets may not be negative.
7268 mask = (~0) << (31 - i);
7270 if(low & mask)
7271 return 0; /* Fail. */
7273 high <<= (31 - i);
7275 return (high|low);
7277 #endif /* !defined(HAVE_LONGLONG) */
7279 /****************************************************************************
7280 Get a lock offset, dealing with large offset requests.
7281 ****************************************************************************/
7283 uint64_t get_lock_offset(const uint8_t *data, int data_offset,
7284 bool large_file_format, bool *err)
7286 uint64_t offset = 0;
7288 *err = False;
7290 if(!large_file_format) {
7291 offset = (uint64_t)IVAL(data,SMB_LKOFF_OFFSET(data_offset));
7292 } else {
7294 #if defined(HAVE_LONGLONG)
7295 offset = (((uint64_t) IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset))) << 32) |
7296 ((uint64_t) IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset)));
7297 #else /* HAVE_LONGLONG */
7300 * NT4.x seems to be broken in that it sends large file (64 bit)
7301 * lockingX calls even if the CAP_LARGE_FILES was *not*
7302 * negotiated. For boxes without large unsigned ints mangle the
7303 * lock offset by mapping the top 32 bits onto the lower 32.
7306 if(IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset)) != 0) {
7307 uint32 low = IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
7308 uint32 high = IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset));
7309 uint32 new_low = 0;
7311 if((new_low = map_lock_offset(high, low)) == 0) {
7312 *err = True;
7313 return (uint64_t)-1;
7316 DEBUG(3,("get_lock_offset: truncating lock offset (high)0x%x (low)0x%x to offset 0x%x.\n",
7317 (unsigned int)high, (unsigned int)low, (unsigned int)new_low ));
7318 SIVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset),0);
7319 SIVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset),new_low);
7322 offset = (uint64_t)IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset));
7323 #endif /* HAVE_LONGLONG */
7326 return offset;
7329 NTSTATUS smbd_do_locking(struct smb_request *req,
7330 files_struct *fsp,
7331 uint8_t type,
7332 int32_t timeout,
7333 uint16_t num_ulocks,
7334 struct smbd_lock_element *ulocks,
7335 uint16_t num_locks,
7336 struct smbd_lock_element *locks,
7337 bool *async)
7339 connection_struct *conn = req->conn;
7340 int i;
7341 NTSTATUS status = NT_STATUS_OK;
7343 *async = false;
7345 /* Data now points at the beginning of the list
7346 of smb_unlkrng structs */
7347 for(i = 0; i < (int)num_ulocks; i++) {
7348 struct smbd_lock_element *e = &ulocks[i];
7350 DEBUG(10,("smbd_do_locking: unlock start=%.0f, len=%.0f for "
7351 "pid %u, file %s\n",
7352 (double)e->offset,
7353 (double)e->count,
7354 (unsigned int)e->smblctx,
7355 fsp_str_dbg(fsp)));
7357 if (e->brltype != UNLOCK_LOCK) {
7358 /* this can only happen with SMB2 */
7359 return NT_STATUS_INVALID_PARAMETER;
7362 status = do_unlock(req->sconn->msg_ctx,
7363 fsp,
7364 e->smblctx,
7365 e->count,
7366 e->offset,
7367 WINDOWS_LOCK);
7369 DEBUG(10, ("smbd_do_locking: unlock returned %s\n",
7370 nt_errstr(status)));
7372 if (!NT_STATUS_IS_OK(status)) {
7373 return status;
7377 /* Setup the timeout in seconds. */
7379 if (!lp_blocking_locks(SNUM(conn))) {
7380 timeout = 0;
7383 /* Data now points at the beginning of the list
7384 of smb_lkrng structs */
7386 for(i = 0; i < (int)num_locks; i++) {
7387 struct smbd_lock_element *e = &locks[i];
7389 DEBUG(10,("smbd_do_locking: lock start=%.0f, len=%.0f for smblctx "
7390 "%llu, file %s timeout = %d\n",
7391 (double)e->offset,
7392 (double)e->count,
7393 (unsigned long long)e->smblctx,
7394 fsp_str_dbg(fsp),
7395 (int)timeout));
7397 if (type & LOCKING_ANDX_CANCEL_LOCK) {
7398 struct blocking_lock_record *blr = NULL;
7400 if (num_locks > 1) {
7402 * MS-CIFS (2.2.4.32.1) states that a cancel is honored if and only
7403 * if the lock vector contains one entry. When given mutliple cancel
7404 * requests in a single PDU we expect the server to return an
7405 * error. Windows servers seem to accept the request but only
7406 * cancel the first lock.
7407 * JRA - Do what Windows does (tm) :-).
7410 #if 0
7411 /* MS-CIFS (2.2.4.32.1) behavior. */
7412 return NT_STATUS_DOS(ERRDOS,
7413 ERRcancelviolation);
7414 #else
7415 /* Windows behavior. */
7416 if (i != 0) {
7417 DEBUG(10,("smbd_do_locking: ignoring subsequent "
7418 "cancel request\n"));
7419 continue;
7421 #endif
7424 if (lp_blocking_locks(SNUM(conn))) {
7426 /* Schedule a message to ourselves to
7427 remove the blocking lock record and
7428 return the right error. */
7430 blr = blocking_lock_cancel_smb1(fsp,
7431 e->smblctx,
7432 e->offset,
7433 e->count,
7434 WINDOWS_LOCK,
7435 type,
7436 NT_STATUS_FILE_LOCK_CONFLICT);
7437 if (blr == NULL) {
7438 return NT_STATUS_DOS(
7439 ERRDOS,
7440 ERRcancelviolation);
7443 /* Remove a matching pending lock. */
7444 status = do_lock_cancel(fsp,
7445 e->smblctx,
7446 e->count,
7447 e->offset,
7448 WINDOWS_LOCK,
7449 blr);
7450 } else {
7451 bool blocking_lock = timeout ? true : false;
7452 bool defer_lock = false;
7453 struct byte_range_lock *br_lck;
7454 uint64_t block_smblctx;
7456 br_lck = do_lock(req->sconn->msg_ctx,
7457 fsp,
7458 e->smblctx,
7459 e->count,
7460 e->offset,
7461 e->brltype,
7462 WINDOWS_LOCK,
7463 blocking_lock,
7464 &status,
7465 &block_smblctx,
7466 NULL);
7468 if (br_lck && blocking_lock && ERROR_WAS_LOCK_DENIED(status)) {
7469 /* Windows internal resolution for blocking locks seems
7470 to be about 200ms... Don't wait for less than that. JRA. */
7471 if (timeout != -1 && timeout < lp_lock_spin_time()) {
7472 timeout = lp_lock_spin_time();
7474 defer_lock = true;
7477 /* If a lock sent with timeout of zero would fail, and
7478 * this lock has been requested multiple times,
7479 * according to brl_lock_failed() we convert this
7480 * request to a blocking lock with a timeout of between
7481 * 150 - 300 milliseconds.
7483 * If lp_lock_spin_time() has been set to 0, we skip
7484 * this blocking retry and fail immediately.
7486 * Replacement for do_lock_spin(). JRA. */
7488 if (!req->sconn->using_smb2 &&
7489 br_lck && lp_blocking_locks(SNUM(conn)) &&
7490 lp_lock_spin_time() && !blocking_lock &&
7491 NT_STATUS_EQUAL((status),
7492 NT_STATUS_FILE_LOCK_CONFLICT))
7494 defer_lock = true;
7495 timeout = lp_lock_spin_time();
7498 if (br_lck && defer_lock) {
7500 * A blocking lock was requested. Package up
7501 * this smb into a queued request and push it
7502 * onto the blocking lock queue.
7504 if(push_blocking_lock_request(br_lck,
7505 req,
7506 fsp,
7507 timeout,
7509 e->smblctx,
7510 e->brltype,
7511 WINDOWS_LOCK,
7512 e->offset,
7513 e->count,
7514 block_smblctx)) {
7515 TALLOC_FREE(br_lck);
7516 *async = true;
7517 return NT_STATUS_OK;
7521 TALLOC_FREE(br_lck);
7524 if (!NT_STATUS_IS_OK(status)) {
7525 break;
7529 /* If any of the above locks failed, then we must unlock
7530 all of the previous locks (X/Open spec). */
7532 if (num_locks != 0 && !NT_STATUS_IS_OK(status)) {
7534 if (type & LOCKING_ANDX_CANCEL_LOCK) {
7535 i = -1; /* we want to skip the for loop */
7539 * Ensure we don't do a remove on the lock that just failed,
7540 * as under POSIX rules, if we have a lock already there, we
7541 * will delete it (and we shouldn't) .....
7543 for(i--; i >= 0; i--) {
7544 struct smbd_lock_element *e = &locks[i];
7546 do_unlock(req->sconn->msg_ctx,
7547 fsp,
7548 e->smblctx,
7549 e->count,
7550 e->offset,
7551 WINDOWS_LOCK);
7553 return status;
7556 DEBUG(3, ("smbd_do_locking: fnum=%d type=%d num_locks=%d num_ulocks=%d\n",
7557 fsp->fnum, (unsigned int)type, num_locks, num_ulocks));
7559 return NT_STATUS_OK;
7562 /****************************************************************************
7563 Reply to a lockingX request.
7564 ****************************************************************************/
7566 void reply_lockingX(struct smb_request *req)
7568 connection_struct *conn = req->conn;
7569 files_struct *fsp;
7570 unsigned char locktype;
7571 unsigned char oplocklevel;
7572 uint16 num_ulocks;
7573 uint16 num_locks;
7574 int32 lock_timeout;
7575 int i;
7576 const uint8_t *data;
7577 bool large_file_format;
7578 bool err;
7579 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
7580 struct smbd_lock_element *ulocks;
7581 struct smbd_lock_element *locks;
7582 bool async = false;
7584 START_PROFILE(SMBlockingX);
7586 if (req->wct < 8) {
7587 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7588 END_PROFILE(SMBlockingX);
7589 return;
7592 fsp = file_fsp(req, SVAL(req->vwv+2, 0));
7593 locktype = CVAL(req->vwv+3, 0);
7594 oplocklevel = CVAL(req->vwv+3, 1);
7595 num_ulocks = SVAL(req->vwv+6, 0);
7596 num_locks = SVAL(req->vwv+7, 0);
7597 lock_timeout = IVAL(req->vwv+4, 0);
7598 large_file_format = (locktype & LOCKING_ANDX_LARGE_FILES)?True:False;
7600 if (!check_fsp(conn, req, fsp)) {
7601 END_PROFILE(SMBlockingX);
7602 return;
7605 data = req->buf;
7607 if (locktype & LOCKING_ANDX_CHANGE_LOCKTYPE) {
7608 /* we don't support these - and CANCEL_LOCK makes w2k
7609 and XP reboot so I don't really want to be
7610 compatible! (tridge) */
7611 reply_force_doserror(req, ERRDOS, ERRnoatomiclocks);
7612 END_PROFILE(SMBlockingX);
7613 return;
7616 /* Check if this is an oplock break on a file
7617 we have granted an oplock on.
7619 if ((locktype & LOCKING_ANDX_OPLOCK_RELEASE)) {
7620 /* Client can insist on breaking to none. */
7621 bool break_to_none = (oplocklevel == 0);
7622 bool result;
7624 DEBUG(5,("reply_lockingX: oplock break reply (%u) from client "
7625 "for fnum = %d\n", (unsigned int)oplocklevel,
7626 fsp->fnum ));
7629 * Make sure we have granted an exclusive or batch oplock on
7630 * this file.
7633 if (fsp->oplock_type == 0) {
7635 /* The Samba4 nbench simulator doesn't understand
7636 the difference between break to level2 and break
7637 to none from level2 - it sends oplock break
7638 replies in both cases. Don't keep logging an error
7639 message here - just ignore it. JRA. */
7641 DEBUG(5,("reply_lockingX: Error : oplock break from "
7642 "client for fnum = %d (oplock=%d) and no "
7643 "oplock granted on this file (%s).\n",
7644 fsp->fnum, fsp->oplock_type,
7645 fsp_str_dbg(fsp)));
7647 /* if this is a pure oplock break request then don't
7648 * send a reply */
7649 if (num_locks == 0 && num_ulocks == 0) {
7650 END_PROFILE(SMBlockingX);
7651 return;
7652 } else {
7653 END_PROFILE(SMBlockingX);
7654 reply_nterror(req, NT_STATUS_FILE_LOCK_CONFLICT);
7655 return;
7659 if ((fsp->sent_oplock_break == BREAK_TO_NONE_SENT) ||
7660 (break_to_none)) {
7661 result = remove_oplock(fsp);
7662 } else {
7663 result = downgrade_oplock(fsp);
7666 if (!result) {
7667 DEBUG(0, ("reply_lockingX: error in removing "
7668 "oplock on file %s\n", fsp_str_dbg(fsp)));
7669 /* Hmmm. Is this panic justified? */
7670 smb_panic("internal tdb error");
7673 reply_to_oplock_break_requests(fsp);
7675 /* if this is a pure oplock break request then don't send a
7676 * reply */
7677 if (num_locks == 0 && num_ulocks == 0) {
7678 /* Sanity check - ensure a pure oplock break is not a
7679 chained request. */
7680 if(CVAL(req->vwv+0, 0) != 0xff)
7681 DEBUG(0,("reply_lockingX: Error : pure oplock "
7682 "break is a chained %d request !\n",
7683 (unsigned int)CVAL(req->vwv+0, 0)));
7684 END_PROFILE(SMBlockingX);
7685 return;
7689 if (req->buflen <
7690 (num_ulocks + num_locks) * (large_file_format ? 20 : 10)) {
7691 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7692 END_PROFILE(SMBlockingX);
7693 return;
7696 ulocks = talloc_array(req, struct smbd_lock_element, num_ulocks);
7697 if (ulocks == NULL) {
7698 reply_nterror(req, NT_STATUS_NO_MEMORY);
7699 END_PROFILE(SMBlockingX);
7700 return;
7703 locks = talloc_array(req, struct smbd_lock_element, num_locks);
7704 if (locks == NULL) {
7705 reply_nterror(req, NT_STATUS_NO_MEMORY);
7706 END_PROFILE(SMBlockingX);
7707 return;
7710 /* Data now points at the beginning of the list
7711 of smb_unlkrng structs */
7712 for(i = 0; i < (int)num_ulocks; i++) {
7713 ulocks[i].smblctx = get_lock_pid(data, i, large_file_format);
7714 ulocks[i].count = get_lock_count(data, i, large_file_format);
7715 ulocks[i].offset = get_lock_offset(data, i, large_file_format, &err);
7716 ulocks[i].brltype = UNLOCK_LOCK;
7719 * There is no error code marked "stupid client bug".... :-).
7721 if(err) {
7722 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
7723 END_PROFILE(SMBlockingX);
7724 return;
7728 /* Now do any requested locks */
7729 data += ((large_file_format ? 20 : 10)*num_ulocks);
7731 /* Data now points at the beginning of the list
7732 of smb_lkrng structs */
7734 for(i = 0; i < (int)num_locks; i++) {
7735 locks[i].smblctx = get_lock_pid(data, i, large_file_format);
7736 locks[i].count = get_lock_count(data, i, large_file_format);
7737 locks[i].offset = get_lock_offset(data, i, large_file_format, &err);
7739 if (locktype & LOCKING_ANDX_SHARED_LOCK) {
7740 if (locktype & LOCKING_ANDX_CANCEL_LOCK) {
7741 locks[i].brltype = PENDING_READ_LOCK;
7742 } else {
7743 locks[i].brltype = READ_LOCK;
7745 } else {
7746 if (locktype & LOCKING_ANDX_CANCEL_LOCK) {
7747 locks[i].brltype = PENDING_WRITE_LOCK;
7748 } else {
7749 locks[i].brltype = WRITE_LOCK;
7754 * There is no error code marked "stupid client bug".... :-).
7756 if(err) {
7757 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
7758 END_PROFILE(SMBlockingX);
7759 return;
7763 status = smbd_do_locking(req, fsp,
7764 locktype, lock_timeout,
7765 num_ulocks, ulocks,
7766 num_locks, locks,
7767 &async);
7768 if (!NT_STATUS_IS_OK(status)) {
7769 END_PROFILE(SMBlockingX);
7770 reply_nterror(req, status);
7771 return;
7773 if (async) {
7774 END_PROFILE(SMBlockingX);
7775 return;
7778 reply_outbuf(req, 2, 0);
7780 DEBUG(3, ("lockingX fnum=%d type=%d num_locks=%d num_ulocks=%d\n",
7781 fsp->fnum, (unsigned int)locktype, num_locks, num_ulocks));
7783 END_PROFILE(SMBlockingX);
7784 chain_reply(req);
7787 #undef DBGC_CLASS
7788 #define DBGC_CLASS DBGC_ALL
7790 /****************************************************************************
7791 Reply to a SMBreadbmpx (read block multiplex) request.
7792 Always reply with an error, if someone has a platform really needs this,
7793 please contact vl@samba.org
7794 ****************************************************************************/
7796 void reply_readbmpx(struct smb_request *req)
7798 START_PROFILE(SMBreadBmpx);
7799 reply_force_doserror(req, ERRSRV, ERRuseSTD);
7800 END_PROFILE(SMBreadBmpx);
7801 return;
7804 /****************************************************************************
7805 Reply to a SMBreadbs (read block multiplex secondary) request.
7806 Always reply with an error, if someone has a platform really needs this,
7807 please contact vl@samba.org
7808 ****************************************************************************/
7810 void reply_readbs(struct smb_request *req)
7812 START_PROFILE(SMBreadBs);
7813 reply_force_doserror(req, ERRSRV, ERRuseSTD);
7814 END_PROFILE(SMBreadBs);
7815 return;
7818 /****************************************************************************
7819 Reply to a SMBsetattrE.
7820 ****************************************************************************/
7822 void reply_setattrE(struct smb_request *req)
7824 connection_struct *conn = req->conn;
7825 struct smb_file_time ft;
7826 files_struct *fsp;
7827 NTSTATUS status;
7829 START_PROFILE(SMBsetattrE);
7830 ZERO_STRUCT(ft);
7832 if (req->wct < 7) {
7833 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7834 goto out;
7837 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
7839 if(!fsp || (fsp->conn != conn)) {
7840 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
7841 goto out;
7845 * Convert the DOS times into unix times.
7848 ft.atime = convert_time_t_to_timespec(
7849 srv_make_unix_date2(req->vwv+3));
7850 ft.mtime = convert_time_t_to_timespec(
7851 srv_make_unix_date2(req->vwv+5));
7852 ft.create_time = convert_time_t_to_timespec(
7853 srv_make_unix_date2(req->vwv+1));
7855 reply_outbuf(req, 0, 0);
7858 * Patch from Ray Frush <frush@engr.colostate.edu>
7859 * Sometimes times are sent as zero - ignore them.
7862 /* Ensure we have a valid stat struct for the source. */
7863 status = vfs_stat_fsp(fsp);
7864 if (!NT_STATUS_IS_OK(status)) {
7865 reply_nterror(req, status);
7866 goto out;
7869 status = smb_set_file_time(conn, fsp, fsp->fsp_name, &ft, true);
7870 if (!NT_STATUS_IS_OK(status)) {
7871 reply_nterror(req, status);
7872 goto out;
7875 DEBUG( 3, ( "reply_setattrE fnum=%d actime=%u modtime=%u "
7876 " createtime=%u\n",
7877 fsp->fnum,
7878 (unsigned int)ft.atime.tv_sec,
7879 (unsigned int)ft.mtime.tv_sec,
7880 (unsigned int)ft.create_time.tv_sec
7882 out:
7883 END_PROFILE(SMBsetattrE);
7884 return;
7888 /* Back from the dead for OS/2..... JRA. */
7890 /****************************************************************************
7891 Reply to a SMBwritebmpx (write block multiplex primary) request.
7892 Always reply with an error, if someone has a platform really needs this,
7893 please contact vl@samba.org
7894 ****************************************************************************/
7896 void reply_writebmpx(struct smb_request *req)
7898 START_PROFILE(SMBwriteBmpx);
7899 reply_force_doserror(req, ERRSRV, ERRuseSTD);
7900 END_PROFILE(SMBwriteBmpx);
7901 return;
7904 /****************************************************************************
7905 Reply to a SMBwritebs (write block multiplex secondary) request.
7906 Always reply with an error, if someone has a platform really needs this,
7907 please contact vl@samba.org
7908 ****************************************************************************/
7910 void reply_writebs(struct smb_request *req)
7912 START_PROFILE(SMBwriteBs);
7913 reply_force_doserror(req, ERRSRV, ERRuseSTD);
7914 END_PROFILE(SMBwriteBs);
7915 return;
7918 /****************************************************************************
7919 Reply to a SMBgetattrE.
7920 ****************************************************************************/
7922 void reply_getattrE(struct smb_request *req)
7924 connection_struct *conn = req->conn;
7925 int mode;
7926 files_struct *fsp;
7927 struct timespec create_ts;
7929 START_PROFILE(SMBgetattrE);
7931 if (req->wct < 1) {
7932 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
7933 END_PROFILE(SMBgetattrE);
7934 return;
7937 fsp = file_fsp(req, SVAL(req->vwv+0, 0));
7939 if(!fsp || (fsp->conn != conn)) {
7940 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
7941 END_PROFILE(SMBgetattrE);
7942 return;
7945 /* Do an fstat on this file */
7946 if(fsp_stat(fsp)) {
7947 reply_nterror(req, map_nt_error_from_unix(errno));
7948 END_PROFILE(SMBgetattrE);
7949 return;
7952 mode = dos_mode(conn, fsp->fsp_name);
7955 * Convert the times into dos times. Set create
7956 * date to be last modify date as UNIX doesn't save
7957 * this.
7960 reply_outbuf(req, 11, 0);
7962 create_ts = get_create_timespec(conn, fsp, fsp->fsp_name);
7963 srv_put_dos_date2((char *)req->outbuf, smb_vwv0, create_ts.tv_sec);
7964 srv_put_dos_date2((char *)req->outbuf, smb_vwv2,
7965 convert_timespec_to_time_t(fsp->fsp_name->st.st_ex_atime));
7966 /* Should we check pending modtime here ? JRA */
7967 srv_put_dos_date2((char *)req->outbuf, smb_vwv4,
7968 convert_timespec_to_time_t(fsp->fsp_name->st.st_ex_mtime));
7970 if (mode & aDIR) {
7971 SIVAL(req->outbuf, smb_vwv6, 0);
7972 SIVAL(req->outbuf, smb_vwv8, 0);
7973 } else {
7974 uint32 allocation_size = SMB_VFS_GET_ALLOC_SIZE(conn,fsp, &fsp->fsp_name->st);
7975 SIVAL(req->outbuf, smb_vwv6, (uint32)fsp->fsp_name->st.st_ex_size);
7976 SIVAL(req->outbuf, smb_vwv8, allocation_size);
7978 SSVAL(req->outbuf,smb_vwv10, mode);
7980 DEBUG( 3, ( "reply_getattrE fnum=%d\n", fsp->fnum));
7982 END_PROFILE(SMBgetattrE);
7983 return;