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 *sxu)
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;
79 static uint lock_flags = XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL;
80 int ilf_fields, tilf_fields;
82 xfs_ifork_t *tempifp, *ifp, *tifp;
88 sxp = kmem_alloc(sizeof(xfs_swapext_t), KM_MAYFAIL);
89 tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
90 if (!sxp || !tempifp) {
91 error = XFS_ERROR(ENOMEM);
95 if (copy_from_user(sxp, sxu, sizeof(xfs_swapext_t))) {
96 error = XFS_ERROR(EFAULT);
100 /* Pull information for the target fd */
101 if (((fp = fget((int)sxp->sx_fdtarget)) == NULL) ||
102 ((vp = LINVFS_GET_VP(fp->f_dentry->d_inode)) == NULL)) {
103 error = XFS_ERROR(EINVAL);
107 bhp = VN_BHV_HEAD(vp);
108 bdp = vn_bhv_lookup(bhp, &xfs_vnodeops);
110 error = XFS_ERROR(EBADF);
113 ip = XFS_BHVTOI(bdp);
116 if (((tfp = fget((int)sxp->sx_fdtmp)) == NULL) ||
117 ((tvp = LINVFS_GET_VP(tfp->f_dentry->d_inode)) == NULL)) {
118 error = XFS_ERROR(EINVAL);
122 tbhp = VN_BHV_HEAD(tvp);
123 tbdp = vn_bhv_lookup(tbhp, &xfs_vnodeops);
125 error = XFS_ERROR(EBADF);
128 tip = XFS_BHVTOI(tbdp);
131 if (ip->i_mount != tip->i_mount) {
132 error = XFS_ERROR(EINVAL);
136 if (ip->i_ino == tip->i_ino) {
137 error = XFS_ERROR(EINVAL);
145 if (XFS_FORCED_SHUTDOWN(mp)) {
146 error = XFS_ERROR(EIO);
152 /* Lock in i_ino order */
153 if (ip->i_ino < tip->i_ino) {
161 xfs_lock_inodes(ips, 2, 0, lock_flags);
163 /* Check permissions */
164 error = xfs_iaccess(ip, S_IWUSR, NULL);
168 error = xfs_iaccess(tip, S_IWUSR, NULL);
172 /* Verify that both files have the same format */
173 if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
174 error = XFS_ERROR(EINVAL);
178 /* Verify both files are either real-time or non-realtime */
179 if ((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
180 (tip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
181 error = XFS_ERROR(EINVAL);
185 /* Should never get a local format */
186 if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
187 tip->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
188 error = XFS_ERROR(EINVAL);
192 if (VN_CACHED(tvp) != 0) {
193 xfs_inval_cached_trace(&tip->i_iocore, 0, -1, 0, -1);
194 VOP_FLUSHINVAL_PAGES(tvp, 0, -1, FI_REMAPF_LOCKED);
197 /* Verify O_DIRECT for ftmp */
198 if (VN_CACHED(tvp) != 0) {
199 error = XFS_ERROR(EINVAL);
203 /* Verify all data are being swapped */
204 if (sxp->sx_offset != 0 ||
205 sxp->sx_length != ip->i_d.di_size ||
206 sxp->sx_length != tip->i_d.di_size) {
207 error = XFS_ERROR(EFAULT);
212 * If the target has extended attributes, the tmp file
213 * must also in order to ensure the correct data fork
216 if ( XFS_IFORK_Q(ip) != XFS_IFORK_Q(tip) ) {
217 error = XFS_ERROR(EINVAL);
222 * Compare the current change & modify times with that
223 * passed in. If they differ, we abort this swap.
224 * This is the mechanism used to ensure the calling
225 * process that the file was not changed out from
228 if ((sbp->bs_ctime.tv_sec != ip->i_d.di_ctime.t_sec) ||
229 (sbp->bs_ctime.tv_nsec != ip->i_d.di_ctime.t_nsec) ||
230 (sbp->bs_mtime.tv_sec != ip->i_d.di_mtime.t_sec) ||
231 (sbp->bs_mtime.tv_nsec != ip->i_d.di_mtime.t_nsec)) {
232 error = XFS_ERROR(EBUSY);
236 /* We need to fail if the file is memory mapped. Once we have tossed
237 * all existing pages, the page fault will have no option
238 * but to go to the filesystem for pages. By making the page fault call
239 * VOP_READ (or write in the case of autogrow) they block on the iolock
240 * until we have switched the extents.
243 error = XFS_ERROR(EBUSY);
247 xfs_iunlock(ip, XFS_ILOCK_EXCL);
248 xfs_iunlock(tip, XFS_ILOCK_EXCL);
251 * There is a race condition here since we gave up the
252 * ilock. However, the data fork will not change since
253 * we have the iolock (locked for truncation too) so we
254 * are safe. We don't really care if non-io related
258 VOP_TOSS_PAGES(vp, 0, -1, FI_REMAPF);
260 tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
261 if ((error = xfs_trans_reserve(tp, 0,
262 XFS_ICHANGE_LOG_RES(mp), 0,
264 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
265 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
266 xfs_trans_cancel(tp, 0);
270 xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
273 * Count the number of extended attribute blocks
275 if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
276 (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
277 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
279 xfs_trans_cancel(tp, 0);
283 if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
284 (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
285 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
288 xfs_trans_cancel(tp, 0);
294 * Swap the data forks of the inodes
298 *tempifp = *ifp; /* struct copy */
299 *ifp = *tifp; /* struct copy */
300 *tifp = *tempifp; /* struct copy */
303 * Fix the on-disk inode values
305 tmp = (__uint64_t)ip->i_d.di_nblocks;
306 ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
307 tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
309 tmp = (__uint64_t) ip->i_d.di_nextents;
310 ip->i_d.di_nextents = tip->i_d.di_nextents;
311 tip->i_d.di_nextents = tmp;
313 tmp = (__uint64_t) ip->i_d.di_format;
314 ip->i_d.di_format = tip->i_d.di_format;
315 tip->i_d.di_format = tmp;
317 ilf_fields = XFS_ILOG_CORE;
319 switch(ip->i_d.di_format) {
320 case XFS_DINODE_FMT_EXTENTS:
321 /* If the extents fit in the inode, fix the
322 * pointer. Otherwise it's already NULL or
323 * pointing to the extent.
325 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
326 ifp->if_u1.if_extents =
327 ifp->if_u2.if_inline_ext;
329 ilf_fields |= XFS_ILOG_DEXT;
331 case XFS_DINODE_FMT_BTREE:
332 ilf_fields |= XFS_ILOG_DBROOT;
336 tilf_fields = XFS_ILOG_CORE;
338 switch(tip->i_d.di_format) {
339 case XFS_DINODE_FMT_EXTENTS:
340 /* If the extents fit in the inode, fix the
341 * pointer. Otherwise it's already NULL or
342 * pointing to the extent.
344 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
345 tifp->if_u1.if_extents =
346 tifp->if_u2.if_inline_ext;
348 tilf_fields |= XFS_ILOG_DEXT;
350 case XFS_DINODE_FMT_BTREE:
351 tilf_fields |= XFS_ILOG_DBROOT;
356 * Increment vnode ref counts since xfs_trans_commit &
357 * xfs_trans_cancel will both unlock the inodes and
358 * decrement the associated ref counts.
363 xfs_trans_ijoin(tp, ip, lock_flags);
364 xfs_trans_ijoin(tp, tip, lock_flags);
366 xfs_trans_log_inode(tp, ip, ilf_fields);
367 xfs_trans_log_inode(tp, tip, tilf_fields);
370 * If this is a synchronous mount, make sure that the
371 * transaction goes to disk before returning to the user.
373 if (mp->m_flags & XFS_MOUNT_WSYNC) {
374 xfs_trans_set_sync(tp);
377 error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT, NULL);
382 xfs_iunlock(ip, lock_flags);
383 xfs_iunlock(tip, lock_flags);
392 kmem_free(sxp, sizeof(xfs_swapext_t));
394 kmem_free(tempifp, sizeof(xfs_ifork_t));