]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/gnu/fs/xfs/xfs_dfrag.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / gnu / fs / xfs / xfs_dfrag.c
1 /*
2  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would 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.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir.h"
28 #include "xfs_dir2.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_dir_sf.h"
35 #include "xfs_dir2_sf.h"
36 #include "xfs_attr_sf.h"
37 #include "xfs_dinode.h"
38 #include "xfs_inode.h"
39 #include "xfs_inode_item.h"
40 #include "xfs_bmap.h"
41 #include "xfs_btree.h"
42 #include "xfs_ialloc.h"
43 #include "xfs_itable.h"
44 #include "xfs_dfrag.h"
45 #include "xfs_error.h"
46 #include "xfs_mac.h"
47 #include "xfs_rw.h"
48
49 #include <sys/file.h>
50
51 /*
52  * Syssgi interface for swapext
53  */
54 int
55 xfs_swapext(
56         xfs_swapext_t   __user *sxu)
57 {
58         xfs_swapext_t   *sxp;
59         xfs_inode_t     *ip=NULL, *tip=NULL;
60         xfs_mount_t     *mp;
61         xfs_vnode_t     *vp = NULL, *tvp = NULL;
62         struct vnode    *bvp, *btvp;
63         int             error = 0;
64
65         sxp = kmem_alloc(sizeof(xfs_swapext_t), KM_MAYFAIL);
66         if (!sxp) {
67                 error = XFS_ERROR(ENOMEM);
68                 goto error0;
69         }
70         struct thread   *td;
71         struct cred     *cred;
72
73         td = curthread;
74         cred = td->td_ucred;
75
76         if (copy_from_user(sxp, sxu, sizeof(xfs_swapext_t))) {
77                 error = XFS_ERROR(EFAULT);
78                 goto error0;
79         }
80
81         /* Pull information for the target fd */
82         if (fgetvp(td, (int)sxp->sx_fdtarget, &bvp) != 0) {
83                 error = XFS_ERROR(EINVAL);
84                 goto error0;
85         }
86
87         vp = VPTOXFSVP(bvp);
88         ip = xfs_vtoi(vp);
89         if (ip == NULL) {
90                 error = XFS_ERROR(EBADF);
91                 goto error0;
92         }
93
94         if (fgetvp(td, (int)sxp->sx_fdtmp, &btvp) != 0) {
95                 error = XFS_ERROR(EINVAL);
96                 goto error0;
97         }
98
99         tvp = VPTOXFSVP(btvp);
100         tip = xfs_vtoi(tvp);
101         if (tip == NULL) {
102                 error = XFS_ERROR(EBADF);
103                 goto error0;
104         }
105
106         if (ip->i_mount != tip->i_mount) {
107                 error =  XFS_ERROR(EINVAL);
108                 goto error0;
109         }
110
111         if (ip->i_ino == tip->i_ino) {
112                 error =  XFS_ERROR(EINVAL);
113                 goto error0;
114         }
115
116         mp = ip->i_mount;
117
118         if (XFS_FORCED_SHUTDOWN(mp)) {
119                 error =  XFS_ERROR(EIO);
120                 goto error0;
121         }
122
123         error = XFS_SWAP_EXTENTS(mp, &ip->i_iocore, &tip->i_iocore, sxp);
124
125  error0:
126 #ifdef RMC
127         if (fp != NULL)
128                 fput(fp);
129         if (tfp != NULL)
130                 fput(tfp);
131 #endif
132
133         if (sxp != NULL)
134                 kmem_free(sxp, sizeof(xfs_swapext_t));
135
136         return error;
137 }
138
139 int
140 xfs_swap_extents(
141         xfs_inode_t     *ip,
142         xfs_inode_t     *tip,
143         xfs_swapext_t   *sxp)
144 {
145         xfs_mount_t     *mp;
146         xfs_inode_t     *ips[2];
147         xfs_trans_t     *tp;
148         xfs_bstat_t     *sbp = &sxp->sx_stat;
149         xfs_vnode_t     *vp, *tvp;
150         xfs_ifork_t     *tempifp, *ifp, *tifp;
151         int             ilf_fields, tilf_fields;
152         static uint     lock_flags = XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL;
153         int             error = 0;
154         int             aforkblks = 0;
155         int             taforkblks = 0;
156         __uint64_t      tmp;
157         char            locked = 0;
158
159         mp = ip->i_mount;
160
161         tempifp = kmem_alloc(sizeof(xfs_ifork_t), KM_MAYFAIL);
162         if (!tempifp) {
163                 error = XFS_ERROR(ENOMEM);
164                 goto error0;
165         }
166
167         sbp = &sxp->sx_stat;
168         vp = XFS_ITOV(ip);
169         tvp = XFS_ITOV(tip);
170
171         /* Lock in i_ino order */
172         if (ip->i_ino < tip->i_ino) {
173                 ips[0] = ip;
174                 ips[1] = tip;
175         } else {
176                 ips[0] = tip;
177                 ips[1] = ip;
178         }
179
180         xfs_lock_inodes(ips, 2, 0, lock_flags);
181         locked = 1;
182
183         /* Check permissions */
184         error = xfs_iaccess(ip, VWRITE, NULL);
185         if (error)
186                 goto error0;
187
188         error = xfs_iaccess(tip, VWRITE, NULL);
189         if (error)
190                 goto error0;
191
192         /* Verify that both files have the same format */
193         if ((ip->i_d.di_mode & S_IFMT) != (tip->i_d.di_mode & S_IFMT)) {
194                 error = XFS_ERROR(EINVAL);
195                 goto error0;
196         }
197
198         /* Verify both files are either real-time or non-realtime */
199         if ((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) !=
200             (tip->i_d.di_flags & XFS_DIFLAG_REALTIME)) {
201                 error = XFS_ERROR(EINVAL);
202                 goto error0;
203         }
204
205         /* Should never get a local format */
206         if (ip->i_d.di_format == XFS_DINODE_FMT_LOCAL ||
207             tip->i_d.di_format == XFS_DINODE_FMT_LOCAL) {
208                 error = XFS_ERROR(EINVAL);
209                 goto error0;
210         }
211
212         if (VN_CACHED(tvp) != 0) {
213                 xfs_inval_cached_trace(&tip->i_iocore, 0, -1, 0, -1);
214                 XVOP_FLUSHINVAL_PAGES(tvp, 0, -1, FI_REMAPF_LOCKED);
215         }
216
217         /* Verify O_DIRECT for ftmp */
218         if (VN_CACHED(tvp) != 0) {
219                 error = XFS_ERROR(EINVAL);
220                 goto error0;
221         }
222
223         /* Verify all data are being swapped */
224         if (sxp->sx_offset != 0 ||
225             sxp->sx_length != ip->i_d.di_size ||
226             sxp->sx_length != tip->i_d.di_size) {
227                 error = XFS_ERROR(EFAULT);
228                 goto error0;
229         }
230
231         /*
232          * If the target has extended attributes, the tmp file
233          * must also in order to ensure the correct data fork
234          * format.
235          */
236         if ( XFS_IFORK_Q(ip) != XFS_IFORK_Q(tip) ) {
237                 error = XFS_ERROR(EINVAL);
238                 goto error0;
239         }
240
241         /*
242          * Compare the current change & modify times with that
243          * passed in.  If they differ, we abort this swap.
244          * This is the mechanism used to ensure the calling
245          * process that the file was not changed out from
246          * under it.
247          */
248         if ((sbp->bs_ctime.tv_sec != ip->i_d.di_ctime.t_sec) ||
249             (sbp->bs_ctime.tv_nsec != ip->i_d.di_ctime.t_nsec) ||
250             (sbp->bs_mtime.tv_sec != ip->i_d.di_mtime.t_sec) ||
251             (sbp->bs_mtime.tv_nsec != ip->i_d.di_mtime.t_nsec)) {
252                 error = XFS_ERROR(EBUSY);
253                 goto error0;
254         }
255
256         /* We need to fail if the file is memory mapped.  Once we have tossed
257          * all existing pages, the page fault will have no option
258          * but to go to the filesystem for pages. By making the page fault call
259          * VOP_READ (or write in the case of autogrow) they block on the iolock
260          * until we have switched the extents.
261          */
262         if (VN_MAPPED(vp)) {
263                 error = XFS_ERROR(EBUSY);
264                 goto error0;
265         }
266
267         xfs_iunlock(ip, XFS_ILOCK_EXCL);
268         xfs_iunlock(tip, XFS_ILOCK_EXCL);
269
270         /*
271          * There is a race condition here since we gave up the
272          * ilock.  However, the data fork will not change since
273          * we have the iolock (locked for truncation too) so we
274          * are safe.  We don't really care if non-io related
275          * fields change.
276          */
277
278         XVOP_TOSS_PAGES(vp, 0, -1, FI_REMAPF);
279
280         tp = xfs_trans_alloc(mp, XFS_TRANS_SWAPEXT);
281         if ((error = xfs_trans_reserve(tp, 0,
282                                      XFS_ICHANGE_LOG_RES(mp), 0,
283                                      0, 0))) {
284                 xfs_iunlock(ip,  XFS_IOLOCK_EXCL);
285                 xfs_iunlock(tip, XFS_IOLOCK_EXCL);
286                 xfs_trans_cancel(tp, 0);
287                 locked = 0;
288                 goto error0;
289         }
290         xfs_lock_inodes(ips, 2, 0, XFS_ILOCK_EXCL);
291
292         /*
293          * Count the number of extended attribute blocks
294          */
295         if ( ((XFS_IFORK_Q(ip) != 0) && (ip->i_d.di_anextents > 0)) &&
296              (ip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
297                 error = xfs_bmap_count_blocks(tp, ip, XFS_ATTR_FORK, &aforkblks);
298                 if (error) {
299                         xfs_trans_cancel(tp, 0);
300                         goto error0;
301                 }
302         }
303         if ( ((XFS_IFORK_Q(tip) != 0) && (tip->i_d.di_anextents > 0)) &&
304              (tip->i_d.di_aformat != XFS_DINODE_FMT_LOCAL)) {
305                 error = xfs_bmap_count_blocks(tp, tip, XFS_ATTR_FORK,
306                         &taforkblks);
307                 if (error) {
308                         xfs_trans_cancel(tp, 0);
309                         goto error0;
310                 }
311         }
312
313         /*
314          * Swap the data forks of the inodes
315          */
316         ifp = &ip->i_df;
317         tifp = &tip->i_df;
318         *tempifp = *ifp;        /* struct copy */
319         *ifp = *tifp;           /* struct copy */
320         *tifp = *tempifp;       /* struct copy */
321
322         /*
323          * Fix the on-disk inode values
324          */
325         tmp = (__uint64_t)ip->i_d.di_nblocks;
326         ip->i_d.di_nblocks = tip->i_d.di_nblocks - taforkblks + aforkblks;
327         tip->i_d.di_nblocks = tmp + taforkblks - aforkblks;
328
329         tmp = (__uint64_t) ip->i_d.di_nextents;
330         ip->i_d.di_nextents = tip->i_d.di_nextents;
331         tip->i_d.di_nextents = tmp;
332
333         tmp = (__uint64_t) ip->i_d.di_format;
334         ip->i_d.di_format = tip->i_d.di_format;
335         tip->i_d.di_format = tmp;
336
337         ilf_fields = XFS_ILOG_CORE;
338
339         switch(ip->i_d.di_format) {
340         case XFS_DINODE_FMT_EXTENTS:
341                 /* If the extents fit in the inode, fix the
342                  * pointer.  Otherwise it's already NULL or
343                  * pointing to the extent.
344                  */
345                 if (ip->i_d.di_nextents <= XFS_INLINE_EXTS) {
346                         ifp->if_u1.if_extents =
347                                 ifp->if_u2.if_inline_ext;
348                 }
349                 ilf_fields |= XFS_ILOG_DEXT;
350                 break;
351         case XFS_DINODE_FMT_BTREE:
352                 ilf_fields |= XFS_ILOG_DBROOT;
353                 break;
354         }
355
356         tilf_fields = XFS_ILOG_CORE;
357
358         switch(tip->i_d.di_format) {
359         case XFS_DINODE_FMT_EXTENTS:
360                 /* If the extents fit in the inode, fix the
361                  * pointer.  Otherwise it's already NULL or
362                  * pointing to the extent.
363                  */
364                 if (tip->i_d.di_nextents <= XFS_INLINE_EXTS) {
365                         tifp->if_u1.if_extents =
366                                 tifp->if_u2.if_inline_ext;
367                 }
368                 tilf_fields |= XFS_ILOG_DEXT;
369                 break;
370         case XFS_DINODE_FMT_BTREE:
371                 tilf_fields |= XFS_ILOG_DBROOT;
372                 break;
373         }
374
375 #ifdef XXXKAN /* Not necessary, vnodes are vrefed already by fgetvp */
376         /*
377          * Increment vnode ref counts since xfs_trans_commit &
378          * xfs_trans_cancel will both unlock the inodes and
379          * decrement the associated ref counts.
380          */
381         VN_HOLD(vp);
382         VN_HOLD(tvp);
383 #endif
384
385         xfs_trans_ijoin(tp, ip, lock_flags);
386         xfs_trans_ijoin(tp, tip, lock_flags);
387
388         xfs_trans_log_inode(tp, ip,  ilf_fields);
389         xfs_trans_log_inode(tp, tip, tilf_fields);
390
391         /*
392          * If this is a synchronous mount, make sure that the
393          * transaction goes to disk before returning to the user.
394          */
395         if (mp->m_flags & XFS_MOUNT_WSYNC) {
396                 xfs_trans_set_sync(tp);
397         }
398
399         error = xfs_trans_commit(tp, XFS_TRANS_SWAPEXT, NULL);
400
401         locked = 0;
402
403  error0:
404         if (locked) {
405                 xfs_iunlock(ip,  lock_flags);
406                 xfs_iunlock(tip, lock_flags);
407         }
408         if (tempifp != NULL)
409                 kmem_free(tempifp, sizeof(xfs_ifork_t));
410         return error;
411 }