]> asedeno.scripts.mit.edu Git - linux.git/blob - fs/xfs/xfs_attr_inactive.c
Merge tag 'backlight-next-5.6' of git://git.kernel.org/pub/scm/linux/kernel/git/lee...
[linux.git] / fs / xfs / xfs_attr_inactive.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4  * Copyright (c) 2013 Red Hat, Inc.
5  * All Rights Reserved.
6  */
7 #include "xfs.h"
8 #include "xfs_fs.h"
9 #include "xfs_shared.h"
10 #include "xfs_format.h"
11 #include "xfs_log_format.h"
12 #include "xfs_trans_resv.h"
13 #include "xfs_bit.h"
14 #include "xfs_mount.h"
15 #include "xfs_da_format.h"
16 #include "xfs_da_btree.h"
17 #include "xfs_inode.h"
18 #include "xfs_attr_remote.h"
19 #include "xfs_trans.h"
20 #include "xfs_bmap.h"
21 #include "xfs_attr.h"
22 #include "xfs_attr_leaf.h"
23 #include "xfs_quota.h"
24 #include "xfs_dir2.h"
25 #include "xfs_error.h"
26
27 /*
28  * Invalidate any incore buffers associated with this remote attribute value
29  * extent.   We never log remote attribute value buffers, which means that they
30  * won't be attached to a transaction and are therefore safe to mark stale.
31  * The actual bunmapi will be taken care of later.
32  */
33 STATIC int
34 xfs_attr3_rmt_stale(
35         struct xfs_inode        *dp,
36         xfs_dablk_t             blkno,
37         int                     blkcnt)
38 {
39         struct xfs_bmbt_irec    map;
40         int                     nmap;
41         int                     error;
42
43         /*
44          * Roll through the "value", invalidating the attribute value's
45          * blocks.
46          */
47         while (blkcnt > 0) {
48                 /*
49                  * Try to remember where we decided to put the value.
50                  */
51                 nmap = 1;
52                 error = xfs_bmapi_read(dp, (xfs_fileoff_t)blkno, blkcnt,
53                                        &map, &nmap, XFS_BMAPI_ATTRFORK);
54                 if (error)
55                         return error;
56                 if (XFS_IS_CORRUPT(dp->i_mount, nmap != 1))
57                         return -EFSCORRUPTED;
58
59                 /*
60                  * Mark any incore buffers for the remote value as stale.  We
61                  * never log remote attr value buffers, so the buffer should be
62                  * easy to kill.
63                  */
64                 error = xfs_attr_rmtval_stale(dp, &map, 0);
65                 if (error)
66                         return error;
67
68                 blkno += map.br_blockcount;
69                 blkcnt -= map.br_blockcount;
70         }
71
72         return 0;
73 }
74
75 /*
76  * Invalidate all of the "remote" value regions pointed to by a particular
77  * leaf block.
78  * Note that we must release the lock on the buffer so that we are not
79  * caught holding something that the logging code wants to flush to disk.
80  */
81 STATIC int
82 xfs_attr3_leaf_inactive(
83         struct xfs_trans                **trans,
84         struct xfs_inode                *dp,
85         struct xfs_buf                  *bp)
86 {
87         struct xfs_attr3_icleaf_hdr     ichdr;
88         struct xfs_mount                *mp = bp->b_mount;
89         struct xfs_attr_leafblock       *leaf = bp->b_addr;
90         struct xfs_attr_leaf_entry      *entry;
91         struct xfs_attr_leaf_name_remote *name_rmt;
92         int                             error = 0;
93         int                             i;
94
95         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
96
97         /*
98          * Find the remote value extents for this leaf and invalidate their
99          * incore buffers.
100          */
101         entry = xfs_attr3_leaf_entryp(leaf);
102         for (i = 0; i < ichdr.count; entry++, i++) {
103                 int             blkcnt;
104
105                 if (!entry->nameidx || (entry->flags & XFS_ATTR_LOCAL))
106                         continue;
107
108                 name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
109                 if (!name_rmt->valueblk)
110                         continue;
111
112                 blkcnt = xfs_attr3_rmt_blocks(dp->i_mount,
113                                 be32_to_cpu(name_rmt->valuelen));
114                 error = xfs_attr3_rmt_stale(dp,
115                                 be32_to_cpu(name_rmt->valueblk), blkcnt);
116                 if (error)
117                         goto err;
118         }
119
120         xfs_trans_brelse(*trans, bp);
121 err:
122         return error;
123 }
124
125 /*
126  * Recurse (gasp!) through the attribute nodes until we find leaves.
127  * We're doing a depth-first traversal in order to invalidate everything.
128  */
129 STATIC int
130 xfs_attr3_node_inactive(
131         struct xfs_trans        **trans,
132         struct xfs_inode        *dp,
133         struct xfs_buf          *bp,
134         int                     level)
135 {
136         struct xfs_mount        *mp = dp->i_mount;
137         struct xfs_da_blkinfo   *info;
138         xfs_dablk_t             child_fsb;
139         xfs_daddr_t             parent_blkno, child_blkno;
140         struct xfs_buf          *child_bp;
141         struct xfs_da3_icnode_hdr ichdr;
142         int                     error, i;
143
144         /*
145          * Since this code is recursive (gasp!) we must protect ourselves.
146          */
147         if (level > XFS_DA_NODE_MAXDEPTH) {
148                 xfs_trans_brelse(*trans, bp);   /* no locks for later trans */
149                 xfs_buf_corruption_error(bp);
150                 return -EFSCORRUPTED;
151         }
152
153         xfs_da3_node_hdr_from_disk(dp->i_mount, &ichdr, bp->b_addr);
154         parent_blkno = bp->b_bn;
155         if (!ichdr.count) {
156                 xfs_trans_brelse(*trans, bp);
157                 return 0;
158         }
159         child_fsb = be32_to_cpu(ichdr.btree[0].before);
160         xfs_trans_brelse(*trans, bp);   /* no locks for later trans */
161
162         /*
163          * If this is the node level just above the leaves, simply loop
164          * over the leaves removing all of them.  If this is higher up
165          * in the tree, recurse downward.
166          */
167         for (i = 0; i < ichdr.count; i++) {
168                 /*
169                  * Read the subsidiary block to see what we have to work with.
170                  * Don't do this in a transaction.  This is a depth-first
171                  * traversal of the tree so we may deal with many blocks
172                  * before we come back to this one.
173                  */
174                 error = xfs_da3_node_read(*trans, dp, child_fsb, &child_bp,
175                                           XFS_ATTR_FORK);
176                 if (error)
177                         return error;
178
179                 /* save for re-read later */
180                 child_blkno = XFS_BUF_ADDR(child_bp);
181
182                 /*
183                  * Invalidate the subtree, however we have to.
184                  */
185                 info = child_bp->b_addr;
186                 switch (info->magic) {
187                 case cpu_to_be16(XFS_DA_NODE_MAGIC):
188                 case cpu_to_be16(XFS_DA3_NODE_MAGIC):
189                         error = xfs_attr3_node_inactive(trans, dp, child_bp,
190                                                         level + 1);
191                         break;
192                 case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
193                 case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
194                         error = xfs_attr3_leaf_inactive(trans, dp, child_bp);
195                         break;
196                 default:
197                         xfs_buf_corruption_error(child_bp);
198                         xfs_trans_brelse(*trans, child_bp);
199                         error = -EFSCORRUPTED;
200                         break;
201                 }
202                 if (error)
203                         return error;
204
205                 /*
206                  * Remove the subsidiary block from the cache and from the log.
207                  */
208                 child_bp = xfs_trans_get_buf(*trans, mp->m_ddev_targp,
209                                 child_blkno,
210                                 XFS_FSB_TO_BB(mp, mp->m_attr_geo->fsbcount), 0);
211                 if (!child_bp)
212                         return -EIO;
213                 error = bp->b_error;
214                 if (error) {
215                         xfs_trans_brelse(*trans, child_bp);
216                         return error;
217                 }
218                 xfs_trans_binval(*trans, child_bp);
219
220                 /*
221                  * If we're not done, re-read the parent to get the next
222                  * child block number.
223                  */
224                 if (i + 1 < ichdr.count) {
225                         struct xfs_da3_icnode_hdr phdr;
226
227                         error = xfs_da3_node_read_mapped(*trans, dp,
228                                         parent_blkno, &bp, XFS_ATTR_FORK);
229                         if (error)
230                                 return error;
231                         xfs_da3_node_hdr_from_disk(dp->i_mount, &phdr,
232                                                   bp->b_addr);
233                         child_fsb = be32_to_cpu(phdr.btree[i + 1].before);
234                         xfs_trans_brelse(*trans, bp);
235                 }
236                 /*
237                  * Atomically commit the whole invalidate stuff.
238                  */
239                 error = xfs_trans_roll_inode(trans, dp);
240                 if (error)
241                         return  error;
242         }
243
244         return 0;
245 }
246
247 /*
248  * Indiscriminately delete the entire attribute fork
249  *
250  * Recurse (gasp!) through the attribute nodes until we find leaves.
251  * We're doing a depth-first traversal in order to invalidate everything.
252  */
253 static int
254 xfs_attr3_root_inactive(
255         struct xfs_trans        **trans,
256         struct xfs_inode        *dp)
257 {
258         struct xfs_mount        *mp = dp->i_mount;
259         struct xfs_da_blkinfo   *info;
260         struct xfs_buf          *bp;
261         xfs_daddr_t             blkno;
262         int                     error;
263
264         /*
265          * Read block 0 to see what we have to work with.
266          * We only get here if we have extents, since we remove
267          * the extents in reverse order the extent containing
268          * block 0 must still be there.
269          */
270         error = xfs_da3_node_read(*trans, dp, 0, &bp, XFS_ATTR_FORK);
271         if (error)
272                 return error;
273         blkno = bp->b_bn;
274
275         /*
276          * Invalidate the tree, even if the "tree" is only a single leaf block.
277          * This is a depth-first traversal!
278          */
279         info = bp->b_addr;
280         switch (info->magic) {
281         case cpu_to_be16(XFS_DA_NODE_MAGIC):
282         case cpu_to_be16(XFS_DA3_NODE_MAGIC):
283                 error = xfs_attr3_node_inactive(trans, dp, bp, 1);
284                 break;
285         case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
286         case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
287                 error = xfs_attr3_leaf_inactive(trans, dp, bp);
288                 break;
289         default:
290                 error = -EFSCORRUPTED;
291                 xfs_buf_corruption_error(bp);
292                 xfs_trans_brelse(*trans, bp);
293                 break;
294         }
295         if (error)
296                 return error;
297
298         /*
299          * Invalidate the incore copy of the root block.
300          */
301         bp = xfs_trans_get_buf(*trans, mp->m_ddev_targp, blkno,
302                         XFS_FSB_TO_BB(mp, mp->m_attr_geo->fsbcount), 0);
303         if (!bp)
304                 return -EIO;
305         error = bp->b_error;
306         if (error) {
307                 xfs_trans_brelse(*trans, bp);
308                 return error;
309         }
310         xfs_trans_binval(*trans, bp);   /* remove from cache */
311         /*
312          * Commit the invalidate and start the next transaction.
313          */
314         error = xfs_trans_roll_inode(trans, dp);
315
316         return error;
317 }
318
319 /*
320  * xfs_attr_inactive kills all traces of an attribute fork on an inode. It
321  * removes both the on-disk and in-memory inode fork. Note that this also has to
322  * handle the condition of inodes without attributes but with an attribute fork
323  * configured, so we can't use xfs_inode_hasattr() here.
324  *
325  * The in-memory attribute fork is removed even on error.
326  */
327 int
328 xfs_attr_inactive(
329         struct xfs_inode        *dp)
330 {
331         struct xfs_trans        *trans;
332         struct xfs_mount        *mp;
333         int                     lock_mode = XFS_ILOCK_SHARED;
334         int                     error = 0;
335
336         mp = dp->i_mount;
337         ASSERT(! XFS_NOT_DQATTACHED(mp, dp));
338
339         xfs_ilock(dp, lock_mode);
340         if (!XFS_IFORK_Q(dp))
341                 goto out_destroy_fork;
342         xfs_iunlock(dp, lock_mode);
343
344         lock_mode = 0;
345
346         error = xfs_trans_alloc(mp, &M_RES(mp)->tr_attrinval, 0, 0, 0, &trans);
347         if (error)
348                 goto out_destroy_fork;
349
350         lock_mode = XFS_ILOCK_EXCL;
351         xfs_ilock(dp, lock_mode);
352
353         if (!XFS_IFORK_Q(dp))
354                 goto out_cancel;
355
356         /*
357          * No need to make quota reservations here. We expect to release some
358          * blocks, not allocate, in the common case.
359          */
360         xfs_trans_ijoin(trans, dp, 0);
361
362         /*
363          * Invalidate and truncate the attribute fork extents. Make sure the
364          * fork actually has attributes as otherwise the invalidation has no
365          * blocks to read and returns an error. In this case, just do the fork
366          * removal below.
367          */
368         if (xfs_inode_hasattr(dp) &&
369             dp->i_d.di_aformat != XFS_DINODE_FMT_LOCAL) {
370                 error = xfs_attr3_root_inactive(&trans, dp);
371                 if (error)
372                         goto out_cancel;
373
374                 error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0);
375                 if (error)
376                         goto out_cancel;
377         }
378
379         /* Reset the attribute fork - this also destroys the in-core fork */
380         xfs_attr_fork_remove(dp, trans);
381
382         error = xfs_trans_commit(trans);
383         xfs_iunlock(dp, lock_mode);
384         return error;
385
386 out_cancel:
387         xfs_trans_cancel(trans);
388 out_destroy_fork:
389         /* kill the in-core attr fork before we drop the inode lock */
390         if (dp->i_afp)
391                 xfs_idestroy_fork(dp, XFS_ATTR_FORK);
392         if (lock_mode)
393                 xfs_iunlock(dp, lock_mode);
394         return error;
395 }