2 * Copyright (c) Björn Jacke 2010
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #define MODULE "crossrename"
22 static SMB_OFF_T module_sizelimit
;
24 static int crossrename_connect(
25 struct vfs_handle_struct
* handle
,
29 int ret
= SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
35 module_sizelimit
= (SMB_OFF_T
) lp_parm_int(SNUM(handle
->conn
),
36 MODULE
, "sizelimit", 20);
37 /* convert from MiB to byte: */
38 module_sizelimit
*= 1048576;
43 /*********************************************************
44 For rename across filesystems initial Patch from Warren Birnbaum
45 <warrenb@hpcvscdp.cv.hp.com>
46 **********************************************************/
48 static int copy_reg(const char *source
, const char *dest
)
50 SMB_STRUCT_STAT source_stats
;
55 if (sys_lstat(source
, &source_stats
, false) == -1)
58 if (!S_ISREG (source_stats
.st_ex_mode
))
61 if (source_stats
.st_ex_size
> module_sizelimit
) {
63 ("%s: size of %s larger than sizelimit (%lld > %lld), rename prohititted\n",
65 (long long)source_stats
.st_ex_size
,
66 (long long)module_sizelimit
));
70 if((ifd
= sys_open (source
, O_RDONLY
, 0)) < 0)
73 if (unlink (dest
) && errno
!= ENOENT
)
77 if((ofd
= sys_open (dest
, O_WRONLY
| O_CREAT
| O_TRUNC
| O_NOFOLLOW
, 0600)) < 0 )
79 if((ofd
= sys_open (dest
, O_WRONLY
| O_CREAT
| O_TRUNC
, 0600)) < 0 )
83 if (transfer_file(ifd
, ofd
, (size_t)-1) == -1)
87 * Try to preserve ownership. For non-root it might fail, but that's ok.
88 * But root probably wants to know, e.g. if NFS disallows it.
92 if ((fchown(ofd
, source_stats
.st_ex_uid
, source_stats
.st_ex_gid
) == -1) && (errno
!= EPERM
))
94 if ((chown(dest
, source_stats
.st_ex_uid
, source_stats
.st_ex_gid
) == -1) && (errno
!= EPERM
))
99 * fchown turns off set[ug]id bits for non-root,
100 * so do the chmod last.
103 #if defined(HAVE_FCHMOD)
104 if (fchmod (ofd
, source_stats
.st_ex_mode
& 07777))
106 if (chmod (dest
, source_stats
.st_ex_mode
& 07777))
110 if (close (ifd
) == -1)
113 if (close (ofd
) == -1)
116 /* Try to copy the old file's modtime and access time. */
117 #if defined(HAVE_UTIMENSAT)
119 struct timespec ts
[2];
121 ts
[0] = source_stats
.st_ex_atime
;
122 ts
[1] = source_stats
.st_ex_mtime
;
123 utimensat(AT_FDCWD
, dest
, ts
, AT_SYMLINK_NOFOLLOW
);
125 #elif defined(HAVE_UTIMES)
127 struct timeval tv
[2];
129 tv
[0] = convert_timespec_to_timeval(source_stats
.st_ex_atime
);
130 tv
[1] = convert_timespec_to_timeval(source_stats
.st_ex_mtime
);
137 #elif defined(HAVE_UTIME)
141 tv
.actime
= convert_timespec_to_time_t(source_stats
.st_ex_atime
);
142 tv
.modtime
= convert_timespec_to_time_t(source_stats
.st_ex_mtime
);
147 if (unlink (source
) == -1)
164 static int crossrename_rename(vfs_handle_struct
*handle
,
165 const struct smb_filename
*smb_fname_src
,
166 const struct smb_filename
*smb_fname_dst
)
170 START_PROFILE(syscall_rename
);
172 if (smb_fname_src
->stream_name
|| smb_fname_dst
->stream_name
) {
177 result
= rename(smb_fname_src
->base_name
, smb_fname_dst
->base_name
);
178 if ((result
== -1) && (errno
== EXDEV
)) {
179 /* Rename across filesystems needed. */
180 result
= copy_reg(smb_fname_src
->base_name
,
181 smb_fname_dst
->base_name
);
185 END_PROFILE(syscall_rename
);
189 static struct vfs_fn_pointers vfs_crossrename_fns
= {
190 .connect_fn
= crossrename_connect
,
191 .rename
= crossrename_rename
194 NTSTATUS
vfs_crossrename_init(void);
195 NTSTATUS
vfs_crossrename_init(void)
197 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, MODULE
,
198 &vfs_crossrename_fns
);