2 * Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 #include "xfs_macros.h"
35 #include "xfs_types.h"
38 #include "xfs_trans.h"
42 #include "xfs_dmapi.h"
43 #include "xfs_mount.h"
45 #include "xfs_alloc_btree.h"
46 #include "xfs_bmap_btree.h"
47 #include "xfs_ialloc_btree.h"
48 #include "xfs_btree.h"
49 #include "xfs_attr_sf.h"
50 #include "xfs_dir_sf.h"
51 #include "xfs_dir2_sf.h"
52 #include "xfs_dinode.h"
53 #include "xfs_inode_item.h"
54 #include "xfs_inode.h"
56 #include "xfs_ialloc.h"
57 #include "xfs_itable.h"
58 #include "xfs_dfrag.h"
59 #include "xfs_error.h"
64 * Syssgi interface for swapext
68 xfs_swapext_t __user
*sxp
)
71 xfs_inode_t
*ip
=NULL
, *tip
=NULL
, *ips
[2];
75 struct file
*fp
= NULL
, *tfp
= NULL
;
77 bhv_desc_t
*bdp
, *tbdp
;
78 vn_bhv_head_t
*bhp
, *tbhp
;
80 int ilf_fields
, tilf_fields
;
82 xfs_ifork_t tempif
, *ifp
, *tifp
;
88 if (copy_from_user(&sx
, sxp
, sizeof(sx
)))
89 return XFS_ERROR(EFAULT
);
91 /* Pull information for the target fd */
92 if (((fp
= fget((int)sx
.sx_fdtarget
)) == NULL
) ||
93 ((vp
= LINVFS_GET_VP(fp
->f_dentry
->d_inode
)) == NULL
)) {
94 error
= XFS_ERROR(EINVAL
);
98 bhp
= VN_BHV_HEAD(vp
);
99 bdp
= vn_bhv_lookup(bhp
, &xfs_vnodeops
);
101 error
= XFS_ERROR(EBADF
);
104 ip
= XFS_BHVTOI(bdp
);
107 if (((tfp
= fget((int)sx
.sx_fdtmp
)) == NULL
) ||
108 ((tvp
= LINVFS_GET_VP(tfp
->f_dentry
->d_inode
)) == NULL
)) {
109 error
= XFS_ERROR(EINVAL
);
113 tbhp
= VN_BHV_HEAD(tvp
);
114 tbdp
= vn_bhv_lookup(tbhp
, &xfs_vnodeops
);
116 error
= XFS_ERROR(EBADF
);
119 tip
= XFS_BHVTOI(tbdp
);
122 if (ip
->i_mount
!= tip
->i_mount
) {
123 error
= XFS_ERROR(EINVAL
);
127 if (ip
->i_ino
== tip
->i_ino
) {
128 error
= XFS_ERROR(EINVAL
);
136 if (XFS_FORCED_SHUTDOWN(mp
)) {
137 error
= XFS_ERROR(EIO
);
143 /* Lock in i_ino order */
144 if (ip
->i_ino
< tip
->i_ino
) {
151 lock_flags
= XFS_ILOCK_EXCL
| XFS_IOLOCK_EXCL
;
152 xfs_lock_inodes(ips
, 2, 0, lock_flags
);
154 /* Check permissions */
155 error
= xfs_iaccess(ip
, S_IWUSR
, NULL
);
159 error
= xfs_iaccess(tip
, S_IWUSR
, NULL
);
163 /* Verify that both files have the same format */
164 if ((ip
->i_d
.di_mode
& S_IFMT
) != (tip
->i_d
.di_mode
& S_IFMT
)) {
165 error
= XFS_ERROR(EINVAL
);
169 /* Verify both files are either real-time or non-realtime */
170 if ((ip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
) !=
171 (tip
->i_d
.di_flags
& XFS_DIFLAG_REALTIME
)) {
172 error
= XFS_ERROR(EINVAL
);
176 /* Should never get a local format */
177 if (ip
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
||
178 tip
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
) {
179 error
= XFS_ERROR(EINVAL
);
183 if (VN_CACHED(tvp
) != 0) {
184 xfs_inval_cached_trace(&tip
->i_iocore
, 0, -1, 0, -1);
185 VOP_FLUSHINVAL_PAGES(tvp
, 0, -1, FI_REMAPF_LOCKED
);
188 /* Verify O_DIRECT for ftmp */
189 if (VN_CACHED(tvp
) != 0) {
190 error
= XFS_ERROR(EINVAL
);
194 /* Verify all data are being swapped */
195 if (sx
.sx_offset
!= 0 ||
196 sx
.sx_length
!= ip
->i_d
.di_size
||
197 sx
.sx_length
!= tip
->i_d
.di_size
) {
198 error
= XFS_ERROR(EFAULT
);
203 * If the target has extended attributes, the tmp file
204 * must also in order to ensure the correct data fork
207 if ( XFS_IFORK_Q(ip
) != XFS_IFORK_Q(tip
) ) {
208 error
= XFS_ERROR(EINVAL
);
213 * Compare the current change & modify times with that
214 * passed in. If they differ, we abort this swap.
215 * This is the mechanism used to ensure the calling
216 * process that the file was not changed out from
219 if ((sbp
->bs_ctime
.tv_sec
!= ip
->i_d
.di_ctime
.t_sec
) ||
220 (sbp
->bs_ctime
.tv_nsec
!= ip
->i_d
.di_ctime
.t_nsec
) ||
221 (sbp
->bs_mtime
.tv_sec
!= ip
->i_d
.di_mtime
.t_sec
) ||
222 (sbp
->bs_mtime
.tv_nsec
!= ip
->i_d
.di_mtime
.t_nsec
)) {
223 error
= XFS_ERROR(EBUSY
);
227 /* We need to fail if the file is memory mapped. Once we have tossed
228 * all existing pages, the page fault will have no option
229 * but to go to the filesystem for pages. By making the page fault call
230 * VOP_READ (or write in the case of autogrow) they block on the iolock
231 * until we have switched the extents.
234 error
= XFS_ERROR(EBUSY
);
238 xfs_iunlock(ip
, XFS_ILOCK_EXCL
);
239 xfs_iunlock(tip
, XFS_ILOCK_EXCL
);
242 * There is a race condition here since we gave up the
243 * ilock. However, the data fork will not change since
244 * we have the iolock (locked for truncation too) so we
245 * are safe. We don't really care if non-io related
249 VOP_TOSS_PAGES(vp
, 0, -1, FI_REMAPF
);
251 tp
= xfs_trans_alloc(mp
, XFS_TRANS_SWAPEXT
);
252 if ((error
= xfs_trans_reserve(tp
, 0,
253 XFS_ICHANGE_LOG_RES(mp
), 0,
255 xfs_iunlock(ip
, XFS_IOLOCK_EXCL
);
256 xfs_iunlock(tip
, XFS_IOLOCK_EXCL
);
257 xfs_trans_cancel(tp
, 0);
260 xfs_lock_inodes(ips
, 2, 0, XFS_ILOCK_EXCL
);
263 * Count the number of extended attribute blocks
265 if ( ((XFS_IFORK_Q(ip
) != 0) && (ip
->i_d
.di_anextents
> 0)) &&
266 (ip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)) {
267 error
= xfs_bmap_count_blocks(tp
, ip
, XFS_ATTR_FORK
, &aforkblks
);
269 xfs_iunlock(ip
, lock_flags
);
270 xfs_iunlock(tip
, lock_flags
);
271 xfs_trans_cancel(tp
, 0);
275 if ( ((XFS_IFORK_Q(tip
) != 0) && (tip
->i_d
.di_anextents
> 0)) &&
276 (tip
->i_d
.di_aformat
!= XFS_DINODE_FMT_LOCAL
)) {
277 error
= xfs_bmap_count_blocks(tp
, tip
, XFS_ATTR_FORK
,
280 xfs_iunlock(ip
, lock_flags
);
281 xfs_iunlock(tip
, lock_flags
);
282 xfs_trans_cancel(tp
, 0);
288 * Swap the data forks of the inodes
292 tempif
= *ifp
; /* struct copy */
293 *ifp
= *tifp
; /* struct copy */
294 *tifp
= tempif
; /* struct copy */
297 * Fix the on-disk inode values
299 tmp
= (__uint64_t
)ip
->i_d
.di_nblocks
;
300 ip
->i_d
.di_nblocks
= tip
->i_d
.di_nblocks
- taforkblks
+ aforkblks
;
301 tip
->i_d
.di_nblocks
= tmp
+ taforkblks
- aforkblks
;
303 tmp
= (__uint64_t
) ip
->i_d
.di_nextents
;
304 ip
->i_d
.di_nextents
= tip
->i_d
.di_nextents
;
305 tip
->i_d
.di_nextents
= tmp
;
307 tmp
= (__uint64_t
) ip
->i_d
.di_format
;
308 ip
->i_d
.di_format
= tip
->i_d
.di_format
;
309 tip
->i_d
.di_format
= tmp
;
311 ilf_fields
= XFS_ILOG_CORE
;
313 switch(ip
->i_d
.di_format
) {
314 case XFS_DINODE_FMT_EXTENTS
:
315 /* If the extents fit in the inode, fix the
316 * pointer. Otherwise it's already NULL or
317 * pointing to the extent.
319 if (ip
->i_d
.di_nextents
<= XFS_INLINE_EXTS
) {
320 ifp
->if_u1
.if_extents
=
321 ifp
->if_u2
.if_inline_ext
;
323 ilf_fields
|= XFS_ILOG_DEXT
;
325 case XFS_DINODE_FMT_BTREE
:
326 ilf_fields
|= XFS_ILOG_DBROOT
;
330 tilf_fields
= XFS_ILOG_CORE
;
332 switch(tip
->i_d
.di_format
) {
333 case XFS_DINODE_FMT_EXTENTS
:
334 /* If the extents fit in the inode, fix the
335 * pointer. Otherwise it's already NULL or
336 * pointing to the extent.
338 if (tip
->i_d
.di_nextents
<= XFS_INLINE_EXTS
) {
339 tifp
->if_u1
.if_extents
=
340 tifp
->if_u2
.if_inline_ext
;
342 tilf_fields
|= XFS_ILOG_DEXT
;
344 case XFS_DINODE_FMT_BTREE
:
345 tilf_fields
|= XFS_ILOG_DBROOT
;
350 * Increment vnode ref counts since xfs_trans_commit &
351 * xfs_trans_cancel will both unlock the inodes and
352 * decrement the associated ref counts.
357 xfs_trans_ijoin(tp
, ip
, lock_flags
);
358 xfs_trans_ijoin(tp
, tip
, lock_flags
);
360 xfs_trans_log_inode(tp
, ip
, ilf_fields
);
361 xfs_trans_log_inode(tp
, tip
, tilf_fields
);
364 * If this is a synchronous mount, make sure that the
365 * transaction goes to disk before returning to the user.
367 if (mp
->m_flags
& XFS_MOUNT_WSYNC
) {
368 xfs_trans_set_sync(tp
);
371 error
= xfs_trans_commit(tp
, XFS_TRANS_SWAPEXT
, NULL
);
380 xfs_iunlock(ip
, lock_flags
);
381 xfs_iunlock(tip
, lock_flags
);
384 if (fp
!= NULL
) fput(fp
);
385 if (tfp
!= NULL
) fput(tfp
);