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
29 /* look in server.c for some explanation of these variables */
30 extern enum protocol_types Protocol;
32 unsigned int smb_echo_count = 0;
33 extern uint32 global_client_caps;
35 extern bool global_encrypted_passwords_negotiated;
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
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,
50 bool *p_last_component_contains_wcard)
54 NTSTATUS ret = NT_STATUS_OK;
55 bool start_of_name_component = True;
57 *p_last_component_contains_wcard = False;
60 if (IS_PATH_SEP(*s,posix_path)) {
62 * Safe to assume is not the second part of a mb char
63 * as this is handled below.
65 /* Eat multiple '/' or '\\' */
66 while (IS_PATH_SEP(*s,posix_path)) {
69 if ((d != path) && (*s != '\0')) {
70 /* We only care about non-leading or trailing '/' or '\\' */
74 start_of_name_component = True;
76 *p_last_component_contains_wcard = False;
80 if (start_of_name_component) {
81 if ((s[0] == '.') && (s[1] == '.') && (IS_PATH_SEP(s[2],posix_path) || s[2] == '\0')) {
82 /* Uh oh - "/../" or "\\..\\" or "/..\0" or "\\..\0" ! */
85 * No mb char starts with '.' so we're safe checking the directory separator here.
88 /* If we just added a '/' - delete it */
89 if ((d > path) && (*(d-1) == '/')) {
94 /* Are we at the start ? Can't go back further if so. */
96 ret = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
99 /* Go back one level... */
100 /* We know this is safe as '/' cannot be part of a mb sequence. */
101 /* NOTE - if this assumption is invalid we are not in good shape... */
102 /* Decrement d first as d points to the *next* char to write into. */
103 for (d--; d > path; d--) {
107 s += 2; /* Else go past the .. */
108 /* We're still at the start of a name component, just the previous one. */
111 } else if ((s[0] == '.') && ((s[1] == '\0') || IS_PATH_SEP(s[1],posix_path))) {
124 return NT_STATUS_OBJECT_NAME_INVALID;
132 *p_last_component_contains_wcard = True;
141 /* Get the size of the next MB character. */
142 next_codepoint(s,&siz);
160 DEBUG(0,("check_path_syntax_internal: character length assumptions invalid !\n"));
162 return NT_STATUS_INVALID_PARAMETER;
165 start_of_name_component = False;
173 /****************************************************************************
174 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
175 No wildcards allowed.
176 ****************************************************************************/
178 NTSTATUS check_path_syntax(char *path)
181 return check_path_syntax_internal(path, False, &ignore);
184 /****************************************************************************
185 Ensure we check the path in *exactly* the same way as W2K for regular pathnames.
186 Wildcards allowed - p_contains_wcard returns true if the last component contained
188 ****************************************************************************/
190 NTSTATUS check_path_syntax_wcard(char *path, bool *p_contains_wcard)
192 return check_path_syntax_internal(path, False, p_contains_wcard);
195 /****************************************************************************
196 Check the path for a POSIX client.
197 We're assuming here that '/' is not the second byte in any multibyte char
198 set (a safe assumption).
199 ****************************************************************************/
201 NTSTATUS check_path_syntax_posix(char *path)
204 return check_path_syntax_internal(path, True, &ignore);
207 /****************************************************************************
208 Pull a string and check the path allowing a wilcard - provide for error return.
209 ****************************************************************************/
211 size_t srvstr_get_path_wcard(TALLOC_CTX *ctx,
219 bool *contains_wcard)
226 ret = srvstr_pull_buf_talloc(ctx,
233 ret = srvstr_pull_talloc(ctx,
243 *err = NT_STATUS_INVALID_PARAMETER;
247 *contains_wcard = False;
249 if (smb_flags2 & FLAGS2_DFS_PATHNAMES) {
251 * For a DFS path the function parse_dfs_path()
252 * will do the path processing, just make a copy.
258 if (lp_posix_pathnames()) {
259 *err = check_path_syntax_posix(*pp_dest);
261 *err = check_path_syntax_wcard(*pp_dest, contains_wcard);
267 /****************************************************************************
268 Pull a string and check the path - provide for error return.
269 ****************************************************************************/
271 size_t srvstr_get_path(TALLOC_CTX *ctx,
285 ret = srvstr_pull_buf_talloc(ctx,
292 ret = srvstr_pull_talloc(ctx,
302 *err = NT_STATUS_INVALID_PARAMETER;
306 if (smb_flags2 & FLAGS2_DFS_PATHNAMES) {
308 * For a DFS path the function parse_dfs_path()
309 * will do the path processing, just make a copy.
315 if (lp_posix_pathnames()) {
316 *err = check_path_syntax_posix(*pp_dest);
318 *err = check_path_syntax(*pp_dest);
324 /****************************************************************************
325 Check if we have a correct fsp pointing to a file. Basic check for open fsp.
326 ****************************************************************************/
328 bool check_fsp_open(connection_struct *conn, struct smb_request *req,
331 if (!(fsp) || !(conn)) {
332 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
335 if (((conn) != (fsp)->conn) || req->vuid != (fsp)->vuid) {
336 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
342 /****************************************************************************
343 Check if we have a correct fsp pointing to a file. Replacement for the
345 ****************************************************************************/
347 bool check_fsp(connection_struct *conn, struct smb_request *req,
350 if (!check_fsp_open(conn, req, fsp)) {
353 if ((fsp)->is_directory) {
354 reply_nterror(req, NT_STATUS_INVALID_DEVICE_REQUEST);
357 if ((fsp)->fh->fd == -1) {
358 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
361 (fsp)->num_smb_operations++;
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,
373 if (!check_fsp_open(conn, req, fsp)) {
377 if (fsp->is_directory) {
381 if (fsp->fake_file_handle == NULL) {
385 if (fsp->fake_file_handle->type != FAKE_FILE_TYPE_QUOTA) {
389 if (fsp->fake_file_handle->private_data == NULL) {
396 /****************************************************************************
397 Check if we have a correct fsp. Replacement for the FSP_BELONGS_CONN macro
398 ****************************************************************************/
400 bool fsp_belongs_conn(connection_struct *conn, struct smb_request *req,
403 if ((fsp) && (conn) && ((conn)==(fsp)->conn)
404 && (req->vuid == (fsp)->vuid)) {
408 reply_nterror(req, NT_STATUS_INVALID_HANDLE);
412 /****************************************************************************
413 Reply to a (netbios-level) special message.
414 ****************************************************************************/
416 void reply_special(char *inbuf)
418 int msg_type = CVAL(inbuf,0);
419 int msg_flags = CVAL(inbuf,1);
424 * We only really use 4 bytes of the outbuf, but for the smb_setlen
425 * calculation & friends (srv_send_smb uses that) we need the full smb
428 char outbuf[smb_size];
430 static bool already_got_session = False;
434 memset(outbuf, '\0', sizeof(outbuf));
436 smb_setlen(outbuf,0);
439 case 0x81: /* session request */
441 if (already_got_session) {
442 exit_server_cleanly("multiple session request not permitted");
445 SCVAL(outbuf,0,0x82);
447 if (name_len(inbuf+4) > 50 ||
448 name_len(inbuf+4 + name_len(inbuf + 4)) > 50) {
449 DEBUG(0,("Invalid name length in session request\n"));
452 name_extract(inbuf,4,name1);
453 name_type = name_extract(inbuf,4 + name_len(inbuf + 4),name2);
454 DEBUG(2,("netbios connect: name1=%s name2=%s\n",
457 set_local_machine_name(name1, True);
458 set_remote_machine_name(name2, True);
460 DEBUG(2,("netbios connect: local=%s remote=%s, name type = %x\n",
461 get_local_machine_name(), get_remote_machine_name(),
464 if (name_type == 'R') {
465 /* We are being asked for a pathworks session ---
467 SCVAL(outbuf, 0,0x83);
471 /* only add the client's machine name to the list
472 of possibly valid usernames if we are operating
473 in share mode security */
474 if (lp_security() == SEC_SHARE) {
475 add_session_user(get_remote_machine_name());
478 reload_services(True);
481 already_got_session = True;
484 case 0x89: /* session keepalive request
485 (some old clients produce this?) */
486 SCVAL(outbuf,0,SMBkeepalive);
490 case 0x82: /* positive session response */
491 case 0x83: /* negative session response */
492 case 0x84: /* retarget session response */
493 DEBUG(0,("Unexpected session response\n"));
496 case SMBkeepalive: /* session keepalive */
501 DEBUG(5,("init msg_type=0x%x msg_flags=0x%x\n",
502 msg_type, msg_flags));
504 srv_send_smb(smbd_server_fd(), outbuf, false);
508 /****************************************************************************
510 conn POINTER CAN BE NULL HERE !
511 ****************************************************************************/
513 void reply_tcon(struct smb_request *req)
515 connection_struct *conn = req->conn;
517 char *service_buf = NULL;
518 char *password = NULL;
523 DATA_BLOB password_blob;
524 TALLOC_CTX *ctx = talloc_tos();
526 START_PROFILE(SMBtcon);
528 if (smb_buflen(req->inbuf) < 4) {
529 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
530 END_PROFILE(SMBtcon);
534 p = smb_buf(req->inbuf)+1;
535 p += srvstr_pull_buf_talloc(ctx, req->inbuf, req->flags2,
536 &service_buf, p, STR_TERMINATE) + 1;
537 pwlen = srvstr_pull_buf_talloc(ctx, req->inbuf, req->flags2,
538 &password, p, STR_TERMINATE) + 1;
540 p += srvstr_pull_buf_talloc(ctx, req->inbuf, req->flags2,
541 &dev, p, STR_TERMINATE) + 1;
543 if (service_buf == NULL || password == NULL || dev == NULL) {
544 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
545 END_PROFILE(SMBtcon);
548 p = strrchr_m(service_buf,'\\');
552 service = service_buf;
555 password_blob = data_blob(password, pwlen+1);
557 conn = make_connection(service,password_blob,dev,req->vuid,&nt_status);
560 data_blob_clear_free(&password_blob);
563 reply_nterror(req, nt_status);
564 END_PROFILE(SMBtcon);
568 reply_outbuf(req, 2, 0);
569 SSVAL(req->outbuf,smb_vwv0,max_recv);
570 SSVAL(req->outbuf,smb_vwv1,conn->cnum);
571 SSVAL(req->outbuf,smb_tid,conn->cnum);
573 DEBUG(3,("tcon service=%s cnum=%d\n",
574 service, conn->cnum));
576 END_PROFILE(SMBtcon);
580 /****************************************************************************
581 Reply to a tcon and X.
582 conn POINTER CAN BE NULL HERE !
583 ****************************************************************************/
585 void reply_tcon_and_X(struct smb_request *req)
587 connection_struct *conn = req->conn;
588 char *service = NULL;
590 TALLOC_CTX *ctx = talloc_tos();
591 /* what the cleint thinks the device is */
592 char *client_devicetype = NULL;
593 /* what the server tells the client the share represents */
594 const char *server_devicetype;
601 START_PROFILE(SMBtconX);
604 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
605 END_PROFILE(SMBtconX);
609 passlen = SVAL(req->inbuf,smb_vwv3);
610 tcon_flags = SVAL(req->inbuf,smb_vwv2);
612 /* we might have to close an old one */
613 if ((tcon_flags & 0x1) && conn) {
614 close_cnum(conn,req->vuid);
619 if ((passlen > MAX_PASS_LEN) || (passlen >= smb_buflen(req->inbuf))) {
620 reply_doserror(req, ERRDOS, ERRbuftoosmall);
621 END_PROFILE(SMBtconX);
625 if (global_encrypted_passwords_negotiated) {
626 password = data_blob_talloc(talloc_tos(), smb_buf(req->inbuf),
628 if (lp_security() == SEC_SHARE) {
630 * Security = share always has a pad byte
631 * after the password.
633 p = smb_buf(req->inbuf) + passlen + 1;
635 p = smb_buf(req->inbuf) + passlen;
638 password = data_blob_talloc(talloc_tos(), smb_buf(req->inbuf),
640 /* Ensure correct termination */
641 password.data[passlen]=0;
642 p = smb_buf(req->inbuf) + passlen + 1;
645 p += srvstr_pull_buf_talloc(ctx, req->inbuf, req->flags2, &path, p,
649 data_blob_clear_free(&password);
650 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
651 END_PROFILE(SMBtconX);
656 * the service name can be either: \\server\share
657 * or share directly like on the DELL PowerVault 705
660 q = strchr_m(path+2,'\\');
662 data_blob_clear_free(&password);
663 reply_doserror(req, ERRDOS, ERRnosuchshare);
664 END_PROFILE(SMBtconX);
672 p += srvstr_pull_talloc(ctx, req->inbuf, req->flags2,
673 &client_devicetype, p,
674 MIN(6,smb_bufrem(req->inbuf, p)), STR_ASCII);
676 if (client_devicetype == NULL) {
677 data_blob_clear_free(&password);
678 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
679 END_PROFILE(SMBtconX);
683 DEBUG(4,("Client requested device type [%s] for share [%s]\n", client_devicetype, service));
685 conn = make_connection(service, password, client_devicetype,
686 req->vuid, &nt_status);
689 data_blob_clear_free(&password);
692 reply_nterror(req, nt_status);
693 END_PROFILE(SMBtconX);
698 server_devicetype = "IPC";
699 else if ( IS_PRINT(conn) )
700 server_devicetype = "LPT1:";
702 server_devicetype = "A:";
704 if (Protocol < PROTOCOL_NT1) {
705 reply_outbuf(req, 2, 0);
706 if (message_push_string(&req->outbuf, server_devicetype,
707 STR_TERMINATE|STR_ASCII) == -1) {
708 reply_nterror(req, NT_STATUS_NO_MEMORY);
709 END_PROFILE(SMBtconX);
713 /* NT sets the fstype of IPC$ to the null string */
714 const char *fstype = IS_IPC(conn) ? "" : lp_fstype(SNUM(conn));
716 if (tcon_flags & TCONX_FLAG_EXTENDED_RESPONSE) {
717 /* Return permissions. */
721 reply_outbuf(req, 7, 0);
724 perm1 = FILE_ALL_ACCESS;
725 perm2 = FILE_ALL_ACCESS;
727 perm1 = CAN_WRITE(conn) ?
732 SIVAL(req->outbuf, smb_vwv3, perm1);
733 SIVAL(req->outbuf, smb_vwv5, perm2);
735 reply_outbuf(req, 3, 0);
738 if ((message_push_string(&req->outbuf, server_devicetype,
739 STR_TERMINATE|STR_ASCII) == -1)
740 || (message_push_string(&req->outbuf, fstype,
741 STR_TERMINATE) == -1)) {
742 reply_nterror(req, NT_STATUS_NO_MEMORY);
743 END_PROFILE(SMBtconX);
747 /* what does setting this bit do? It is set by NT4 and
748 may affect the ability to autorun mounted cdroms */
749 SSVAL(req->outbuf, smb_vwv2, SMB_SUPPORT_SEARCH_BITS|
750 (lp_csc_policy(SNUM(conn)) << 2));
752 init_dfsroot(conn, req->inbuf, req->outbuf);
756 DEBUG(3,("tconX service=%s \n",
759 /* set the incoming and outgoing tid to the just created one */
760 SSVAL(req->inbuf,smb_tid,conn->cnum);
761 SSVAL(req->outbuf,smb_tid,conn->cnum);
763 END_PROFILE(SMBtconX);
769 /****************************************************************************
770 Reply to an unknown type.
771 ****************************************************************************/
773 void reply_unknown_new(struct smb_request *req, uint8 type)
775 DEBUG(0, ("unknown command type (%s): type=%d (0x%X)\n",
776 smb_fn_name(type), type, type));
777 reply_doserror(req, ERRSRV, ERRunknownsmb);
781 /****************************************************************************
783 conn POINTER CAN BE NULL HERE !
784 ****************************************************************************/
786 void reply_ioctl(struct smb_request *req)
788 connection_struct *conn = req->conn;
795 START_PROFILE(SMBioctl);
798 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
799 END_PROFILE(SMBioctl);
803 device = SVAL(req->inbuf,smb_vwv1);
804 function = SVAL(req->inbuf,smb_vwv2);
805 ioctl_code = (device << 16) + function;
807 DEBUG(4, ("Received IOCTL (code 0x%x)\n", ioctl_code));
809 switch (ioctl_code) {
810 case IOCTL_QUERY_JOB_INFO:
814 reply_doserror(req, ERRSRV, ERRnosupport);
815 END_PROFILE(SMBioctl);
819 reply_outbuf(req, 8, replysize+1);
820 SSVAL(req->outbuf,smb_vwv1,replysize); /* Total data bytes returned */
821 SSVAL(req->outbuf,smb_vwv5,replysize); /* Data bytes this buffer */
822 SSVAL(req->outbuf,smb_vwv6,52); /* Offset to data */
823 p = smb_buf(req->outbuf);
824 memset(p, '\0', replysize+1); /* valgrind-safe. */
825 p += 1; /* Allow for alignment */
827 switch (ioctl_code) {
828 case IOCTL_QUERY_JOB_INFO:
830 files_struct *fsp = file_fsp(SVAL(req->inbuf,
833 reply_doserror(req, ERRDOS, ERRbadfid);
834 END_PROFILE(SMBioctl);
837 SSVAL(p,0,fsp->rap_print_jobid); /* Job number */
838 srvstr_push((char *)req->outbuf, req->flags2, p+2,
840 STR_TERMINATE|STR_ASCII);
842 srvstr_push((char *)req->outbuf, req->flags2,
843 p+18, lp_servicename(SNUM(conn)),
844 13, STR_TERMINATE|STR_ASCII);
852 END_PROFILE(SMBioctl);
856 /****************************************************************************
857 Strange checkpath NTSTATUS mapping.
858 ****************************************************************************/
860 static NTSTATUS map_checkpath_error(const char *inbuf, NTSTATUS status)
862 /* Strange DOS error code semantics only for checkpath... */
863 if (!(SVAL(inbuf,smb_flg2) & FLAGS2_32_BIT_ERROR_CODES)) {
864 if (NT_STATUS_EQUAL(NT_STATUS_OBJECT_NAME_INVALID,status)) {
865 /* We need to map to ERRbadpath */
866 return NT_STATUS_OBJECT_PATH_NOT_FOUND;
872 /****************************************************************************
873 Reply to a checkpath.
874 ****************************************************************************/
876 void reply_checkpath(struct smb_request *req)
878 connection_struct *conn = req->conn;
880 SMB_STRUCT_STAT sbuf;
882 TALLOC_CTX *ctx = talloc_tos();
884 START_PROFILE(SMBcheckpath);
886 srvstr_get_path(ctx,(char *)req->inbuf, req->flags2, &name,
887 smb_buf(req->inbuf) + 1, 0,
888 STR_TERMINATE, &status);
889 if (!NT_STATUS_IS_OK(status)) {
890 status = map_checkpath_error((char *)req->inbuf, status);
891 reply_nterror(req, status);
892 END_PROFILE(SMBcheckpath);
896 status = resolve_dfspath(ctx, conn,
897 req->flags2 & FLAGS2_DFS_PATHNAMES,
900 if (!NT_STATUS_IS_OK(status)) {
901 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
902 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
904 END_PROFILE(SMBcheckpath);
910 DEBUG(3,("reply_checkpath %s mode=%d\n", name, (int)SVAL(req->inbuf,smb_vwv0)));
912 status = unix_convert(ctx, conn, name, False, &name, NULL, &sbuf);
913 if (!NT_STATUS_IS_OK(status)) {
917 status = check_name(conn, name);
918 if (!NT_STATUS_IS_OK(status)) {
919 DEBUG(3,("reply_checkpath: check_name of %s failed (%s)\n",name,nt_errstr(status)));
923 if (!VALID_STAT(sbuf) && (SMB_VFS_STAT(conn,name,&sbuf) != 0)) {
924 DEBUG(3,("reply_checkpath: stat of %s failed (%s)\n",name,strerror(errno)));
925 status = map_nt_error_from_unix(errno);
929 if (!S_ISDIR(sbuf.st_mode)) {
930 reply_botherror(req, NT_STATUS_NOT_A_DIRECTORY,
932 END_PROFILE(SMBcheckpath);
936 reply_outbuf(req, 0, 0);
938 END_PROFILE(SMBcheckpath);
943 END_PROFILE(SMBcheckpath);
945 /* We special case this - as when a Windows machine
946 is parsing a path is steps through the components
947 one at a time - if a component fails it expects
948 ERRbadpath, not ERRbadfile.
950 status = map_checkpath_error((char *)req->inbuf, status);
951 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
953 * Windows returns different error codes if
954 * the parent directory is valid but not the
955 * last component - it returns NT_STATUS_OBJECT_NAME_NOT_FOUND
956 * for that case and NT_STATUS_OBJECT_PATH_NOT_FOUND
957 * if the path is invalid.
959 reply_botherror(req, NT_STATUS_OBJECT_NAME_NOT_FOUND,
964 reply_nterror(req, status);
967 /****************************************************************************
969 ****************************************************************************/
971 void reply_getatr(struct smb_request *req)
973 connection_struct *conn = req->conn;
975 SMB_STRUCT_STAT sbuf;
981 TALLOC_CTX *ctx = talloc_tos();
983 START_PROFILE(SMBgetatr);
985 p = smb_buf(req->inbuf) + 1;
986 p += srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname, p,
987 0, STR_TERMINATE, &status);
988 if (!NT_STATUS_IS_OK(status)) {
989 reply_nterror(req, status);
990 END_PROFILE(SMBgetatr);
994 status = resolve_dfspath(ctx, conn,
995 req->flags2 & FLAGS2_DFS_PATHNAMES,
998 if (!NT_STATUS_IS_OK(status)) {
999 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1000 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1001 ERRSRV, ERRbadpath);
1002 END_PROFILE(SMBgetatr);
1005 reply_nterror(req, status);
1006 END_PROFILE(SMBgetatr);
1010 /* dos smetimes asks for a stat of "" - it returns a "hidden directory"
1011 under WfWg - weird! */
1012 if (*fname == '\0') {
1013 mode = aHIDDEN | aDIR;
1014 if (!CAN_WRITE(conn)) {
1020 status = unix_convert(ctx, conn, fname, False, &fname, NULL,&sbuf);
1021 if (!NT_STATUS_IS_OK(status)) {
1022 reply_nterror(req, status);
1023 END_PROFILE(SMBgetatr);
1026 status = check_name(conn, fname);
1027 if (!NT_STATUS_IS_OK(status)) {
1028 DEBUG(3,("reply_getatr: check_name of %s failed (%s)\n",fname,nt_errstr(status)));
1029 reply_nterror(req, status);
1030 END_PROFILE(SMBgetatr);
1033 if (!VALID_STAT(sbuf) && (SMB_VFS_STAT(conn,fname,&sbuf) != 0)) {
1034 DEBUG(3,("reply_getatr: stat of %s failed (%s)\n",fname,strerror(errno)));
1035 reply_unixerror(req, ERRDOS,ERRbadfile);
1036 END_PROFILE(SMBgetatr);
1040 mode = dos_mode(conn,fname,&sbuf);
1041 size = sbuf.st_size;
1042 mtime = sbuf.st_mtime;
1048 reply_outbuf(req, 10, 0);
1050 SSVAL(req->outbuf,smb_vwv0,mode);
1051 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1052 srv_put_dos_date3((char *)req->outbuf,smb_vwv1,mtime & ~1);
1054 srv_put_dos_date3((char *)req->outbuf,smb_vwv1,mtime);
1056 SIVAL(req->outbuf,smb_vwv3,(uint32)size);
1058 if (Protocol >= PROTOCOL_NT1) {
1059 SSVAL(req->outbuf, smb_flg2,
1060 SVAL(req->outbuf, smb_flg2) | FLAGS2_IS_LONG_NAME);
1063 DEBUG(3,("reply_getatr: name=%s mode=%d size=%u\n", fname, mode, (unsigned int)size ) );
1065 END_PROFILE(SMBgetatr);
1069 /****************************************************************************
1071 ****************************************************************************/
1073 void reply_setatr(struct smb_request *req)
1075 struct timespec ts[2];
1076 connection_struct *conn = req->conn;
1080 SMB_STRUCT_STAT sbuf;
1083 TALLOC_CTX *ctx = talloc_tos();
1085 START_PROFILE(SMBsetatr);
1090 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1094 p = smb_buf(req->inbuf) + 1;
1095 p += srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname, p,
1096 0, STR_TERMINATE, &status);
1097 if (!NT_STATUS_IS_OK(status)) {
1098 reply_nterror(req, status);
1099 END_PROFILE(SMBsetatr);
1103 status = resolve_dfspath(ctx, conn,
1104 req->flags2 & FLAGS2_DFS_PATHNAMES,
1107 if (!NT_STATUS_IS_OK(status)) {
1108 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
1109 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1110 ERRSRV, ERRbadpath);
1111 END_PROFILE(SMBsetatr);
1114 reply_nterror(req, status);
1115 END_PROFILE(SMBsetatr);
1119 status = unix_convert(ctx, conn, fname, False, &fname, NULL, &sbuf);
1120 if (!NT_STATUS_IS_OK(status)) {
1121 reply_nterror(req, status);
1122 END_PROFILE(SMBsetatr);
1126 status = check_name(conn, fname);
1127 if (!NT_STATUS_IS_OK(status)) {
1128 reply_nterror(req, status);
1129 END_PROFILE(SMBsetatr);
1133 if (fname[0] == '.' && fname[1] == '\0') {
1135 * Not sure here is the right place to catch this
1136 * condition. Might be moved to somewhere else later -- vl
1138 reply_nterror(req, NT_STATUS_ACCESS_DENIED);
1139 END_PROFILE(SMBsetatr);
1143 mode = SVAL(req->inbuf,smb_vwv0);
1144 mtime = srv_make_unix_date3(req->inbuf+smb_vwv1);
1146 ts[1] = convert_time_t_to_timespec(mtime);
1147 status = smb_set_file_time(conn, NULL, fname,
1149 if (!NT_STATUS_IS_OK(status)) {
1150 reply_unixerror(req, ERRDOS, ERRnoaccess);
1151 END_PROFILE(SMBsetatr);
1155 if (mode != FILE_ATTRIBUTE_NORMAL) {
1156 if (VALID_STAT_OF_DIR(sbuf))
1161 if (file_set_dosmode(conn,fname,mode,&sbuf,NULL,false) != 0) {
1162 reply_unixerror(req, ERRDOS, ERRnoaccess);
1163 END_PROFILE(SMBsetatr);
1168 reply_outbuf(req, 0, 0);
1170 DEBUG( 3, ( "setatr name=%s mode=%d\n", fname, mode ) );
1172 END_PROFILE(SMBsetatr);
1176 /****************************************************************************
1178 ****************************************************************************/
1180 void reply_dskattr(struct smb_request *req)
1182 connection_struct *conn = req->conn;
1183 SMB_BIG_UINT dfree,dsize,bsize;
1184 START_PROFILE(SMBdskattr);
1186 if (get_dfree_info(conn,".",True,&bsize,&dfree,&dsize) == (SMB_BIG_UINT)-1) {
1187 reply_unixerror(req, ERRHRD, ERRgeneral);
1188 END_PROFILE(SMBdskattr);
1192 reply_outbuf(req, 5, 0);
1194 if (Protocol <= PROTOCOL_LANMAN2) {
1195 double total_space, free_space;
1196 /* we need to scale this to a number that DOS6 can handle. We
1197 use floating point so we can handle large drives on systems
1198 that don't have 64 bit integers
1200 we end up displaying a maximum of 2G to DOS systems
1202 total_space = dsize * (double)bsize;
1203 free_space = dfree * (double)bsize;
1205 dsize = (SMB_BIG_UINT)((total_space+63*512) / (64*512));
1206 dfree = (SMB_BIG_UINT)((free_space+63*512) / (64*512));
1208 if (dsize > 0xFFFF) dsize = 0xFFFF;
1209 if (dfree > 0xFFFF) dfree = 0xFFFF;
1211 SSVAL(req->outbuf,smb_vwv0,dsize);
1212 SSVAL(req->outbuf,smb_vwv1,64); /* this must be 64 for dos systems */
1213 SSVAL(req->outbuf,smb_vwv2,512); /* and this must be 512 */
1214 SSVAL(req->outbuf,smb_vwv3,dfree);
1216 SSVAL(req->outbuf,smb_vwv0,dsize);
1217 SSVAL(req->outbuf,smb_vwv1,bsize/512);
1218 SSVAL(req->outbuf,smb_vwv2,512);
1219 SSVAL(req->outbuf,smb_vwv3,dfree);
1222 DEBUG(3,("dskattr dfree=%d\n", (unsigned int)dfree));
1224 END_PROFILE(SMBdskattr);
1228 /****************************************************************************
1230 Can be called from SMBsearch, SMBffirst or SMBfunique.
1231 ****************************************************************************/
1233 void reply_search(struct smb_request *req)
1235 connection_struct *conn = req->conn;
1237 char *directory = NULL;
1243 unsigned int numentries = 0;
1244 unsigned int maxentries = 0;
1245 bool finished = False;
1251 bool check_descend = False;
1252 bool expect_close = False;
1254 bool mask_contains_wcard = False;
1255 bool allow_long_path_components = (req->flags2 & FLAGS2_LONG_PATH_COMPONENTS) ? True : False;
1256 TALLOC_CTX *ctx = talloc_tos();
1257 bool ask_sharemode = lp_parm_bool(SNUM(conn), "smbd", "search ask sharemode", true);
1259 START_PROFILE(SMBsearch);
1262 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1263 END_PROFILE(SMBsearch);
1267 if (lp_posix_pathnames()) {
1268 reply_unknown_new(req, CVAL(req->inbuf, smb_com));
1269 END_PROFILE(SMBsearch);
1273 /* If we were called as SMBffirst then we must expect close. */
1274 if(CVAL(req->inbuf,smb_com) == SMBffirst) {
1275 expect_close = True;
1278 reply_outbuf(req, 1, 3);
1279 maxentries = SVAL(req->inbuf,smb_vwv0);
1280 dirtype = SVAL(req->inbuf,smb_vwv1);
1281 p = smb_buf(req->inbuf) + 1;
1282 p += srvstr_get_path_wcard(ctx,
1290 &mask_contains_wcard);
1291 if (!NT_STATUS_IS_OK(nt_status)) {
1292 reply_nterror(req, nt_status);
1293 END_PROFILE(SMBsearch);
1297 nt_status = resolve_dfspath_wcard(ctx, conn,
1298 req->flags2 & FLAGS2_DFS_PATHNAMES,
1301 &mask_contains_wcard);
1302 if (!NT_STATUS_IS_OK(nt_status)) {
1303 if (NT_STATUS_EQUAL(nt_status,NT_STATUS_PATH_NOT_COVERED)) {
1304 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
1305 ERRSRV, ERRbadpath);
1306 END_PROFILE(SMBsearch);
1309 reply_nterror(req, nt_status);
1310 END_PROFILE(SMBsearch);
1315 status_len = SVAL(p, 0);
1318 /* dirtype &= ~aDIR; */
1320 if (status_len == 0) {
1321 SMB_STRUCT_STAT sbuf;
1323 nt_status = unix_convert(ctx, conn, path, True,
1324 &directory, NULL, &sbuf);
1325 if (!NT_STATUS_IS_OK(nt_status)) {
1326 reply_nterror(req, nt_status);
1327 END_PROFILE(SMBsearch);
1331 nt_status = check_name(conn, directory);
1332 if (!NT_STATUS_IS_OK(nt_status)) {
1333 reply_nterror(req, nt_status);
1334 END_PROFILE(SMBsearch);
1338 p = strrchr_m(directory,'/');
1341 directory = talloc_strdup(ctx,".");
1343 reply_nterror(req, NT_STATUS_NO_MEMORY);
1344 END_PROFILE(SMBsearch);
1352 if (*directory == '\0') {
1353 directory = talloc_strdup(ctx,".");
1355 reply_nterror(req, NT_STATUS_NO_MEMORY);
1356 END_PROFILE(SMBsearch);
1360 memset((char *)status,'\0',21);
1361 SCVAL(status,0,(dirtype & 0x1F));
1363 nt_status = dptr_create(conn,
1369 mask_contains_wcard,
1372 if (!NT_STATUS_IS_OK(nt_status)) {
1373 reply_nterror(req, nt_status);
1374 END_PROFILE(SMBsearch);
1377 dptr_num = dptr_dnum(conn->dirptr);
1381 memcpy(status,p,21);
1382 status_dirtype = CVAL(status,0) & 0x1F;
1383 if (status_dirtype != (dirtype & 0x1F)) {
1384 dirtype = status_dirtype;
1387 conn->dirptr = dptr_fetch(status+12,&dptr_num);
1388 if (!conn->dirptr) {
1391 string_set(&conn->dirpath,dptr_path(dptr_num));
1392 mask = dptr_wcard(dptr_num);
1397 * For a 'continue' search we have no string. So
1398 * check from the initial saved string.
1400 mask_contains_wcard = ms_has_wild(mask);
1401 dirtype = dptr_attr(dptr_num);
1404 DEBUG(4,("dptr_num is %d\n",dptr_num));
1406 if ((dirtype&0x1F) == aVOLID) {
1407 char buf[DIR_STRUCT_SIZE];
1408 memcpy(buf,status,21);
1409 if (!make_dir_struct(ctx,buf,"???????????",volume_label(SNUM(conn)),
1410 0,aVOLID,0,!allow_long_path_components)) {
1411 reply_nterror(req, NT_STATUS_NO_MEMORY);
1412 END_PROFILE(SMBsearch);
1415 dptr_fill(buf+12,dptr_num);
1416 if (dptr_zero(buf+12) && (status_len==0)) {
1421 if (message_push_blob(&req->outbuf,
1422 data_blob_const(buf, sizeof(buf)))
1424 reply_nterror(req, NT_STATUS_NO_MEMORY);
1425 END_PROFILE(SMBsearch);
1433 ((uint8 *)smb_buf(req->outbuf) + 3 - req->outbuf))
1436 DEBUG(8,("dirpath=<%s> dontdescend=<%s>\n",
1437 conn->dirpath,lp_dontdescend(SNUM(conn))));
1438 if (in_list(conn->dirpath, lp_dontdescend(SNUM(conn)),True)) {
1439 check_descend = True;
1442 for (i=numentries;(i<maxentries) && !finished;i++) {
1443 finished = !get_dir_entry(ctx,
1454 char buf[DIR_STRUCT_SIZE];
1455 memcpy(buf,status,21);
1456 if (!make_dir_struct(ctx,
1463 !allow_long_path_components)) {
1464 reply_nterror(req, NT_STATUS_NO_MEMORY);
1465 END_PROFILE(SMBsearch);
1468 if (!dptr_fill(buf+12,dptr_num)) {
1471 if (message_push_blob(&req->outbuf,
1472 data_blob_const(buf, sizeof(buf)))
1474 reply_nterror(req, NT_STATUS_NO_MEMORY);
1475 END_PROFILE(SMBsearch);
1485 /* If we were called as SMBffirst with smb_search_id == NULL
1486 and no entries were found then return error and close dirptr
1489 if (numentries == 0) {
1490 dptr_close(&dptr_num);
1491 } else if(expect_close && status_len == 0) {
1492 /* Close the dptr - we know it's gone */
1493 dptr_close(&dptr_num);
1496 /* If we were called as SMBfunique, then we can close the dirptr now ! */
1497 if(dptr_num >= 0 && CVAL(req->inbuf,smb_com) == SMBfunique) {
1498 dptr_close(&dptr_num);
1501 if ((numentries == 0) && !mask_contains_wcard) {
1502 reply_botherror(req, STATUS_NO_MORE_FILES, ERRDOS, ERRnofiles);
1503 END_PROFILE(SMBsearch);
1507 SSVAL(req->outbuf,smb_vwv0,numentries);
1508 SSVAL(req->outbuf,smb_vwv1,3 + numentries * DIR_STRUCT_SIZE);
1509 SCVAL(smb_buf(req->outbuf),0,5);
1510 SSVAL(smb_buf(req->outbuf),1,numentries*DIR_STRUCT_SIZE);
1512 /* The replies here are never long name. */
1513 SSVAL(req->outbuf, smb_flg2,
1514 SVAL(req->outbuf, smb_flg2) & (~FLAGS2_IS_LONG_NAME));
1515 if (!allow_long_path_components) {
1516 SSVAL(req->outbuf, smb_flg2,
1517 SVAL(req->outbuf, smb_flg2)
1518 & (~FLAGS2_LONG_PATH_COMPONENTS));
1521 /* This SMB *always* returns ASCII names. Remove the unicode bit in flags2. */
1522 SSVAL(req->outbuf, smb_flg2,
1523 (SVAL(req->outbuf, smb_flg2) & (~FLAGS2_UNICODE_STRINGS)));
1526 directory = dptr_path(dptr_num);
1529 DEBUG(4,("%s mask=%s path=%s dtype=%d nument=%u of %u\n",
1530 smb_fn_name(CVAL(req->inbuf,smb_com)),
1532 directory ? directory : "./",
1537 END_PROFILE(SMBsearch);
1541 /****************************************************************************
1542 Reply to a fclose (stop directory search).
1543 ****************************************************************************/
1545 void reply_fclose(struct smb_request *req)
1553 bool path_contains_wcard = False;
1554 TALLOC_CTX *ctx = talloc_tos();
1556 START_PROFILE(SMBfclose);
1558 if (lp_posix_pathnames()) {
1559 reply_unknown_new(req, CVAL(req->inbuf, smb_com));
1560 END_PROFILE(SMBfclose);
1564 p = smb_buf(req->inbuf) + 1;
1565 p += srvstr_get_path_wcard(ctx,
1573 &path_contains_wcard);
1574 if (!NT_STATUS_IS_OK(err)) {
1575 reply_nterror(req, err);
1576 END_PROFILE(SMBfclose);
1580 status_len = SVAL(p,0);
1583 if (status_len == 0) {
1584 reply_doserror(req, ERRSRV, ERRsrverror);
1585 END_PROFILE(SMBfclose);
1589 memcpy(status,p,21);
1591 if(dptr_fetch(status+12,&dptr_num)) {
1592 /* Close the dptr - we know it's gone */
1593 dptr_close(&dptr_num);
1596 reply_outbuf(req, 1, 0);
1597 SSVAL(req->outbuf,smb_vwv0,0);
1599 DEBUG(3,("search close\n"));
1601 END_PROFILE(SMBfclose);
1605 /****************************************************************************
1607 ****************************************************************************/
1609 void reply_open(struct smb_request *req)
1611 connection_struct *conn = req->conn;
1617 SMB_STRUCT_STAT sbuf;
1624 uint32 create_disposition;
1625 uint32 create_options = 0;
1627 TALLOC_CTX *ctx = talloc_tos();
1629 START_PROFILE(SMBopen);
1632 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1633 END_PROFILE(SMBopen);
1637 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
1638 deny_mode = SVAL(req->inbuf,smb_vwv0);
1639 dos_attr = SVAL(req->inbuf,smb_vwv1);
1641 srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname,
1642 smb_buf(req->inbuf)+1, 0,
1643 STR_TERMINATE, &status);
1644 if (!NT_STATUS_IS_OK(status)) {
1645 reply_nterror(req, status);
1646 END_PROFILE(SMBopen);
1650 if (!map_open_params_to_ntcreate(
1651 fname, deny_mode, OPENX_FILE_EXISTS_OPEN, &access_mask,
1652 &share_mode, &create_disposition, &create_options)) {
1653 reply_nterror(req, NT_STATUS_DOS(ERRDOS, ERRbadaccess));
1654 END_PROFILE(SMBopen);
1658 status = create_file(conn, /* conn */
1660 0, /* root_dir_fid */
1662 access_mask, /* access_mask */
1663 share_mode, /* share_access */
1664 create_disposition, /* create_disposition*/
1665 create_options, /* create_options */
1666 dos_attr, /* file_attributes */
1667 oplock_request, /* oplock_request */
1668 0, /* allocation_size */
1675 if (!NT_STATUS_IS_OK(status)) {
1676 if (open_was_deferred(req->mid)) {
1677 /* We have re-scheduled this call. */
1678 END_PROFILE(SMBopen);
1681 reply_openerror(req, status);
1682 END_PROFILE(SMBopen);
1686 size = sbuf.st_size;
1687 fattr = dos_mode(conn,fsp->fsp_name,&sbuf);
1688 mtime = sbuf.st_mtime;
1691 DEBUG(3,("attempt to open a directory %s\n",fsp->fsp_name));
1692 close_file(fsp,ERROR_CLOSE);
1693 reply_doserror(req, ERRDOS,ERRnoaccess);
1694 END_PROFILE(SMBopen);
1698 reply_outbuf(req, 7, 0);
1699 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
1700 SSVAL(req->outbuf,smb_vwv1,fattr);
1701 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1702 srv_put_dos_date3((char *)req->outbuf,smb_vwv2,mtime & ~1);
1704 srv_put_dos_date3((char *)req->outbuf,smb_vwv2,mtime);
1706 SIVAL(req->outbuf,smb_vwv4,(uint32)size);
1707 SSVAL(req->outbuf,smb_vwv6,deny_mode);
1709 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
1710 SCVAL(req->outbuf,smb_flg,
1711 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1714 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1715 SCVAL(req->outbuf,smb_flg,
1716 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1718 END_PROFILE(SMBopen);
1722 /****************************************************************************
1723 Reply to an open and X.
1724 ****************************************************************************/
1726 void reply_open_and_X(struct smb_request *req)
1728 connection_struct *conn = req->conn;
1733 /* Breakout the oplock request bits so we can set the
1734 reply bits separately. */
1735 int ex_oplock_request;
1736 int core_oplock_request;
1739 int smb_sattr = SVAL(req->inbuf,smb_vwv4);
1740 uint32 smb_time = make_unix_date3(req->inbuf+smb_vwv6);
1745 SMB_STRUCT_STAT sbuf;
1749 SMB_BIG_UINT allocation_size;
1750 ssize_t retval = -1;
1753 uint32 create_disposition;
1754 uint32 create_options = 0;
1755 TALLOC_CTX *ctx = talloc_tos();
1757 START_PROFILE(SMBopenX);
1759 if (req->wct < 15) {
1760 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1761 END_PROFILE(SMBopenX);
1765 open_flags = SVAL(req->inbuf,smb_vwv2);
1766 deny_mode = SVAL(req->inbuf,smb_vwv3);
1767 smb_attr = SVAL(req->inbuf,smb_vwv5);
1768 ex_oplock_request = EXTENDED_OPLOCK_REQUEST(req->inbuf);
1769 core_oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
1770 oplock_request = ex_oplock_request | core_oplock_request;
1771 smb_ofun = SVAL(req->inbuf,smb_vwv8);
1772 allocation_size = (SMB_BIG_UINT)IVAL(req->inbuf,smb_vwv9);
1774 /* If it's an IPC, pass off the pipe handler. */
1776 if (lp_nt_pipe_support()) {
1777 reply_open_pipe_and_X(conn, req);
1779 reply_doserror(req, ERRSRV, ERRaccess);
1781 END_PROFILE(SMBopenX);
1785 /* XXXX we need to handle passed times, sattr and flags */
1786 srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname,
1787 smb_buf(req->inbuf), 0, STR_TERMINATE,
1789 if (!NT_STATUS_IS_OK(status)) {
1790 reply_nterror(req, status);
1791 END_PROFILE(SMBopenX);
1795 if (!map_open_params_to_ntcreate(
1796 fname, deny_mode, smb_ofun, &access_mask,
1797 &share_mode, &create_disposition, &create_options)) {
1798 reply_nterror(req, NT_STATUS_DOS(ERRDOS, ERRbadaccess));
1799 END_PROFILE(SMBopenX);
1803 status = create_file(conn, /* conn */
1805 0, /* root_dir_fid */
1807 access_mask, /* access_mask */
1808 share_mode, /* share_access */
1809 create_disposition, /* create_disposition*/
1810 create_options, /* create_options */
1811 smb_attr, /* file_attributes */
1812 oplock_request, /* oplock_request */
1813 0, /* allocation_size */
1817 &smb_action, /* pinfo */
1820 if (!NT_STATUS_IS_OK(status)) {
1821 END_PROFILE(SMBopenX);
1822 if (open_was_deferred(req->mid)) {
1823 /* We have re-scheduled this call. */
1826 reply_openerror(req, status);
1830 /* Setting the "size" field in vwv9 and vwv10 causes the file to be set to this size,
1831 if the file is truncated or created. */
1832 if (((smb_action == FILE_WAS_CREATED) || (smb_action == FILE_WAS_OVERWRITTEN)) && allocation_size) {
1833 fsp->initial_allocation_size = smb_roundup(fsp->conn, allocation_size);
1834 if (vfs_allocate_file_space(fsp, fsp->initial_allocation_size) == -1) {
1835 close_file(fsp,ERROR_CLOSE);
1836 reply_nterror(req, NT_STATUS_DISK_FULL);
1837 END_PROFILE(SMBopenX);
1840 retval = vfs_set_filelen(fsp, (SMB_OFF_T)allocation_size);
1842 close_file(fsp,ERROR_CLOSE);
1843 reply_nterror(req, NT_STATUS_DISK_FULL);
1844 END_PROFILE(SMBopenX);
1847 sbuf.st_size = get_allocation_size(conn,fsp,&sbuf);
1850 fattr = dos_mode(conn,fsp->fsp_name,&sbuf);
1851 mtime = sbuf.st_mtime;
1853 close_file(fsp,ERROR_CLOSE);
1854 reply_doserror(req, ERRDOS, ERRnoaccess);
1855 END_PROFILE(SMBopenX);
1859 /* If the caller set the extended oplock request bit
1860 and we granted one (by whatever means) - set the
1861 correct bit for extended oplock reply.
1864 if (ex_oplock_request && lp_fake_oplocks(SNUM(conn))) {
1865 smb_action |= EXTENDED_OPLOCK_GRANTED;
1868 if(ex_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1869 smb_action |= EXTENDED_OPLOCK_GRANTED;
1872 /* If the caller set the core oplock request bit
1873 and we granted one (by whatever means) - set the
1874 correct bit for core oplock reply.
1877 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
1878 reply_outbuf(req, 19, 0);
1880 reply_outbuf(req, 15, 0);
1883 if (core_oplock_request && lp_fake_oplocks(SNUM(conn))) {
1884 SCVAL(req->outbuf, smb_flg,
1885 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1888 if(core_oplock_request && EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
1889 SCVAL(req->outbuf, smb_flg,
1890 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
1893 SSVAL(req->outbuf,smb_vwv2,fsp->fnum);
1894 SSVAL(req->outbuf,smb_vwv3,fattr);
1895 if(lp_dos_filetime_resolution(SNUM(conn)) ) {
1896 srv_put_dos_date3((char *)req->outbuf,smb_vwv4,mtime & ~1);
1898 srv_put_dos_date3((char *)req->outbuf,smb_vwv4,mtime);
1900 SIVAL(req->outbuf,smb_vwv6,(uint32)sbuf.st_size);
1901 SSVAL(req->outbuf,smb_vwv8,GET_OPENX_MODE(deny_mode));
1902 SSVAL(req->outbuf,smb_vwv11,smb_action);
1904 if (open_flags & EXTENDED_RESPONSE_REQUIRED) {
1905 SIVAL(req->outbuf, smb_vwv15, STD_RIGHT_ALL_ACCESS);
1908 END_PROFILE(SMBopenX);
1913 /****************************************************************************
1914 Reply to a SMBulogoffX.
1915 ****************************************************************************/
1917 void reply_ulogoffX(struct smb_request *req)
1921 START_PROFILE(SMBulogoffX);
1923 vuser = get_valid_user_struct(req->vuid);
1926 DEBUG(3,("ulogoff, vuser id %d does not map to user.\n",
1930 /* in user level security we are supposed to close any files
1931 open by this user */
1932 if ((vuser != NULL) && (lp_security() != SEC_SHARE)) {
1933 file_close_user(req->vuid);
1936 invalidate_vuid(req->vuid);
1938 reply_outbuf(req, 2, 0);
1940 DEBUG( 3, ( "ulogoffX vuid=%d\n", req->vuid ) );
1942 END_PROFILE(SMBulogoffX);
1946 /****************************************************************************
1947 Reply to a mknew or a create.
1948 ****************************************************************************/
1950 void reply_mknew(struct smb_request *req)
1952 connection_struct *conn = req->conn;
1956 struct timespec ts[2];
1958 int oplock_request = 0;
1959 SMB_STRUCT_STAT sbuf;
1961 uint32 access_mask = FILE_GENERIC_READ | FILE_GENERIC_WRITE;
1962 uint32 share_mode = FILE_SHARE_READ|FILE_SHARE_WRITE;
1963 uint32 create_disposition;
1964 uint32 create_options = 0;
1965 TALLOC_CTX *ctx = talloc_tos();
1967 START_PROFILE(SMBcreate);
1970 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
1971 END_PROFILE(SMBcreate);
1975 fattr = SVAL(req->inbuf,smb_vwv0);
1976 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
1977 com = SVAL(req->inbuf,smb_com);
1979 ts[1] =convert_time_t_to_timespec(
1980 srv_make_unix_date3(req->inbuf + smb_vwv1));
1983 srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname,
1984 smb_buf(req->inbuf) + 1, 0,
1985 STR_TERMINATE, &status);
1986 if (!NT_STATUS_IS_OK(status)) {
1987 reply_nterror(req, status);
1988 END_PROFILE(SMBcreate);
1992 if (fattr & aVOLID) {
1993 DEBUG(0,("Attempt to create file (%s) with volid set - "
1994 "please report this\n", fname));
1997 if(com == SMBmknew) {
1998 /* We should fail if file exists. */
1999 create_disposition = FILE_CREATE;
2001 /* Create if file doesn't exist, truncate if it does. */
2002 create_disposition = FILE_OVERWRITE_IF;
2005 status = create_file(conn, /* conn */
2007 0, /* root_dir_fid */
2009 access_mask, /* access_mask */
2010 share_mode, /* share_access */
2011 create_disposition, /* create_disposition*/
2012 create_options, /* create_options */
2013 fattr, /* file_attributes */
2014 oplock_request, /* oplock_request */
2015 0, /* allocation_size */
2022 if (!NT_STATUS_IS_OK(status)) {
2023 END_PROFILE(SMBcreate);
2024 if (open_was_deferred(req->mid)) {
2025 /* We have re-scheduled this call. */
2028 reply_openerror(req, status);
2032 ts[0] = get_atimespec(&sbuf); /* atime. */
2033 status = smb_set_file_time(conn, fsp, fsp->fsp_name, &sbuf, ts, true);
2034 if (!NT_STATUS_IS_OK(status)) {
2035 END_PROFILE(SMBcreate);
2036 reply_openerror(req, status);
2040 reply_outbuf(req, 1, 0);
2041 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
2043 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
2044 SCVAL(req->outbuf,smb_flg,
2045 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2048 if(EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2049 SCVAL(req->outbuf,smb_flg,
2050 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2053 DEBUG( 2, ( "reply_mknew: file %s\n", fsp->fsp_name ) );
2054 DEBUG( 3, ( "reply_mknew %s fd=%d dmode=0x%x\n",
2055 fsp->fsp_name, fsp->fh->fd, (unsigned int)fattr ) );
2057 END_PROFILE(SMBcreate);
2061 /****************************************************************************
2062 Reply to a create temporary file.
2063 ****************************************************************************/
2065 void reply_ctemp(struct smb_request *req)
2067 connection_struct *conn = req->conn;
2073 SMB_STRUCT_STAT sbuf;
2076 TALLOC_CTX *ctx = talloc_tos();
2078 START_PROFILE(SMBctemp);
2081 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2082 END_PROFILE(SMBctemp);
2086 fattr = SVAL(req->inbuf,smb_vwv0);
2087 oplock_request = CORE_OPLOCK_REQUEST(req->inbuf);
2089 srvstr_get_path(ctx, (char *)req->inbuf, req->flags2, &fname,
2090 smb_buf(req->inbuf)+1, 0, STR_TERMINATE,
2092 if (!NT_STATUS_IS_OK(status)) {
2093 reply_nterror(req, status);
2094 END_PROFILE(SMBctemp);
2098 fname = talloc_asprintf(ctx,
2102 fname = talloc_strdup(ctx, "TMXXXXXX");
2106 reply_nterror(req, NT_STATUS_NO_MEMORY);
2107 END_PROFILE(SMBctemp);
2111 status = resolve_dfspath(ctx, conn,
2112 req->flags2 & FLAGS2_DFS_PATHNAMES,
2115 if (!NT_STATUS_IS_OK(status)) {
2116 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
2117 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
2118 ERRSRV, ERRbadpath);
2119 END_PROFILE(SMBctemp);
2122 reply_nterror(req, status);
2123 END_PROFILE(SMBctemp);
2127 status = unix_convert(ctx, conn, fname, False, &fname, NULL, &sbuf);
2128 if (!NT_STATUS_IS_OK(status)) {
2129 reply_nterror(req, status);
2130 END_PROFILE(SMBctemp);
2134 status = check_name(conn, fname);
2135 if (!NT_STATUS_IS_OK(status)) {
2136 reply_nterror(req, status);
2137 END_PROFILE(SMBctemp);
2141 tmpfd = smb_mkstemp(fname);
2143 reply_unixerror(req, ERRDOS, ERRnoaccess);
2144 END_PROFILE(SMBctemp);
2148 SMB_VFS_STAT(conn,fname,&sbuf);
2150 /* We should fail if file does not exist. */
2151 status = open_file_ntcreate(conn, req, fname, &sbuf,
2152 FILE_GENERIC_READ | FILE_GENERIC_WRITE,
2153 FILE_SHARE_READ|FILE_SHARE_WRITE,
2160 /* close fd from smb_mkstemp() */
2163 if (!NT_STATUS_IS_OK(status)) {
2164 if (open_was_deferred(req->mid)) {
2165 /* We have re-scheduled this call. */
2166 END_PROFILE(SMBctemp);
2169 reply_openerror(req, status);
2170 END_PROFILE(SMBctemp);
2174 reply_outbuf(req, 1, 0);
2175 SSVAL(req->outbuf,smb_vwv0,fsp->fnum);
2177 /* the returned filename is relative to the directory */
2178 s = strrchr_m(fsp->fsp_name, '/');
2186 /* Tested vs W2K3 - this doesn't seem to be here - null terminated filename is the only
2187 thing in the byte section. JRA */
2188 SSVALS(p, 0, -1); /* what is this? not in spec */
2190 if (message_push_string(&req->outbuf, s, STR_ASCII|STR_TERMINATE)
2192 reply_nterror(req, NT_STATUS_NO_MEMORY);
2193 END_PROFILE(SMBctemp);
2197 if (oplock_request && lp_fake_oplocks(SNUM(conn))) {
2198 SCVAL(req->outbuf, smb_flg,
2199 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2202 if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
2203 SCVAL(req->outbuf, smb_flg,
2204 CVAL(req->outbuf,smb_flg)|CORE_OPLOCK_GRANTED);
2207 DEBUG( 2, ( "reply_ctemp: created temp file %s\n", fsp->fsp_name ) );
2208 DEBUG( 3, ( "reply_ctemp %s fd=%d umode=0%o\n", fsp->fsp_name,
2209 fsp->fh->fd, (unsigned int)sbuf.st_mode ) );
2211 END_PROFILE(SMBctemp);
2215 /*******************************************************************
2216 Check if a user is allowed to rename a file.
2217 ********************************************************************/
2219 static NTSTATUS can_rename(connection_struct *conn, files_struct *fsp,
2220 uint16 dirtype, SMB_STRUCT_STAT *pst)
2224 if (!CAN_WRITE(conn)) {
2225 return NT_STATUS_MEDIA_WRITE_PROTECTED;
2228 fmode = dos_mode(conn, fsp->fsp_name, pst);
2229 if ((fmode & ~dirtype) & (aHIDDEN | aSYSTEM)) {
2230 return NT_STATUS_NO_SUCH_FILE;
2233 if (S_ISDIR(pst->st_mode)) {
2234 return NT_STATUS_OK;
2237 if (fsp->access_mask & (DELETE_ACCESS|FILE_WRITE_ATTRIBUTES)) {
2238 return NT_STATUS_OK;
2241 return NT_STATUS_ACCESS_DENIED;
2244 /*******************************************************************
2245 * unlink a file with all relevant access checks
2246 *******************************************************************/
2248 static NTSTATUS do_unlink(connection_struct *conn,
2249 struct smb_request *req,
2253 SMB_STRUCT_STAT sbuf;
2256 uint32 dirtype_orig = dirtype;
2259 DEBUG(10,("do_unlink: %s, dirtype = %d\n", fname, dirtype ));
2261 if (!CAN_WRITE(conn)) {
2262 return NT_STATUS_MEDIA_WRITE_PROTECTED;
2265 if (SMB_VFS_LSTAT(conn,fname,&sbuf) != 0) {
2266 return map_nt_error_from_unix(errno);
2269 fattr = dos_mode(conn,fname,&sbuf);
2271 if (dirtype & FILE_ATTRIBUTE_NORMAL) {
2272 dirtype = aDIR|aARCH|aRONLY;
2275 dirtype &= (aDIR|aARCH|aRONLY|aHIDDEN|aSYSTEM);
2277 return NT_STATUS_NO_SUCH_FILE;
2280 if (!dir_check_ftype(conn, fattr, dirtype)) {
2282 return NT_STATUS_FILE_IS_A_DIRECTORY;
2284 return NT_STATUS_NO_SUCH_FILE;
2287 if (dirtype_orig & 0x8000) {
2288 /* These will never be set for POSIX. */
2289 return NT_STATUS_NO_SUCH_FILE;
2293 if ((fattr & dirtype) & FILE_ATTRIBUTE_DIRECTORY) {
2294 return NT_STATUS_FILE_IS_A_DIRECTORY;
2297 if ((fattr & ~dirtype) & (FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM)) {
2298 return NT_STATUS_NO_SUCH_FILE;
2301 if (dirtype & 0xFF00) {
2302 /* These will never be set for POSIX. */
2303 return NT_STATUS_NO_SUCH_FILE;
2308 return NT_STATUS_NO_SUCH_FILE;
2311 /* Can't delete a directory. */
2313 return NT_STATUS_FILE_IS_A_DIRECTORY;
2318 else if (dirtype & aDIR) /* Asked for a directory and it isn't. */
2319 return NT_STATUS_OBJECT_NAME_INVALID;
2320 #endif /* JRATEST */
2322 /* Fix for bug #3035 from SATOH Fumiyasu <fumiyas@miraclelinux.com>
2324 On a Windows share, a file with read-only dosmode can be opened with
2325 DELETE_ACCESS. But on a Samba share (delete readonly = no), it
2326 fails with NT_STATUS_CANNOT_DELETE error.
2328 This semantic causes a problem that a user can not
2329 rename a file with read-only dosmode on a Samba share
2330 from a Windows command prompt (i.e. cmd.exe, but can rename
2331 from Windows Explorer).
2334 if (!lp_delete_readonly(SNUM(conn))) {
2335 if (fattr & aRONLY) {
2336 return NT_STATUS_CANNOT_DELETE;
2340 /* On open checks the open itself will check the share mode, so
2341 don't do it here as we'll get it wrong. */
2343 status = create_file_unixpath
2347 DELETE_ACCESS, /* access_mask */
2348 FILE_SHARE_NONE, /* share_access */
2349 FILE_OPEN, /* create_disposition*/
2350 FILE_NON_DIRECTORY_FILE, /* create_options */
2351 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
2352 0, /* oplock_request */
2353 0, /* allocation_size */
2360 if (!NT_STATUS_IS_OK(status)) {
2361 DEBUG(10, ("create_file_unixpath failed: %s\n",
2362 nt_errstr(status)));
2366 /* The set is across all open files on this dev/inode pair. */
2367 if (!set_delete_on_close(fsp, True, &conn->server_info->utok)) {
2368 close_file(fsp, NORMAL_CLOSE);
2369 return NT_STATUS_ACCESS_DENIED;
2372 return close_file(fsp,NORMAL_CLOSE);
2375 /****************************************************************************
2376 The guts of the unlink command, split out so it may be called by the NT SMB
2378 ****************************************************************************/
2380 NTSTATUS unlink_internals(connection_struct *conn, struct smb_request *req,
2381 uint32 dirtype, const char *name_in, bool has_wild)
2383 const char *directory = NULL;
2388 NTSTATUS status = NT_STATUS_OK;
2389 SMB_STRUCT_STAT sbuf;
2390 TALLOC_CTX *ctx = talloc_tos();
2392 status = unix_convert(ctx, conn, name_in, has_wild, &name, NULL, &sbuf);
2393 if (!NT_STATUS_IS_OK(status)) {
2397 p = strrchr_m(name,'/');
2399 directory = talloc_strdup(ctx, ".");
2401 return NT_STATUS_NO_MEMORY;
2411 * We should only check the mangled cache
2412 * here if unix_convert failed. This means
2413 * that the path in 'mask' doesn't exist
2414 * on the file system and so we need to look
2415 * for a possible mangle. This patch from
2416 * Tine Smukavec <valentin.smukavec@hermes.si>.
2419 if (!VALID_STAT(sbuf) && mangle_is_mangled(mask,conn->params)) {
2420 char *new_mask = NULL;
2421 mangle_lookup_name_from_8_3(ctx,
2431 directory = talloc_asprintf(ctx,
2436 return NT_STATUS_NO_MEMORY;
2439 dirtype = FILE_ATTRIBUTE_NORMAL;
2442 status = check_name(conn, directory);
2443 if (!NT_STATUS_IS_OK(status)) {
2447 status = do_unlink(conn, req, directory, dirtype);
2448 if (!NT_STATUS_IS_OK(status)) {
2454 struct smb_Dir *dir_hnd = NULL;
2458 if ((dirtype & SAMBA_ATTRIBUTES_MASK) == aDIR) {
2459 return NT_STATUS_OBJECT_NAME_INVALID;
2462 if (strequal(mask,"????????.???")) {
2467 status = check_name(conn, directory);
2468 if (!NT_STATUS_IS_OK(status)) {
2472 dir_hnd = OpenDir(talloc_tos(), conn, directory, mask,
2474 if (dir_hnd == NULL) {
2475 return map_nt_error_from_unix(errno);
2478 /* XXXX the CIFS spec says that if bit0 of the flags2 field is set then
2479 the pattern matches against the long name, otherwise the short name
2480 We don't implement this yet XXXX
2483 status = NT_STATUS_NO_SUCH_FILE;
2485 while ((dname = ReadDirName(dir_hnd, &offset))) {
2489 if (!is_visible_file(conn, directory, dname, &st, True)) {
2493 /* Quick check for "." and ".." */
2494 if (ISDOT(dname) || ISDOTDOT(dname)) {
2498 if(!mask_match(dname, mask, conn->case_sensitive)) {
2502 fname = talloc_asprintf(ctx, "%s/%s",
2506 return NT_STATUS_NO_MEMORY;
2509 status = check_name(conn, fname);
2510 if (!NT_STATUS_IS_OK(status)) {
2511 TALLOC_FREE(dir_hnd);
2515 status = do_unlink(conn, req, fname, dirtype);
2516 if (!NT_STATUS_IS_OK(status)) {
2522 DEBUG(3,("unlink_internals: successful unlink [%s]\n",
2527 TALLOC_FREE(dir_hnd);
2530 if (count == 0 && NT_STATUS_IS_OK(status) && errno != 0) {
2531 status = map_nt_error_from_unix(errno);
2537 /****************************************************************************
2539 ****************************************************************************/
2541 void reply_unlink(struct smb_request *req)
2543 connection_struct *conn = req->conn;
2547 bool path_contains_wcard = False;
2548 TALLOC_CTX *ctx = talloc_tos();
2550 START_PROFILE(SMBunlink);
2553 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2554 END_PROFILE(SMBunlink);
2558 dirtype = SVAL(req->inbuf,smb_vwv0);
2560 srvstr_get_path_wcard(ctx, (char *)req->inbuf, req->flags2, &name,
2561 smb_buf(req->inbuf) + 1, 0,
2562 STR_TERMINATE, &status, &path_contains_wcard);
2563 if (!NT_STATUS_IS_OK(status)) {
2564 reply_nterror(req, status);
2565 END_PROFILE(SMBunlink);
2569 status = resolve_dfspath_wcard(ctx, conn,
2570 req->flags2 & FLAGS2_DFS_PATHNAMES,
2573 &path_contains_wcard);
2574 if (!NT_STATUS_IS_OK(status)) {
2575 if (NT_STATUS_EQUAL(status,NT_STATUS_PATH_NOT_COVERED)) {
2576 reply_botherror(req, NT_STATUS_PATH_NOT_COVERED,
2577 ERRSRV, ERRbadpath);
2578 END_PROFILE(SMBunlink);
2581 reply_nterror(req, status);
2582 END_PROFILE(SMBunlink);
2586 DEBUG(3,("reply_unlink : %s\n",name));
2588 status = unlink_internals(conn, req, dirtype, name,
2589 path_contains_wcard);
2590 if (!NT_STATUS_IS_OK(status)) {
2591 if (open_was_deferred(req->mid)) {
2592 /* We have re-scheduled this call. */
2593 END_PROFILE(SMBunlink);
2596 reply_nterror(req, status);
2597 END_PROFILE(SMBunlink);
2601 reply_outbuf(req, 0, 0);
2602 END_PROFILE(SMBunlink);
2607 /****************************************************************************
2609 ****************************************************************************/
2611 static void fail_readraw(void)
2613 const char *errstr = talloc_asprintf(talloc_tos(),
2614 "FAIL ! reply_readbraw: socket write fail (%s)",
2619 exit_server_cleanly(errstr);
2622 /****************************************************************************
2623 Fake (read/write) sendfile. Returns -1 on read or write fail.
2624 ****************************************************************************/
2626 static ssize_t fake_sendfile(files_struct *fsp, SMB_OFF_T startpos,
2630 size_t tosend = nread;
2637 bufsize = MIN(nread, 65536);
2639 if (!(buf = SMB_MALLOC_ARRAY(char, bufsize))) {
2643 while (tosend > 0) {
2647 if (tosend > bufsize) {
2652 ret = read_file(fsp,buf,startpos,cur_read);
2658 /* If we had a short read, fill with zeros. */
2659 if (ret < cur_read) {
2660 memset(buf, '\0', cur_read - ret);
2663 if (write_data(smbd_server_fd(),buf,cur_read) != cur_read) {
2668 startpos += cur_read;
2672 return (ssize_t)nread;
2675 /****************************************************************************
2676 Return a readbraw error (4 bytes of zero).
2677 ****************************************************************************/
2679 static void reply_readbraw_error(void)
2683 if (write_data(smbd_server_fd(),header,4) != 4) {
2688 /****************************************************************************
2689 Use sendfile in readbraw.
2690 ****************************************************************************/
2692 void send_file_readbraw(connection_struct *conn,
2698 char *outbuf = NULL;
2701 #if defined(WITH_SENDFILE)
2703 * We can only use sendfile on a non-chained packet
2704 * but we can use on a non-oplocked file. tridge proved this
2705 * on a train in Germany :-). JRA.
2706 * reply_readbraw has already checked the length.
2709 if ( (chain_size == 0) && (nread > 0) && (fsp->base_fsp == NULL) &&
2710 (fsp->wcp == NULL) && lp_use_sendfile(SNUM(conn)) ) {
2712 DATA_BLOB header_blob;
2714 _smb_setlen(header,nread);
2715 header_blob = data_blob_const(header, 4);
2717 if (SMB_VFS_SENDFILE(smbd_server_fd(), fsp,
2718 &header_blob, startpos, nread) == -1) {
2719 /* Returning ENOSYS means no data at all was sent.
2720 * Do this as a normal read. */
2721 if (errno == ENOSYS) {
2722 goto normal_readbraw;
2726 * Special hack for broken Linux with no working sendfile. If we
2727 * return EINTR we sent the header but not the rest of the data.
2728 * Fake this up by doing read/write calls.
2730 if (errno == EINTR) {
2731 /* Ensure we don't do this again. */
2732 set_use_sendfile(SNUM(conn), False);
2733 DEBUG(0,("send_file_readbraw: sendfile not available. Faking..\n"));
2735 if (fake_sendfile(fsp, startpos, nread) == -1) {
2736 DEBUG(0,("send_file_readbraw: fake_sendfile failed for file %s (%s).\n",
2737 fsp->fsp_name, strerror(errno) ));
2738 exit_server_cleanly("send_file_readbraw fake_sendfile failed");
2743 DEBUG(0,("send_file_readbraw: sendfile failed for file %s (%s). Terminating\n",
2744 fsp->fsp_name, strerror(errno) ));
2745 exit_server_cleanly("send_file_readbraw sendfile failed");
2754 outbuf = TALLOC_ARRAY(NULL, char, nread+4);
2756 DEBUG(0,("send_file_readbraw: TALLOC_ARRAY failed for size %u.\n",
2757 (unsigned)(nread+4)));
2758 reply_readbraw_error();
2763 ret = read_file(fsp,outbuf+4,startpos,nread);
2764 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
2773 _smb_setlen(outbuf,ret);
2774 if (write_data(smbd_server_fd(),outbuf,4+ret) != 4+ret)
2777 TALLOC_FREE(outbuf);
2780 /****************************************************************************
2781 Reply to a readbraw (core+ protocol).
2782 ****************************************************************************/
2784 void reply_readbraw(struct smb_request *req)
2786 connection_struct *conn = req->conn;
2787 ssize_t maxcount,mincount;
2794 START_PROFILE(SMBreadbraw);
2796 if (srv_is_signing_active() || is_encrypted_packet(req->inbuf)) {
2797 exit_server_cleanly("reply_readbraw: SMB signing/sealing is active - "
2798 "raw reads/writes are disallowed.");
2802 reply_readbraw_error();
2803 END_PROFILE(SMBreadbraw);
2808 * Special check if an oplock break has been issued
2809 * and the readraw request croses on the wire, we must
2810 * return a zero length response here.
2813 fsp = file_fsp(SVAL(req->inbuf,smb_vwv0));
2816 * We have to do a check_fsp by hand here, as
2817 * we must always return 4 zero bytes on error,
2821 if (!fsp || !conn || conn != fsp->conn ||
2822 req->vuid != fsp->vuid ||
2823 fsp->is_directory || fsp->fh->fd == -1) {
2825 * fsp could be NULL here so use the value from the packet. JRA.
2827 DEBUG(3,("reply_readbraw: fnum %d not valid "
2829 (int)SVAL(req->inbuf,smb_vwv0)));
2830 reply_readbraw_error();
2831 END_PROFILE(SMBreadbraw);
2835 /* Do a "by hand" version of CHECK_READ. */
2836 if (!(fsp->can_read ||
2837 ((req->flags2 & FLAGS2_READ_PERMIT_EXECUTE) &&
2838 (fsp->access_mask & FILE_EXECUTE)))) {
2839 DEBUG(3,("reply_readbraw: fnum %d not readable.\n",
2840 (int)SVAL(req->inbuf,smb_vwv0)));
2841 reply_readbraw_error();
2842 END_PROFILE(SMBreadbraw);
2846 flush_write_cache(fsp, READRAW_FLUSH);
2848 startpos = IVAL_TO_SMB_OFF_T(req->inbuf,smb_vwv1);
2849 if(req->wct == 10) {
2851 * This is a large offset (64 bit) read.
2853 #ifdef LARGE_SMB_OFF_T
2855 startpos |= (((SMB_OFF_T)IVAL(req->inbuf,smb_vwv8)) << 32);
2857 #else /* !LARGE_SMB_OFF_T */
2860 * Ensure we haven't been sent a >32 bit offset.
2863 if(IVAL(req->inbuf,smb_vwv8) != 0) {
2864 DEBUG(0,("reply_readbraw: large offset "
2865 "(%x << 32) used and we don't support "
2866 "64 bit offsets.\n",
2867 (unsigned int)IVAL(req->inbuf,smb_vwv8) ));
2868 reply_readbraw_error();
2869 END_PROFILE(SMBreadbraw);
2873 #endif /* LARGE_SMB_OFF_T */
2876 DEBUG(0,("reply_readbraw: negative 64 bit "
2877 "readraw offset (%.0f) !\n",
2878 (double)startpos ));
2879 reply_readbraw_error();
2880 END_PROFILE(SMBreadbraw);
2885 maxcount = (SVAL(req->inbuf,smb_vwv3) & 0xFFFF);
2886 mincount = (SVAL(req->inbuf,smb_vwv4) & 0xFFFF);
2888 /* ensure we don't overrun the packet size */
2889 maxcount = MIN(65535,maxcount);
2891 if (is_locked(fsp,(uint32)req->smbpid,
2892 (SMB_BIG_UINT)maxcount,
2893 (SMB_BIG_UINT)startpos,
2895 reply_readbraw_error();
2896 END_PROFILE(SMBreadbraw);
2900 if (SMB_VFS_FSTAT(fsp, &st) == 0) {
2904 if (startpos >= size) {
2907 nread = MIN(maxcount,(size - startpos));
2910 #if 0 /* mincount appears to be ignored in a W2K server. JRA. */
2911 if (nread < mincount)
2915 DEBUG( 3, ( "reply_readbraw: fnum=%d start=%.0f max=%lu "
2916 "min=%lu nread=%lu\n",
2917 fsp->fnum, (double)startpos,
2918 (unsigned long)maxcount,
2919 (unsigned long)mincount,
2920 (unsigned long)nread ) );
2922 send_file_readbraw(conn, fsp, startpos, nread, mincount);
2924 DEBUG(5,("reply_readbraw finished\n"));
2925 END_PROFILE(SMBreadbraw);
2929 #define DBGC_CLASS DBGC_LOCKING
2931 /****************************************************************************
2932 Reply to a lockread (core+ protocol).
2933 ****************************************************************************/
2935 void reply_lockread(struct smb_request *req)
2937 connection_struct *conn = req->conn;
2944 struct byte_range_lock *br_lck = NULL;
2947 START_PROFILE(SMBlockread);
2950 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
2951 END_PROFILE(SMBlockread);
2955 fsp = file_fsp(SVAL(req->inbuf,smb_vwv0));
2957 if (!check_fsp(conn, req, fsp)) {
2958 END_PROFILE(SMBlockread);
2962 if (!CHECK_READ(fsp,req->inbuf)) {
2963 reply_doserror(req, ERRDOS, ERRbadaccess);
2964 END_PROFILE(SMBlockread);
2968 release_level_2_oplocks_on_change(fsp);
2970 numtoread = SVAL(req->inbuf,smb_vwv1);
2971 startpos = IVAL_TO_SMB_OFF_T(req->inbuf,smb_vwv2);
2973 numtoread = MIN(BUFFER_SIZE - (smb_size + 3*2 + 3), numtoread);
2975 reply_outbuf(req, 5, numtoread + 3);
2977 data = smb_buf(req->outbuf) + 3;
2980 * NB. Discovered by Menny Hamburger at Mainsoft. This is a core+
2981 * protocol request that predates the read/write lock concept.
2982 * Thus instead of asking for a read lock here we need to ask
2983 * for a write lock. JRA.
2984 * Note that the requested lock size is unaffected by max_recv.
2987 br_lck = do_lock(smbd_messaging_context(),
2990 (SMB_BIG_UINT)numtoread,
2991 (SMB_BIG_UINT)startpos,
2994 False, /* Non-blocking lock. */
2997 TALLOC_FREE(br_lck);
2999 if (NT_STATUS_V(status)) {
3000 reply_nterror(req, status);
3001 END_PROFILE(SMBlockread);
3006 * However the requested READ size IS affected by max_recv. Insanity.... JRA.
3009 if (numtoread > max_recv) {
3010 DEBUG(0,("reply_lockread: requested read size (%u) is greater than maximum allowed (%u). \
3011 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
3012 (unsigned int)numtoread, (unsigned int)max_recv ));
3013 numtoread = MIN(numtoread,max_recv);
3015 nread = read_file(fsp,data,startpos,numtoread);
3018 reply_unixerror(req, ERRDOS, ERRnoaccess);
3019 END_PROFILE(SMBlockread);
3023 srv_set_message((char *)req->outbuf, 5, nread+3, False);
3025 SSVAL(req->outbuf,smb_vwv0,nread);
3026 SSVAL(req->outbuf,smb_vwv5,nread+3);
3027 p = smb_buf(req->outbuf);
3028 SCVAL(p,0,0); /* pad byte. */
3031 DEBUG(3,("lockread fnum=%d num=%d nread=%d\n",
3032 fsp->fnum, (int)numtoread, (int)nread));
3034 END_PROFILE(SMBlockread);
3039 #define DBGC_CLASS DBGC_ALL
3041 /****************************************************************************
3043 ****************************************************************************/
3045 void reply_read(struct smb_request *req)
3047 connection_struct *conn = req->conn;
3055 START_PROFILE(SMBread);
3058 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3059 END_PROFILE(SMBread);
3063 fsp = file_fsp(SVAL(req->inbuf,smb_vwv0));
3065 if (!check_fsp(conn, req, fsp)) {
3066 END_PROFILE(SMBread);
3070 if (!CHECK_READ(fsp,req->inbuf)) {
3071 reply_doserror(req, ERRDOS, ERRbadaccess);
3072 END_PROFILE(SMBread);
3076 numtoread = SVAL(req->inbuf,smb_vwv1);
3077 startpos = IVAL_TO_SMB_OFF_T(req->inbuf,smb_vwv2);
3079 numtoread = MIN(BUFFER_SIZE-outsize,numtoread);
3082 * The requested read size cannot be greater than max_recv. JRA.
3084 if (numtoread > max_recv) {
3085 DEBUG(0,("reply_read: requested read size (%u) is greater than maximum allowed (%u). \
3086 Returning short read of maximum allowed for compatibility with Windows 2000.\n",
3087 (unsigned int)numtoread, (unsigned int)max_recv ));
3088 numtoread = MIN(numtoread,max_recv);
3091 reply_outbuf(req, 5, numtoread+3);
3093 data = smb_buf(req->outbuf) + 3;
3095 if (is_locked(fsp, (uint32)req->smbpid, (SMB_BIG_UINT)numtoread,
3096 (SMB_BIG_UINT)startpos, READ_LOCK)) {
3097 reply_doserror(req, ERRDOS,ERRlock);
3098 END_PROFILE(SMBread);
3103 nread = read_file(fsp,data,startpos,numtoread);
3106 reply_unixerror(req, ERRDOS,ERRnoaccess);
3107 END_PROFILE(SMBread);
3111 srv_set_message((char *)req->outbuf, 5, nread+3, False);
3113 SSVAL(req->outbuf,smb_vwv0,nread);
3114 SSVAL(req->outbuf,smb_vwv5,nread+3);
3115 SCVAL(smb_buf(req->outbuf),0,1);
3116 SSVAL(smb_buf(req->outbuf),1,nread);
3118 DEBUG( 3, ( "read fnum=%d num=%d nread=%d\n",
3119 fsp->fnum, (int)numtoread, (int)nread ) );
3121 END_PROFILE(SMBread);
3125 /****************************************************************************
3127 ****************************************************************************/
3129 static int setup_readX_header(char *outbuf, size_t smb_maxcnt)
3134 outsize = srv_set_message(outbuf,12,smb_maxcnt,False);
3135 data = smb_buf(outbuf);
3137 memset(outbuf+smb_vwv0,'\0',24); /* valgrind init. */
3139 SCVAL(outbuf,smb_vwv0,0xFF);
3140 SSVAL(outbuf,smb_vwv2,0xFFFF); /* Remaining - must be -1. */
3141 SSVAL(outbuf,smb_vwv5,smb_maxcnt);
3142 SSVAL(outbuf,smb_vwv6,smb_offset(data,outbuf));
3143 SSVAL(outbuf,smb_vwv7,(smb_maxcnt >> 16));
3144 SSVAL(smb_buf(outbuf),-2,smb_maxcnt);
3145 /* Reset the outgoing length, set_message truncates at 0x1FFFF. */
3146 _smb_setlen_large(outbuf,(smb_size + 12*2 + smb_maxcnt - 4));
3150 /****************************************************************************
3151 Reply to a read and X - possibly using sendfile.
3152 ****************************************************************************/
3154 static void send_file_readX(connection_struct *conn, struct smb_request *req,
3155 files_struct *fsp, SMB_OFF_T startpos,
3158 SMB_STRUCT_STAT sbuf;
3161 if(SMB_VFS_FSTAT(fsp, &sbuf) == -1) {
3162 reply_unixerror(req, ERRDOS, ERRnoaccess);
3166 if (startpos > sbuf.st_size) {
3168 } else if (smb_maxcnt > (sbuf.st_size - startpos)) {
3169 smb_maxcnt = (sbuf.st_size - startpos);
3172 if (smb_maxcnt == 0) {
3176 #if defined(WITH_SENDFILE)
3178 * We can only use sendfile on a non-chained packet
3179 * but we can use on a non-oplocked file. tridge proved this
3180 * on a train in Germany :-). JRA.
3183 if ((chain_size == 0) && (CVAL(req->inbuf,smb_vwv0) == 0xFF) &&
3184 !is_encrypted_packet(req->inbuf) && (fsp->base_fsp == NULL) &&
3185 lp_use_sendfile(SNUM(conn)) && (fsp->wcp == NULL) ) {
3186 uint8 headerbuf[smb_size + 12 * 2];
3190 * Set up the packet header before send. We
3191 * assume here the sendfile will work (get the
3192 * correct amount of data).
3195 header = data_blob_const(headerbuf, sizeof(headerbuf));
3197 construct_reply_common((char *)req->inbuf, (char *)headerbuf);
3198 setup_readX_header((char *)headerbuf, smb_maxcnt);
3200 if ((nread = SMB_VFS_SENDFILE(smbd_server_fd(), fsp, &header, startpos, smb_maxcnt)) == -1) {
3201 /* Returning ENOSYS means no data at all was sent. Do this as a normal read. */
3202 if (errno == ENOSYS) {
3207 * Special hack for broken Linux with no working sendfile. If we
3208 * return EINTR we sent the header but not the rest of the data.
3209 * Fake this up by doing read/write calls.
3212 if (errno == EINTR) {
3213 /* Ensure we don't do this again. */
3214 set_use_sendfile(SNUM(conn), False);
3215 DEBUG(0,("send_file_readX: sendfile not available. Faking..\n"));
3216 nread = fake_sendfile(fsp, startpos,
3219 DEBUG(0,("send_file_readX: fake_sendfile failed for file %s (%s).\n",
3220 fsp->fsp_name, strerror(errno) ));
3221 exit_server_cleanly("send_file_readX: fake_sendfile failed");
3223 DEBUG( 3, ( "send_file_readX: fake_sendfile fnum=%d max=%d nread=%d\n",
3224 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3225 /* No outbuf here means successful sendfile. */
3226 TALLOC_FREE(req->outbuf);
3230 DEBUG(0,("send_file_readX: sendfile failed for file %s (%s). Terminating\n",
3231 fsp->fsp_name, strerror(errno) ));
3232 exit_server_cleanly("send_file_readX sendfile failed");
3235 DEBUG( 3, ( "send_file_readX: sendfile fnum=%d max=%d nread=%d\n",
3236 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3237 /* No outbuf here means successful sendfile. */
3238 TALLOC_FREE(req->outbuf);
3245 if ((smb_maxcnt & 0xFF0000) > 0x10000) {
3246 uint8 headerbuf[smb_size + 2*12];
3248 construct_reply_common((char *)req->inbuf, (char *)headerbuf);
3249 setup_readX_header((char *)headerbuf, smb_maxcnt);
3251 /* Send out the header. */
3252 if (write_data(smbd_server_fd(), (char *)headerbuf,
3253 sizeof(headerbuf)) != sizeof(headerbuf)) {
3254 DEBUG(0,("send_file_readX: write_data failed for file %s (%s). Terminating\n",
3255 fsp->fsp_name, strerror(errno) ));
3256 exit_server_cleanly("send_file_readX sendfile failed");
3258 nread = fake_sendfile(fsp, startpos, smb_maxcnt);
3260 DEBUG(0,("send_file_readX: fake_sendfile failed for file %s (%s).\n",
3261 fsp->fsp_name, strerror(errno) ));
3262 exit_server_cleanly("send_file_readX: fake_sendfile failed");
3264 TALLOC_FREE(req->outbuf);
3267 reply_outbuf(req, 12, smb_maxcnt);
3269 nread = read_file(fsp, smb_buf(req->outbuf), startpos,
3272 reply_unixerror(req, ERRDOS, ERRnoaccess);
3276 setup_readX_header((char *)req->outbuf, nread);
3278 DEBUG( 3, ( "send_file_readX fnum=%d max=%d nread=%d\n",
3279 fsp->fnum, (int)smb_maxcnt, (int)nread ) );
3287 /****************************************************************************
3288 Reply to a read and X.
3289 ****************************************************************************/
3291 void reply_read_and_X(struct smb_request *req)
3293 connection_struct *conn = req->conn;
3297 bool big_readX = False;
3299 size_t smb_mincnt = SVAL(req->inbuf,smb_vwv6);
3302 START_PROFILE(SMBreadX);
3304 if ((req->wct != 10) && (req->wct != 12)) {
3305 reply_nterror(req, NT_STATUS_INVALID_PARAMETER);
3309 fsp = file_fsp(SVAL(req->inbuf,smb_vwv2));
3310 startpos = IVAL_TO_SMB_OFF_T(req->inbuf,smb_vwv3);
3311 smb_maxcnt = SVAL(req->inbuf,smb_vwv5);
3313 /* If it's an IPC, pass off the pipe handler. */
3315 reply_pipe_read_and_X(req);
3316 END_PROFILE(SMBreadX);
3320 if (!check_fsp(conn, req, fsp)) {
3321 END_PROFILE(SMBreadX);
3325 if (!CHECK_READ(fsp,req->inbuf)) {
3326 reply_doserror(req, ERRDOS,ERRbadaccess);
3327 END_PROFILE(SMBreadX);
3331 if (global_client_caps & CAP_LARGE_READX) {
3332 size_t upper_size = SVAL(req->inbuf,smb_vwv7);
3333 smb_maxcnt |= (upper_size<<16);
3334 if (upper_size > 1) {