2 Unix SMB/CIFS implementation.
3 dos mode handling functions
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) James Peach 2006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 static int set_sparse_flag(const SMB_STRUCT_STAT
* const sbuf
)
25 #if defined (HAVE_STAT_ST_BLOCKS) && defined(STAT_ST_BLOCKSIZE)
26 if (sbuf
->st_ex_size
> sbuf
->st_ex_blocks
* (SMB_OFF_T
)STAT_ST_BLOCKSIZE
) {
27 return FILE_ATTRIBUTE_SPARSE
;
33 static int set_link_read_only_flag(const SMB_STRUCT_STAT
*const sbuf
)
37 if (S_ISLNK(sbuf
->st_mode
) && S_ISDIR(sbuf
->st_mode
))
44 /****************************************************************************
45 Change a dos mode to a unix mode.
46 Base permission for files:
47 if creating file and inheriting (i.e. parent_dir != NULL)
48 apply read/write bits from parent directory.
50 everybody gets read bit set
51 dos readonly is represented in unix by removing everyone's write bit
52 dos archive is represented in unix by the user's execute bit
53 dos system is represented in unix by the group's execute bit
54 dos hidden is represented in unix by the other's execute bit
56 Then apply create mask,
59 Base permission for directories:
60 dos directory is represented in unix by unix's dir bit and the exec bit
62 Then apply create mask,
65 ****************************************************************************/
67 mode_t
unix_mode(connection_struct
*conn
, int dosmode
,
68 const struct smb_filename
*smb_fname
,
69 const char *inherit_from_dir
)
71 mode_t result
= (S_IRUSR
| S_IRGRP
| S_IROTH
| S_IWUSR
| S_IWGRP
| S_IWOTH
);
72 mode_t dir_mode
= 0; /* Mode of the inherit_from directory if
75 if (!lp_store_dos_attributes(SNUM(conn
)) && IS_DOS_READONLY(dosmode
)) {
76 result
&= ~(S_IWUSR
| S_IWGRP
| S_IWOTH
);
79 if ((inherit_from_dir
!= NULL
) && lp_inherit_perms(SNUM(conn
))) {
80 struct smb_filename
*smb_fname_parent
= NULL
;
83 DEBUG(2, ("unix_mode(%s) inheriting from %s\n",
84 smb_fname_str_dbg(smb_fname
),
87 status
= create_synthetic_smb_fname(talloc_tos(),
88 inherit_from_dir
, NULL
,
89 NULL
, &smb_fname_parent
);
90 if (!NT_STATUS_IS_OK(status
)) {
91 DEBUG(1,("unix_mode(%s) failed, [dir %s]: %s\n",
92 smb_fname_str_dbg(smb_fname
),
93 inherit_from_dir
, nt_errstr(status
)));
97 if (SMB_VFS_STAT(conn
, smb_fname_parent
) != 0) {
98 DEBUG(4,("unix_mode(%s) failed, [dir %s]: %s\n",
99 smb_fname_str_dbg(smb_fname
),
100 inherit_from_dir
, strerror(errno
)));
101 TALLOC_FREE(smb_fname_parent
);
102 return(0); /* *** shouldn't happen! *** */
105 /* Save for later - but explicitly remove setuid bit for safety. */
106 dir_mode
= smb_fname_parent
->st
.st_ex_mode
& ~S_ISUID
;
107 DEBUG(2,("unix_mode(%s) inherit mode %o\n",
108 smb_fname_str_dbg(smb_fname
), (int)dir_mode
));
111 TALLOC_FREE(smb_fname_parent
);
114 if (IS_DOS_DIR(dosmode
)) {
115 /* We never make directories read only for the owner as under DOS a user
116 can always create a file in a read-only directory. */
117 result
|= (S_IFDIR
| S_IWUSR
);
120 /* Inherit mode of parent directory. */
123 /* Provisionally add all 'x' bits */
124 result
|= (S_IXUSR
| S_IXGRP
| S_IXOTH
);
126 /* Apply directory mask */
127 result
&= lp_dir_mask(SNUM(conn
));
128 /* Add in force bits */
129 result
|= lp_force_dir_mode(SNUM(conn
));
132 if (lp_map_archive(SNUM(conn
)) && IS_DOS_ARCHIVE(dosmode
))
135 if (lp_map_system(SNUM(conn
)) && IS_DOS_SYSTEM(dosmode
))
138 if (lp_map_hidden(SNUM(conn
)) && IS_DOS_HIDDEN(dosmode
))
142 /* Inherit 666 component of parent directory mode */
143 result
|= dir_mode
& (S_IRUSR
| S_IRGRP
| S_IROTH
| S_IWUSR
| S_IWGRP
| S_IWOTH
);
145 /* Apply mode mask */
146 result
&= lp_create_mask(SNUM(conn
));
147 /* Add in force bits */
148 result
|= lp_force_create_mode(SNUM(conn
));
152 DEBUG(3,("unix_mode(%s) returning 0%o\n", smb_fname_str_dbg(smb_fname
),
157 /****************************************************************************
158 Change a unix mode to a dos mode.
159 ****************************************************************************/
161 static uint32
dos_mode_from_sbuf(connection_struct
*conn
,
162 const struct smb_filename
*smb_fname
)
165 enum mapreadonly_options ro_opts
= (enum mapreadonly_options
)lp_map_readonly(SNUM(conn
));
167 if (ro_opts
== MAP_READONLY_YES
) {
168 /* Original Samba method - map inverse of user "w" bit. */
169 if ((smb_fname
->st
.st_ex_mode
& S_IWUSR
) == 0) {
172 } else if (ro_opts
== MAP_READONLY_PERMISSIONS
) {
173 /* Check actual permissions for read-only. */
174 if (!can_write_to_file(conn
, smb_fname
)) {
177 } /* Else never set the readonly bit. */
179 if (MAP_ARCHIVE(conn
) && ((smb_fname
->st
.st_ex_mode
& S_IXUSR
) != 0))
182 if (MAP_SYSTEM(conn
) && ((smb_fname
->st
.st_ex_mode
& S_IXGRP
) != 0))
185 if (MAP_HIDDEN(conn
) && ((smb_fname
->st
.st_ex_mode
& S_IXOTH
) != 0))
188 if (S_ISDIR(smb_fname
->st
.st_ex_mode
))
189 result
= aDIR
| (result
& aRONLY
);
191 result
|= set_sparse_flag(&smb_fname
->st
);
192 result
|= set_link_read_only_flag(&smb_fname
->st
);
194 DEBUG(8,("dos_mode_from_sbuf returning "));
196 if (result
& aHIDDEN
) DEBUG(8, ("h"));
197 if (result
& aRONLY
) DEBUG(8, ("r"));
198 if (result
& aSYSTEM
) DEBUG(8, ("s"));
199 if (result
& aDIR
) DEBUG(8, ("d"));
200 if (result
& aARCH
) DEBUG(8, ("a"));
206 /****************************************************************************
207 Get DOS attributes from an EA.
208 ****************************************************************************/
210 static bool get_ea_dos_attribute(connection_struct
*conn
,
211 const struct smb_filename
*smb_fname
,
216 unsigned int dosattr
;
218 if (!lp_store_dos_attributes(SNUM(conn
))) {
222 /* Don't reset pattr to zero as we may already have filename-based attributes we
225 sizeret
= SMB_VFS_GETXATTR(conn
, smb_fname
->base_name
,
226 SAMBA_XATTR_DOS_ATTRIB
, attrstr
,
231 || errno
== ENOTSUP
) {
235 DEBUG(1,("get_ea_dos_attributes: Cannot get attribute "
236 "from EA on file %s: Error = %s\n",
237 smb_fname_str_dbg(smb_fname
),
239 set_store_dos_attributes(SNUM(conn
), False
);
243 /* Null terminate string. */
244 attrstr
[sizeret
] = 0;
245 DEBUG(10,("get_ea_dos_attribute: %s attrstr = %s\n",
246 smb_fname_str_dbg(smb_fname
), attrstr
));
248 if (sizeret
< 2 || attrstr
[0] != '0' || attrstr
[1] != 'x' ||
249 sscanf(attrstr
, "%x", &dosattr
) != 1) {
250 DEBUG(1,("get_ea_dos_attributes: Badly formed DOSATTRIB on "
251 "file %s - %s\n", smb_fname_str_dbg(smb_fname
),
256 if (S_ISDIR(smb_fname
->st
.st_ex_mode
)) {
259 *pattr
= (uint32
)(dosattr
& SAMBA_ATTRIBUTES_MASK
);
261 DEBUG(8,("get_ea_dos_attribute returning (0x%x)", dosattr
));
263 if (dosattr
& aHIDDEN
) DEBUG(8, ("h"));
264 if (dosattr
& aRONLY
) DEBUG(8, ("r"));
265 if (dosattr
& aSYSTEM
) DEBUG(8, ("s"));
266 if (dosattr
& aDIR
) DEBUG(8, ("d"));
267 if (dosattr
& aARCH
) DEBUG(8, ("a"));
274 /****************************************************************************
275 Set DOS attributes in an EA.
276 ****************************************************************************/
278 static bool set_ea_dos_attribute(connection_struct
*conn
,
279 struct smb_filename
*smb_fname
,
283 files_struct
*fsp
= NULL
;
286 if (!lp_store_dos_attributes(SNUM(conn
))) {
290 snprintf(attrstr
, sizeof(attrstr
)-1, "0x%x", dosmode
& SAMBA_ATTRIBUTES_MASK
);
291 if (SMB_VFS_SETXATTR(conn
, smb_fname
->base_name
,
292 SAMBA_XATTR_DOS_ATTRIB
, attrstr
, strlen(attrstr
),
294 if((errno
!= EPERM
) && (errno
!= EACCES
)) {
297 || errno
== ENOTSUP
) {
301 DEBUG(1,("set_ea_dos_attributes: Cannot set "
302 "attribute EA on file %s: Error = %s\n",
303 smb_fname_str_dbg(smb_fname
),
305 set_store_dos_attributes(SNUM(conn
), False
);
310 /* We want DOS semantics, ie allow non owner with write permission to change the
311 bits on a file. Just like file_ntimes below.
314 /* Check if we have write access. */
315 if(!CAN_WRITE(conn
) || !lp_dos_filemode(SNUM(conn
)))
319 * We need to open the file with write access whilst
320 * still in our current user context. This ensures we
321 * are not violating security in doing the setxattr.
324 if (!NT_STATUS_IS_OK(open_file_fchmod(NULL
, conn
, smb_fname
,
328 if (SMB_VFS_SETXATTR(conn
, smb_fname
->base_name
,
329 SAMBA_XATTR_DOS_ATTRIB
, attrstr
,
330 strlen(attrstr
), 0) == 0) {
334 close_file_fchmod(NULL
, fsp
);
337 DEBUG(10,("set_ea_dos_attribute: set EA %s on file %s\n", attrstr
,
338 smb_fname_str_dbg(smb_fname
)));
342 /****************************************************************************
343 Change a unix mode to a dos mode for an ms dfs link.
344 ****************************************************************************/
346 uint32
dos_mode_msdfs(connection_struct
*conn
,
347 const struct smb_filename
*smb_fname
)
351 DEBUG(8,("dos_mode_msdfs: %s\n", smb_fname_str_dbg(smb_fname
)));
353 if (!VALID_STAT(smb_fname
->st
)) {
357 /* First do any modifications that depend on the path name. */
358 /* hide files with a name starting with a . */
359 if (lp_hide_dot_files(SNUM(conn
))) {
360 const char *p
= strrchr_m(smb_fname
->base_name
, '/');
364 p
= smb_fname
->base_name
;
367 /* Only . and .. are not hidden. */
368 if (p
[0] == '.' && !((p
[1] == '\0') ||
369 (p
[1] == '.' && p
[2] == '\0'))) {
374 result
|= dos_mode_from_sbuf(conn
, smb_fname
);
376 /* Optimization : Only call is_hidden_path if it's not already
378 if (!(result
& aHIDDEN
) &&
379 IS_HIDDEN_PATH(conn
, smb_fname
->base_name
)) {
383 if (get_Protocol() <= PROTOCOL_LANMAN2
) {
384 DEBUG(10,("dos_mode_msdfs : filtering protocol 0x%x to 0xff\n",
385 (unsigned int)result
));
389 DEBUG(8,("dos_mode_msdfs returning "));
391 if (result
& aHIDDEN
) DEBUG(8, ("h"));
392 if (result
& aRONLY
) DEBUG(8, ("r"));
393 if (result
& aSYSTEM
) DEBUG(8, ("s"));
394 if (result
& aDIR
) DEBUG(8, ("d"));
395 if (result
& aARCH
) DEBUG(8, ("a"));
396 if (result
& FILE_ATTRIBUTE_SPARSE
) DEBUG(8, ("[sparse]"));
403 #ifdef HAVE_STAT_DOS_FLAGS
404 /****************************************************************************
405 Convert dos attributes (FILE_ATTRIBUTE_*) to dos stat flags (UF_*)
406 ****************************************************************************/
408 int dos_attributes_to_stat_dos_flags(uint32_t dosmode
)
410 uint32_t dos_stat_flags
= 0;
413 dos_stat_flags
|= UF_DOS_ARCHIVE
;
414 if (dosmode
& aHIDDEN
)
415 dos_stat_flags
|= UF_DOS_HIDDEN
;
416 if (dosmode
& aRONLY
)
417 dos_stat_flags
|= UF_DOS_RO
;
418 if (dosmode
& aSYSTEM
)
419 dos_stat_flags
|= UF_DOS_SYSTEM
;
420 if (dosmode
& FILE_ATTRIBUTE_NONINDEXED
)
421 dos_stat_flags
|= UF_DOS_NOINDEX
;
423 return dos_stat_flags
;
426 /****************************************************************************
427 Gets DOS attributes, accessed via st_ex_flags in the stat struct.
428 ****************************************************************************/
430 static bool get_stat_dos_flags(connection_struct
*conn
,
431 const struct smb_filename
*smb_fname
,
434 SMB_ASSERT(VALID_STAT(smb_fname
->st
));
437 if (!lp_store_dos_attributes(SNUM(conn
))) {
441 DEBUG(5, ("Getting stat dos attributes for %s.\n",
442 smb_fname_str_dbg(smb_fname
)));
444 if (smb_fname
->st
.st_ex_flags
& UF_DOS_ARCHIVE
)
446 if (smb_fname
->st
.st_ex_flags
& UF_DOS_HIDDEN
)
448 if (smb_fname
->st
.st_ex_flags
& UF_DOS_RO
)
450 if (smb_fname
->st
.st_ex_flags
& UF_DOS_SYSTEM
)
452 if (smb_fname
->st
.st_ex_flags
& UF_DOS_NOINDEX
)
453 *dosmode
|= FILE_ATTRIBUTE_NONINDEXED
;
454 if (S_ISDIR(smb_fname
->st
.st_ex_mode
))
457 *dosmode
|= set_sparse_flag(&smb_fname
->st
);
458 *dosmode
|= set_link_read_only_flag(&smb_fname
->st
);
463 /****************************************************************************
464 Sets DOS attributes, stored in st_ex_flags of the inode.
465 ****************************************************************************/
467 static bool set_stat_dos_flags(connection_struct
*conn
,
468 const struct smb_filename
*smb_fname
,
470 bool *attributes_changed
)
472 uint32_t new_flags
= 0;
475 SMB_ASSERT(VALID_STAT(smb_fname
->st
));
476 SMB_ASSERT(attributes_changed
);
478 *attributes_changed
= false;
480 if (!lp_store_dos_attributes(SNUM(conn
))) {
484 DEBUG(5, ("Setting stat dos attributes for %s.\n",
485 smb_fname_str_dbg(smb_fname
)));
487 new_flags
= (smb_fname
->st
.st_ex_flags
& ~UF_DOS_FLAGS
) |
488 dos_attributes_to_stat_dos_flags(dosmode
);
490 /* Return early if no flags changed. */
491 if (new_flags
== smb_fname
->st
.st_ex_flags
)
494 DEBUG(5, ("Setting stat dos attributes=0x%x, prev=0x%x\n", new_flags
,
495 smb_fname
->st
.st_ex_flags
));
497 /* Set new flags with chflags. */
498 error
= SMB_VFS_CHFLAGS(conn
, smb_fname
->base_name
, new_flags
);
500 DEBUG(0, ("Failed setting new stat dos attributes (0x%x) on "
501 "file %s! errno=%d\n", new_flags
,
502 smb_fname_str_dbg(smb_fname
), errno
));
506 *attributes_changed
= true;
509 #endif /* HAVE_STAT_DOS_FLAGS */
511 /****************************************************************************
512 Change a unix mode to a dos mode.
513 ****************************************************************************/
515 uint32
dos_mode(connection_struct
*conn
, const struct smb_filename
*smb_fname
)
517 SMB_STRUCT_STAT sbuf
;
519 bool offline
, used_stat_dos_flags
= false;
521 DEBUG(8,("dos_mode: %s\n", smb_fname_str_dbg(smb_fname
)));
523 if (!VALID_STAT(smb_fname
->st
)) {
527 /* First do any modifications that depend on the path name. */
528 /* hide files with a name starting with a . */
529 if (lp_hide_dot_files(SNUM(conn
))) {
530 const char *p
= strrchr_m(smb_fname
->base_name
,'/');
534 p
= smb_fname
->base_name
;
537 /* Only . and .. are not hidden. */
538 if (p
[0] == '.' && !((p
[1] == '\0') ||
539 (p
[1] == '.' && p
[2] == '\0'))) {
544 #ifdef HAVE_STAT_DOS_FLAGS
545 used_stat_dos_flags
= get_stat_dos_flags(conn
, smb_fname
, &result
);
547 if (!used_stat_dos_flags
) {
548 /* Get the DOS attributes from an EA by preference. */
549 if (get_ea_dos_attribute(conn
, smb_fname
, &result
)) {
550 result
|= set_sparse_flag(&smb_fname
->st
);
552 result
|= dos_mode_from_sbuf(conn
, smb_fname
);
556 sbuf
= smb_fname
->st
;
557 offline
= SMB_VFS_IS_OFFLINE(conn
, smb_fname
->base_name
, &sbuf
);
558 if (S_ISREG(sbuf
.st_ex_mode
) && offline
) {
559 result
|= FILE_ATTRIBUTE_OFFLINE
;
562 /* Optimization : Only call is_hidden_path if it's not already
564 if (!(result
& aHIDDEN
) &&
565 IS_HIDDEN_PATH(conn
, smb_fname
->base_name
)) {
569 if (get_Protocol() <= PROTOCOL_LANMAN2
) {
570 DEBUG(10,("dos_mode : filtering protocol 0x%x to 0xff\n",
571 (unsigned int)result
));
575 DEBUG(8,("dos_mode returning "));
577 if (result
& aHIDDEN
) DEBUG(8, ("h"));
578 if (result
& aRONLY
) DEBUG(8, ("r"));
579 if (result
& aSYSTEM
) DEBUG(8, ("s"));
580 if (result
& aDIR
) DEBUG(8, ("d"));
581 if (result
& aARCH
) DEBUG(8, ("a"));
582 if (result
& FILE_ATTRIBUTE_SPARSE
) DEBUG(8, ("[sparse]"));
589 /*******************************************************************
590 chmod a file - but preserve some bits.
591 ********************************************************************/
593 int file_set_dosmode(connection_struct
*conn
, struct smb_filename
*smb_fname
,
594 uint32 dosmode
, const char *parent_dir
, bool newfile
)
599 int ret
= -1, lret
= -1;
602 /* We only allow READONLY|HIDDEN|SYSTEM|DIRECTORY|ARCHIVE here. */
603 dosmode
&= (SAMBA_ATTRIBUTES_MASK
| FILE_ATTRIBUTE_OFFLINE
);
605 DEBUG(10,("file_set_dosmode: setting dos mode 0x%x on file %s\n",
606 dosmode
, smb_fname_str_dbg(smb_fname
)));
608 if (!VALID_STAT(smb_fname
->st
)) {
609 if (SMB_VFS_STAT(conn
, smb_fname
))
613 unixmode
= smb_fname
->st
.st_ex_mode
;
615 get_acl_group_bits(conn
, smb_fname
->base_name
,
616 &smb_fname
->st
.st_ex_mode
);
618 if (S_ISDIR(smb_fname
->st
.st_ex_mode
))
623 old_mode
= dos_mode(conn
, smb_fname
);
625 if (dosmode
& FILE_ATTRIBUTE_OFFLINE
) {
626 if (!(old_mode
& FILE_ATTRIBUTE_OFFLINE
)) {
627 lret
= SMB_VFS_SET_OFFLINE(conn
, smb_fname
->base_name
);
629 DEBUG(0, ("set_dos_mode: client has asked to "
630 "set FILE_ATTRIBUTE_OFFLINE to "
631 "%s/%s but there was an error while "
632 "setting it or it is not "
633 "supported.\n", parent_dir
,
634 smb_fname_str_dbg(smb_fname
)));
639 dosmode
&= ~FILE_ATTRIBUTE_OFFLINE
;
640 old_mode
&= ~FILE_ATTRIBUTE_OFFLINE
;
642 if (old_mode
== dosmode
) {
643 smb_fname
->st
.st_ex_mode
= unixmode
;
647 #ifdef HAVE_STAT_DOS_FLAGS
649 bool attributes_changed
;
651 if (set_stat_dos_flags(conn
, smb_fname
, dosmode
,
652 &attributes_changed
))
654 if (!newfile
&& attributes_changed
) {
655 notify_fname(conn
, NOTIFY_ACTION_MODIFIED
,
656 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
657 smb_fname
->base_name
);
659 smb_fname
->st
.st_ex_mode
= unixmode
;
664 /* Store the DOS attributes in an EA by preference. */
665 if (set_ea_dos_attribute(conn
, smb_fname
, dosmode
)) {
667 notify_fname(conn
, NOTIFY_ACTION_MODIFIED
,
668 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
669 smb_fname
->base_name
);
671 smb_fname
->st
.st_ex_mode
= unixmode
;
675 unixmode
= unix_mode(conn
, dosmode
, smb_fname
, parent_dir
);
677 /* preserve the s bits */
678 mask
|= (S_ISUID
| S_ISGID
);
680 /* preserve the t bit */
685 /* possibly preserve the x bits */
686 if (!MAP_ARCHIVE(conn
))
688 if (!MAP_SYSTEM(conn
))
690 if (!MAP_HIDDEN(conn
))
693 unixmode
|= (smb_fname
->st
.st_ex_mode
& mask
);
695 /* if we previously had any r bits set then leave them alone */
696 if ((tmp
= smb_fname
->st
.st_ex_mode
& (S_IRUSR
|S_IRGRP
|S_IROTH
))) {
697 unixmode
&= ~(S_IRUSR
|S_IRGRP
|S_IROTH
);
701 /* if we previously had any w bits set then leave them alone
702 whilst adding in the new w bits, if the new mode is not rdonly */
703 if (!IS_DOS_READONLY(dosmode
)) {
704 unixmode
|= (smb_fname
->st
.st_ex_mode
& (S_IWUSR
|S_IWGRP
|S_IWOTH
));
707 ret
= SMB_VFS_CHMOD(conn
, smb_fname
->base_name
, unixmode
);
709 if(!newfile
|| (lret
!= -1)) {
710 notify_fname(conn
, NOTIFY_ACTION_MODIFIED
,
711 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
712 smb_fname
->base_name
);
714 smb_fname
->st
.st_ex_mode
= unixmode
;
718 if((errno
!= EPERM
) && (errno
!= EACCES
))
721 if(!lp_dos_filemode(SNUM(conn
)))
724 /* We want DOS semantics, ie allow non owner with write permission to change the
725 bits on a file. Just like file_ntimes below.
728 /* Check if we have write access. */
729 if (CAN_WRITE(conn
)) {
731 * We need to open the file with write access whilst
732 * still in our current user context. This ensures we
733 * are not violating security in doing the fchmod.
734 * This file open does *not* break any oplocks we are
735 * holding. We need to review this.... may need to
736 * break batch oplocks open by others. JRA.
739 if (!NT_STATUS_IS_OK(open_file_fchmod(NULL
, conn
, smb_fname
,
743 ret
= SMB_VFS_FCHMOD(fsp
, unixmode
);
745 close_file_fchmod(NULL
, fsp
);
747 notify_fname(conn
, NOTIFY_ACTION_MODIFIED
,
748 FILE_NOTIFY_CHANGE_ATTRIBUTES
,
749 smb_fname
->base_name
);
752 smb_fname
->st
.st_ex_mode
= unixmode
;
759 /*******************************************************************
760 Wrapper around the VFS ntimes that possibly allows DOS semantics rather
762 *******************************************************************/
764 int file_ntimes(connection_struct
*conn
, const struct smb_filename
*smb_fname
,
765 struct smb_file_time
*ft
)
771 DEBUG(6, ("file_ntime: actime: %s",
772 time_to_asc(convert_timespec_to_time_t(ft
->atime
))));
773 DEBUG(6, ("file_ntime: modtime: %s",
774 time_to_asc(convert_timespec_to_time_t(ft
->mtime
))));
775 DEBUG(6, ("file_ntime: ctime: %s",
776 time_to_asc(convert_timespec_to_time_t(ft
->ctime
))));
777 DEBUG(6, ("file_ntime: createtime: %s",
778 time_to_asc(convert_timespec_to_time_t(ft
->create_time
))));
780 /* Don't update the time on read-only shares */
781 /* We need this as set_filetime (which can be called on
782 close and other paths) can end up calling this function
783 without the NEED_WRITE protection. Found by :
784 Leo Weppelman <leo@wau.mis.ah.nl>
787 if (!CAN_WRITE(conn
)) {
791 if(SMB_VFS_NTIMES(conn
, smb_fname
, ft
) == 0) {
795 if((errno
!= EPERM
) && (errno
!= EACCES
)) {
799 if(!lp_dos_filetimes(SNUM(conn
))) {
803 /* We have permission (given by the Samba admin) to
804 break POSIX semantics and allow a user to change
805 the time on a file they don't own but can write to
809 /* Check if we have write access. */
810 if (can_write_to_file(conn
, smb_fname
)) {
811 /* We are allowed to become root and change the filetime. */
813 ret
= SMB_VFS_NTIMES(conn
, smb_fname
, ft
);
820 /******************************************************************
821 Force a "sticky" write time on a pathname. This will always be
822 returned on all future write time queries and set on close.
823 ******************************************************************/
825 bool set_sticky_write_time_path(struct file_id fileid
, struct timespec mtime
)
827 if (null_timespec(mtime
)) {
831 if (!set_sticky_write_time(fileid
, mtime
)) {
838 /******************************************************************
839 Force a "sticky" write time on an fsp. This will always be
840 returned on all future write time queries and set on close.
841 ******************************************************************/
843 bool set_sticky_write_time_fsp(struct files_struct
*fsp
, struct timespec mtime
)
845 fsp
->write_time_forced
= true;
846 TALLOC_FREE(fsp
->update_write_time_event
);
848 return set_sticky_write_time_path(fsp
->file_id
, mtime
);
851 /******************************************************************
852 Update a write time immediately, without the 2 second delay.
853 ******************************************************************/
855 bool update_write_time(struct files_struct
*fsp
)
857 if (!set_write_time(fsp
->file_id
, timespec_current())) {
861 notify_fname(fsp
->conn
, NOTIFY_ACTION_MODIFIED
,
862 FILE_NOTIFY_CHANGE_LAST_WRITE
, fsp
->fsp_name
->base_name
);
867 /******************************************************************
868 Set a create time EA.
869 ******************************************************************/
871 NTSTATUS
set_create_timespec_ea(connection_struct
*conn
,
872 struct files_struct
*fsp
,
873 const struct smb_filename
*smb_fname
,
874 struct timespec create_time
)
879 if (!lp_store_create_time(SNUM(conn
))) {
883 put_long_date_timespec(conn
->ts_res
, buf
, create_time
);
884 if (fsp
&& fsp
->fh
->fd
!= -1) {
885 ret
= SMB_VFS_FSETXATTR(fsp
,
886 SAMBA_XATTR_DOSTIMESTAMPS
,
891 ret
= SMB_VFS_SETXATTR(conn
,
892 smb_fname
->base_name
,
893 SAMBA_XATTR_DOSTIMESTAMPS
,
900 map_nt_error_from_unix(errno
);
902 DEBUG(10,("set_create_timespec_ea: wrote create time EA for file %s\n",
903 smb_fname_str_dbg(smb_fname
)));
907 /******************************************************************
908 Returns an EA create timespec, or a zero timespec if fail.
909 ******************************************************************/
911 static struct timespec
get_create_timespec_ea(connection_struct
*conn
,
912 struct files_struct
*fsp
,
913 const struct smb_filename
*smb_fname
)
921 if (!lp_store_create_time(SNUM(conn
))) {
925 if (fsp
&& fsp
->fh
->fd
!= -1) {
926 ret
= SMB_VFS_FGETXATTR(fsp
,
927 SAMBA_XATTR_DOSTIMESTAMPS
,
931 ret
= SMB_VFS_GETXATTR(conn
,
932 smb_fname
->base_name
,
933 SAMBA_XATTR_DOSTIMESTAMPS
,
937 if (ret
== sizeof(buf
)) {
938 return interpret_long_date(buf
);
944 /******************************************************************
945 Return a create time - looks at EA.
946 ******************************************************************/
948 struct timespec
get_create_timespec(connection_struct
*conn
,
949 struct files_struct
*fsp
,
950 const struct smb_filename
*smb_fname
)
952 struct timespec ts
= get_create_timespec_ea(conn
, fsp
, smb_fname
);
954 if (!null_timespec(ts
)) {
957 return smb_fname
->st
.st_ex_btime
;
961 /******************************************************************
962 Return a change time (may look at EA in future).
963 ******************************************************************/
965 struct timespec
get_change_timespec(connection_struct
*conn
,
966 struct files_struct
*fsp
,
967 const struct smb_filename
*smb_fname
)
969 return smb_fname
->st
.st_ex_mtime
;