s3:utils: Fix 'Usage:' for 'net ads enctypes'
[samba4-gss.git] / source3 / smbd / smb2_reply.c
blob693fad9bce67d9eb5b0dfdc9631d07c78cc67cfd
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 "libsmb/namequery.h"
29 #include "system/filesys.h"
30 #include "printing.h"
31 #include "locking/share_mode_lock.h"
32 #include "smbd/smbd.h"
33 #include "smbd/globals.h"
34 #include "smbd/smbXsrv_open.h"
35 #include "fake_file.h"
36 #include "rpc_client/rpc_client.h"
37 #include "../librpc/gen_ndr/ndr_spoolss_c.h"
38 #include "rpc_client/cli_spoolss.h"
39 #include "rpc_client/init_spoolss.h"
40 #include "rpc_server/rpc_ncacn_np.h"
41 #include "libcli/security/security.h"
42 #include "libsmb/nmblib.h"
43 #include "auth.h"
44 #include "smbprofile.h"
45 #include "../lib/tsocket/tsocket.h"
46 #include "lib/util/tevent_ntstatus.h"
47 #include "libcli/smb/smb_signing.h"
48 #include "lib/util/sys_rw_data.h"
49 #include "librpc/gen_ndr/open_files.h"
50 #include "libcli/smb/smb2_posix.h"
51 #include "lib/util/string_wrappers.h"
52 #include "source3/printing/rap_jobid.h"
53 #include "source3/lib/substitute.h"
54 #include "source3/smbd/dir.h"
56 /****************************************************************************
57 Ensure we check the path in *exactly* the same way as W2K for a findfirst/findnext
58 path or anything including wildcards.
59 We're assuming here that '/' is not the second byte in any multibyte char
60 set (a safe assumption). '\\' *may* be the second byte in a multibyte char
61 set.
62 ****************************************************************************/
64 /* Custom version for processing POSIX paths. */
65 #define IS_PATH_SEP(c,posix_only) ((c) == '/' || (!(posix_only) && (c) == '\\'))
67 NTSTATUS check_path_syntax(char *path, bool posix_path)
69 char *d = path;
70 const char *s = path;
71 NTSTATUS ret = NT_STATUS_OK;
72 bool start_of_name_component = True;
73 bool stream_started = false;
74 bool last_component_contains_wcard = false;
76 while (*s) {
77 if (stream_started) {
78 switch (*s) {
79 case '/':
80 case '\\':
81 return NT_STATUS_OBJECT_NAME_INVALID;
82 case ':':
83 if (s[1] == '\0') {
84 return NT_STATUS_OBJECT_NAME_INVALID;
86 if (strchr_m(&s[1], ':')) {
87 return NT_STATUS_OBJECT_NAME_INVALID;
89 break;
93 if ((*s == ':') && !posix_path && !stream_started) {
94 if (last_component_contains_wcard) {
95 return NT_STATUS_OBJECT_NAME_INVALID;
97 /* Stream names allow more characters than file names.
98 We're overloading posix_path here to allow a wider
99 range of characters. If stream_started is true this
100 is still a Windows path even if posix_path is true.
101 JRA.
103 stream_started = true;
104 start_of_name_component = false;
105 posix_path = true;
107 if (s[1] == '\0') {
108 return NT_STATUS_OBJECT_NAME_INVALID;
112 if (!stream_started && IS_PATH_SEP(*s,posix_path)) {
114 * Safe to assume is not the second part of a mb char
115 * as this is handled below.
117 /* Eat multiple '/' or '\\' */
118 while (IS_PATH_SEP(*s,posix_path)) {
119 s++;
121 if ((d != path) && (*s != '\0')) {
122 /* We only care about non-leading or trailing '/' or '\\' */
123 *d++ = '/';
126 start_of_name_component = True;
127 /* New component. */
128 last_component_contains_wcard = false;
129 continue;
132 if (start_of_name_component) {
133 if ((s[0] == '.') && (s[1] == '.') && (IS_PATH_SEP(s[2],posix_path) || s[2] == '\0')) {
134 /* Uh oh - "/../" or "\\..\\" or "/..\0" or "\\..\0" ! */
137 * No mb char starts with '.' so we're safe checking the directory separator here.
140 /* If we just added a '/' - delete it */
141 if ((d > path) && (*(d-1) == '/')) {
142 *(d-1) = '\0';
143 d--;
146 /* Are we at the start ? Can't go back further if so. */
147 if (d <= path) {
148 ret = NT_STATUS_OBJECT_PATH_SYNTAX_BAD;
149 break;
151 /* Go back one level... */
152 /* We know this is safe as '/' cannot be part of a mb sequence. */
153 /* NOTE - if this assumption is invalid we are not in good shape... */
154 /* Decrement d first as d points to the *next* char to write into. */
155 for (d--; d > path; d--) {
156 if (*d == '/')
157 break;
159 s += 2; /* Else go past the .. */
160 /* We're still at the start of a name component, just the previous one. */
161 continue;
163 } else if ((s[0] == '.') && ((s[1] == '\0') || IS_PATH_SEP(s[1],posix_path))) {
164 if (posix_path) {
165 /* Eat the '.' */
166 s++;
167 continue;
169 } else if (IS_SMBD_TMPNAME(s, NULL)) {
170 return NT_STATUS_OBJECT_NAME_INVALID;
175 if (!(*s & 0x80)) {
176 if (!posix_path) {
177 if (*s <= 0x1f || *s == '|') {
178 return NT_STATUS_OBJECT_NAME_INVALID;
180 switch (*s) {
181 case '*':
182 case '?':
183 case '<':
184 case '>':
185 case '"':
186 last_component_contains_wcard = true;
187 break;
188 default:
189 break;
192 *d++ = *s++;
193 } else {
194 size_t ch_size;
195 /* Get the size of the next MB character. */
196 next_codepoint(s,&ch_size);
197 switch(ch_size) {
198 case 5:
199 *d++ = *s++;
200 FALL_THROUGH;
201 case 4:
202 *d++ = *s++;
203 FALL_THROUGH;
204 case 3:
205 *d++ = *s++;
206 FALL_THROUGH;
207 case 2:
208 *d++ = *s++;
209 FALL_THROUGH;
210 case 1:
211 *d++ = *s++;
212 break;
213 default:
214 DBG_ERR("character length assumptions invalid !\n");
215 *d = '\0';
216 return NT_STATUS_INVALID_PARAMETER;
219 start_of_name_component = False;
222 *d = '\0';
224 return ret;
227 /****************************************************************************
228 SMB2-only code to strip an MSDFS prefix from an incoming pathname.
229 ****************************************************************************/
231 NTSTATUS smb2_strip_dfs_path(const char *in_path, const char **out_path)
233 const char *path = in_path;
235 /* Match the Windows 2022 behavior for an empty DFS pathname. */
236 if (*path == '\0') {
237 return NT_STATUS_INVALID_PARAMETER;
239 /* Strip any leading '\\' characters - MacOSX client behavior. */
240 while (*path == '\\') {
241 path++;
243 /* We should now be pointing at the server name. Go past it. */
244 for (;;) {
245 if (*path == '\0') {
246 /* End of complete path. Exit OK. */
247 goto out;
249 if (*path == '\\') {
250 /* End of server name. Go past and break. */
251 path++;
252 break;
254 path++; /* Continue looking for end of server name or string. */
257 /* We should now be pointing at the share name. Go past it. */
258 for (;;) {
259 if (*path == '\0') {
260 /* End of complete path. Exit OK. */
261 goto out;
263 if (*path == '\\') {
264 /* End of share name. Go past and break. */
265 path++;
266 break;
268 if (*path == ':') {
269 /* Only invalid character in sharename. */
270 return NT_STATUS_OBJECT_NAME_INVALID;
272 path++; /* Continue looking for end of share name or string. */
275 /* path now points at the start of the real filename (if any). */
277 out:
278 /* We have stripped the DFS path prefix (if any). */
279 *out_path = path;
280 return NT_STATUS_OK;
283 /****************************************************************************
284 Pull a string and check the path allowing a wildcard - provide for error return.
285 Passes in posix flag.
286 ****************************************************************************/
288 static size_t srvstr_get_path_internal(TALLOC_CTX *ctx,
289 const char *base_ptr,
290 uint16_t smb_flags2,
291 char **pp_dest,
292 const char *src,
293 size_t src_len,
294 int flags,
295 bool posix_pathnames,
296 NTSTATUS *err)
298 size_t ret;
299 char *dst = NULL;
301 *pp_dest = NULL;
303 ret = srvstr_pull_talloc(ctx, base_ptr, smb_flags2, pp_dest, src,
304 src_len, flags);
306 if (!*pp_dest) {
307 *err = NT_STATUS_INVALID_PARAMETER;
308 return ret;
311 dst = *pp_dest;
313 if (smb_flags2 & FLAGS2_DFS_PATHNAMES) {
315 * A valid DFS path looks either like
316 * /server/share
317 * \server\share
318 * (there may be more components after).
319 * Either way it must have at least two separators.
321 * Ensure we end up as /server/share
322 * so we don't need to special case
323 * separator characters elsewhere in
324 * the code.
326 char *server = NULL;
327 char *share = NULL;
328 char *remaining_path = NULL;
329 char path_sep = 0;
330 char *p = NULL;
332 if (posix_pathnames && (dst[0] == '/')) {
333 path_sep = dst[0];
334 } else if (dst[0] == '\\') {
335 path_sep = dst[0];
338 if (path_sep == 0) {
339 goto local_path;
342 * May be a DFS path.
343 * We need some heuristics here,
344 * as clients differ on what constitutes
345 * a well-formed DFS path. If the path
346 * appears malformed, just fall back to
347 * processing as a local path.
349 server = dst;
352 * Cosmetic fix for Linux-only DFS clients.
353 * The Linux kernel SMB1 client has a bug - it sends
354 * DFS pathnames as:
356 * \\server\share\path
358 * Causing us to mis-parse server,share,remaining_path here
359 * and jump into 'goto local_path' at 'share\path' instead
360 * of 'path'.
362 * This doesn't cause an error as the limits on share names
363 * are similar to those on pathnames.
365 * parse_dfs_path() which we call before filename parsing
366 * copes with this by calling trim_char on the leading '\'
367 * characters before processing.
368 * Do the same here so logging of pathnames looks better.
370 if (server[1] == path_sep) {
371 trim_char(&server[1], path_sep, '\0');
375 * Look to see if we also have /share following.
377 share = strchr(server+1, path_sep);
378 if (share == NULL) {
379 goto local_path;
382 * Ensure the server name does not contain
383 * any possible path components by converting
384 * them to _'s.
386 for (p = server + 1; p < share; p++) {
387 if (*p == '/' || *p == '\\') {
388 *p = '_';
392 * It's a well formed DFS path with
393 * at least server and share components.
394 * Replace the slashes with '/' and
395 * pass the remainder to local_path.
397 *server = '/';
398 *share = '/';
400 * Skip past share so we don't pass the
401 * sharename into check_path_syntax().
403 remaining_path = strchr(share+1, path_sep);
404 if (remaining_path == NULL) {
406 * Ensure the share name does not contain
407 * any possible path components by converting
408 * them to _'s.
410 for (p = share + 1; *p; p++) {
411 if (*p == '/' || *p == '\\') {
412 *p = '_';
416 * If no remaining path this was
417 * a bare /server/share path. Just return.
419 *err = NT_STATUS_OK;
420 return ret;
423 * Ensure the share name does not contain
424 * any possible path components by converting
425 * them to _'s.
427 for (p = share + 1; p < remaining_path; p++) {
428 if (*p == '/' || *p == '\\') {
429 *p = '_';
432 *remaining_path = '/';
433 dst = remaining_path + 1;
434 /* dst now points at any following components. */
437 local_path:
439 *err = check_path_syntax(dst, posix_pathnames);
441 return ret;
444 /****************************************************************************
445 Pull a string and check the path - provide for error return.
446 ****************************************************************************/
448 size_t srvstr_get_path(TALLOC_CTX *ctx,
449 const char *base_ptr,
450 uint16_t smb_flags2,
451 char **pp_dest,
452 const char *src,
453 size_t src_len,
454 int flags,
455 NTSTATUS *err)
457 return srvstr_get_path_internal(ctx,
458 base_ptr,
459 smb_flags2,
460 pp_dest,
461 src,
462 src_len,
463 flags,
464 false,
465 err);
468 /****************************************************************************
469 Pull a string and check the path - provide for error return.
470 posix_pathnames version.
471 ****************************************************************************/
473 size_t srvstr_get_path_posix(TALLOC_CTX *ctx,
474 const char *base_ptr,
475 uint16_t smb_flags2,
476 char **pp_dest,
477 const char *src,
478 size_t src_len,
479 int flags,
480 NTSTATUS *err)
482 return srvstr_get_path_internal(ctx,
483 base_ptr,
484 smb_flags2,
485 pp_dest,
486 src,
487 src_len,
488 flags,
489 true,
490 err);
494 size_t srvstr_get_path_req(TALLOC_CTX *mem_ctx, struct smb_request *req,
495 char **pp_dest, const char *src, int flags,
496 NTSTATUS *err)
498 ssize_t bufrem = smbreq_bufrem(req, src);
500 if (bufrem == 0) {
501 *err = NT_STATUS_INVALID_PARAMETER;
502 return 0;
505 if (req->posix_pathnames) {
506 return srvstr_get_path_internal(mem_ctx,
507 (const char *)req->inbuf,
508 req->flags2,
509 pp_dest,
510 src,
511 bufrem,
512 flags,
513 true,
514 err);
515 } else {
516 return srvstr_get_path_internal(mem_ctx,
517 (const char *)req->inbuf,
518 req->flags2,
519 pp_dest,
520 src,
521 bufrem,
522 flags,
523 false,
524 err);
529 * pull a string from the smb_buf part of a packet. In this case the
530 * string can either be null terminated or it can be terminated by the
531 * end of the smbbuf area
533 size_t srvstr_pull_req_talloc(TALLOC_CTX *ctx, struct smb_request *req,
534 char **dest, const uint8_t *src, int flags)
536 ssize_t bufrem = smbreq_bufrem(req, src);
538 if (bufrem == 0) {
539 *dest = NULL;
540 return 0;
543 return pull_string_talloc(ctx, req->inbuf, req->flags2, dest, src,
544 bufrem, flags);
547 /****************************************************************************
548 Check if we have a correct fsp pointing to a quota fake file. Replacement for
549 the CHECK_NTQUOTA_HANDLE_OK macro.
550 ****************************************************************************/
552 bool check_fsp_ntquota_handle(connection_struct *conn, struct smb_request *req,
553 files_struct *fsp)
555 if ((fsp == NULL) || (conn == NULL)) {
556 return false;
559 if ((conn != fsp->conn) || (req->vuid != fsp->vuid)) {
560 return false;
563 if (fsp->fsp_flags.is_directory) {
564 return false;
567 if (fsp->fake_file_handle == NULL) {
568 return false;
571 if (fsp->fake_file_handle->type != FAKE_FILE_TYPE_QUOTA) {
572 return false;
575 if (fsp->fake_file_handle->private_data == NULL) {
576 return false;
579 return true;
582 /****************************************************************************
583 Return the port number we've bound to on a socket.
584 ****************************************************************************/
586 static int get_socket_port(int fd)
588 struct samba_sockaddr saddr = {
589 .sa_socklen = sizeof(struct sockaddr_storage),
592 if (fd == -1) {
593 return -1;
596 if (getsockname(fd, &saddr.u.sa, &saddr.sa_socklen) < 0) {
597 int level = (errno == ENOTCONN) ? 2 : 0;
598 DEBUG(level, ("getsockname failed. Error was %s\n",
599 strerror(errno)));
600 return -1;
603 #if defined(HAVE_IPV6)
604 if (saddr.u.sa.sa_family == AF_INET6) {
605 return ntohs(saddr.u.in6.sin6_port);
607 #endif
608 if (saddr.u.sa.sa_family == AF_INET) {
609 return ntohs(saddr.u.in.sin_port);
611 return -1;
614 static bool netbios_session_retarget(struct smbXsrv_connection *xconn,
615 const char *name, int name_type)
617 char *trim_name;
618 char *trim_name_type;
619 const char *retarget_parm;
620 char *retarget;
621 char *p;
622 int retarget_type = 0x20;
623 int retarget_port = NBT_SMB_PORT;
624 struct sockaddr_storage retarget_addr;
625 struct sockaddr_in *in_addr;
626 bool ret = false;
627 uint8_t outbuf[10];
629 if (get_socket_port(xconn->transport.sock) != NBT_SMB_PORT) {
630 return false;
633 trim_name = talloc_strdup(talloc_tos(), name);
634 if (trim_name == NULL) {
635 goto fail;
637 trim_char(trim_name, ' ', ' ');
639 trim_name_type = talloc_asprintf(trim_name, "%s#%2.2x", trim_name,
640 name_type);
641 if (trim_name_type == NULL) {
642 goto fail;
645 retarget_parm = lp_parm_const_string(-1, "netbios retarget",
646 trim_name_type, NULL);
647 if (retarget_parm == NULL) {
648 retarget_parm = lp_parm_const_string(-1, "netbios retarget",
649 trim_name, NULL);
651 if (retarget_parm == NULL) {
652 goto fail;
655 retarget = talloc_strdup(trim_name, retarget_parm);
656 if (retarget == NULL) {
657 goto fail;
660 DEBUG(10, ("retargeting %s to %s\n", trim_name_type, retarget));
662 p = strchr(retarget, ':');
663 if (p != NULL) {
664 *p++ = '\0';
665 retarget_port = atoi(p);
668 p = strchr_m(retarget, '#');
669 if (p != NULL) {
670 *p++ = '\0';
671 if (sscanf(p, "%x", &retarget_type) != 1) {
672 goto fail;
676 ret = resolve_name(retarget, &retarget_addr, retarget_type, false);
677 if (!ret) {
678 DEBUG(10, ("could not resolve %s\n", retarget));
679 goto fail;
682 if (retarget_addr.ss_family != AF_INET) {
683 DEBUG(10, ("Retarget target not an IPv4 addr\n"));
684 goto fail;
687 in_addr = (struct sockaddr_in *)(void *)&retarget_addr;
689 _smb_setlen(outbuf, 6);
690 SCVAL(outbuf, 0, 0x84);
691 *(uint32_t *)(outbuf+4) = in_addr->sin_addr.s_addr;
692 *(uint16_t *)(outbuf+8) = htons(retarget_port);
694 if (!smb1_srv_send(xconn, (char *)outbuf, false, 0, false)) {
695 exit_server_cleanly("netbios_session_retarget: smb1_srv_send "
696 "failed.");
699 ret = true;
700 fail:
701 TALLOC_FREE(trim_name);
702 return ret;
705 static void reply_called_name_not_present(char *outbuf)
707 smb_setlen(outbuf, 1);
708 SCVAL(outbuf, 0, 0x83);
709 SCVAL(outbuf, 4, 0x82);
712 /****************************************************************************
713 Reply to a (netbios-level) special message.
714 ****************************************************************************/
716 void reply_special(struct smbXsrv_connection *xconn, char *inbuf, size_t inbuf_size)
718 struct smbd_server_connection *sconn = xconn->client->sconn;
719 int msg_type = CVAL(inbuf,0);
720 int msg_flags = CVAL(inbuf,1);
722 * We only really use 4 bytes of the outbuf, but for the smb_setlen
723 * calculation & friends (smb1_srv_send uses that) we need the full smb
724 * header.
726 char outbuf[smb_size];
728 memset(outbuf, '\0', sizeof(outbuf));
730 smb_setlen(outbuf,0);
732 switch (msg_type) {
733 case NBSSrequest: /* session request */
735 /* inbuf_size is guaranteed to be at least 4. */
736 fstring name1,name2;
737 int name_type1, name_type2;
738 int name_len1, name_len2;
740 *name1 = *name2 = 0;
742 if (xconn->transport.nbt.got_session) {
743 exit_server_cleanly("multiple session request not permitted");
746 SCVAL(outbuf,0,NBSSpositive);
747 SCVAL(outbuf,3,0);
749 /* inbuf_size is guaranteed to be at least 4. */
750 name_len1 = name_len((unsigned char *)(inbuf+4),inbuf_size - 4);
751 if (name_len1 <= 0 || name_len1 > inbuf_size - 4) {
752 DEBUG(0,("Invalid name length in session request\n"));
753 reply_called_name_not_present(outbuf);
754 break;
756 name_len2 = name_len((unsigned char *)(inbuf+4+name_len1),inbuf_size - 4 - name_len1);
757 if (name_len2 <= 0 || name_len2 > inbuf_size - 4 - name_len1) {
758 DEBUG(0,("Invalid name length in session request\n"));
759 reply_called_name_not_present(outbuf);
760 break;
763 name_type1 = name_extract((unsigned char *)inbuf,
764 inbuf_size,(unsigned int)4,name1);
765 name_type2 = name_extract((unsigned char *)inbuf,
766 inbuf_size,(unsigned int)(4 + name_len1),name2);
768 if (name_type1 == -1 || name_type2 == -1) {
769 DEBUG(0,("Invalid name type in session request\n"));
770 reply_called_name_not_present(outbuf);
771 break;
774 DEBUG(2,("netbios connect: name1=%s0x%x name2=%s0x%x\n",
775 name1, name_type1, name2, name_type2));
777 if (netbios_session_retarget(xconn, name1, name_type1)) {
778 exit_server_cleanly("retargeted client");
782 * Windows NT/2k uses "*SMBSERVER" and XP uses
783 * "*SMBSERV" arrggg!!!
785 if (strequal(name1, "*SMBSERVER ")
786 || strequal(name1, "*SMBSERV ")) {
787 char *raddr;
789 raddr = tsocket_address_inet_addr_string(sconn->remote_address,
790 talloc_tos());
791 if (raddr == NULL) {
792 exit_server_cleanly("could not allocate raddr");
795 fstrcpy(name1, raddr);
798 set_local_machine_name(name1, True);
799 set_remote_machine_name(name2, True);
801 if (is_ipaddress(sconn->remote_hostname)) {
802 char *p = discard_const_p(char, sconn->remote_hostname);
804 talloc_free(p);
806 sconn->remote_hostname = talloc_strdup(sconn,
807 get_remote_machine_name());
808 if (sconn->remote_hostname == NULL) {
809 exit_server_cleanly("could not copy remote name");
811 xconn->remote_hostname = sconn->remote_hostname;
814 DEBUG(2,("netbios connect: local=%s remote=%s, name type = %x\n",
815 get_local_machine_name(), get_remote_machine_name(),
816 name_type2));
818 if (name_type2 == 'R') {
819 /* We are being asked for a pathworks session ---
820 no thanks! */
821 reply_called_name_not_present(outbuf);
822 break;
825 reload_services(sconn, conn_snum_used, true);
826 reopen_logs();
828 xconn->transport.nbt.got_session = true;
829 break;
832 case 0x89: /* session keepalive request
833 (some old clients produce this?) */
834 SCVAL(outbuf,0,NBSSkeepalive);
835 SCVAL(outbuf,3,0);
836 break;
838 case NBSSpositive: /* positive session response */
839 case NBSSnegative: /* negative session response */
840 case NBSSretarget: /* retarget session response */
841 DEBUG(0,("Unexpected session response\n"));
842 break;
844 case NBSSkeepalive: /* session keepalive */
845 default:
846 return;
849 DEBUG(5,("init msg_type=0x%x msg_flags=0x%x\n",
850 msg_type, msg_flags));
852 if (!smb1_srv_send(xconn, outbuf, false, 0, false)) {
853 exit_server_cleanly("reply_special: smb1_srv_send failed.");
856 if (CVAL(outbuf, 0) != 0x82) {
857 exit_server_cleanly("invalid netbios session");
859 return;
862 /*******************************************************************
863 * unlink a file with all relevant access checks
864 *******************************************************************/
866 NTSTATUS unlink_internals(connection_struct *conn,
867 struct smb_request *req,
868 uint32_t dirtype,
869 struct files_struct *dirfsp,
870 struct smb_filename *smb_fname)
872 uint32_t fattr;
873 files_struct *fsp;
874 uint32_t dirtype_orig = dirtype;
875 NTSTATUS status;
876 int ret;
877 struct smb2_create_blobs *posx = NULL;
879 if (dirtype == 0) {
880 dirtype = FILE_ATTRIBUTE_NORMAL;
883 DBG_DEBUG("%s, dirtype = %d\n",
884 smb_fname_str_dbg(smb_fname),
885 dirtype);
887 if (!CAN_WRITE(conn)) {
888 return NT_STATUS_MEDIA_WRITE_PROTECTED;
891 ret = vfs_stat(conn, smb_fname);
892 if (ret != 0) {
893 return map_nt_error_from_unix(errno);
896 fattr = fdos_mode(smb_fname->fsp);
898 if (dirtype & FILE_ATTRIBUTE_NORMAL) {
899 dirtype = FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY;
902 dirtype &= (FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
903 if (!dirtype) {
904 return NT_STATUS_NO_SUCH_FILE;
907 if (!dir_check_ftype(fattr, dirtype)) {
908 if (fattr & FILE_ATTRIBUTE_DIRECTORY) {
909 return NT_STATUS_FILE_IS_A_DIRECTORY;
911 return NT_STATUS_NO_SUCH_FILE;
914 if (dirtype_orig & 0x8000) {
915 /* These will never be set for POSIX. */
916 return NT_STATUS_NO_SUCH_FILE;
919 #if 0
920 if ((fattr & dirtype) & FILE_ATTRIBUTE_DIRECTORY) {
921 return NT_STATUS_FILE_IS_A_DIRECTORY;
924 if ((fattr & ~dirtype) & (FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM)) {
925 return NT_STATUS_NO_SUCH_FILE;
928 if (dirtype & 0xFF00) {
929 /* These will never be set for POSIX. */
930 return NT_STATUS_NO_SUCH_FILE;
933 dirtype &= 0xFF;
934 if (!dirtype) {
935 return NT_STATUS_NO_SUCH_FILE;
938 /* Can't delete a directory. */
939 if (fattr & FILE_ATTRIBUTE_DIRECTORY) {
940 return NT_STATUS_FILE_IS_A_DIRECTORY;
942 #endif
944 #if 0 /* JRATEST */
945 else if (dirtype & FILE_ATTRIBUTE_DIRECTORY) /* Asked for a directory and it isn't. */
946 return NT_STATUS_OBJECT_NAME_INVALID;
947 #endif /* JRATEST */
949 if (smb_fname->flags & SMB_FILENAME_POSIX_PATH) {
950 status = make_smb2_posix_create_ctx(
951 talloc_tos(), &posx, 0777);
952 if (!NT_STATUS_IS_OK(status)) {
953 DBG_WARNING("make_smb2_posix_create_ctx failed: %s\n",
954 nt_errstr(status));
955 return status;
959 /* On open checks the open itself will check the share mode, so
960 don't do it here as we'll get it wrong. */
962 status = SMB_VFS_CREATE_FILE
963 (conn, /* conn */
964 req, /* req */
965 dirfsp, /* dirfsp */
966 smb_fname, /* fname */
967 DELETE_ACCESS, /* access_mask */
968 FILE_SHARE_NONE, /* share_access */
969 FILE_OPEN, /* create_disposition*/
970 FILE_NON_DIRECTORY_FILE |
971 FILE_OPEN_REPARSE_POINT, /* create_options */
972 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
973 0, /* oplock_request */
974 NULL, /* lease */
975 0, /* allocation_size */
976 0, /* private_flags */
977 NULL, /* sd */
978 NULL, /* ea_list */
979 &fsp, /* result */
980 NULL, /* pinfo */
981 posx, /* in_context_blobs */
982 NULL); /* out_context_blobs */
984 TALLOC_FREE(posx);
986 if (!NT_STATUS_IS_OK(status)) {
987 DBG_DEBUG("SMB_VFS_CREATEFILE failed: %s\n",
988 nt_errstr(status));
989 return status;
992 status = can_set_delete_on_close(fsp, fattr);
993 if (!NT_STATUS_IS_OK(status)) {
994 DBG_DEBUG("can_set_delete_on_close for file %s - "
995 "(%s)\n",
996 smb_fname_str_dbg(smb_fname),
997 nt_errstr(status));
998 close_file_free(req, &fsp, NORMAL_CLOSE);
999 return status;
1002 /* The set is across all open files on this dev/inode pair. */
1003 if (!set_delete_on_close(fsp, True,
1004 conn->session_info->security_token,
1005 conn->session_info->unix_token)) {
1006 close_file_free(req, &fsp, NORMAL_CLOSE);
1007 return NT_STATUS_ACCESS_DENIED;
1010 return close_file_free(req, &fsp, NORMAL_CLOSE);
1013 /****************************************************************************
1014 Fake (read/write) sendfile. Returns -1 on read or write fail.
1015 ****************************************************************************/
1017 ssize_t fake_sendfile(struct smbXsrv_connection *xconn, files_struct *fsp,
1018 off_t startpos, size_t nread)
1020 size_t bufsize;
1021 size_t tosend = nread;
1022 char *buf;
1024 if (nread == 0) {
1025 return 0;
1028 bufsize = MIN(nread, 65536);
1030 if (!(buf = SMB_MALLOC_ARRAY(char, bufsize))) {
1031 return -1;
1034 while (tosend > 0) {
1035 ssize_t ret;
1036 size_t cur_read;
1038 cur_read = MIN(tosend, bufsize);
1039 ret = read_file(fsp,buf,startpos,cur_read);
1040 if (ret == -1) {
1041 SAFE_FREE(buf);
1042 return -1;
1045 /* If we had a short read, fill with zeros. */
1046 if (ret < cur_read) {
1047 memset(buf + ret, '\0', cur_read - ret);
1050 ret = write_data(xconn->transport.sock, buf, cur_read);
1051 if (ret != cur_read) {
1052 int saved_errno = errno;
1054 * Try and give an error message saying what
1055 * client failed.
1057 DEBUG(0, ("write_data failed for client %s. "
1058 "Error %s\n",
1059 smbXsrv_connection_dbg(xconn),
1060 strerror(saved_errno)));
1061 SAFE_FREE(buf);
1062 errno = saved_errno;
1063 return -1;
1065 tosend -= cur_read;
1066 startpos += cur_read;
1069 SAFE_FREE(buf);
1070 return (ssize_t)nread;
1073 /****************************************************************************
1074 Deal with the case of sendfile reading less bytes from the file than
1075 requested. Fill with zeros (all we can do). Returns 0 on success
1076 ****************************************************************************/
1078 ssize_t sendfile_short_send(struct smbXsrv_connection *xconn,
1079 files_struct *fsp,
1080 ssize_t nread,
1081 size_t headersize,
1082 size_t smb_maxcnt)
1084 #define SHORT_SEND_BUFSIZE 1024
1085 if (nread < headersize) {
1086 DEBUG(0,("sendfile_short_send: sendfile failed to send "
1087 "header for file %s (%s). Terminating\n",
1088 fsp_str_dbg(fsp), strerror(errno)));
1089 return -1;
1092 nread -= headersize;
1094 if (nread < smb_maxcnt) {
1095 char buf[SHORT_SEND_BUFSIZE] = { 0 };
1097 DEBUG(0,("sendfile_short_send: filling truncated file %s "
1098 "with zeros !\n", fsp_str_dbg(fsp)));
1100 while (nread < smb_maxcnt) {
1102 * We asked for the real file size and told sendfile
1103 * to not go beyond the end of the file. But it can
1104 * happen that in between our fstat call and the
1105 * sendfile call the file was truncated. This is very
1106 * bad because we have already announced the larger
1107 * number of bytes to the client.
1109 * The best we can do now is to send 0-bytes, just as
1110 * a read from a hole in a sparse file would do.
1112 * This should happen rarely enough that I don't care
1113 * about efficiency here :-)
1115 size_t to_write;
1116 ssize_t ret;
1118 to_write = MIN(SHORT_SEND_BUFSIZE, smb_maxcnt - nread);
1119 ret = write_data(xconn->transport.sock, buf, to_write);
1120 if (ret != to_write) {
1121 int saved_errno = errno;
1123 * Try and give an error message saying what
1124 * client failed.
1126 DEBUG(0, ("write_data failed for client %s. "
1127 "Error %s\n",
1128 smbXsrv_connection_dbg(xconn),
1129 strerror(saved_errno)));
1130 errno = saved_errno;
1131 return -1;
1133 nread += to_write;
1137 return 0;
1140 /*******************************************************************
1141 Check if a user is allowed to rename a file.
1142 ********************************************************************/
1144 static NTSTATUS can_rename(connection_struct *conn, files_struct *fsp,
1145 uint16_t dirtype)
1147 NTSTATUS status;
1149 if (fsp->fsp_name->twrp != 0) {
1150 /* Get the error right, this is what Windows returns. */
1151 return NT_STATUS_NOT_SAME_DEVICE;
1154 if (!CAN_WRITE(conn)) {
1155 return NT_STATUS_MEDIA_WRITE_PROTECTED;
1158 if ((dirtype & (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM)) !=
1159 (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM)) {
1160 /* Only bother to read the DOS attribute if we might deny the
1161 rename on the grounds of attribute mismatch. */
1162 uint32_t fmode = fdos_mode(fsp);
1163 if ((fmode & ~dirtype) & (FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM)) {
1164 return NT_STATUS_NO_SUCH_FILE;
1168 status = check_any_access_fsp(fsp, DELETE_ACCESS | FILE_WRITE_ATTRIBUTES);
1169 if (!NT_STATUS_IS_OK(status)) {
1170 return status;
1172 return NT_STATUS_OK;
1175 /****************************************************************************
1176 Ensure open files have their names updated. Updated to notify other smbd's
1177 asynchronously.
1178 ****************************************************************************/
1180 static void rename_open_files(connection_struct *conn,
1181 struct share_mode_lock *lck,
1182 struct file_id id,
1183 uint32_t orig_name_hash,
1184 const struct smb_filename *smb_fname_dst)
1186 files_struct *fsp;
1187 bool did_rename = False;
1188 NTSTATUS status;
1189 uint32_t new_name_hash = 0;
1191 for(fsp = file_find_di_first(conn->sconn, id, false); fsp;
1192 fsp = file_find_di_next(fsp, false)) {
1193 SMB_STRUCT_STAT fsp_orig_sbuf;
1194 struct file_id_buf idbuf;
1195 /* fsp_name is a relative path under the fsp. To change this for other
1196 sharepaths we need to manipulate relative paths. */
1197 /* TODO - create the absolute path and manipulate the newname
1198 relative to the sharepath. */
1199 if (!strequal(fsp->conn->connectpath, conn->connectpath)) {
1200 continue;
1202 if (fsp->name_hash != orig_name_hash) {
1203 continue;
1205 DBG_DEBUG("renaming file %s "
1206 "(file_id %s) from %s -> %s\n",
1207 fsp_fnum_dbg(fsp),
1208 file_id_str_buf(fsp->file_id, &idbuf),
1209 fsp_str_dbg(fsp),
1210 smb_fname_str_dbg(smb_fname_dst));
1213 * The incoming smb_fname_dst here has an
1214 * invalid stat struct (it must not have
1215 * existed for the rename to succeed).
1216 * Preserve the existing stat from the
1217 * open fsp after fsp_set_smb_fname()
1218 * overwrites with the invalid stat.
1220 * We will do an fstat before returning
1221 * any of this metadata to the client anyway.
1223 fsp_orig_sbuf = fsp->fsp_name->st;
1224 status = fsp_set_smb_fname(fsp, smb_fname_dst);
1225 if (NT_STATUS_IS_OK(status)) {
1226 did_rename = True;
1227 new_name_hash = fsp->name_hash;
1228 /* Restore existing stat. */
1229 fsp->fsp_name->st = fsp_orig_sbuf;
1233 if (!did_rename) {
1234 struct file_id_buf idbuf;
1235 DBG_DEBUG("no open files on file_id %s "
1236 "for %s\n",
1237 file_id_str_buf(id, &idbuf),
1238 smb_fname_str_dbg(smb_fname_dst));
1241 /* Send messages to all smbd's (not ourself) that the name has changed. */
1242 rename_share_filename(conn->sconn->msg_ctx, lck, id, conn->connectpath,
1243 orig_name_hash, new_name_hash,
1244 smb_fname_dst);
1248 /****************************************************************************
1249 We need to check if the source path is a parent directory of the destination
1250 (ie. a rename of /foo/bar/baz -> /foo/bar/baz/bibble/bobble. If so we must
1251 refuse the rename with a sharing violation. Under UNIX the above call can
1252 *succeed* if /foo/bar/baz is a symlink to another area in the share. We
1253 probably need to check that the client is a Windows one before disallowing
1254 this as a UNIX client (one with UNIX extensions) can know the source is a
1255 symlink and make this decision intelligently. Found by an excellent bug
1256 report from <AndyLiebman@aol.com>.
1257 ****************************************************************************/
1259 static bool rename_path_prefix_equal(const struct smb_filename *smb_fname_src,
1260 const struct smb_filename *smb_fname_dst)
1262 const char *psrc = smb_fname_src->base_name;
1263 const char *pdst = smb_fname_dst->base_name;
1264 size_t slen;
1266 if (psrc[0] == '.' && psrc[1] == '/') {
1267 psrc += 2;
1269 if (pdst[0] == '.' && pdst[1] == '/') {
1270 pdst += 2;
1272 if ((slen = strlen(psrc)) > strlen(pdst)) {
1273 return False;
1275 return ((memcmp(psrc, pdst, slen) == 0) && pdst[slen] == '/');
1279 * Do the notify calls from a rename
1282 static void notify_rename(struct connection_struct *conn,
1283 struct files_struct *fsp,
1284 const struct smb_filename *smb_fname_src,
1285 const struct smb_filename *smb_fname_dst)
1287 bool is_dir = fsp->fsp_flags.is_directory;
1288 char *parent_dir_src = NULL;
1289 char *parent_dir_dst = NULL;
1290 uint32_t mask;
1292 mask = is_dir ? FILE_NOTIFY_CHANGE_DIR_NAME
1293 : FILE_NOTIFY_CHANGE_FILE_NAME;
1295 if (!parent_dirname(talloc_tos(), smb_fname_src->base_name,
1296 &parent_dir_src, NULL) ||
1297 !parent_dirname(talloc_tos(), smb_fname_dst->base_name,
1298 &parent_dir_dst, NULL)) {
1299 goto out;
1302 if (strcmp(parent_dir_src, parent_dir_dst) == 0) {
1303 notify_fname(conn,
1304 NOTIFY_ACTION_OLD_NAME,
1305 mask,
1306 smb_fname_src,
1307 NULL);
1308 notify_fname(conn,
1309 NOTIFY_ACTION_NEW_NAME |
1310 NOTIFY_ACTION_DIRLEASE_BREAK,
1311 mask,
1312 smb_fname_dst,
1313 fsp_get_smb2_lease(fsp));
1315 else {
1316 notify_fname(conn,
1317 NOTIFY_ACTION_REMOVED |
1318 NOTIFY_ACTION_DIRLEASE_BREAK,
1319 mask,
1320 smb_fname_src,
1321 fsp_get_smb2_lease(fsp));
1322 notify_fname(conn,
1323 NOTIFY_ACTION_ADDED |
1324 NOTIFY_ACTION_DIRLEASE_BREAK,
1325 mask,
1326 smb_fname_dst,
1327 fsp_get_smb2_lease(fsp));
1330 /* this is a strange one. w2k3 gives an additional event for
1331 CHANGE_ATTRIBUTES and CHANGE_CREATION on the new file when renaming
1332 files, but not directories */
1333 if (!is_dir) {
1334 notify_fname(conn,
1335 NOTIFY_ACTION_MODIFIED,
1336 FILE_NOTIFY_CHANGE_ATTRIBUTES |
1337 FILE_NOTIFY_CHANGE_CREATION,
1338 smb_fname_dst,
1339 NULL);
1341 out:
1342 TALLOC_FREE(parent_dir_src);
1343 TALLOC_FREE(parent_dir_dst);
1346 /****************************************************************************
1347 Returns an error if the parent directory for a filename is open in an
1348 incompatible way.
1349 ****************************************************************************/
1351 static NTSTATUS parent_dirname_compatible_open(connection_struct *conn,
1352 const struct smb_filename *smb_fname_dst_in)
1354 struct smb_filename *smb_fname_parent = NULL;
1355 struct file_id id;
1356 files_struct *fsp = NULL;
1357 int ret;
1358 NTSTATUS status;
1360 status = SMB_VFS_PARENT_PATHNAME(conn,
1361 talloc_tos(),
1362 smb_fname_dst_in,
1363 &smb_fname_parent,
1364 NULL);
1365 if (!NT_STATUS_IS_OK(status)) {
1366 return status;
1369 ret = vfs_stat(conn, smb_fname_parent);
1370 if (ret == -1) {
1371 return map_nt_error_from_unix(errno);
1375 * We're only checking on this smbd here, mostly good
1376 * enough.. and will pass tests.
1379 id = vfs_file_id_from_sbuf(conn, &smb_fname_parent->st);
1380 for (fsp = file_find_di_first(conn->sconn, id, true); fsp;
1381 fsp = file_find_di_next(fsp, true)) {
1382 if (fsp->access_mask & DELETE_ACCESS) {
1383 return NT_STATUS_SHARING_VIOLATION;
1386 return NT_STATUS_OK;
1389 /****************************************************************************
1390 Rename an open file - given an fsp.
1391 ****************************************************************************/
1393 NTSTATUS rename_internals_fsp(connection_struct *conn,
1394 files_struct *fsp,
1395 struct share_mode_lock **_lck,
1396 struct smb_filename *smb_fname_dst_in,
1397 const char *dst_original_lcomp,
1398 uint32_t attrs,
1399 bool replace_if_exists)
1401 TALLOC_CTX *ctx = talloc_tos();
1402 struct smb_filename *parent_dir_fname_dst = NULL;
1403 struct smb_filename *parent_dir_fname_dst_atname = NULL;
1404 struct smb_filename *parent_dir_fname_src = NULL;
1405 struct smb_filename *parent_dir_fname_src_atname = NULL;
1406 struct smb_filename *smb_fname_dst = NULL;
1407 NTSTATUS status = NT_STATUS_OK;
1408 struct share_mode_lock *lck = NULL;
1409 bool dst_exists, old_is_stream, new_is_stream;
1410 int ret;
1411 bool case_sensitive = fsp->fsp_flags.posix_open ?
1412 true : conn->case_sensitive;
1413 bool case_preserve = fsp->fsp_flags.posix_open ?
1414 true : conn->case_preserve;
1415 struct vfs_rename_how rhow = { .flags = 0, };
1417 status = parent_dirname_compatible_open(conn, smb_fname_dst_in);
1418 if (!NT_STATUS_IS_OK(status)) {
1419 return status;
1422 if (file_has_open_streams(fsp)) {
1423 return NT_STATUS_ACCESS_DENIED;
1426 /* Make a copy of the dst smb_fname structs */
1428 smb_fname_dst = cp_smb_filename(ctx, smb_fname_dst_in);
1429 if (smb_fname_dst == NULL) {
1430 status = NT_STATUS_NO_MEMORY;
1431 goto out;
1435 * Check for special case with case preserving and not
1436 * case sensitive. If the new last component differs from the original
1437 * last component only by case, then we should allow
1438 * the rename (user is trying to change the case of the
1439 * filename).
1441 if (!case_sensitive && case_preserve &&
1442 strequal(fsp->fsp_name->base_name, smb_fname_dst->base_name) &&
1443 strequal(fsp->fsp_name->stream_name, smb_fname_dst->stream_name)) {
1444 char *fname_dst_parent = NULL;
1445 const char *fname_dst_lcomp = NULL;
1446 char *orig_lcomp_path = NULL;
1447 char *orig_lcomp_stream = NULL;
1448 bool ok = true;
1451 * Split off the last component of the processed
1452 * destination name. We will compare this to
1453 * the split components of dst_original_lcomp.
1455 if (!parent_dirname(ctx,
1456 smb_fname_dst->base_name,
1457 &fname_dst_parent,
1458 &fname_dst_lcomp)) {
1459 status = NT_STATUS_NO_MEMORY;
1460 goto out;
1464 * The dst_original_lcomp component contains
1465 * the last_component of the path + stream
1466 * name (if a stream exists).
1468 * Split off the stream name so we
1469 * can check them separately.
1472 if (fsp->fsp_flags.posix_open) {
1473 /* POSIX - no stream component. */
1474 orig_lcomp_path = talloc_strdup(ctx,
1475 dst_original_lcomp);
1476 if (orig_lcomp_path == NULL) {
1477 ok = false;
1479 } else {
1480 ok = split_stream_filename(ctx,
1481 dst_original_lcomp,
1482 &orig_lcomp_path,
1483 &orig_lcomp_stream);
1486 if (!ok) {
1487 TALLOC_FREE(fname_dst_parent);
1488 status = NT_STATUS_NO_MEMORY;
1489 goto out;
1492 /* If the base names only differ by case, use original. */
1493 if(!strcsequal(fname_dst_lcomp, orig_lcomp_path)) {
1494 char *tmp;
1496 * Replace the modified last component with the
1497 * original.
1499 if (!ISDOT(fname_dst_parent)) {
1500 tmp = talloc_asprintf(smb_fname_dst,
1501 "%s/%s",
1502 fname_dst_parent,
1503 orig_lcomp_path);
1504 } else {
1505 tmp = talloc_strdup(smb_fname_dst,
1506 orig_lcomp_path);
1508 if (tmp == NULL) {
1509 status = NT_STATUS_NO_MEMORY;
1510 TALLOC_FREE(fname_dst_parent);
1511 TALLOC_FREE(orig_lcomp_path);
1512 TALLOC_FREE(orig_lcomp_stream);
1513 goto out;
1515 TALLOC_FREE(smb_fname_dst->base_name);
1516 smb_fname_dst->base_name = tmp;
1519 /* If the stream_names only differ by case, use original. */
1520 if(!strcsequal(smb_fname_dst->stream_name,
1521 orig_lcomp_stream)) {
1522 /* Use the original stream. */
1523 char *tmp = talloc_strdup(smb_fname_dst,
1524 orig_lcomp_stream);
1525 if (tmp == NULL) {
1526 status = NT_STATUS_NO_MEMORY;
1527 TALLOC_FREE(fname_dst_parent);
1528 TALLOC_FREE(orig_lcomp_path);
1529 TALLOC_FREE(orig_lcomp_stream);
1530 goto out;
1532 TALLOC_FREE(smb_fname_dst->stream_name);
1533 smb_fname_dst->stream_name = tmp;
1535 TALLOC_FREE(fname_dst_parent);
1536 TALLOC_FREE(orig_lcomp_path);
1537 TALLOC_FREE(orig_lcomp_stream);
1541 * If the src and dest names are identical - including case,
1542 * don't do the rename, just return success.
1545 if (strcsequal(fsp->fsp_name->base_name, smb_fname_dst->base_name) &&
1546 strcsequal(fsp->fsp_name->stream_name,
1547 smb_fname_dst->stream_name)) {
1548 DBG_NOTICE("identical names in rename %s "
1549 "- returning success\n",
1550 smb_fname_str_dbg(smb_fname_dst));
1551 status = NT_STATUS_OK;
1552 goto out;
1555 old_is_stream = is_ntfs_stream_smb_fname(fsp->fsp_name);
1556 new_is_stream = is_ntfs_stream_smb_fname(smb_fname_dst);
1558 /* Return the correct error code if both names aren't streams. */
1559 if (old_is_stream != new_is_stream) {
1560 status = NT_STATUS_OBJECT_NAME_INVALID;
1561 goto out;
1564 dst_exists = vfs_stat(conn, smb_fname_dst) == 0;
1566 if(!replace_if_exists && dst_exists) {
1567 DBG_NOTICE("dest exists doing rename "
1568 "%s -> %s\n",
1569 smb_fname_str_dbg(fsp->fsp_name),
1570 smb_fname_str_dbg(smb_fname_dst));
1571 status = NT_STATUS_OBJECT_NAME_COLLISION;
1572 goto out;
1576 * Drop the pathref fsp on the destination otherwise we trip upon in in
1577 * the below check for open files check.
1579 if (smb_fname_dst_in->fsp != NULL) {
1580 fd_close(smb_fname_dst_in->fsp);
1581 file_free(NULL, smb_fname_dst_in->fsp);
1582 SMB_ASSERT(smb_fname_dst_in->fsp == NULL);
1585 if (dst_exists) {
1586 struct file_id fileid = vfs_file_id_from_sbuf(conn,
1587 &smb_fname_dst->st);
1588 files_struct *dst_fsp = file_find_di_first(conn->sconn,
1589 fileid, true);
1590 /* The file can be open when renaming a stream */
1591 if (dst_fsp && !new_is_stream) {
1592 DBG_NOTICE("Target file open\n");
1593 status = NT_STATUS_ACCESS_DENIED;
1594 goto out;
1598 /* Ensure we have a valid stat struct for the source. */
1599 status = vfs_stat_fsp(fsp);
1600 if (!NT_STATUS_IS_OK(status)) {
1601 goto out;
1604 status = can_rename(conn, fsp, attrs);
1606 if (!NT_STATUS_IS_OK(status)) {
1607 DBG_NOTICE("Error %s rename %s -> %s\n",
1608 nt_errstr(status),
1609 smb_fname_str_dbg(fsp->fsp_name),
1610 smb_fname_str_dbg(smb_fname_dst));
1611 if (NT_STATUS_EQUAL(status,NT_STATUS_SHARING_VIOLATION))
1612 status = NT_STATUS_ACCESS_DENIED;
1613 goto out;
1616 if (rename_path_prefix_equal(fsp->fsp_name, smb_fname_dst)) {
1617 status = NT_STATUS_ACCESS_DENIED;
1618 goto out;
1622 * Get a pathref on the destination parent directory, so
1623 * we can call check_parent_access_fsp().
1625 status = parent_pathref(ctx,
1626 conn->cwd_fsp,
1627 smb_fname_dst,
1628 &parent_dir_fname_dst,
1629 &parent_dir_fname_dst_atname);
1630 if (!NT_STATUS_IS_OK(status)) {
1631 goto out;
1634 status = check_parent_access_fsp(parent_dir_fname_dst->fsp,
1635 S_ISDIR(fsp->fsp_name->st.st_ex_mode)
1636 ? SEC_DIR_ADD_SUBDIR
1637 : SEC_DIR_ADD_FILE);
1638 if (!NT_STATUS_IS_OK(status)) {
1639 DBG_INFO("check_parent_access_fsp on "
1640 "dst %s returned %s\n",
1641 smb_fname_str_dbg(smb_fname_dst),
1642 nt_errstr(status));
1643 goto out;
1647 * If the target existed, make sure the destination
1648 * atname has the same stat struct.
1650 parent_dir_fname_dst_atname->st = smb_fname_dst->st;
1653 * It's very common that source and
1654 * destination directories are the same.
1655 * Optimize by not opening the
1656 * second parent_pathref if we know
1657 * this is the case.
1660 status = SMB_VFS_PARENT_PATHNAME(conn,
1661 ctx,
1662 fsp->fsp_name,
1663 &parent_dir_fname_src,
1664 &parent_dir_fname_src_atname);
1665 if (!NT_STATUS_IS_OK(status)) {
1666 goto out;
1670 * We do a case-sensitive string comparison. We want to be *sure*
1671 * this is the same path. The worst that can happen if
1672 * the case doesn't match is we lose out on the optimization,
1673 * the code still works.
1675 * We can ignore twrp fields here. Rename is not allowed on
1676 * shadow copy handles.
1679 if (strcmp(parent_dir_fname_src->base_name,
1680 parent_dir_fname_dst->base_name) == 0) {
1682 * parent directory is the same for source
1683 * and destination.
1685 /* Reparent the src_atname to the parent_dir_dest fname. */
1686 parent_dir_fname_src_atname = talloc_move(
1687 parent_dir_fname_dst,
1688 &parent_dir_fname_src_atname);
1689 /* Free the unneeded duplicate parent name. */
1690 TALLOC_FREE(parent_dir_fname_src);
1692 * And make the source parent name a copy of the
1693 * destination parent name.
1695 parent_dir_fname_src = parent_dir_fname_dst;
1698 * Ensure we have a pathref fsp on the
1699 * parent_dir_fname_src_atname to match the code in the else
1700 * branch where we use parent_pathref().
1702 status = reference_smb_fname_fsp_link(
1703 parent_dir_fname_src_atname,
1704 fsp->fsp_name);
1705 if (!NT_STATUS_IS_OK(status)) {
1706 goto out;
1708 } else {
1710 * source and destination parent directories are
1711 * different.
1713 * Get a pathref on the source parent directory, so
1714 * we can do a relative rename.
1716 TALLOC_FREE(parent_dir_fname_src);
1717 status = parent_pathref(ctx,
1718 conn->cwd_fsp,
1719 fsp->fsp_name,
1720 &parent_dir_fname_src,
1721 &parent_dir_fname_src_atname);
1722 if (!NT_STATUS_IS_OK(status)) {
1723 goto out;
1728 * Some modules depend on the source smb_fname having a valid stat.
1729 * The parent_dir_fname_src_atname is the relative name of the
1730 * currently open file, so just copy the stat from the open fsp.
1732 parent_dir_fname_src_atname->st = fsp->fsp_name->st;
1734 if (_lck != NULL) {
1735 lck = talloc_move(talloc_tos(), _lck);
1736 } else {
1737 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
1741 * We have the file open ourselves, so not being able to get the
1742 * corresponding share mode lock is a fatal error.
1745 SMB_ASSERT(lck != NULL);
1747 ret = SMB_VFS_RENAMEAT(conn,
1748 parent_dir_fname_src->fsp,
1749 parent_dir_fname_src_atname,
1750 parent_dir_fname_dst->fsp,
1751 parent_dir_fname_dst_atname,
1752 &rhow);
1753 if (ret == 0) {
1754 uint32_t create_options = fh_get_private_options(fsp->fh);
1755 struct smb_filename *old_fname = NULL;
1757 DBG_NOTICE("succeeded doing rename on "
1758 "%s -> %s\n",
1759 smb_fname_str_dbg(fsp->fsp_name),
1760 smb_fname_str_dbg(smb_fname_dst));
1762 old_fname = cp_smb_filename(talloc_tos(), fsp->fsp_name);
1763 if (old_fname == NULL) {
1764 status = NT_STATUS_NO_MEMORY;
1765 TALLOC_FREE(lck);
1766 goto out;
1768 rename_open_files(conn, lck, fsp->file_id, fsp->name_hash,
1769 smb_fname_dst);
1771 if (!fsp->fsp_flags.is_directory &&
1772 (lp_map_archive(SNUM(conn)) ||
1773 lp_store_dos_attributes(SNUM(conn))))
1776 * We must set the archive bit on the newly renamed
1777 * file.
1779 status = vfs_stat_fsp(fsp);
1780 if (NT_STATUS_IS_OK(status)) {
1781 uint32_t old_dosmode;
1782 old_dosmode = fdos_mode(fsp);
1784 * We can use fsp->fsp_name here as it has
1785 * already been changed to the new name.
1787 SMB_ASSERT(fsp->fsp_name->fsp == fsp);
1788 file_set_dosmode(conn,
1789 fsp->fsp_name,
1790 old_dosmode | FILE_ATTRIBUTE_ARCHIVE,
1791 NULL,
1792 true);
1797 * A rename acts as a new file create w.r.t. allowing an initial delete
1798 * on close, probably because in Windows there is a new handle to the
1799 * new file. If initial delete on close was requested but not
1800 * originally set, we need to set it here. This is probably not 100% correct,
1801 * but will work for the CIFSFS client which in non-posix mode
1802 * depends on these semantics. JRA.
1805 if (create_options & FILE_DELETE_ON_CLOSE) {
1806 status = can_set_delete_on_close(fsp, 0);
1808 if (NT_STATUS_IS_OK(status)) {
1809 /* Note that here we set the *initial* delete on close flag,
1810 * not the regular one. The magic gets handled in close. */
1811 fsp->fsp_flags.initial_delete_on_close = true;
1815 TALLOC_FREE(lck);
1817 notify_rename(conn,
1818 fsp,
1819 old_fname,
1820 smb_fname_dst);
1822 TALLOC_FREE(old_fname);
1823 status = NT_STATUS_OK;
1824 goto out;
1827 TALLOC_FREE(lck);
1829 if (errno == ENOTDIR || errno == EISDIR) {
1830 status = NT_STATUS_OBJECT_NAME_COLLISION;
1831 } else {
1832 status = map_nt_error_from_unix(errno);
1835 DBG_NOTICE("Error %s rename %s -> %s\n",
1836 nt_errstr(status),
1837 smb_fname_str_dbg(fsp->fsp_name),
1838 smb_fname_str_dbg(smb_fname_dst));
1840 out:
1843 * parent_dir_fname_src may be a copy of parent_dir_fname_dst.
1844 * See the optimization for same source and destination directory
1845 * above. Only free one in that case.
1847 if (parent_dir_fname_src != parent_dir_fname_dst) {
1848 TALLOC_FREE(parent_dir_fname_src);
1850 TALLOC_FREE(parent_dir_fname_dst);
1851 TALLOC_FREE(smb_fname_dst);
1853 return status;
1856 /****************************************************************************
1857 The guts of the rename command, split out so it may be called by the NT SMB
1858 code.
1859 ****************************************************************************/
1861 NTSTATUS rename_internals(TALLOC_CTX *ctx,
1862 connection_struct *conn,
1863 struct smb_request *req,
1864 struct files_struct *src_dirfsp,
1865 struct smb_filename *smb_fname_src,
1866 struct smb_filename *smb_fname_dst,
1867 const char *dst_original_lcomp,
1868 uint32_t attrs,
1869 bool replace_if_exists,
1870 uint32_t access_mask)
1872 NTSTATUS status = NT_STATUS_OK;
1873 int create_options = FILE_OPEN_REPARSE_POINT;
1874 struct smb2_create_blobs *posx = NULL;
1875 struct files_struct *fsp = NULL;
1876 bool posix_pathname = (smb_fname_src->flags & SMB_FILENAME_POSIX_PATH);
1877 bool case_sensitive = posix_pathname ? true : conn->case_sensitive;
1878 bool case_preserve = posix_pathname ? true : conn->case_preserve;
1879 bool short_case_preserve = posix_pathname ? true :
1880 conn->short_case_preserve;
1882 if (posix_pathname) {
1883 status = make_smb2_posix_create_ctx(talloc_tos(), &posx, 0777);
1884 if (!NT_STATUS_IS_OK(status)) {
1885 DBG_WARNING("make_smb2_posix_create_ctx failed: %s\n",
1886 nt_errstr(status));
1887 goto out;
1891 DBG_NOTICE("case_sensitive = %d, "
1892 "case_preserve = %d, short case preserve = %d, "
1893 "directory = %s, newname = %s, "
1894 "last_component_dest = %s\n",
1895 case_sensitive, case_preserve,
1896 short_case_preserve,
1897 smb_fname_str_dbg(smb_fname_src),
1898 smb_fname_str_dbg(smb_fname_dst),
1899 dst_original_lcomp);
1901 ZERO_STRUCT(smb_fname_src->st);
1903 status = openat_pathref_fsp(conn->cwd_fsp, smb_fname_src);
1904 if (!NT_STATUS_IS_OK(status)) {
1905 if (!NT_STATUS_EQUAL(status,
1906 NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1907 goto out;
1910 * Possible symlink src.
1912 if (!(smb_fname_src->flags & SMB_FILENAME_POSIX_PATH)) {
1913 goto out;
1915 if (!S_ISLNK(smb_fname_src->st.st_ex_mode)) {
1916 goto out;
1920 if (S_ISDIR(smb_fname_src->st.st_ex_mode)) {
1921 create_options |= FILE_DIRECTORY_FILE;
1924 status = SMB_VFS_CREATE_FILE(
1925 conn, /* conn */
1926 req, /* req */
1927 src_dirfsp, /* dirfsp */
1928 smb_fname_src, /* fname */
1929 access_mask, /* access_mask */
1930 (FILE_SHARE_READ | /* share_access */
1931 FILE_SHARE_WRITE),
1932 FILE_OPEN, /* create_disposition*/
1933 create_options, /* create_options */
1934 0, /* file_attributes */
1935 0, /* oplock_request */
1936 NULL, /* lease */
1937 0, /* allocation_size */
1938 0, /* private_flags */
1939 NULL, /* sd */
1940 NULL, /* ea_list */
1941 &fsp, /* result */
1942 NULL, /* pinfo */
1943 posx, /* in_context_blobs */
1944 NULL); /* out_context_blobs */
1946 if (!NT_STATUS_IS_OK(status)) {
1947 DBG_NOTICE("Could not open rename source %s: %s\n",
1948 smb_fname_str_dbg(smb_fname_src),
1949 nt_errstr(status));
1950 goto out;
1954 * If no pathnames are open below this directory, allow the rename.
1956 if (have_file_open_below(fsp)) {
1957 status = NT_STATUS_ACCESS_DENIED;
1958 close_file_free(req, &fsp, NORMAL_CLOSE);
1959 goto out;
1962 status = rename_internals_fsp(conn,
1963 fsp,
1964 NULL,
1965 smb_fname_dst,
1966 dst_original_lcomp,
1967 attrs,
1968 replace_if_exists);
1970 close_file_free(req, &fsp, NORMAL_CLOSE);
1972 DBG_NOTICE("Error %s rename %s -> %s\n",
1973 nt_errstr(status), smb_fname_str_dbg(smb_fname_src),
1974 smb_fname_str_dbg(smb_fname_dst));
1976 out:
1977 TALLOC_FREE(posx);
1978 return status;
1981 /*******************************************************************
1982 Copy a file as part of a reply_copy.
1983 ******************************************************************/
1986 * TODO: check error codes on all callers
1989 NTSTATUS copy_file(TALLOC_CTX *ctx,
1990 connection_struct *conn,
1991 struct smb_filename *smb_fname_src,
1992 struct smb_filename *smb_fname_dst,
1993 uint32_t new_create_disposition)
1995 struct smb_filename *smb_fname_dst_tmp = NULL;
1996 off_t ret=-1;
1997 files_struct *fsp1,*fsp2;
1998 uint32_t dosattrs;
1999 NTSTATUS status;
2002 smb_fname_dst_tmp = cp_smb_filename(ctx, smb_fname_dst);
2003 if (smb_fname_dst_tmp == NULL) {
2004 return NT_STATUS_NO_MEMORY;
2007 status = vfs_file_exist(conn, smb_fname_src);
2008 if (!NT_STATUS_IS_OK(status)) {
2009 goto out;
2012 status = openat_pathref_fsp(conn->cwd_fsp, smb_fname_src);
2013 if (!NT_STATUS_IS_OK(status)) {
2014 goto out;
2017 /* Open the src file for reading. */
2018 status = SMB_VFS_CREATE_FILE(
2019 conn, /* conn */
2020 NULL, /* req */
2021 NULL, /* dirfsp */
2022 smb_fname_src, /* fname */
2023 FILE_GENERIC_READ, /* access_mask */
2024 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */
2025 FILE_OPEN, /* create_disposition*/
2026 0, /* create_options */
2027 FILE_ATTRIBUTE_NORMAL, /* file_attributes */
2028 INTERNAL_OPEN_ONLY, /* oplock_request */
2029 NULL, /* lease */
2030 0, /* allocation_size */
2031 0, /* private_flags */
2032 NULL, /* sd */
2033 NULL, /* ea_list */
2034 &fsp1, /* result */
2035 NULL, /* psbuf */
2036 NULL, NULL); /* create context */
2038 if (!NT_STATUS_IS_OK(status)) {
2039 goto out;
2042 dosattrs = fdos_mode(fsp1);
2044 if (SMB_VFS_STAT(conn, smb_fname_dst_tmp) == -1) {
2045 ZERO_STRUCTP(&smb_fname_dst_tmp->st);
2048 status = openat_pathref_fsp(conn->cwd_fsp, smb_fname_dst);
2049 if (!NT_STATUS_IS_OK(status) &&
2050 !NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND))
2052 goto out;
2055 /* Open the dst file for writing. */
2056 status = SMB_VFS_CREATE_FILE(
2057 conn, /* conn */
2058 NULL, /* req */
2059 NULL, /* dirfsp */
2060 smb_fname_dst, /* fname */
2061 FILE_GENERIC_WRITE, /* access_mask */
2062 FILE_SHARE_READ | FILE_SHARE_WRITE, /* share_access */
2063 new_create_disposition, /* create_disposition*/
2064 0, /* create_options */
2065 dosattrs, /* file_attributes */
2066 INTERNAL_OPEN_ONLY, /* oplock_request */
2067 NULL, /* lease */
2068 0, /* allocation_size */
2069 0, /* private_flags */
2070 NULL, /* sd */
2071 NULL, /* ea_list */
2072 &fsp2, /* result */
2073 NULL, /* psbuf */
2074 NULL, NULL); /* create context */
2076 if (!NT_STATUS_IS_OK(status)) {
2077 close_file_free(NULL, &fsp1, ERROR_CLOSE);
2078 goto out;
2081 /* Do the actual copy. */
2082 if (smb_fname_src->st.st_ex_size) {
2083 ret = vfs_transfer_file(fsp1, fsp2, smb_fname_src->st.st_ex_size);
2084 } else {
2085 ret = 0;
2088 close_file_free(NULL, &fsp1, NORMAL_CLOSE);
2090 /* Ensure the modtime is set correctly on the destination file. */
2091 set_close_write_time(fsp2, smb_fname_src->st.st_ex_mtime);
2094 * As we are opening fsp1 read-only we only expect
2095 * an error on close on fsp2 if we are out of space.
2096 * Thus we don't look at the error return from the
2097 * close of fsp1.
2099 status = close_file_free(NULL, &fsp2, NORMAL_CLOSE);
2101 if (!NT_STATUS_IS_OK(status)) {
2102 goto out;
2105 if (ret != (off_t)smb_fname_src->st.st_ex_size) {
2106 status = NT_STATUS_DISK_FULL;
2107 goto out;
2110 status = NT_STATUS_OK;
2112 out:
2113 TALLOC_FREE(smb_fname_dst_tmp);
2114 return status;
2117 /****************************************************************************
2118 Get a lock offset, dealing with large offset requests.
2119 ****************************************************************************/
2121 uint64_t get_lock_offset(const uint8_t *data, int data_offset,
2122 bool large_file_format)
2124 uint64_t offset = 0;
2126 if(!large_file_format) {
2127 offset = (uint64_t)IVAL(data,SMB_LKOFF_OFFSET(data_offset));
2128 } else {
2130 * No BVAL, this is reversed!
2132 offset = (((uint64_t) IVAL(data,SMB_LARGE_LKOFF_OFFSET_HIGH(data_offset))) << 32) |
2133 ((uint64_t) IVAL(data,SMB_LARGE_LKOFF_OFFSET_LOW(data_offset)));
2136 return offset;
2139 struct smbd_do_unlocking_state {
2140 struct files_struct *fsp;
2141 uint16_t num_ulocks;
2142 struct smbd_lock_element *ulocks;
2143 NTSTATUS status;
2146 static void smbd_do_unlocking_fn(
2147 struct share_mode_lock *lck,
2148 void *private_data)
2150 struct smbd_do_unlocking_state *state = private_data;
2151 struct files_struct *fsp = state->fsp;
2152 uint16_t i;
2154 for (i = 0; i < state->num_ulocks; i++) {
2155 struct smbd_lock_element *e = &state->ulocks[i];
2157 DBG_DEBUG("unlock start=%"PRIu64", len=%"PRIu64" for "
2158 "pid %"PRIu64", file %s\n",
2159 e->offset,
2160 e->count,
2161 e->smblctx,
2162 fsp_str_dbg(fsp));
2164 if (e->brltype != UNLOCK_LOCK) {
2165 /* this can only happen with SMB2 */
2166 state->status = NT_STATUS_INVALID_PARAMETER;
2167 return;
2170 state->status = do_unlock(
2171 fsp, e->smblctx, e->count, e->offset, e->lock_flav);
2173 DBG_DEBUG("do_unlock returned %s\n",
2174 nt_errstr(state->status));
2176 if (!NT_STATUS_IS_OK(state->status)) {
2177 return;
2181 share_mode_wakeup_waiters(fsp->file_id);
2184 NTSTATUS smbd_do_unlocking(struct smb_request *req,
2185 files_struct *fsp,
2186 uint16_t num_ulocks,
2187 struct smbd_lock_element *ulocks)
2189 struct smbd_do_unlocking_state state = {
2190 .fsp = fsp,
2191 .num_ulocks = num_ulocks,
2192 .ulocks = ulocks,
2194 NTSTATUS status;
2196 DBG_NOTICE("%s num_ulocks=%"PRIu16"\n", fsp_fnum_dbg(fsp), num_ulocks);
2198 status = share_mode_do_locked_vfs_allowed(
2199 fsp->file_id, smbd_do_unlocking_fn, &state);
2201 if (!NT_STATUS_IS_OK(status)) {
2202 DBG_DEBUG("share_mode_do_locked_vfs_allowed failed: %s\n",
2203 nt_errstr(status));
2204 return status;
2206 if (!NT_STATUS_IS_OK(state.status)) {
2207 DBG_DEBUG("smbd_do_unlocking_fn failed: %s\n",
2208 nt_errstr(status));
2209 return state.status;
2212 return NT_STATUS_OK;