blob: 4345c53c729c560114cc4be4ad88bfe240f371c4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_dinode.h"
32#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_btree.h"
34#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_rtalloc.h"
37#include "xfs_error.h"
38#include "xfs_bmap.h"
Dave Chinner983d09f2013-04-03 16:11:15 +110039#include "xfs_cksum.h"
40#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * Allocation group level functions.
45 */
David Chinner75de2a92008-03-27 18:00:38 +110046static inline int
47xfs_ialloc_cluster_alignment(
48 xfs_alloc_arg_t *args)
49{
50 if (xfs_sb_version_hasalign(&args->mp->m_sb) &&
51 args->mp->m_sb.sb_inoalignmt >=
52 XFS_B_TO_FSBT(args->mp, XFS_INODE_CLUSTER_SIZE(args->mp)))
53 return args->mp->m_sb.sb_inoalignmt;
54 return 1;
55}
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
Christoph Hellwig21875502009-08-31 20:58:21 -030058 * Lookup a record by ino in the btree given by cur.
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110059 */
Christoph Hellwig81e25172009-09-01 19:56:55 -040060int /* error */
Christoph Hellwig21875502009-08-31 20:58:21 -030061xfs_inobt_lookup(
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110062 struct xfs_btree_cur *cur, /* btree cursor */
63 xfs_agino_t ino, /* starting inode of chunk */
Christoph Hellwig21875502009-08-31 20:58:21 -030064 xfs_lookup_t dir, /* <=, >=, == */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110065 int *stat) /* success/failure */
66{
67 cur->bc_rec.i.ir_startino = ino;
Christoph Hellwig21875502009-08-31 20:58:21 -030068 cur->bc_rec.i.ir_freecount = 0;
69 cur->bc_rec.i.ir_free = 0;
70 return xfs_btree_lookup(cur, dir, stat);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110071}
72
73/*
Christoph Hellwigafabc242009-08-31 20:57:03 -030074 * Update the record referred to by cur to the value given.
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110075 * This either works (return 0) or gets an EFSCORRUPTED error.
76 */
77STATIC int /* error */
78xfs_inobt_update(
79 struct xfs_btree_cur *cur, /* btree cursor */
Christoph Hellwigafabc242009-08-31 20:57:03 -030080 xfs_inobt_rec_incore_t *irec) /* btree record */
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110081{
82 union xfs_btree_rec rec;
83
Christoph Hellwigafabc242009-08-31 20:57:03 -030084 rec.inobt.ir_startino = cpu_to_be32(irec->ir_startino);
85 rec.inobt.ir_freecount = cpu_to_be32(irec->ir_freecount);
86 rec.inobt.ir_free = cpu_to_be64(irec->ir_free);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110087 return xfs_btree_update(cur, &rec);
88}
89
90/*
Christoph Hellwig8cc938f2008-10-30 16:58:11 +110091 * Get the data from the pointed-to record.
92 */
93int /* error */
94xfs_inobt_get_rec(
95 struct xfs_btree_cur *cur, /* btree cursor */
Christoph Hellwig2e287a72009-08-31 20:56:58 -030096 xfs_inobt_rec_incore_t *irec, /* btree record */
Christoph Hellwig8cc938f2008-10-30 16:58:11 +110097 int *stat) /* output: success/failure */
98{
99 union xfs_btree_rec *rec;
100 int error;
101
102 error = xfs_btree_get_rec(cur, &rec, stat);
103 if (!error && *stat == 1) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300104 irec->ir_startino = be32_to_cpu(rec->inobt.ir_startino);
105 irec->ir_freecount = be32_to_cpu(rec->inobt.ir_freecount);
106 irec->ir_free = be64_to_cpu(rec->inobt.ir_free);
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100107 }
108 return error;
109}
110
111/*
Dave Chinner0b48db82009-08-31 20:57:09 -0300112 * Verify that the number of free inodes in the AGI is correct.
113 */
114#ifdef DEBUG
115STATIC int
116xfs_check_agi_freecount(
117 struct xfs_btree_cur *cur,
118 struct xfs_agi *agi)
119{
120 if (cur->bc_nlevels == 1) {
121 xfs_inobt_rec_incore_t rec;
122 int freecount = 0;
123 int error;
124 int i;
125
Christoph Hellwig21875502009-08-31 20:58:21 -0300126 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
Dave Chinner0b48db82009-08-31 20:57:09 -0300127 if (error)
128 return error;
129
130 do {
131 error = xfs_inobt_get_rec(cur, &rec, &i);
132 if (error)
133 return error;
134
135 if (i) {
136 freecount += rec.ir_freecount;
137 error = xfs_btree_increment(cur, 0, &i);
138 if (error)
139 return error;
140 }
141 } while (i == 1);
142
143 if (!XFS_FORCED_SHUTDOWN(cur->bc_mp))
144 ASSERT(freecount == be32_to_cpu(agi->agi_freecount));
145 }
146 return 0;
147}
148#else
149#define xfs_check_agi_freecount(cur, agi) 0
150#endif
151
152/*
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300153 * Initialise a new set of inodes.
154 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000155STATIC int
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300156xfs_ialloc_inode_init(
157 struct xfs_mount *mp,
158 struct xfs_trans *tp,
159 xfs_agnumber_t agno,
160 xfs_agblock_t agbno,
161 xfs_agblock_t length,
162 unsigned int gen)
163{
164 struct xfs_buf *fbuf;
165 struct xfs_dinode *free;
166 int blks_per_cluster, nbufs, ninodes;
167 int version;
168 int i, j;
169 xfs_daddr_t d;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100170 xfs_ino_t ino = 0;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300171
172 /*
173 * Loop over the new block(s), filling in the inodes.
174 * For small block sizes, manipulate the inodes in buffers
175 * which are multiples of the blocks size.
176 */
177 if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
178 blks_per_cluster = 1;
179 nbufs = length;
180 ninodes = mp->m_sb.sb_inopblock;
181 } else {
182 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
183 mp->m_sb.sb_blocksize;
184 nbufs = length / blks_per_cluster;
185 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
186 }
187
188 /*
Christoph Hellwig93848a92013-04-03 16:11:17 +1100189 * Figure out what version number to use in the inodes we create. If
190 * the superblock version has caught up to the one that supports the new
191 * inode format, then use the new inode version. Otherwise use the old
192 * version so that old kernels will continue to be able to use the file
193 * system.
194 *
195 * For v3 inodes, we also need to write the inode number into the inode,
196 * so calculate the first inode number of the chunk here as
197 * XFS_OFFBNO_TO_AGINO() only works within a filesystem block, not
198 * across multiple filesystem blocks (such as a cluster) and so cannot
199 * be used in the cluster buffer loop below.
200 *
201 * Further, because we are writing the inode directly into the buffer
202 * and calculating a CRC on the entire inode, we have ot log the entire
203 * inode so that the entire range the CRC covers is present in the log.
204 * That means for v3 inode we log the entire buffer rather than just the
205 * inode cores.
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300206 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100207 if (xfs_sb_version_hascrc(&mp->m_sb)) {
208 version = 3;
209 ino = XFS_AGINO_TO_INO(mp, agno,
210 XFS_OFFBNO_TO_AGINO(mp, agbno, 0));
211 } else if (xfs_sb_version_hasnlink(&mp->m_sb))
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300212 version = 2;
213 else
214 version = 1;
215
216 for (j = 0; j < nbufs; j++) {
217 /*
218 * Get the block.
219 */
220 d = XFS_AGB_TO_DADDR(mp, agno, agbno + (j * blks_per_cluster));
221 fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
Dave Chinner7c4cebe2012-11-23 14:24:23 +1100222 mp->m_bsize * blks_per_cluster,
223 XBF_UNMAPPED);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000224 if (!fbuf)
225 return ENOMEM;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300226 /*
227 * Initialize all inodes in this buffer and then log them.
228 *
229 * XXX: It would be much better if we had just one transaction
230 * to log a whole cluster of inodes instead of all the
231 * individual transactions causing a lot of log traffic.
232 */
Dave Chinner1813dd62012-11-14 17:54:40 +1100233 fbuf->b_ops = &xfs_inode_buf_ops;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100234 xfs_buf_zero(fbuf, 0, BBTOB(fbuf->b_length));
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300235 for (i = 0; i < ninodes; i++) {
236 int ioffset = i << mp->m_sb.sb_inodelog;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100237 uint isize = xfs_dinode_size(version);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300238
239 free = xfs_make_iptr(mp, fbuf, i);
240 free->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
241 free->di_version = version;
242 free->di_gen = cpu_to_be32(gen);
243 free->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig93848a92013-04-03 16:11:17 +1100244
245 if (version == 3) {
246 free->di_ino = cpu_to_be64(ino);
247 ino++;
248 uuid_copy(&free->di_uuid, &mp->m_sb.sb_uuid);
249 xfs_dinode_calc_crc(mp, free);
250 } else {
251 /* just log the inode core */
252 xfs_trans_log_buf(tp, fbuf, ioffset,
253 ioffset + isize - 1);
254 }
255 }
256 if (version == 3) {
257 /* need to log the entire buffer */
258 xfs_trans_log_buf(tp, fbuf, 0,
259 BBTOB(fbuf->b_length) - 1);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300260 }
261 xfs_trans_inode_alloc_buf(tp, fbuf);
262 }
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000263 return 0;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300264}
265
266/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * Allocate new inodes in the allocation group specified by agbp.
268 * Return 0 for success, else error code.
269 */
270STATIC int /* error code or 0 */
271xfs_ialloc_ag_alloc(
272 xfs_trans_t *tp, /* transaction pointer */
273 xfs_buf_t *agbp, /* alloc group buffer */
274 int *alloc)
275{
276 xfs_agi_t *agi; /* allocation group header */
277 xfs_alloc_arg_t args; /* allocation argument structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 xfs_btree_cur_t *cur; /* inode btree cursor */
David Chinner92821e22007-05-24 15:26:31 +1000279 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int error;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300281 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 xfs_agino_t newino; /* new first inode's number */
283 xfs_agino_t newlen; /* new number of inodes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 xfs_agino_t thisino; /* current inode number, for loop */
Glen Overby3ccb8b52006-03-29 09:52:28 +1000285 int isaligned = 0; /* inode allocation at stripe unit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* boundary */
Dave Chinner44b56e02010-01-11 11:47:43 +0000287 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Mark Tinguelya0041682012-09-20 13:16:45 -0500289 memset(&args, 0, sizeof(args));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 args.tp = tp;
291 args.mp = tp->t_mountp;
292
293 /*
294 * Locking will ensure that we don't have two callers in here
295 * at one time.
296 */
297 newlen = XFS_IALLOC_INODES(args.mp);
298 if (args.mp->m_maxicount &&
299 args.mp->m_sb.sb_icount + newlen > args.mp->m_maxicount)
300 return XFS_ERROR(ENOSPC);
301 args.minlen = args.maxlen = XFS_IALLOC_BLOCKS(args.mp);
302 /*
Glen Overby3ccb8b52006-03-29 09:52:28 +1000303 * First try to allocate inodes contiguous with the last-allocated
304 * chunk of inodes. If the filesystem is striped, this will fill
305 * an entire stripe unit with inodes.
306 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 agi = XFS_BUF_TO_AGI(agbp);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000308 newino = be32_to_cpu(agi->agi_newino);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300309 agno = be32_to_cpu(agi->agi_seqno);
Nathan Scott019ff2d2006-04-11 15:45:05 +1000310 args.agbno = XFS_AGINO_TO_AGBNO(args.mp, newino) +
311 XFS_IALLOC_BLOCKS(args.mp);
312 if (likely(newino != NULLAGINO &&
313 (args.agbno < be32_to_cpu(agi->agi_length)))) {
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300314 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000315 args.type = XFS_ALLOCTYPE_THIS_BNO;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000316 args.prod = 1;
David Chinner75de2a92008-03-27 18:00:38 +1100317
Glen Overby3ccb8b52006-03-29 09:52:28 +1000318 /*
David Chinner75de2a92008-03-27 18:00:38 +1100319 * We need to take into account alignment here to ensure that
320 * we don't modify the free list if we fail to have an exact
321 * block. If we don't have an exact match, and every oher
322 * attempt allocation attempt fails, we'll end up cancelling
323 * a dirty transaction and shutting down.
324 *
325 * For an exact allocation, alignment must be 1,
326 * however we need to take cluster alignment into account when
327 * fixing up the freelist. Use the minalignslop field to
328 * indicate that extra blocks might be required for alignment,
329 * but not to use them in the actual exact allocation.
Glen Overby3ccb8b52006-03-29 09:52:28 +1000330 */
David Chinner75de2a92008-03-27 18:00:38 +1100331 args.alignment = 1;
332 args.minalignslop = xfs_ialloc_cluster_alignment(&args) - 1;
333
334 /* Allow space for the inode btree to split. */
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100335 args.minleft = args.mp->m_in_maxlevels - 1;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000336 if ((error = xfs_alloc_vextent(&args)))
337 return error;
338 } else
339 args.fsbno = NULLFSBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Glen Overby3ccb8b52006-03-29 09:52:28 +1000341 if (unlikely(args.fsbno == NULLFSBLOCK)) {
342 /*
343 * Set the alignment for the allocation.
344 * If stripe alignment is turned on then align at stripe unit
345 * boundary.
Nathan Scott019ff2d2006-04-11 15:45:05 +1000346 * If the cluster size is smaller than a filesystem block
347 * then we're doing I/O for inodes in filesystem block size
Glen Overby3ccb8b52006-03-29 09:52:28 +1000348 * pieces, so don't need alignment anyway.
349 */
350 isaligned = 0;
351 if (args.mp->m_sinoalign) {
352 ASSERT(!(args.mp->m_flags & XFS_MOUNT_NOALIGN));
353 args.alignment = args.mp->m_dalign;
354 isaligned = 1;
David Chinner75de2a92008-03-27 18:00:38 +1100355 } else
356 args.alignment = xfs_ialloc_cluster_alignment(&args);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000357 /*
358 * Need to figure out where to allocate the inode blocks.
359 * Ideally they should be spaced out through the a.g.
360 * For now, just allocate blocks up front.
361 */
362 args.agbno = be32_to_cpu(agi->agi_root);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300363 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000364 /*
365 * Allocate a fixed-size extent of inodes.
366 */
367 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000368 args.prod = 1;
369 /*
370 * Allow space for the inode btree to split.
371 */
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100372 args.minleft = args.mp->m_in_maxlevels - 1;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000373 if ((error = xfs_alloc_vextent(&args)))
374 return error;
375 }
Nathan Scott019ff2d2006-04-11 15:45:05 +1000376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * If stripe alignment is turned on, then try again with cluster
379 * alignment.
380 */
381 if (isaligned && args.fsbno == NULLFSBLOCK) {
382 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100383 args.agbno = be32_to_cpu(agi->agi_root);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300384 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
David Chinner75de2a92008-03-27 18:00:38 +1100385 args.alignment = xfs_ialloc_cluster_alignment(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if ((error = xfs_alloc_vextent(&args)))
387 return error;
388 }
389
390 if (args.fsbno == NULLFSBLOCK) {
391 *alloc = 0;
392 return 0;
393 }
394 ASSERT(args.len == args.minlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
David Chinner359346a2008-04-29 12:53:32 +1000396 /*
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300397 * Stamp and write the inode buffers.
398 *
David Chinner359346a2008-04-29 12:53:32 +1000399 * Seed the new inode cluster with a random generation number. This
400 * prevents short-term reuse of generation numbers if a chunk is
401 * freed and then immediately reallocated. We use random numbers
402 * rather than a linear progression to prevent the next generation
403 * number from being easily guessable.
404 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000405 error = xfs_ialloc_inode_init(args.mp, tp, agno, args.agbno,
Akinobu Mitaecb34032013-03-04 21:58:20 +0900406 args.len, prandom_u32());
Christoph Hellwigd42f08f2008-11-28 14:23:38 +1100407
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000408 if (error)
409 return error;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300410 /*
411 * Convert the results.
412 */
413 newino = XFS_OFFBNO_TO_AGINO(args.mp, args.agbno, 0);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800414 be32_add_cpu(&agi->agi_count, newlen);
415 be32_add_cpu(&agi->agi_freecount, newlen);
Dave Chinner44b56e02010-01-11 11:47:43 +0000416 pag = xfs_perag_get(args.mp, agno);
417 pag->pagi_freecount += newlen;
418 xfs_perag_put(pag);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100419 agi->agi_newino = cpu_to_be32(newino);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /*
422 * Insert records describing the new inode chunk into the btree.
423 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100424 cur = xfs_inobt_init_cursor(args.mp, tp, agbp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 for (thisino = newino;
426 thisino < newino + newlen;
427 thisino += XFS_INODES_PER_CHUNK) {
Christoph Hellwig21875502009-08-31 20:58:21 -0300428 cur->bc_rec.i.ir_startino = thisino;
429 cur->bc_rec.i.ir_freecount = XFS_INODES_PER_CHUNK;
430 cur->bc_rec.i.ir_free = XFS_INOBT_ALL_FREE;
431 error = xfs_btree_lookup(cur, XFS_LOOKUP_EQ, &i);
432 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
434 return error;
435 }
436 ASSERT(i == 0);
Christoph Hellwig21875502009-08-31 20:58:21 -0300437 error = xfs_btree_insert(cur, &i);
438 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
440 return error;
441 }
442 ASSERT(i == 1);
443 }
444 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
445 /*
446 * Log allocation group header fields
447 */
448 xfs_ialloc_log_agi(tp, agbp,
449 XFS_AGI_COUNT | XFS_AGI_FREECOUNT | XFS_AGI_NEWINO);
450 /*
451 * Modify/log superblock values for inode count and inode free count.
452 */
453 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, (long)newlen);
454 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, (long)newlen);
455 *alloc = 1;
456 return 0;
457}
458
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000459STATIC xfs_agnumber_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460xfs_ialloc_next_ag(
461 xfs_mount_t *mp)
462{
463 xfs_agnumber_t agno;
464
465 spin_lock(&mp->m_agirotor_lock);
466 agno = mp->m_agirotor;
Carlos Maiolino8aea3ff2012-09-20 10:32:36 -0300467 if (++mp->m_agirotor >= mp->m_maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 mp->m_agirotor = 0;
469 spin_unlock(&mp->m_agirotor_lock);
470
471 return agno;
472}
473
474/*
475 * Select an allocation group to look for a free inode in, based on the parent
476 * inode and then mode. Return the allocation group buffer.
477 */
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400478STATIC xfs_agnumber_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479xfs_ialloc_ag_select(
480 xfs_trans_t *tp, /* transaction pointer */
481 xfs_ino_t parent, /* parent directory inode number */
Al Viro576b1d62011-07-26 02:50:15 -0400482 umode_t mode, /* bits set to indicate file type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 int okalloc) /* ok to allocate more space */
484{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 xfs_agnumber_t agcount; /* number of ag's in the filesystem */
486 xfs_agnumber_t agno; /* current ag number */
487 int flags; /* alloc buffer locking flags */
488 xfs_extlen_t ineed; /* blocks needed for inode allocation */
489 xfs_extlen_t longest = 0; /* longest extent available */
490 xfs_mount_t *mp; /* mount point structure */
491 int needspace; /* file mode implies space allocated */
492 xfs_perag_t *pag; /* per allocation group data */
493 xfs_agnumber_t pagno; /* parent (starting) ag number */
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400494 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 /*
497 * Files of these types need at least one block if length > 0
498 * (and they won't fit in the inode, but that's hard to figure out).
499 */
500 needspace = S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode);
501 mp = tp->t_mountp;
502 agcount = mp->m_maxagi;
503 if (S_ISDIR(mode))
504 pagno = xfs_ialloc_next_ag(mp);
505 else {
506 pagno = XFS_INO_TO_AGNO(mp, parent);
507 if (pagno >= agcount)
508 pagno = 0;
509 }
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 ASSERT(pagno < agcount);
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 /*
514 * Loop through allocation groups, looking for one with a little
515 * free space in it. Note we don't look for free inodes, exactly.
516 * Instead, we include whether there is a need to allocate inodes
517 * to mean that blocks must be allocated for them,
518 * if none are currently free.
519 */
520 agno = pagno;
521 flags = XFS_ALLOC_FLAG_TRYLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 for (;;) {
Dave Chinner44b56e02010-01-11 11:47:43 +0000523 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (!pag->pagi_inodeok) {
525 xfs_ialloc_next_ag(mp);
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400526 goto nextag;
527 }
528
529 if (!pag->pagi_init) {
530 error = xfs_ialloc_pagi_init(mp, tp, agno);
531 if (error)
532 goto nextag;
533 }
534
535 if (pag->pagi_freecount) {
536 xfs_perag_put(pag);
537 return agno;
538 }
539
540 if (!okalloc)
541 goto nextag;
542
543 if (!pag->pagf_init) {
544 error = xfs_alloc_pagf_init(mp, tp, agno, flags);
545 if (error)
546 goto nextag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
549 /*
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400550 * Is there enough free space for the file plus a block of
551 * inodes? (if we need to allocate some)?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400553 ineed = XFS_IALLOC_BLOCKS(mp);
554 longest = pag->pagf_longest;
555 if (!longest)
556 longest = pag->pagf_flcount > 0;
557
558 if (pag->pagf_freeblks >= needspace + ineed &&
559 longest >= ineed) {
560 xfs_perag_put(pag);
561 return agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563nextag:
Dave Chinner44b56e02010-01-11 11:47:43 +0000564 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 /*
566 * No point in iterating over the rest, if we're shutting
567 * down.
568 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000569 if (XFS_FORCED_SHUTDOWN(mp))
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400570 return NULLAGNUMBER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 agno++;
572 if (agno >= agcount)
573 agno = 0;
574 if (agno == pagno) {
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000575 if (flags == 0)
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400576 return NULLAGNUMBER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 flags = 0;
578 }
579 }
580}
581
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300582/*
583 * Try to retrieve the next record to the left/right from the current one.
584 */
585STATIC int
586xfs_ialloc_next_rec(
587 struct xfs_btree_cur *cur,
588 xfs_inobt_rec_incore_t *rec,
589 int *done,
590 int left)
591{
592 int error;
593 int i;
594
595 if (left)
596 error = xfs_btree_decrement(cur, 0, &i);
597 else
598 error = xfs_btree_increment(cur, 0, &i);
599
600 if (error)
601 return error;
602 *done = !i;
603 if (i) {
604 error = xfs_inobt_get_rec(cur, rec, &i);
605 if (error)
606 return error;
607 XFS_WANT_CORRUPTED_RETURN(i == 1);
608 }
609
610 return 0;
611}
612
Dave Chinnerbd169562009-08-31 20:58:28 -0300613STATIC int
614xfs_ialloc_get_rec(
615 struct xfs_btree_cur *cur,
616 xfs_agino_t agino,
617 xfs_inobt_rec_incore_t *rec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800618 int *done)
Dave Chinnerbd169562009-08-31 20:58:28 -0300619{
620 int error;
621 int i;
622
623 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_EQ, &i);
624 if (error)
625 return error;
626 *done = !i;
627 if (i) {
628 error = xfs_inobt_get_rec(cur, rec, &i);
629 if (error)
630 return error;
631 XFS_WANT_CORRUPTED_RETURN(i == 1);
632 }
633
634 return 0;
635}
Dave Chinner0b48db82009-08-31 20:57:09 -0300636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/*
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400638 * Allocate an inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400640 * The caller selected an AG for us, and made sure that free inodes are
641 * available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400643STATIC int
644xfs_dialloc_ag(
645 struct xfs_trans *tp,
646 struct xfs_buf *agbp,
647 xfs_ino_t parent,
648 xfs_ino_t *inop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400650 struct xfs_mount *mp = tp->t_mountp;
651 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
652 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
653 xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent);
654 xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent);
655 struct xfs_perag *pag;
656 struct xfs_btree_cur *cur, *tcur;
657 struct xfs_inobt_rec_incore rec, trec;
658 xfs_ino_t ino;
659 int error;
660 int offset;
661 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Dave Chinner44b56e02010-01-11 11:47:43 +0000663 pag = xfs_perag_get(mp, agno);
Dave Chinnerbd169562009-08-31 20:58:28 -0300664
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400665 ASSERT(pag->pagi_init);
666 ASSERT(pag->pagi_inodeok);
667 ASSERT(pag->pagi_freecount > 0);
668
Dave Chinnerbd169562009-08-31 20:58:28 -0300669 restart_pagno:
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400670 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 /*
672 * If pagino is 0 (this is the root inode allocation) use newino.
673 * This must work because we've just allocated some.
674 */
675 if (!pagino)
Christoph Hellwig16259e72005-11-02 15:11:25 +1100676 pagino = be32_to_cpu(agi->agi_newino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Dave Chinner0b48db82009-08-31 20:57:09 -0300678 error = xfs_check_agi_freecount(cur, agi);
679 if (error)
680 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300683 * If in the same AG as the parent, try to get near the parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 */
685 if (pagno == agno) {
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300686 int doneleft; /* done, to the left */
687 int doneright; /* done, to the right */
Dave Chinnerbd169562009-08-31 20:58:28 -0300688 int searchdistance = 10;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300689
Christoph Hellwig21875502009-08-31 20:58:21 -0300690 error = xfs_inobt_lookup(cur, pagino, XFS_LOOKUP_LE, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300691 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300693 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
694
695 error = xfs_inobt_get_rec(cur, &rec, &j);
696 if (error)
697 goto error0;
698 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
699
700 if (rec.ir_freecount > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 /*
702 * Found a free inode in the same chunk
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300703 * as the parent, done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300705 goto alloc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300707
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300710 * In the same AG as parent, but parent's chunk is full.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300713 /* duplicate the cursor, search left & right simultaneously */
714 error = xfs_btree_dup_cursor(cur, &tcur);
715 if (error)
716 goto error0;
717
Dave Chinnerbd169562009-08-31 20:58:28 -0300718 /*
719 * Skip to last blocks looked up if same parent inode.
720 */
721 if (pagino != NULLAGINO &&
722 pag->pagl_pagino == pagino &&
723 pag->pagl_leftrec != NULLAGINO &&
724 pag->pagl_rightrec != NULLAGINO) {
725 error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800726 &trec, &doneleft);
Dave Chinnerbd169562009-08-31 20:58:28 -0300727 if (error)
728 goto error1;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300729
Dave Chinnerbd169562009-08-31 20:58:28 -0300730 error = xfs_ialloc_get_rec(cur, pag->pagl_rightrec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800731 &rec, &doneright);
Dave Chinnerbd169562009-08-31 20:58:28 -0300732 if (error)
733 goto error1;
734 } else {
735 /* search left with tcur, back up 1 record */
736 error = xfs_ialloc_next_rec(tcur, &trec, &doneleft, 1);
737 if (error)
738 goto error1;
739
740 /* search right with cur, go forward 1 record. */
741 error = xfs_ialloc_next_rec(cur, &rec, &doneright, 0);
742 if (error)
743 goto error1;
744 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300745
746 /*
747 * Loop until we find an inode chunk with a free inode.
748 */
749 while (!doneleft || !doneright) {
750 int useleft; /* using left inode chunk this time */
751
Dave Chinnerbd169562009-08-31 20:58:28 -0300752 if (!--searchdistance) {
753 /*
754 * Not in range - save last search
755 * location and allocate a new inode
756 */
Eric Sandeen3b826382009-10-30 09:27:07 +0100757 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
Dave Chinnerbd169562009-08-31 20:58:28 -0300758 pag->pagl_leftrec = trec.ir_startino;
759 pag->pagl_rightrec = rec.ir_startino;
760 pag->pagl_pagino = pagino;
761 goto newino;
762 }
763
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300764 /* figure out the closer block if both are valid. */
765 if (!doneleft && !doneright) {
766 useleft = pagino -
767 (trec.ir_startino + XFS_INODES_PER_CHUNK - 1) <
768 rec.ir_startino - pagino;
769 } else {
770 useleft = !doneleft;
771 }
772
773 /* free inodes to the left? */
774 if (useleft && trec.ir_freecount) {
775 rec = trec;
776 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
777 cur = tcur;
Dave Chinnerbd169562009-08-31 20:58:28 -0300778
779 pag->pagl_leftrec = trec.ir_startino;
780 pag->pagl_rightrec = rec.ir_startino;
781 pag->pagl_pagino = pagino;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300782 goto alloc_inode;
783 }
784
785 /* free inodes to the right? */
786 if (!useleft && rec.ir_freecount) {
787 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
Dave Chinnerbd169562009-08-31 20:58:28 -0300788
789 pag->pagl_leftrec = trec.ir_startino;
790 pag->pagl_rightrec = rec.ir_startino;
791 pag->pagl_pagino = pagino;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300792 goto alloc_inode;
793 }
794
795 /* get next record to check */
796 if (useleft) {
797 error = xfs_ialloc_next_rec(tcur, &trec,
798 &doneleft, 1);
799 } else {
800 error = xfs_ialloc_next_rec(cur, &rec,
801 &doneright, 0);
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Dave Chinnerbd169562009-08-31 20:58:28 -0300806
807 /*
808 * We've reached the end of the btree. because
809 * we are only searching a small chunk of the
810 * btree each search, there is obviously free
811 * inodes closer to the parent inode than we
812 * are now. restart the search again.
813 */
814 pag->pagl_pagino = NULLAGINO;
815 pag->pagl_leftrec = NULLAGINO;
816 pag->pagl_rightrec = NULLAGINO;
817 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
818 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
819 goto restart_pagno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300823 * In a different AG from the parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 * See if the most recently allocated block has any free.
825 */
Dave Chinnerbd169562009-08-31 20:58:28 -0300826newino:
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200827 if (agi->agi_newino != cpu_to_be32(NULLAGINO)) {
Christoph Hellwig21875502009-08-31 20:58:21 -0300828 error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino),
829 XFS_LOOKUP_EQ, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300830 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300832
833 if (i == 1) {
834 error = xfs_inobt_get_rec(cur, &rec, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (error)
836 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300837
838 if (j == 1 && rec.ir_freecount > 0) {
839 /*
840 * The last chunk allocated in the group
841 * still has a free inode.
842 */
843 goto alloc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 }
Dave Chinnerbd169562009-08-31 20:58:28 -0300846 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300847
Dave Chinnerbd169562009-08-31 20:58:28 -0300848 /*
849 * None left in the last group, search the whole AG
850 */
851 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
852 if (error)
853 goto error0;
854 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
855
856 for (;;) {
857 error = xfs_inobt_get_rec(cur, &rec, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300858 if (error)
859 goto error0;
860 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Dave Chinnerbd169562009-08-31 20:58:28 -0300861 if (rec.ir_freecount > 0)
862 break;
863 error = xfs_btree_increment(cur, 0, &i);
864 if (error)
865 goto error0;
866 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300868
869alloc_inode:
Christoph Hellwig824c3132012-07-04 10:54:45 -0400870 offset = xfs_lowbit64(rec.ir_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 ASSERT(offset >= 0);
872 ASSERT(offset < XFS_INODES_PER_CHUNK);
873 ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) %
874 XFS_INODES_PER_CHUNK) == 0);
875 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100876 rec.ir_free &= ~XFS_INOBT_MASK(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 rec.ir_freecount--;
Christoph Hellwigafabc242009-08-31 20:57:03 -0300878 error = xfs_inobt_update(cur, &rec);
879 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 goto error0;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800881 be32_add_cpu(&agi->agi_freecount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +0000883 pag->pagi_freecount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Dave Chinner0b48db82009-08-31 20:57:09 -0300885 error = xfs_check_agi_freecount(cur, agi);
886 if (error)
887 goto error0;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
890 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1);
Dave Chinner44b56e02010-01-11 11:47:43 +0000891 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 *inop = ino;
893 return 0;
894error1:
895 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
896error0:
897 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
Dave Chinner44b56e02010-01-11 11:47:43 +0000898 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return error;
900}
901
902/*
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400903 * Allocate an inode on disk.
904 *
905 * Mode is used to tell whether the new inode will need space, and whether it
906 * is a directory.
907 *
908 * This function is designed to be called twice if it has to do an allocation
909 * to make more free inodes. On the first call, *IO_agbp should be set to NULL.
910 * If an inode is available without having to performn an allocation, an inode
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300911 * number is returned. In this case, *IO_agbp is set to NULL. If an allocation
912 * needs to be done, xfs_dialloc returns the current AGI buffer in *IO_agbp.
913 * The caller should then commit the current transaction, allocate a
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400914 * new transaction, and call xfs_dialloc() again, passing in the previous value
915 * of *IO_agbp. IO_agbp should be held across the transactions. Since the AGI
916 * buffer is locked across the two calls, the second call is guaranteed to have
917 * a free inode available.
918 *
919 * Once we successfully pick an inode its number is returned and the on-disk
920 * data structures are updated. The inode itself is not read in, since doing so
921 * would break ordering constraints with xfs_reclaim.
922 */
923int
924xfs_dialloc(
925 struct xfs_trans *tp,
926 xfs_ino_t parent,
927 umode_t mode,
928 int okalloc,
929 struct xfs_buf **IO_agbp,
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400930 xfs_ino_t *inop)
931{
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400932 struct xfs_mount *mp = tp->t_mountp;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400933 struct xfs_buf *agbp;
934 xfs_agnumber_t agno;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400935 int error;
936 int ialloced;
937 int noroom = 0;
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400938 xfs_agnumber_t start_agno;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400939 struct xfs_perag *pag;
940
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400941 if (*IO_agbp) {
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400942 /*
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400943 * If the caller passes in a pointer to the AGI buffer,
944 * continue where we left off before. In this case, we
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400945 * know that the allocation group has free inodes.
946 */
947 agbp = *IO_agbp;
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400948 goto out_alloc;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400949 }
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400950
951 /*
952 * We do not have an agbp, so select an initial allocation
953 * group for inode allocation.
954 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400955 start_agno = xfs_ialloc_ag_select(tp, parent, mode, okalloc);
956 if (start_agno == NULLAGNUMBER) {
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400957 *inop = NULLFSINO;
958 return 0;
959 }
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400960
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400961 /*
962 * If we have already hit the ceiling of inode blocks then clear
963 * okalloc so we scan all available agi structures for a free
964 * inode.
965 */
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400966 if (mp->m_maxicount &&
967 mp->m_sb.sb_icount + XFS_IALLOC_INODES(mp) > mp->m_maxicount) {
968 noroom = 1;
969 okalloc = 0;
970 }
971
972 /*
973 * Loop until we find an allocation group that either has free inodes
974 * or in which we can allocate some inodes. Iterate through the
975 * allocation groups upward, wrapping at the end.
976 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400977 agno = start_agno;
978 for (;;) {
979 pag = xfs_perag_get(mp, agno);
980 if (!pag->pagi_inodeok) {
981 xfs_ialloc_next_ag(mp);
982 goto nextag;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400983 }
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400984
985 if (!pag->pagi_init) {
986 error = xfs_ialloc_pagi_init(mp, tp, agno);
987 if (error)
988 goto out_error;
989 }
990
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400991 /*
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400992 * Do a first racy fast path check if this AG is usable.
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400993 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -0400994 if (!pag->pagi_freecount && !okalloc)
995 goto nextag;
996
Christoph Hellwigc4982112012-08-07 02:02:02 -0400997 /*
998 * Then read in the AGI buffer and recheck with the AGI buffer
999 * lock held.
1000 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001001 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1002 if (error)
1003 goto out_error;
1004
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001005 if (pag->pagi_freecount) {
1006 xfs_perag_put(pag);
1007 goto out_alloc;
1008 }
1009
Christoph Hellwigc4982112012-08-07 02:02:02 -04001010 if (!okalloc)
1011 goto nextag_relse_buffer;
1012
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001013
1014 error = xfs_ialloc_ag_alloc(tp, agbp, &ialloced);
1015 if (error) {
1016 xfs_trans_brelse(tp, agbp);
1017
1018 if (error != ENOSPC)
1019 goto out_error;
1020
1021 xfs_perag_put(pag);
1022 *inop = NULLFSINO;
1023 return 0;
1024 }
1025
1026 if (ialloced) {
1027 /*
1028 * We successfully allocated some inodes, return
1029 * the current context to the caller so that it
1030 * can commit the current transaction and call
1031 * us again where we left off.
1032 */
1033 ASSERT(pag->pagi_freecount > 0);
1034 xfs_perag_put(pag);
1035
1036 *IO_agbp = agbp;
1037 *inop = NULLFSINO;
1038 return 0;
1039 }
1040
Christoph Hellwigc4982112012-08-07 02:02:02 -04001041nextag_relse_buffer:
1042 xfs_trans_brelse(tp, agbp);
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001043nextag:
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001044 xfs_perag_put(pag);
1045 if (++agno == mp->m_sb.sb_agcount)
1046 agno = 0;
1047 if (agno == start_agno) {
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001048 *inop = NULLFSINO;
1049 return noroom ? ENOSPC : 0;
1050 }
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001051 }
1052
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001053out_alloc:
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001054 *IO_agbp = NULL;
1055 return xfs_dialloc_ag(tp, agbp, parent, inop);
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001056out_error:
1057 xfs_perag_put(pag);
1058 return XFS_ERROR(error);
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001059}
1060
1061/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 * Free disk inode. Carefully avoids touching the incore inode, all
1063 * manipulations incore are the caller's responsibility.
1064 * The on-disk inode is not changed by this operation, only the
1065 * btree (free inode mask) is changed.
1066 */
1067int
1068xfs_difree(
1069 xfs_trans_t *tp, /* transaction pointer */
1070 xfs_ino_t inode, /* inode to be freed */
1071 xfs_bmap_free_t *flist, /* extents to free */
1072 int *delete, /* set if inode cluster was deleted */
1073 xfs_ino_t *first_ino) /* first inode in deleted cluster */
1074{
1075 /* REFERENCED */
1076 xfs_agblock_t agbno; /* block number containing inode */
1077 xfs_buf_t *agbp; /* buffer containing allocation group header */
1078 xfs_agino_t agino; /* inode number relative to allocation group */
1079 xfs_agnumber_t agno; /* allocation group number */
1080 xfs_agi_t *agi; /* allocation group header */
1081 xfs_btree_cur_t *cur; /* inode btree cursor */
1082 int error; /* error return value */
1083 int i; /* result code */
1084 int ilen; /* inodes in an inode cluster */
1085 xfs_mount_t *mp; /* mount structure for filesystem */
1086 int off; /* offset of inode in inode chunk */
Christoph Hellwig61a25842006-09-28 10:57:04 +10001087 xfs_inobt_rec_incore_t rec; /* btree record */
Dave Chinner44b56e02010-01-11 11:47:43 +00001088 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
1090 mp = tp->t_mountp;
1091
1092 /*
1093 * Break up inode number into its components.
1094 */
1095 agno = XFS_INO_TO_AGNO(mp, inode);
1096 if (agno >= mp->m_sb.sb_agcount) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001097 xfs_warn(mp, "%s: agno >= mp->m_sb.sb_agcount (%d >= %d).",
1098 __func__, agno, mp->m_sb.sb_agcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ASSERT(0);
1100 return XFS_ERROR(EINVAL);
1101 }
1102 agino = XFS_INO_TO_AGINO(mp, inode);
1103 if (inode != XFS_AGINO_TO_INO(mp, agno, agino)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001104 xfs_warn(mp, "%s: inode != XFS_AGINO_TO_INO() (%llu != %llu).",
1105 __func__, (unsigned long long)inode,
1106 (unsigned long long)XFS_AGINO_TO_INO(mp, agno, agino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 ASSERT(0);
1108 return XFS_ERROR(EINVAL);
1109 }
1110 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1111 if (agbno >= mp->m_sb.sb_agblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001112 xfs_warn(mp, "%s: agbno >= mp->m_sb.sb_agblocks (%d >= %d).",
1113 __func__, agbno, mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 ASSERT(0);
1115 return XFS_ERROR(EINVAL);
1116 }
1117 /*
1118 * Get the allocation group header.
1119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001122 xfs_warn(mp, "%s: xfs_ialloc_read_agi() returned error %d.",
1123 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return error;
1125 }
1126 agi = XFS_BUF_TO_AGI(agbp);
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001127 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
Christoph Hellwig16259e72005-11-02 15:11:25 +11001128 ASSERT(agbno < be32_to_cpu(agi->agi_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 /*
1130 * Initialize the cursor.
1131 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001132 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Dave Chinner0b48db82009-08-31 20:57:09 -03001134 error = xfs_check_agi_freecount(cur, agi);
1135 if (error)
1136 goto error0;
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 /*
1139 * Look for the entry describing this inode.
1140 */
Christoph Hellwig21875502009-08-31 20:58:21 -03001141 if ((error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001142 xfs_warn(mp, "%s: xfs_inobt_lookup() returned error %d.",
1143 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 goto error0;
1145 }
1146 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig2e287a72009-08-31 20:56:58 -03001147 error = xfs_inobt_get_rec(cur, &rec, &i);
1148 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001149 xfs_warn(mp, "%s: xfs_inobt_get_rec() returned error %d.",
1150 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 goto error0;
1152 }
1153 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1154 /*
1155 * Get the offset in the inode chunk.
1156 */
1157 off = agino - rec.ir_startino;
1158 ASSERT(off >= 0 && off < XFS_INODES_PER_CHUNK);
Christoph Hellwig0d87e652009-02-09 08:37:14 +01001159 ASSERT(!(rec.ir_free & XFS_INOBT_MASK(off)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /*
1161 * Mark the inode free & increment the count.
1162 */
Christoph Hellwig0d87e652009-02-09 08:37:14 +01001163 rec.ir_free |= XFS_INOBT_MASK(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 rec.ir_freecount++;
1165
1166 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001167 * When an inode cluster is free, it becomes eligible for removal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +11001169 if (!(mp->m_flags & XFS_MOUNT_IKEEP) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 (rec.ir_freecount == XFS_IALLOC_INODES(mp))) {
1171
1172 *delete = 1;
1173 *first_ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino);
1174
1175 /*
1176 * Remove the inode cluster from the AGI B+Tree, adjust the
1177 * AGI and Superblock inode counts, and mark the disk space
1178 * to be freed when the transaction is committed.
1179 */
1180 ilen = XFS_IALLOC_INODES(mp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001181 be32_add_cpu(&agi->agi_count, -ilen);
1182 be32_add_cpu(&agi->agi_freecount, -(ilen - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +00001184 pag = xfs_perag_get(mp, agno);
1185 pag->pagi_freecount -= ilen - 1;
1186 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen);
1188 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1));
1189
Christoph Hellwig91cca5d2008-10-30 16:58:01 +11001190 if ((error = xfs_btree_delete(cur, &i))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001191 xfs_warn(mp, "%s: xfs_btree_delete returned error %d.",
1192 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 goto error0;
1194 }
1195
1196 xfs_bmap_add_free(XFS_AGB_TO_FSB(mp,
1197 agno, XFS_INO_TO_AGBNO(mp,rec.ir_startino)),
1198 XFS_IALLOC_BLOCKS(mp), flist, mp);
1199 } else {
1200 *delete = 0;
1201
Christoph Hellwigafabc242009-08-31 20:57:03 -03001202 error = xfs_inobt_update(cur, &rec);
1203 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001204 xfs_warn(mp, "%s: xfs_inobt_update returned error %d.",
1205 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 goto error0;
1207 }
Christoph Hellwigafabc242009-08-31 20:57:03 -03001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /*
1210 * Change the inode free counts and log the ag/sb changes.
1211 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001212 be32_add_cpu(&agi->agi_freecount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +00001214 pag = xfs_perag_get(mp, agno);
1215 pag->pagi_freecount++;
1216 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1);
1218 }
1219
Dave Chinner0b48db82009-08-31 20:57:09 -03001220 error = xfs_check_agi_freecount(cur, agi);
1221 if (error)
1222 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1225 return 0;
1226
1227error0:
1228 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1229 return error;
1230}
1231
Dave Chinner7124fe02010-06-24 11:15:33 +10001232STATIC int
1233xfs_imap_lookup(
1234 struct xfs_mount *mp,
1235 struct xfs_trans *tp,
1236 xfs_agnumber_t agno,
1237 xfs_agino_t agino,
1238 xfs_agblock_t agbno,
1239 xfs_agblock_t *chunk_agbno,
1240 xfs_agblock_t *offset_agbno,
1241 int flags)
1242{
1243 struct xfs_inobt_rec_incore rec;
1244 struct xfs_btree_cur *cur;
1245 struct xfs_buf *agbp;
Dave Chinner7124fe02010-06-24 11:15:33 +10001246 int error;
1247 int i;
1248
1249 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1250 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +11001251 xfs_alert(mp,
1252 "%s: xfs_ialloc_read_agi() returned error %d, agno %d",
1253 __func__, error, agno);
Dave Chinner7124fe02010-06-24 11:15:33 +10001254 return error;
1255 }
1256
1257 /*
Dave Chinner4536f2a2010-08-24 11:42:30 +10001258 * Lookup the inode record for the given agino. If the record cannot be
1259 * found, then it's an invalid inode number and we should abort. Once
1260 * we have a record, we need to ensure it contains the inode number
1261 * we are looking up.
Dave Chinner7124fe02010-06-24 11:15:33 +10001262 */
1263 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno);
Dave Chinner4536f2a2010-08-24 11:42:30 +10001264 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i);
Dave Chinner7124fe02010-06-24 11:15:33 +10001265 if (!error) {
1266 if (i)
1267 error = xfs_inobt_get_rec(cur, &rec, &i);
1268 if (!error && i == 0)
1269 error = EINVAL;
1270 }
1271
1272 xfs_trans_brelse(tp, agbp);
1273 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1274 if (error)
1275 return error;
1276
Dave Chinner4536f2a2010-08-24 11:42:30 +10001277 /* check that the returned record contains the required inode */
1278 if (rec.ir_startino > agino ||
1279 rec.ir_startino + XFS_IALLOC_INODES(mp) <= agino)
1280 return EINVAL;
1281
Dave Chinner7124fe02010-06-24 11:15:33 +10001282 /* for untrusted inodes check it is allocated first */
Dave Chinner19207792010-06-24 11:15:47 +10001283 if ((flags & XFS_IGET_UNTRUSTED) &&
Dave Chinner7124fe02010-06-24 11:15:33 +10001284 (rec.ir_free & XFS_INOBT_MASK(agino - rec.ir_startino)))
1285 return EINVAL;
1286
1287 *chunk_agbno = XFS_AGINO_TO_AGBNO(mp, rec.ir_startino);
1288 *offset_agbno = agbno - *chunk_agbno;
1289 return 0;
1290}
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292/*
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001293 * Return the location of the inode in imap, for mapping it into a buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295int
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001296xfs_imap(
1297 xfs_mount_t *mp, /* file system mount structure */
1298 xfs_trans_t *tp, /* transaction pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 xfs_ino_t ino, /* inode to locate */
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001300 struct xfs_imap *imap, /* location map structure */
1301 uint flags) /* flags for inode btree lookup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 xfs_agblock_t agbno; /* block number of inode in the alloc group */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 xfs_agino_t agino; /* inode number within alloc group */
1305 xfs_agnumber_t agno; /* allocation group number */
1306 int blks_per_cluster; /* num blocks per inode cluster */
1307 xfs_agblock_t chunk_agbno; /* first block in inode chunk */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 xfs_agblock_t cluster_agbno; /* first block in inode cluster */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 int error; /* error code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 int offset; /* index of inode in its buffer */
1311 int offset_agbno; /* blks from chunk start to inode */
1312
1313 ASSERT(ino != NULLFSINO);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 /*
1316 * Split up the inode number into its parts.
1317 */
1318 agno = XFS_INO_TO_AGNO(mp, ino);
1319 agino = XFS_INO_TO_AGINO(mp, ino);
1320 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1321 if (agno >= mp->m_sb.sb_agcount || agbno >= mp->m_sb.sb_agblocks ||
1322 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
1323#ifdef DEBUG
Dave Chinner19207792010-06-24 11:15:47 +10001324 /*
1325 * Don't output diagnostic information for untrusted inodes
1326 * as they can be invalid without implying corruption.
1327 */
1328 if (flags & XFS_IGET_UNTRUSTED)
Nathan Scott4d1a2ed2006-06-09 17:12:28 +10001329 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (agno >= mp->m_sb.sb_agcount) {
Dave Chinner53487782011-03-07 10:05:35 +11001331 xfs_alert(mp,
1332 "%s: agno (%d) >= mp->m_sb.sb_agcount (%d)",
1333 __func__, agno, mp->m_sb.sb_agcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
1335 if (agbno >= mp->m_sb.sb_agblocks) {
Dave Chinner53487782011-03-07 10:05:35 +11001336 xfs_alert(mp,
1337 "%s: agbno (0x%llx) >= mp->m_sb.sb_agblocks (0x%lx)",
1338 __func__, (unsigned long long)agbno,
1339 (unsigned long)mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341 if (ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
Dave Chinner53487782011-03-07 10:05:35 +11001342 xfs_alert(mp,
1343 "%s: ino (0x%llx) != XFS_AGINO_TO_INO() (0x%llx)",
1344 __func__, ino,
1345 XFS_AGINO_TO_INO(mp, agno, agino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
Nathan Scott745b1f472006-09-28 11:02:23 +10001347 xfs_stack_trace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348#endif /* DEBUG */
1349 return XFS_ERROR(EINVAL);
1350 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001351
Dave Chinner7124fe02010-06-24 11:15:33 +10001352 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_blocklog;
1353
1354 /*
1355 * For bulkstat and handle lookups, we have an untrusted inode number
1356 * that we have to verify is valid. We cannot do this just by reading
1357 * the inode buffer as it may have been unlinked and removed leaving
1358 * inodes in stale state on disk. Hence we have to do a btree lookup
1359 * in all cases where an untrusted inode number is passed.
1360 */
Dave Chinner19207792010-06-24 11:15:47 +10001361 if (flags & XFS_IGET_UNTRUSTED) {
Dave Chinner7124fe02010-06-24 11:15:33 +10001362 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1363 &chunk_agbno, &offset_agbno, flags);
1364 if (error)
1365 return error;
1366 goto out_map;
1367 }
1368
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001369 /*
1370 * If the inode cluster size is the same as the blocksize or
1371 * smaller we get to the buffer by simple arithmetics.
1372 */
1373 if (XFS_INODE_CLUSTER_SIZE(mp) <= mp->m_sb.sb_blocksize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 offset = XFS_INO_TO_OFFSET(mp, ino);
1375 ASSERT(offset < mp->m_sb.sb_inopblock);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001376
1377 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, agbno);
1378 imap->im_len = XFS_FSB_TO_BB(mp, 1);
1379 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return 0;
1381 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001382
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001383 /*
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001384 * If the inode chunks are aligned then use simple maths to
1385 * find the location. Otherwise we have to do a btree
1386 * lookup to find the location.
1387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (mp->m_inoalign_mask) {
1389 offset_agbno = agbno & mp->m_inoalign_mask;
1390 chunk_agbno = agbno - offset_agbno;
1391 } else {
Dave Chinner7124fe02010-06-24 11:15:33 +10001392 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1393 &chunk_agbno, &offset_agbno, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (error)
1395 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001397
Dave Chinner7124fe02010-06-24 11:15:33 +10001398out_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 ASSERT(agbno >= chunk_agbno);
1400 cluster_agbno = chunk_agbno +
1401 ((offset_agbno / blks_per_cluster) * blks_per_cluster);
1402 offset = ((agbno - cluster_agbno) * mp->m_sb.sb_inopblock) +
1403 XFS_INO_TO_OFFSET(mp, ino);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001404
1405 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, cluster_agbno);
1406 imap->im_len = XFS_FSB_TO_BB(mp, blks_per_cluster);
1407 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
1408
1409 /*
1410 * If the inode number maps to a block outside the bounds
1411 * of the file system then return NULL rather than calling
1412 * read_buf and panicing when we get an error from the
1413 * driver.
1414 */
1415 if ((imap->im_blkno + imap->im_len) >
1416 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)) {
Dave Chinner53487782011-03-07 10:05:35 +11001417 xfs_alert(mp,
1418 "%s: (im_blkno (0x%llx) + im_len (0x%llx)) > sb_dblocks (0x%llx)",
1419 __func__, (unsigned long long) imap->im_blkno,
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001420 (unsigned long long) imap->im_len,
1421 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks));
1422 return XFS_ERROR(EINVAL);
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
1427/*
1428 * Compute and fill in value of m_in_maxlevels.
1429 */
1430void
1431xfs_ialloc_compute_maxlevels(
1432 xfs_mount_t *mp) /* file system mount structure */
1433{
1434 int level;
1435 uint maxblocks;
1436 uint maxleafents;
1437 int minleafrecs;
1438 int minnoderecs;
1439
1440 maxleafents = (1LL << XFS_INO_AGINO_BITS(mp)) >>
1441 XFS_INODES_PER_CHUNK_LOG;
1442 minleafrecs = mp->m_alloc_mnr[0];
1443 minnoderecs = mp->m_alloc_mnr[1];
1444 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1445 for (level = 1; maxblocks > 1; level++)
1446 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1447 mp->m_in_maxlevels = level;
1448}
1449
1450/*
1451 * Log specified fields for the ag hdr (inode section)
1452 */
1453void
1454xfs_ialloc_log_agi(
1455 xfs_trans_t *tp, /* transaction pointer */
1456 xfs_buf_t *bp, /* allocation group header buffer */
1457 int fields) /* bitmask of fields to log */
1458{
1459 int first; /* first byte number */
1460 int last; /* last byte number */
1461 static const short offsets[] = { /* field starting offsets */
1462 /* keep in sync with bit definitions */
1463 offsetof(xfs_agi_t, agi_magicnum),
1464 offsetof(xfs_agi_t, agi_versionnum),
1465 offsetof(xfs_agi_t, agi_seqno),
1466 offsetof(xfs_agi_t, agi_length),
1467 offsetof(xfs_agi_t, agi_count),
1468 offsetof(xfs_agi_t, agi_root),
1469 offsetof(xfs_agi_t, agi_level),
1470 offsetof(xfs_agi_t, agi_freecount),
1471 offsetof(xfs_agi_t, agi_newino),
1472 offsetof(xfs_agi_t, agi_dirino),
1473 offsetof(xfs_agi_t, agi_unlinked),
1474 sizeof(xfs_agi_t)
1475 };
1476#ifdef DEBUG
1477 xfs_agi_t *agi; /* allocation group header */
1478
1479 agi = XFS_BUF_TO_AGI(bp);
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001480 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481#endif
1482 /*
1483 * Compute byte offsets for the first and last fields.
1484 */
1485 xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS, &first, &last);
1486 /*
1487 * Log the allocation group inode header buffer.
1488 */
Dave Chinner61fe1352013-04-03 16:11:30 +11001489 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGI_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 xfs_trans_log_buf(tp, bp, first, last);
1491}
1492
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001493#ifdef DEBUG
1494STATIC void
1495xfs_check_agi_unlinked(
1496 struct xfs_agi *agi)
1497{
1498 int i;
1499
1500 for (i = 0; i < XFS_AGI_UNLINKED_BUCKETS; i++)
1501 ASSERT(agi->agi_unlinked[i]);
1502}
1503#else
1504#define xfs_check_agi_unlinked(agi)
1505#endif
1506
Dave Chinner983d09f2013-04-03 16:11:15 +11001507static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +11001508xfs_agi_verify(
Dave Chinner3702ce62012-11-12 22:54:05 +11001509 struct xfs_buf *bp)
1510{
1511 struct xfs_mount *mp = bp->b_target->bt_mount;
1512 struct xfs_agi *agi = XFS_BUF_TO_AGI(bp);
Dave Chinner3702ce62012-11-12 22:54:05 +11001513
Dave Chinner983d09f2013-04-03 16:11:15 +11001514 if (xfs_sb_version_hascrc(&mp->m_sb) &&
1515 !uuid_equal(&agi->agi_uuid, &mp->m_sb.sb_uuid))
1516 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11001517 /*
1518 * Validate the magic number of the agi block.
1519 */
Dave Chinner983d09f2013-04-03 16:11:15 +11001520 if (agi->agi_magicnum != cpu_to_be32(XFS_AGI_MAGIC))
1521 return false;
1522 if (!XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum)))
1523 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11001524
1525 /*
1526 * during growfs operations, the perag is not fully initialised,
1527 * so we can't use it for any useful checking. growfs ensures we can't
1528 * use it by using uncached buffers that don't have the perag attached
1529 * so we can detect and avoid this problem.
1530 */
Dave Chinner983d09f2013-04-03 16:11:15 +11001531 if (bp->b_pag && be32_to_cpu(agi->agi_seqno) != bp->b_pag->pag_agno)
1532 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11001533
Dave Chinner3702ce62012-11-12 22:54:05 +11001534 xfs_check_agi_unlinked(agi);
Dave Chinner983d09f2013-04-03 16:11:15 +11001535 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +11001536}
1537
Dave Chinner1813dd62012-11-14 17:54:40 +11001538static void
1539xfs_agi_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11001540 struct xfs_buf *bp)
1541{
Dave Chinner983d09f2013-04-03 16:11:15 +11001542 struct xfs_mount *mp = bp->b_target->bt_mount;
1543 int agi_ok = 1;
1544
1545 if (xfs_sb_version_hascrc(&mp->m_sb))
1546 agi_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
1547 offsetof(struct xfs_agi, agi_crc));
1548 agi_ok = agi_ok && xfs_agi_verify(bp);
1549
1550 if (unlikely(XFS_TEST_ERROR(!agi_ok, mp, XFS_ERRTAG_IALLOC_READ_AGI,
1551 XFS_RANDOM_IALLOC_READ_AGI))) {
1552 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
1553 xfs_buf_ioerror(bp, EFSCORRUPTED);
1554 }
Dave Chinner612cfbf2012-11-14 17:52:32 +11001555}
1556
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001557static void
Dave Chinner1813dd62012-11-14 17:54:40 +11001558xfs_agi_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11001559 struct xfs_buf *bp)
1560{
Dave Chinner983d09f2013-04-03 16:11:15 +11001561 struct xfs_mount *mp = bp->b_target->bt_mount;
1562 struct xfs_buf_log_item *bip = bp->b_fspriv;
1563
1564 if (!xfs_agi_verify(bp)) {
1565 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
1566 xfs_buf_ioerror(bp, EFSCORRUPTED);
1567 return;
1568 }
1569
1570 if (!xfs_sb_version_hascrc(&mp->m_sb))
1571 return;
1572
1573 if (bip)
1574 XFS_BUF_TO_AGI(bp)->agi_lsn = cpu_to_be64(bip->bli_item.li_lsn);
1575 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
1576 offsetof(struct xfs_agi, agi_crc));
Dave Chinner3702ce62012-11-12 22:54:05 +11001577}
1578
Dave Chinner1813dd62012-11-14 17:54:40 +11001579const struct xfs_buf_ops xfs_agi_buf_ops = {
1580 .verify_read = xfs_agi_read_verify,
1581 .verify_write = xfs_agi_write_verify,
1582};
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584/*
1585 * Read in the allocation group header (inode allocation section)
1586 */
1587int
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001588xfs_read_agi(
1589 struct xfs_mount *mp, /* file system mount structure */
1590 struct xfs_trans *tp, /* transaction pointer */
1591 xfs_agnumber_t agno, /* allocation group number */
1592 struct xfs_buf **bpp) /* allocation group hdr buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001594 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 ASSERT(agno != NULLAGNUMBER);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001597
1598 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +11001600 XFS_FSS_TO_BB(mp, 1), 0, bpp, &xfs_agi_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (error)
1602 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001603
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001604 ASSERT(!xfs_buf_geterror(*bpp));
Christoph Hellwig38f23232011-10-10 16:52:45 +00001605 xfs_buf_set_ref(*bpp, XFS_AGI_REF);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001606 return 0;
1607}
1608
1609int
1610xfs_ialloc_read_agi(
1611 struct xfs_mount *mp, /* file system mount structure */
1612 struct xfs_trans *tp, /* transaction pointer */
1613 xfs_agnumber_t agno, /* allocation group number */
1614 struct xfs_buf **bpp) /* allocation group hdr buf */
1615{
1616 struct xfs_agi *agi; /* allocation group header */
1617 struct xfs_perag *pag; /* per allocation group data */
1618 int error;
1619
1620 error = xfs_read_agi(mp, tp, agno, bpp);
1621 if (error)
1622 return error;
1623
1624 agi = XFS_BUF_TO_AGI(*bpp);
Dave Chinner44b56e02010-01-11 11:47:43 +00001625 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (!pag->pagi_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11001627 pag->pagi_freecount = be32_to_cpu(agi->agi_freecount);
David Chinner92821e22007-05-24 15:26:31 +10001628 pag->pagi_count = be32_to_cpu(agi->agi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 pag->pagi_init = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
1631
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001632 /*
1633 * It's possible for these to be out of sync if
1634 * we are in the middle of a forced shutdown.
1635 */
1636 ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) ||
1637 XFS_FORCED_SHUTDOWN(mp));
Dave Chinner44b56e02010-01-11 11:47:43 +00001638 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return 0;
1640}
David Chinner92821e22007-05-24 15:26:31 +10001641
1642/*
1643 * Read in the agi to initialise the per-ag data in the mount structure
1644 */
1645int
1646xfs_ialloc_pagi_init(
1647 xfs_mount_t *mp, /* file system mount structure */
1648 xfs_trans_t *tp, /* transaction pointer */
1649 xfs_agnumber_t agno) /* allocation group number */
1650{
1651 xfs_buf_t *bp = NULL;
1652 int error;
1653
1654 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
1655 if (error)
1656 return error;
1657 if (bp)
1658 xfs_trans_brelse(tp, bp);
1659 return 0;
1660}