xfs: use generic percpu counters for inode counter
[deliverable/linux.git] / fs / xfs / libxfs / xfs_ialloc.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
70a9883c 20#include "xfs_shared.h"
239880ef
DC
21#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
a844f451 24#include "xfs_bit.h"
1da177e4 25#include "xfs_sb.h"
1da177e4 26#include "xfs_mount.h"
1da177e4 27#include "xfs_inode.h"
a844f451
NS
28#include "xfs_btree.h"
29#include "xfs_ialloc.h"
a4fbe6ab 30#include "xfs_ialloc_btree.h"
1da177e4 31#include "xfs_alloc.h"
1da177e4
LT
32#include "xfs_rtalloc.h"
33#include "xfs_error.h"
34#include "xfs_bmap.h"
983d09ff 35#include "xfs_cksum.h"
239880ef 36#include "xfs_trans.h"
983d09ff 37#include "xfs_buf_item.h"
ddf6ad01 38#include "xfs_icreate_item.h"
7bb85ef3 39#include "xfs_icache.h"
d123031a 40#include "xfs_trace.h"
1da177e4 41
1da177e4
LT
42
43/*
44 * Allocation group level functions.
45 */
75de2a91
DC
46static inline int
47xfs_ialloc_cluster_alignment(
7a1df156 48 struct xfs_mount *mp)
75de2a91 49{
7a1df156
DC
50 if (xfs_sb_version_hasalign(&mp->m_sb) &&
51 mp->m_sb.sb_inoalignmt >=
52 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
53 return mp->m_sb.sb_inoalignmt;
75de2a91
DC
54 return 1;
55}
1da177e4 56
fe033cc8 57/*
21875505 58 * Lookup a record by ino in the btree given by cur.
fe033cc8 59 */
81e25176 60int /* error */
21875505 61xfs_inobt_lookup(
fe033cc8
CH
62 struct xfs_btree_cur *cur, /* btree cursor */
63 xfs_agino_t ino, /* starting inode of chunk */
21875505 64 xfs_lookup_t dir, /* <=, >=, == */
fe033cc8
CH
65 int *stat) /* success/failure */
66{
67 cur->bc_rec.i.ir_startino = ino;
21875505
CH
68 cur->bc_rec.i.ir_freecount = 0;
69 cur->bc_rec.i.ir_free = 0;
70 return xfs_btree_lookup(cur, dir, stat);
fe033cc8
CH
71}
72
278d0ca1 73/*
afabc24a 74 * Update the record referred to by cur to the value given.
278d0ca1
CH
75 * 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 */
afabc24a 80 xfs_inobt_rec_incore_t *irec) /* btree record */
278d0ca1
CH
81{
82 union xfs_btree_rec rec;
83
afabc24a
CH
84 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);
278d0ca1
CH
87 return xfs_btree_update(cur, &rec);
88}
89
8cc938fe
CH
90/*
91 * Get the data from the pointed-to record.
92 */
93int /* error */
94xfs_inobt_get_rec(
95 struct xfs_btree_cur *cur, /* btree cursor */
2e287a73 96 xfs_inobt_rec_incore_t *irec, /* btree record */
8cc938fe
CH
97 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) {
2e287a73
CH
104 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);
8cc938fe
CH
107 }
108 return error;
109}
110
0aa0a756
BF
111/*
112 * Insert a single inobt record. Cursor must already point to desired location.
113 */
114STATIC int
115xfs_inobt_insert_rec(
116 struct xfs_btree_cur *cur,
117 __int32_t freecount,
118 xfs_inofree_t free,
119 int *stat)
120{
121 cur->bc_rec.i.ir_freecount = freecount;
122 cur->bc_rec.i.ir_free = free;
123 return xfs_btree_insert(cur, stat);
124}
125
126/*
127 * Insert records describing a newly allocated inode chunk into the inobt.
128 */
129STATIC int
130xfs_inobt_insert(
131 struct xfs_mount *mp,
132 struct xfs_trans *tp,
133 struct xfs_buf *agbp,
134 xfs_agino_t newino,
135 xfs_agino_t newlen,
136 xfs_btnum_t btnum)
137{
138 struct xfs_btree_cur *cur;
139 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
140 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
141 xfs_agino_t thisino;
142 int i;
143 int error;
144
145 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, btnum);
146
147 for (thisino = newino;
148 thisino < newino + newlen;
149 thisino += XFS_INODES_PER_CHUNK) {
150 error = xfs_inobt_lookup(cur, thisino, XFS_LOOKUP_EQ, &i);
151 if (error) {
152 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
153 return error;
154 }
155 ASSERT(i == 0);
156
157 error = xfs_inobt_insert_rec(cur, XFS_INODES_PER_CHUNK,
158 XFS_INOBT_ALL_FREE, &i);
159 if (error) {
160 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
161 return error;
162 }
163 ASSERT(i == 1);
164 }
165
166 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
167
168 return 0;
169}
170
0b48db80
DC
171/*
172 * Verify that the number of free inodes in the AGI is correct.
173 */
174#ifdef DEBUG
175STATIC int
176xfs_check_agi_freecount(
177 struct xfs_btree_cur *cur,
178 struct xfs_agi *agi)
179{
180 if (cur->bc_nlevels == 1) {
181 xfs_inobt_rec_incore_t rec;
182 int freecount = 0;
183 int error;
184 int i;
185
21875505 186 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
0b48db80
DC
187 if (error)
188 return error;
189
190 do {
191 error = xfs_inobt_get_rec(cur, &rec, &i);
192 if (error)
193 return error;
194
195 if (i) {
196 freecount += rec.ir_freecount;
197 error = xfs_btree_increment(cur, 0, &i);
198 if (error)
199 return error;
200 }
201 } while (i == 1);
202
203 if (!XFS_FORCED_SHUTDOWN(cur->bc_mp))
204 ASSERT(freecount == be32_to_cpu(agi->agi_freecount));
205 }
206 return 0;
207}
208#else
209#define xfs_check_agi_freecount(cur, agi) 0
210#endif
211
85c0b2ab 212/*
28c8e41a
DC
213 * Initialise a new set of inodes. When called without a transaction context
214 * (e.g. from recovery) we initiate a delayed write of the inode buffers rather
215 * than logging them (which in a transaction context puts them into the AIL
216 * for writeback rather than the xfsbufd queue).
85c0b2ab 217 */
ddf6ad01 218int
85c0b2ab
DC
219xfs_ialloc_inode_init(
220 struct xfs_mount *mp,
221 struct xfs_trans *tp,
28c8e41a 222 struct list_head *buffer_list,
85c0b2ab
DC
223 xfs_agnumber_t agno,
224 xfs_agblock_t agbno,
225 xfs_agblock_t length,
226 unsigned int gen)
227{
228 struct xfs_buf *fbuf;
229 struct xfs_dinode *free;
6e0c7b8c 230 int nbufs, blks_per_cluster, inodes_per_cluster;
85c0b2ab
DC
231 int version;
232 int i, j;
233 xfs_daddr_t d;
93848a99 234 xfs_ino_t ino = 0;
85c0b2ab
DC
235
236 /*
6e0c7b8c
JL
237 * Loop over the new block(s), filling in the inodes. For small block
238 * sizes, manipulate the inodes in buffers which are multiples of the
239 * blocks size.
85c0b2ab 240 */
6e0c7b8c
JL
241 blks_per_cluster = xfs_icluster_size_fsb(mp);
242 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
243 nbufs = length / blks_per_cluster;
85c0b2ab
DC
244
245 /*
93848a99
CH
246 * Figure out what version number to use in the inodes we create. If
247 * the superblock version has caught up to the one that supports the new
248 * inode format, then use the new inode version. Otherwise use the old
249 * version so that old kernels will continue to be able to use the file
250 * system.
251 *
252 * For v3 inodes, we also need to write the inode number into the inode,
253 * so calculate the first inode number of the chunk here as
254 * XFS_OFFBNO_TO_AGINO() only works within a filesystem block, not
255 * across multiple filesystem blocks (such as a cluster) and so cannot
256 * be used in the cluster buffer loop below.
257 *
258 * Further, because we are writing the inode directly into the buffer
259 * and calculating a CRC on the entire inode, we have ot log the entire
260 * inode so that the entire range the CRC covers is present in the log.
261 * That means for v3 inode we log the entire buffer rather than just the
262 * inode cores.
85c0b2ab 263 */
93848a99
CH
264 if (xfs_sb_version_hascrc(&mp->m_sb)) {
265 version = 3;
266 ino = XFS_AGINO_TO_INO(mp, agno,
267 XFS_OFFBNO_TO_AGINO(mp, agbno, 0));
ddf6ad01
DC
268
269 /*
270 * log the initialisation that is about to take place as an
271 * logical operation. This means the transaction does not
272 * need to log the physical changes to the inode buffers as log
273 * recovery will know what initialisation is actually needed.
274 * Hence we only need to log the buffers as "ordered" buffers so
275 * they track in the AIL as if they were physically logged.
276 */
277 if (tp)
71783438 278 xfs_icreate_log(tp, agno, agbno, mp->m_ialloc_inos,
ddf6ad01 279 mp->m_sb.sb_inodesize, length, gen);
263997a6 280 } else
85c0b2ab 281 version = 2;
85c0b2ab
DC
282
283 for (j = 0; j < nbufs; j++) {
284 /*
285 * Get the block.
286 */
287 d = XFS_AGB_TO_DADDR(mp, agno, agbno + (j * blks_per_cluster));
288 fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
7c4cebe8
DC
289 mp->m_bsize * blks_per_cluster,
290 XBF_UNMAPPED);
2a30f36d 291 if (!fbuf)
2451337d 292 return -ENOMEM;
ddf6ad01
DC
293
294 /* Initialize the inode buffers and log them appropriately. */
1813dd64 295 fbuf->b_ops = &xfs_inode_buf_ops;
93848a99 296 xfs_buf_zero(fbuf, 0, BBTOB(fbuf->b_length));
6e0c7b8c 297 for (i = 0; i < inodes_per_cluster; i++) {
85c0b2ab 298 int ioffset = i << mp->m_sb.sb_inodelog;
93848a99 299 uint isize = xfs_dinode_size(version);
85c0b2ab
DC
300
301 free = xfs_make_iptr(mp, fbuf, i);
302 free->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
303 free->di_version = version;
304 free->di_gen = cpu_to_be32(gen);
305 free->di_next_unlinked = cpu_to_be32(NULLAGINO);
93848a99
CH
306
307 if (version == 3) {
308 free->di_ino = cpu_to_be64(ino);
309 ino++;
310 uuid_copy(&free->di_uuid, &mp->m_sb.sb_uuid);
311 xfs_dinode_calc_crc(mp, free);
28c8e41a 312 } else if (tp) {
93848a99
CH
313 /* just log the inode core */
314 xfs_trans_log_buf(tp, fbuf, ioffset,
315 ioffset + isize - 1);
316 }
317 }
28c8e41a
DC
318
319 if (tp) {
320 /*
321 * Mark the buffer as an inode allocation buffer so it
322 * sticks in AIL at the point of this allocation
323 * transaction. This ensures the they are on disk before
324 * the tail of the log can be moved past this
325 * transaction (i.e. by preventing relogging from moving
326 * it forward in the log).
327 */
328 xfs_trans_inode_alloc_buf(tp, fbuf);
329 if (version == 3) {
ddf6ad01
DC
330 /*
331 * Mark the buffer as ordered so that they are
332 * not physically logged in the transaction but
333 * still tracked in the AIL as part of the
334 * transaction and pin the log appropriately.
335 */
336 xfs_trans_ordered_buf(tp, fbuf);
28c8e41a
DC
337 xfs_trans_log_buf(tp, fbuf, 0,
338 BBTOB(fbuf->b_length) - 1);
339 }
340 } else {
341 fbuf->b_flags |= XBF_DONE;
342 xfs_buf_delwri_queue(fbuf, buffer_list);
343 xfs_buf_relse(fbuf);
85c0b2ab 344 }
85c0b2ab 345 }
2a30f36d 346 return 0;
85c0b2ab
DC
347}
348
1da177e4
LT
349/*
350 * Allocate new inodes in the allocation group specified by agbp.
351 * Return 0 for success, else error code.
352 */
353STATIC int /* error code or 0 */
354xfs_ialloc_ag_alloc(
355 xfs_trans_t *tp, /* transaction pointer */
356 xfs_buf_t *agbp, /* alloc group buffer */
357 int *alloc)
358{
359 xfs_agi_t *agi; /* allocation group header */
360 xfs_alloc_arg_t args; /* allocation argument structure */
92821e2b 361 xfs_agnumber_t agno;
1da177e4 362 int error;
1da177e4
LT
363 xfs_agino_t newino; /* new first inode's number */
364 xfs_agino_t newlen; /* new number of inodes */
3ccb8b5f 365 int isaligned = 0; /* inode allocation at stripe unit */
1da177e4 366 /* boundary */
44b56e0a 367 struct xfs_perag *pag;
1da177e4 368
a0041684 369 memset(&args, 0, sizeof(args));
1da177e4
LT
370 args.tp = tp;
371 args.mp = tp->t_mountp;
372
373 /*
374 * Locking will ensure that we don't have two callers in here
375 * at one time.
376 */
71783438 377 newlen = args.mp->m_ialloc_inos;
1da177e4 378 if (args.mp->m_maxicount &&
501ab323
DC
379 percpu_counter_read(&args.mp->m_icount) + newlen >
380 args.mp->m_maxicount)
2451337d 381 return -ENOSPC;
126cd105 382 args.minlen = args.maxlen = args.mp->m_ialloc_blks;
1da177e4 383 /*
3ccb8b5f
GO
384 * First try to allocate inodes contiguous with the last-allocated
385 * chunk of inodes. If the filesystem is striped, this will fill
386 * an entire stripe unit with inodes.
28c8e41a 387 */
1da177e4 388 agi = XFS_BUF_TO_AGI(agbp);
3ccb8b5f 389 newino = be32_to_cpu(agi->agi_newino);
85c0b2ab 390 agno = be32_to_cpu(agi->agi_seqno);
019ff2d5 391 args.agbno = XFS_AGINO_TO_AGBNO(args.mp, newino) +
126cd105 392 args.mp->m_ialloc_blks;
019ff2d5
NS
393 if (likely(newino != NULLAGINO &&
394 (args.agbno < be32_to_cpu(agi->agi_length)))) {
85c0b2ab 395 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
3ccb8b5f 396 args.type = XFS_ALLOCTYPE_THIS_BNO;
3ccb8b5f 397 args.prod = 1;
75de2a91 398
3ccb8b5f 399 /*
75de2a91
DC
400 * We need to take into account alignment here to ensure that
401 * we don't modify the free list if we fail to have an exact
402 * block. If we don't have an exact match, and every oher
403 * attempt allocation attempt fails, we'll end up cancelling
404 * a dirty transaction and shutting down.
405 *
406 * For an exact allocation, alignment must be 1,
407 * however we need to take cluster alignment into account when
408 * fixing up the freelist. Use the minalignslop field to
409 * indicate that extra blocks might be required for alignment,
410 * but not to use them in the actual exact allocation.
3ccb8b5f 411 */
75de2a91 412 args.alignment = 1;
7a1df156 413 args.minalignslop = xfs_ialloc_cluster_alignment(args.mp) - 1;
75de2a91
DC
414
415 /* Allow space for the inode btree to split. */
0d87e656 416 args.minleft = args.mp->m_in_maxlevels - 1;
3ccb8b5f
GO
417 if ((error = xfs_alloc_vextent(&args)))
418 return error;
e480a723
BF
419
420 /*
421 * This request might have dirtied the transaction if the AG can
422 * satisfy the request, but the exact block was not available.
423 * If the allocation did fail, subsequent requests will relax
424 * the exact agbno requirement and increase the alignment
425 * instead. It is critical that the total size of the request
426 * (len + alignment + slop) does not increase from this point
427 * on, so reset minalignslop to ensure it is not included in
428 * subsequent requests.
429 */
430 args.minalignslop = 0;
3ccb8b5f
GO
431 } else
432 args.fsbno = NULLFSBLOCK;
1da177e4 433
3ccb8b5f
GO
434 if (unlikely(args.fsbno == NULLFSBLOCK)) {
435 /*
436 * Set the alignment for the allocation.
437 * If stripe alignment is turned on then align at stripe unit
438 * boundary.
019ff2d5
NS
439 * If the cluster size is smaller than a filesystem block
440 * then we're doing I/O for inodes in filesystem block size
3ccb8b5f
GO
441 * pieces, so don't need alignment anyway.
442 */
443 isaligned = 0;
444 if (args.mp->m_sinoalign) {
445 ASSERT(!(args.mp->m_flags & XFS_MOUNT_NOALIGN));
446 args.alignment = args.mp->m_dalign;
447 isaligned = 1;
75de2a91 448 } else
7a1df156 449 args.alignment = xfs_ialloc_cluster_alignment(args.mp);
3ccb8b5f
GO
450 /*
451 * Need to figure out where to allocate the inode blocks.
452 * Ideally they should be spaced out through the a.g.
453 * For now, just allocate blocks up front.
454 */
455 args.agbno = be32_to_cpu(agi->agi_root);
85c0b2ab 456 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
3ccb8b5f
GO
457 /*
458 * Allocate a fixed-size extent of inodes.
459 */
460 args.type = XFS_ALLOCTYPE_NEAR_BNO;
3ccb8b5f
GO
461 args.prod = 1;
462 /*
463 * Allow space for the inode btree to split.
464 */
0d87e656 465 args.minleft = args.mp->m_in_maxlevels - 1;
3ccb8b5f
GO
466 if ((error = xfs_alloc_vextent(&args)))
467 return error;
468 }
019ff2d5 469
1da177e4
LT
470 /*
471 * If stripe alignment is turned on, then try again with cluster
472 * alignment.
473 */
474 if (isaligned && args.fsbno == NULLFSBLOCK) {
475 args.type = XFS_ALLOCTYPE_NEAR_BNO;
16259e7d 476 args.agbno = be32_to_cpu(agi->agi_root);
85c0b2ab 477 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
7a1df156 478 args.alignment = xfs_ialloc_cluster_alignment(args.mp);
1da177e4
LT
479 if ((error = xfs_alloc_vextent(&args)))
480 return error;
481 }
482
483 if (args.fsbno == NULLFSBLOCK) {
484 *alloc = 0;
485 return 0;
486 }
487 ASSERT(args.len == args.minlen);
1da177e4 488
359346a9 489 /*
85c0b2ab
DC
490 * Stamp and write the inode buffers.
491 *
359346a9
DC
492 * Seed the new inode cluster with a random generation number. This
493 * prevents short-term reuse of generation numbers if a chunk is
494 * freed and then immediately reallocated. We use random numbers
495 * rather than a linear progression to prevent the next generation
496 * number from being easily guessable.
497 */
28c8e41a 498 error = xfs_ialloc_inode_init(args.mp, tp, NULL, agno, args.agbno,
ecb3403d 499 args.len, prandom_u32());
d42f08f6 500
2a30f36d
CS
501 if (error)
502 return error;
85c0b2ab
DC
503 /*
504 * Convert the results.
505 */
506 newino = XFS_OFFBNO_TO_AGINO(args.mp, args.agbno, 0);
413d57c9
MS
507 be32_add_cpu(&agi->agi_count, newlen);
508 be32_add_cpu(&agi->agi_freecount, newlen);
44b56e0a
DC
509 pag = xfs_perag_get(args.mp, agno);
510 pag->pagi_freecount += newlen;
511 xfs_perag_put(pag);
16259e7d 512 agi->agi_newino = cpu_to_be32(newino);
85c0b2ab 513
1da177e4 514 /*
0aa0a756 515 * Insert records describing the new inode chunk into the btrees.
1da177e4 516 */
0aa0a756
BF
517 error = xfs_inobt_insert(args.mp, tp, agbp, newino, newlen,
518 XFS_BTNUM_INO);
519 if (error)
520 return error;
521
522 if (xfs_sb_version_hasfinobt(&args.mp->m_sb)) {
523 error = xfs_inobt_insert(args.mp, tp, agbp, newino, newlen,
524 XFS_BTNUM_FINO);
525 if (error)
1da177e4 526 return error;
1da177e4 527 }
1da177e4
LT
528 /*
529 * Log allocation group header fields
530 */
531 xfs_ialloc_log_agi(tp, agbp,
532 XFS_AGI_COUNT | XFS_AGI_FREECOUNT | XFS_AGI_NEWINO);
533 /*
534 * Modify/log superblock values for inode count and inode free count.
535 */
536 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, (long)newlen);
537 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, (long)newlen);
538 *alloc = 1;
539 return 0;
540}
541
b8f82a4a 542STATIC xfs_agnumber_t
1da177e4
LT
543xfs_ialloc_next_ag(
544 xfs_mount_t *mp)
545{
546 xfs_agnumber_t agno;
547
548 spin_lock(&mp->m_agirotor_lock);
549 agno = mp->m_agirotor;
8aea3ff4 550 if (++mp->m_agirotor >= mp->m_maxagi)
1da177e4
LT
551 mp->m_agirotor = 0;
552 spin_unlock(&mp->m_agirotor_lock);
553
554 return agno;
555}
556
557/*
558 * Select an allocation group to look for a free inode in, based on the parent
2f21ff1c 559 * inode and the mode. Return the allocation group buffer.
1da177e4 560 */
55d6af64 561STATIC xfs_agnumber_t
1da177e4
LT
562xfs_ialloc_ag_select(
563 xfs_trans_t *tp, /* transaction pointer */
564 xfs_ino_t parent, /* parent directory inode number */
576b1d67 565 umode_t mode, /* bits set to indicate file type */
1da177e4
LT
566 int okalloc) /* ok to allocate more space */
567{
1da177e4
LT
568 xfs_agnumber_t agcount; /* number of ag's in the filesystem */
569 xfs_agnumber_t agno; /* current ag number */
570 int flags; /* alloc buffer locking flags */
571 xfs_extlen_t ineed; /* blocks needed for inode allocation */
572 xfs_extlen_t longest = 0; /* longest extent available */
573 xfs_mount_t *mp; /* mount point structure */
574 int needspace; /* file mode implies space allocated */
575 xfs_perag_t *pag; /* per allocation group data */
576 xfs_agnumber_t pagno; /* parent (starting) ag number */
55d6af64 577 int error;
1da177e4
LT
578
579 /*
580 * Files of these types need at least one block if length > 0
581 * (and they won't fit in the inode, but that's hard to figure out).
582 */
583 needspace = S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode);
584 mp = tp->t_mountp;
585 agcount = mp->m_maxagi;
586 if (S_ISDIR(mode))
587 pagno = xfs_ialloc_next_ag(mp);
588 else {
589 pagno = XFS_INO_TO_AGNO(mp, parent);
590 if (pagno >= agcount)
591 pagno = 0;
592 }
55d6af64 593
1da177e4 594 ASSERT(pagno < agcount);
55d6af64 595
1da177e4
LT
596 /*
597 * Loop through allocation groups, looking for one with a little
598 * free space in it. Note we don't look for free inodes, exactly.
599 * Instead, we include whether there is a need to allocate inodes
600 * to mean that blocks must be allocated for them,
601 * if none are currently free.
602 */
603 agno = pagno;
604 flags = XFS_ALLOC_FLAG_TRYLOCK;
1da177e4 605 for (;;) {
44b56e0a 606 pag = xfs_perag_get(mp, agno);
55d6af64
CH
607 if (!pag->pagi_inodeok) {
608 xfs_ialloc_next_ag(mp);
609 goto nextag;
610 }
611
1da177e4 612 if (!pag->pagi_init) {
55d6af64
CH
613 error = xfs_ialloc_pagi_init(mp, tp, agno);
614 if (error)
1da177e4 615 goto nextag;
55d6af64 616 }
1da177e4 617
55d6af64
CH
618 if (pag->pagi_freecount) {
619 xfs_perag_put(pag);
620 return agno;
1da177e4
LT
621 }
622
55d6af64
CH
623 if (!okalloc)
624 goto nextag;
625
626 if (!pag->pagf_init) {
627 error = xfs_alloc_pagf_init(mp, tp, agno, flags);
628 if (error)
1da177e4 629 goto nextag;
1da177e4 630 }
55d6af64
CH
631
632 /*
7a1df156
DC
633 * Check that there is enough free space for the file plus a
634 * chunk of inodes if we need to allocate some. If this is the
635 * first pass across the AGs, take into account the potential
636 * space needed for alignment of inode chunks when checking the
637 * longest contiguous free space in the AG - this prevents us
638 * from getting ENOSPC because we have free space larger than
639 * m_ialloc_blks but alignment constraints prevent us from using
640 * it.
641 *
642 * If we can't find an AG with space for full alignment slack to
643 * be taken into account, we must be near ENOSPC in all AGs.
644 * Hence we don't include alignment for the second pass and so
645 * if we fail allocation due to alignment issues then it is most
646 * likely a real ENOSPC condition.
55d6af64 647 */
126cd105 648 ineed = mp->m_ialloc_blks;
7a1df156
DC
649 if (flags && ineed > 1)
650 ineed += xfs_ialloc_cluster_alignment(mp);
55d6af64
CH
651 longest = pag->pagf_longest;
652 if (!longest)
653 longest = pag->pagf_flcount > 0;
654
655 if (pag->pagf_freeblks >= needspace + ineed &&
656 longest >= ineed) {
657 xfs_perag_put(pag);
658 return agno;
1da177e4 659 }
1da177e4 660nextag:
44b56e0a 661 xfs_perag_put(pag);
1da177e4
LT
662 /*
663 * No point in iterating over the rest, if we're shutting
664 * down.
665 */
1c1c6ebc 666 if (XFS_FORCED_SHUTDOWN(mp))
55d6af64 667 return NULLAGNUMBER;
1da177e4
LT
668 agno++;
669 if (agno >= agcount)
670 agno = 0;
671 if (agno == pagno) {
1c1c6ebc 672 if (flags == 0)
55d6af64 673 return NULLAGNUMBER;
1da177e4
LT
674 flags = 0;
675 }
676 }
677}
678
4254b0bb
CH
679/*
680 * Try to retrieve the next record to the left/right from the current one.
681 */
682STATIC int
683xfs_ialloc_next_rec(
684 struct xfs_btree_cur *cur,
685 xfs_inobt_rec_incore_t *rec,
686 int *done,
687 int left)
688{
689 int error;
690 int i;
691
692 if (left)
693 error = xfs_btree_decrement(cur, 0, &i);
694 else
695 error = xfs_btree_increment(cur, 0, &i);
696
697 if (error)
698 return error;
699 *done = !i;
700 if (i) {
701 error = xfs_inobt_get_rec(cur, rec, &i);
702 if (error)
703 return error;
704 XFS_WANT_CORRUPTED_RETURN(i == 1);
705 }
706
707 return 0;
708}
709
bd169565
DC
710STATIC int
711xfs_ialloc_get_rec(
712 struct xfs_btree_cur *cur,
713 xfs_agino_t agino,
714 xfs_inobt_rec_incore_t *rec,
43df2ee6 715 int *done)
bd169565
DC
716{
717 int error;
718 int i;
719
720 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_EQ, &i);
721 if (error)
722 return error;
723 *done = !i;
724 if (i) {
725 error = xfs_inobt_get_rec(cur, rec, &i);
726 if (error)
727 return error;
728 XFS_WANT_CORRUPTED_RETURN(i == 1);
729 }
730
731 return 0;
732}
0b48db80 733
1da177e4 734/*
6dd8638e 735 * Allocate an inode using the inobt-only algorithm.
1da177e4 736 */
f2ecc5e4 737STATIC int
6dd8638e 738xfs_dialloc_ag_inobt(
f2ecc5e4
CH
739 struct xfs_trans *tp,
740 struct xfs_buf *agbp,
741 xfs_ino_t parent,
742 xfs_ino_t *inop)
1da177e4 743{
f2ecc5e4
CH
744 struct xfs_mount *mp = tp->t_mountp;
745 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
746 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
747 xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent);
748 xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent);
749 struct xfs_perag *pag;
750 struct xfs_btree_cur *cur, *tcur;
751 struct xfs_inobt_rec_incore rec, trec;
752 xfs_ino_t ino;
753 int error;
754 int offset;
755 int i, j;
1da177e4 756
44b56e0a 757 pag = xfs_perag_get(mp, agno);
bd169565 758
4bb61069
CH
759 ASSERT(pag->pagi_init);
760 ASSERT(pag->pagi_inodeok);
761 ASSERT(pag->pagi_freecount > 0);
762
bd169565 763 restart_pagno:
57bd3dbe 764 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
1da177e4
LT
765 /*
766 * If pagino is 0 (this is the root inode allocation) use newino.
767 * This must work because we've just allocated some.
768 */
769 if (!pagino)
16259e7d 770 pagino = be32_to_cpu(agi->agi_newino);
1da177e4 771
0b48db80
DC
772 error = xfs_check_agi_freecount(cur, agi);
773 if (error)
774 goto error0;
1da177e4 775
1da177e4 776 /*
4254b0bb 777 * If in the same AG as the parent, try to get near the parent.
1da177e4
LT
778 */
779 if (pagno == agno) {
4254b0bb
CH
780 int doneleft; /* done, to the left */
781 int doneright; /* done, to the right */
bd169565 782 int searchdistance = 10;
4254b0bb 783
21875505 784 error = xfs_inobt_lookup(cur, pagino, XFS_LOOKUP_LE, &i);
4254b0bb 785 if (error)
1da177e4 786 goto error0;
4254b0bb
CH
787 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
788
789 error = xfs_inobt_get_rec(cur, &rec, &j);
790 if (error)
791 goto error0;
b121099d 792 XFS_WANT_CORRUPTED_GOTO(j == 1, error0);
4254b0bb
CH
793
794 if (rec.ir_freecount > 0) {
1da177e4
LT
795 /*
796 * Found a free inode in the same chunk
4254b0bb 797 * as the parent, done.
1da177e4 798 */
4254b0bb 799 goto alloc_inode;
1da177e4 800 }
4254b0bb
CH
801
802
1da177e4 803 /*
4254b0bb 804 * In the same AG as parent, but parent's chunk is full.
1da177e4 805 */
1da177e4 806
4254b0bb
CH
807 /* duplicate the cursor, search left & right simultaneously */
808 error = xfs_btree_dup_cursor(cur, &tcur);
809 if (error)
810 goto error0;
811
bd169565
DC
812 /*
813 * Skip to last blocks looked up if same parent inode.
814 */
815 if (pagino != NULLAGINO &&
816 pag->pagl_pagino == pagino &&
817 pag->pagl_leftrec != NULLAGINO &&
818 pag->pagl_rightrec != NULLAGINO) {
819 error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec,
43df2ee6 820 &trec, &doneleft);
bd169565
DC
821 if (error)
822 goto error1;
4254b0bb 823
bd169565 824 error = xfs_ialloc_get_rec(cur, pag->pagl_rightrec,
43df2ee6 825 &rec, &doneright);
bd169565
DC
826 if (error)
827 goto error1;
828 } else {
829 /* search left with tcur, back up 1 record */
830 error = xfs_ialloc_next_rec(tcur, &trec, &doneleft, 1);
831 if (error)
832 goto error1;
833
834 /* search right with cur, go forward 1 record. */
835 error = xfs_ialloc_next_rec(cur, &rec, &doneright, 0);
836 if (error)
837 goto error1;
838 }
4254b0bb
CH
839
840 /*
841 * Loop until we find an inode chunk with a free inode.
842 */
843 while (!doneleft || !doneright) {
844 int useleft; /* using left inode chunk this time */
845
bd169565
DC
846 if (!--searchdistance) {
847 /*
848 * Not in range - save last search
849 * location and allocate a new inode
850 */
3b826386 851 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
bd169565
DC
852 pag->pagl_leftrec = trec.ir_startino;
853 pag->pagl_rightrec = rec.ir_startino;
854 pag->pagl_pagino = pagino;
855 goto newino;
856 }
857
4254b0bb
CH
858 /* figure out the closer block if both are valid. */
859 if (!doneleft && !doneright) {
860 useleft = pagino -
861 (trec.ir_startino + XFS_INODES_PER_CHUNK - 1) <
862 rec.ir_startino - pagino;
863 } else {
864 useleft = !doneleft;
1da177e4 865 }
4254b0bb
CH
866
867 /* free inodes to the left? */
868 if (useleft && trec.ir_freecount) {
869 rec = trec;
870 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
871 cur = tcur;
bd169565
DC
872
873 pag->pagl_leftrec = trec.ir_startino;
874 pag->pagl_rightrec = rec.ir_startino;
875 pag->pagl_pagino = pagino;
4254b0bb 876 goto alloc_inode;
1da177e4 877 }
1da177e4 878
4254b0bb
CH
879 /* free inodes to the right? */
880 if (!useleft && rec.ir_freecount) {
881 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
bd169565
DC
882
883 pag->pagl_leftrec = trec.ir_startino;
884 pag->pagl_rightrec = rec.ir_startino;
885 pag->pagl_pagino = pagino;
4254b0bb 886 goto alloc_inode;
1da177e4 887 }
4254b0bb
CH
888
889 /* get next record to check */
890 if (useleft) {
891 error = xfs_ialloc_next_rec(tcur, &trec,
892 &doneleft, 1);
893 } else {
894 error = xfs_ialloc_next_rec(cur, &rec,
895 &doneright, 0);
896 }
897 if (error)
898 goto error1;
1da177e4 899 }
bd169565
DC
900
901 /*
902 * We've reached the end of the btree. because
903 * we are only searching a small chunk of the
904 * btree each search, there is obviously free
905 * inodes closer to the parent inode than we
906 * are now. restart the search again.
907 */
908 pag->pagl_pagino = NULLAGINO;
909 pag->pagl_leftrec = NULLAGINO;
910 pag->pagl_rightrec = NULLAGINO;
911 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
912 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
913 goto restart_pagno;
1da177e4 914 }
4254b0bb 915
1da177e4 916 /*
4254b0bb 917 * In a different AG from the parent.
1da177e4
LT
918 * See if the most recently allocated block has any free.
919 */
bd169565 920newino:
69ef921b 921 if (agi->agi_newino != cpu_to_be32(NULLAGINO)) {
21875505
CH
922 error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino),
923 XFS_LOOKUP_EQ, &i);
4254b0bb 924 if (error)
1da177e4 925 goto error0;
4254b0bb
CH
926
927 if (i == 1) {
928 error = xfs_inobt_get_rec(cur, &rec, &j);
929 if (error)
930 goto error0;
931
932 if (j == 1 && rec.ir_freecount > 0) {
933 /*
934 * The last chunk allocated in the group
935 * still has a free inode.
936 */
937 goto alloc_inode;
938 }
1da177e4 939 }
bd169565 940 }
4254b0bb 941
bd169565
DC
942 /*
943 * None left in the last group, search the whole AG
944 */
945 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
946 if (error)
947 goto error0;
948 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
949
950 for (;;) {
951 error = xfs_inobt_get_rec(cur, &rec, &i);
952 if (error)
953 goto error0;
954 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
955 if (rec.ir_freecount > 0)
956 break;
957 error = xfs_btree_increment(cur, 0, &i);
4254b0bb
CH
958 if (error)
959 goto error0;
960 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1da177e4 961 }
4254b0bb
CH
962
963alloc_inode:
824c3131 964 offset = xfs_lowbit64(rec.ir_free);
1da177e4
LT
965 ASSERT(offset >= 0);
966 ASSERT(offset < XFS_INODES_PER_CHUNK);
967 ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) %
968 XFS_INODES_PER_CHUNK) == 0);
969 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
0d87e656 970 rec.ir_free &= ~XFS_INOBT_MASK(offset);
1da177e4 971 rec.ir_freecount--;
afabc24a
CH
972 error = xfs_inobt_update(cur, &rec);
973 if (error)
1da177e4 974 goto error0;
413d57c9 975 be32_add_cpu(&agi->agi_freecount, -1);
1da177e4 976 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
44b56e0a 977 pag->pagi_freecount--;
1da177e4 978
0b48db80
DC
979 error = xfs_check_agi_freecount(cur, agi);
980 if (error)
981 goto error0;
982
1da177e4
LT
983 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
984 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1);
44b56e0a 985 xfs_perag_put(pag);
1da177e4
LT
986 *inop = ino;
987 return 0;
988error1:
989 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
990error0:
991 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
44b56e0a 992 xfs_perag_put(pag);
1da177e4
LT
993 return error;
994}
995
6dd8638e
BF
996/*
997 * Use the free inode btree to allocate an inode based on distance from the
998 * parent. Note that the provided cursor may be deleted and replaced.
999 */
1000STATIC int
1001xfs_dialloc_ag_finobt_near(
1002 xfs_agino_t pagino,
1003 struct xfs_btree_cur **ocur,
1004 struct xfs_inobt_rec_incore *rec)
1005{
1006 struct xfs_btree_cur *lcur = *ocur; /* left search cursor */
1007 struct xfs_btree_cur *rcur; /* right search cursor */
1008 struct xfs_inobt_rec_incore rrec;
1009 int error;
1010 int i, j;
1011
1012 error = xfs_inobt_lookup(lcur, pagino, XFS_LOOKUP_LE, &i);
1013 if (error)
1014 return error;
1015
1016 if (i == 1) {
1017 error = xfs_inobt_get_rec(lcur, rec, &i);
1018 if (error)
1019 return error;
1020 XFS_WANT_CORRUPTED_RETURN(i == 1);
1021
1022 /*
1023 * See if we've landed in the parent inode record. The finobt
1024 * only tracks chunks with at least one free inode, so record
1025 * existence is enough.
1026 */
1027 if (pagino >= rec->ir_startino &&
1028 pagino < (rec->ir_startino + XFS_INODES_PER_CHUNK))
1029 return 0;
1030 }
1031
1032 error = xfs_btree_dup_cursor(lcur, &rcur);
1033 if (error)
1034 return error;
1035
1036 error = xfs_inobt_lookup(rcur, pagino, XFS_LOOKUP_GE, &j);
1037 if (error)
1038 goto error_rcur;
1039 if (j == 1) {
1040 error = xfs_inobt_get_rec(rcur, &rrec, &j);
1041 if (error)
1042 goto error_rcur;
1043 XFS_WANT_CORRUPTED_GOTO(j == 1, error_rcur);
1044 }
1045
1046 XFS_WANT_CORRUPTED_GOTO(i == 1 || j == 1, error_rcur);
1047 if (i == 1 && j == 1) {
1048 /*
1049 * Both the left and right records are valid. Choose the closer
1050 * inode chunk to the target.
1051 */
1052 if ((pagino - rec->ir_startino + XFS_INODES_PER_CHUNK - 1) >
1053 (rrec.ir_startino - pagino)) {
1054 *rec = rrec;
1055 xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR);
1056 *ocur = rcur;
1057 } else {
1058 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1059 }
1060 } else if (j == 1) {
1061 /* only the right record is valid */
1062 *rec = rrec;
1063 xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR);
1064 *ocur = rcur;
1065 } else if (i == 1) {
1066 /* only the left record is valid */
1067 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1068 }
1069
1070 return 0;
1071
1072error_rcur:
1073 xfs_btree_del_cursor(rcur, XFS_BTREE_ERROR);
1074 return error;
1075}
1076
1077/*
1078 * Use the free inode btree to find a free inode based on a newino hint. If
1079 * the hint is NULL, find the first free inode in the AG.
1080 */
1081STATIC int
1082xfs_dialloc_ag_finobt_newino(
1083 struct xfs_agi *agi,
1084 struct xfs_btree_cur *cur,
1085 struct xfs_inobt_rec_incore *rec)
1086{
1087 int error;
1088 int i;
1089
1090 if (agi->agi_newino != cpu_to_be32(NULLAGINO)) {
e68ed775
DC
1091 error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino),
1092 XFS_LOOKUP_EQ, &i);
6dd8638e
BF
1093 if (error)
1094 return error;
1095 if (i == 1) {
1096 error = xfs_inobt_get_rec(cur, rec, &i);
1097 if (error)
1098 return error;
1099 XFS_WANT_CORRUPTED_RETURN(i == 1);
6dd8638e
BF
1100 return 0;
1101 }
1102 }
1103
1104 /*
1105 * Find the first inode available in the AG.
1106 */
1107 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
1108 if (error)
1109 return error;
1110 XFS_WANT_CORRUPTED_RETURN(i == 1);
1111
1112 error = xfs_inobt_get_rec(cur, rec, &i);
1113 if (error)
1114 return error;
1115 XFS_WANT_CORRUPTED_RETURN(i == 1);
1116
1117 return 0;
1118}
1119
1120/*
1121 * Update the inobt based on a modification made to the finobt. Also ensure that
1122 * the records from both trees are equivalent post-modification.
1123 */
1124STATIC int
1125xfs_dialloc_ag_update_inobt(
1126 struct xfs_btree_cur *cur, /* inobt cursor */
1127 struct xfs_inobt_rec_incore *frec, /* finobt record */
1128 int offset) /* inode offset */
1129{
1130 struct xfs_inobt_rec_incore rec;
1131 int error;
1132 int i;
1133
1134 error = xfs_inobt_lookup(cur, frec->ir_startino, XFS_LOOKUP_EQ, &i);
1135 if (error)
1136 return error;
1137 XFS_WANT_CORRUPTED_RETURN(i == 1);
1138
1139 error = xfs_inobt_get_rec(cur, &rec, &i);
1140 if (error)
1141 return error;
1142 XFS_WANT_CORRUPTED_RETURN(i == 1);
1143 ASSERT((XFS_AGINO_TO_OFFSET(cur->bc_mp, rec.ir_startino) %
1144 XFS_INODES_PER_CHUNK) == 0);
1145
1146 rec.ir_free &= ~XFS_INOBT_MASK(offset);
1147 rec.ir_freecount--;
1148
1149 XFS_WANT_CORRUPTED_RETURN((rec.ir_free == frec->ir_free) &&
1150 (rec.ir_freecount == frec->ir_freecount));
1151
b72091f2 1152 return xfs_inobt_update(cur, &rec);
6dd8638e
BF
1153}
1154
1155/*
1156 * Allocate an inode using the free inode btree, if available. Otherwise, fall
1157 * back to the inobt search algorithm.
1158 *
1159 * The caller selected an AG for us, and made sure that free inodes are
1160 * available.
1161 */
1162STATIC int
1163xfs_dialloc_ag(
1164 struct xfs_trans *tp,
1165 struct xfs_buf *agbp,
1166 xfs_ino_t parent,
1167 xfs_ino_t *inop)
1168{
1169 struct xfs_mount *mp = tp->t_mountp;
1170 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1171 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1172 xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent);
1173 xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent);
1174 struct xfs_perag *pag;
1175 struct xfs_btree_cur *cur; /* finobt cursor */
1176 struct xfs_btree_cur *icur; /* inobt cursor */
1177 struct xfs_inobt_rec_incore rec;
1178 xfs_ino_t ino;
1179 int error;
1180 int offset;
1181 int i;
1182
1183 if (!xfs_sb_version_hasfinobt(&mp->m_sb))
1184 return xfs_dialloc_ag_inobt(tp, agbp, parent, inop);
1185
1186 pag = xfs_perag_get(mp, agno);
1187
1188 /*
1189 * If pagino is 0 (this is the root inode allocation) use newino.
1190 * This must work because we've just allocated some.
1191 */
1192 if (!pagino)
1193 pagino = be32_to_cpu(agi->agi_newino);
1194
1195 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO);
1196
1197 error = xfs_check_agi_freecount(cur, agi);
1198 if (error)
1199 goto error_cur;
1200
1201 /*
1202 * The search algorithm depends on whether we're in the same AG as the
1203 * parent. If so, find the closest available inode to the parent. If
1204 * not, consider the agi hint or find the first free inode in the AG.
1205 */
1206 if (agno == pagno)
1207 error = xfs_dialloc_ag_finobt_near(pagino, &cur, &rec);
1208 else
1209 error = xfs_dialloc_ag_finobt_newino(agi, cur, &rec);
1210 if (error)
1211 goto error_cur;
1212
1213 offset = xfs_lowbit64(rec.ir_free);
1214 ASSERT(offset >= 0);
1215 ASSERT(offset < XFS_INODES_PER_CHUNK);
1216 ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) %
1217 XFS_INODES_PER_CHUNK) == 0);
1218 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
1219
1220 /*
1221 * Modify or remove the finobt record.
1222 */
1223 rec.ir_free &= ~XFS_INOBT_MASK(offset);
1224 rec.ir_freecount--;
1225 if (rec.ir_freecount)
1226 error = xfs_inobt_update(cur, &rec);
1227 else
1228 error = xfs_btree_delete(cur, &i);
1229 if (error)
1230 goto error_cur;
1231
1232 /*
1233 * The finobt has now been updated appropriately. We haven't updated the
1234 * agi and superblock yet, so we can create an inobt cursor and validate
1235 * the original freecount. If all is well, make the equivalent update to
1236 * the inobt using the finobt record and offset information.
1237 */
1238 icur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
1239
1240 error = xfs_check_agi_freecount(icur, agi);
1241 if (error)
1242 goto error_icur;
1243
1244 error = xfs_dialloc_ag_update_inobt(icur, &rec, offset);
1245 if (error)
1246 goto error_icur;
1247
1248 /*
1249 * Both trees have now been updated. We must update the perag and
1250 * superblock before we can check the freecount for each btree.
1251 */
1252 be32_add_cpu(&agi->agi_freecount, -1);
1253 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
1254 pag->pagi_freecount--;
1255
1256 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1);
1257
1258 error = xfs_check_agi_freecount(icur, agi);
1259 if (error)
1260 goto error_icur;
1261 error = xfs_check_agi_freecount(cur, agi);
1262 if (error)
1263 goto error_icur;
1264
1265 xfs_btree_del_cursor(icur, XFS_BTREE_NOERROR);
1266 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1267 xfs_perag_put(pag);
1268 *inop = ino;
1269 return 0;
1270
1271error_icur:
1272 xfs_btree_del_cursor(icur, XFS_BTREE_ERROR);
1273error_cur:
1274 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1275 xfs_perag_put(pag);
1276 return error;
1277}
1278
f2ecc5e4
CH
1279/*
1280 * Allocate an inode on disk.
1281 *
1282 * Mode is used to tell whether the new inode will need space, and whether it
1283 * is a directory.
1284 *
1285 * This function is designed to be called twice if it has to do an allocation
1286 * to make more free inodes. On the first call, *IO_agbp should be set to NULL.
1287 * If an inode is available without having to performn an allocation, an inode
cd856db6
CM
1288 * number is returned. In this case, *IO_agbp is set to NULL. If an allocation
1289 * needs to be done, xfs_dialloc returns the current AGI buffer in *IO_agbp.
1290 * The caller should then commit the current transaction, allocate a
f2ecc5e4
CH
1291 * new transaction, and call xfs_dialloc() again, passing in the previous value
1292 * of *IO_agbp. IO_agbp should be held across the transactions. Since the AGI
1293 * buffer is locked across the two calls, the second call is guaranteed to have
1294 * a free inode available.
1295 *
1296 * Once we successfully pick an inode its number is returned and the on-disk
1297 * data structures are updated. The inode itself is not read in, since doing so
1298 * would break ordering constraints with xfs_reclaim.
1299 */
1300int
1301xfs_dialloc(
1302 struct xfs_trans *tp,
1303 xfs_ino_t parent,
1304 umode_t mode,
1305 int okalloc,
1306 struct xfs_buf **IO_agbp,
f2ecc5e4
CH
1307 xfs_ino_t *inop)
1308{
55d6af64 1309 struct xfs_mount *mp = tp->t_mountp;
f2ecc5e4
CH
1310 struct xfs_buf *agbp;
1311 xfs_agnumber_t agno;
f2ecc5e4
CH
1312 int error;
1313 int ialloced;
1314 int noroom = 0;
be60fe54 1315 xfs_agnumber_t start_agno;
f2ecc5e4
CH
1316 struct xfs_perag *pag;
1317
4bb61069 1318 if (*IO_agbp) {
f2ecc5e4 1319 /*
4bb61069
CH
1320 * If the caller passes in a pointer to the AGI buffer,
1321 * continue where we left off before. In this case, we
f2ecc5e4
CH
1322 * know that the allocation group has free inodes.
1323 */
1324 agbp = *IO_agbp;
4bb61069 1325 goto out_alloc;
f2ecc5e4 1326 }
4bb61069
CH
1327
1328 /*
1329 * We do not have an agbp, so select an initial allocation
1330 * group for inode allocation.
1331 */
be60fe54
CH
1332 start_agno = xfs_ialloc_ag_select(tp, parent, mode, okalloc);
1333 if (start_agno == NULLAGNUMBER) {
4bb61069
CH
1334 *inop = NULLFSINO;
1335 return 0;
1336 }
55d6af64 1337
f2ecc5e4
CH
1338 /*
1339 * If we have already hit the ceiling of inode blocks then clear
1340 * okalloc so we scan all available agi structures for a free
1341 * inode.
1342 */
f2ecc5e4 1343 if (mp->m_maxicount &&
501ab323
DC
1344 percpu_counter_read(&mp->m_icount) + mp->m_ialloc_inos >
1345 mp->m_maxicount) {
f2ecc5e4
CH
1346 noroom = 1;
1347 okalloc = 0;
1348 }
1349
1350 /*
1351 * Loop until we find an allocation group that either has free inodes
1352 * or in which we can allocate some inodes. Iterate through the
1353 * allocation groups upward, wrapping at the end.
1354 */
be60fe54
CH
1355 agno = start_agno;
1356 for (;;) {
1357 pag = xfs_perag_get(mp, agno);
1358 if (!pag->pagi_inodeok) {
1359 xfs_ialloc_next_ag(mp);
1360 goto nextag;
1361 }
1362
1363 if (!pag->pagi_init) {
1364 error = xfs_ialloc_pagi_init(mp, tp, agno);
1365 if (error)
1366 goto out_error;
f2ecc5e4 1367 }
be60fe54 1368
f2ecc5e4 1369 /*
be60fe54 1370 * Do a first racy fast path check if this AG is usable.
f2ecc5e4 1371 */
be60fe54
CH
1372 if (!pag->pagi_freecount && !okalloc)
1373 goto nextag;
1374
c4982110
CH
1375 /*
1376 * Then read in the AGI buffer and recheck with the AGI buffer
1377 * lock held.
1378 */
be60fe54
CH
1379 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1380 if (error)
1381 goto out_error;
1382
be60fe54
CH
1383 if (pag->pagi_freecount) {
1384 xfs_perag_put(pag);
1385 goto out_alloc;
1386 }
1387
c4982110
CH
1388 if (!okalloc)
1389 goto nextag_relse_buffer;
1390
be60fe54
CH
1391
1392 error = xfs_ialloc_ag_alloc(tp, agbp, &ialloced);
1393 if (error) {
1394 xfs_trans_brelse(tp, agbp);
1395
2451337d 1396 if (error != -ENOSPC)
be60fe54
CH
1397 goto out_error;
1398
1399 xfs_perag_put(pag);
f2ecc5e4 1400 *inop = NULLFSINO;
be60fe54 1401 return 0;
f2ecc5e4 1402 }
be60fe54
CH
1403
1404 if (ialloced) {
1405 /*
1406 * We successfully allocated some inodes, return
1407 * the current context to the caller so that it
1408 * can commit the current transaction and call
1409 * us again where we left off.
1410 */
1411 ASSERT(pag->pagi_freecount > 0);
f2ecc5e4 1412 xfs_perag_put(pag);
be60fe54
CH
1413
1414 *IO_agbp = agbp;
1415 *inop = NULLFSINO;
1416 return 0;
f2ecc5e4 1417 }
be60fe54 1418
c4982110
CH
1419nextag_relse_buffer:
1420 xfs_trans_brelse(tp, agbp);
be60fe54 1421nextag:
f2ecc5e4 1422 xfs_perag_put(pag);
be60fe54
CH
1423 if (++agno == mp->m_sb.sb_agcount)
1424 agno = 0;
1425 if (agno == start_agno) {
1426 *inop = NULLFSINO;
2451337d 1427 return noroom ? -ENOSPC : 0;
be60fe54 1428 }
f2ecc5e4
CH
1429 }
1430
4bb61069 1431out_alloc:
f2ecc5e4
CH
1432 *IO_agbp = NULL;
1433 return xfs_dialloc_ag(tp, agbp, parent, inop);
be60fe54
CH
1434out_error:
1435 xfs_perag_put(pag);
b474c7ae 1436 return error;
f2ecc5e4
CH
1437}
1438
2b64ee5c
BF
1439STATIC int
1440xfs_difree_inobt(
1441 struct xfs_mount *mp,
1442 struct xfs_trans *tp,
1443 struct xfs_buf *agbp,
1444 xfs_agino_t agino,
1445 struct xfs_bmap_free *flist,
0d907a3b 1446 int *deleted,
2b64ee5c
BF
1447 xfs_ino_t *first_ino,
1448 struct xfs_inobt_rec_incore *orec)
1da177e4 1449{
2b64ee5c
BF
1450 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1451 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1452 struct xfs_perag *pag;
1453 struct xfs_btree_cur *cur;
1454 struct xfs_inobt_rec_incore rec;
1455 int ilen;
1456 int error;
1457 int i;
1458 int off;
1da177e4 1459
69ef921b 1460 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
2b64ee5c
BF
1461 ASSERT(XFS_AGINO_TO_AGBNO(mp, agino) < be32_to_cpu(agi->agi_length));
1462
1da177e4
LT
1463 /*
1464 * Initialize the cursor.
1465 */
57bd3dbe 1466 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
1da177e4 1467
0b48db80
DC
1468 error = xfs_check_agi_freecount(cur, agi);
1469 if (error)
1470 goto error0;
1471
1da177e4
LT
1472 /*
1473 * Look for the entry describing this inode.
1474 */
21875505 1475 if ((error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i))) {
0b932ccc
DC
1476 xfs_warn(mp, "%s: xfs_inobt_lookup() returned error %d.",
1477 __func__, error);
1da177e4
LT
1478 goto error0;
1479 }
1480 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
2e287a73
CH
1481 error = xfs_inobt_get_rec(cur, &rec, &i);
1482 if (error) {
0b932ccc
DC
1483 xfs_warn(mp, "%s: xfs_inobt_get_rec() returned error %d.",
1484 __func__, error);
1da177e4
LT
1485 goto error0;
1486 }
1487 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1488 /*
1489 * Get the offset in the inode chunk.
1490 */
1491 off = agino - rec.ir_startino;
1492 ASSERT(off >= 0 && off < XFS_INODES_PER_CHUNK);
0d87e656 1493 ASSERT(!(rec.ir_free & XFS_INOBT_MASK(off)));
1da177e4
LT
1494 /*
1495 * Mark the inode free & increment the count.
1496 */
0d87e656 1497 rec.ir_free |= XFS_INOBT_MASK(off);
1da177e4
LT
1498 rec.ir_freecount++;
1499
1500 /*
c41564b5 1501 * When an inode cluster is free, it becomes eligible for removal
1da177e4 1502 */
1bd960ee 1503 if (!(mp->m_flags & XFS_MOUNT_IKEEP) &&
71783438 1504 (rec.ir_freecount == mp->m_ialloc_inos)) {
1da177e4 1505
376c2f3a 1506 *deleted = 1;
1da177e4
LT
1507 *first_ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino);
1508
1509 /*
1510 * Remove the inode cluster from the AGI B+Tree, adjust the
1511 * AGI and Superblock inode counts, and mark the disk space
1512 * to be freed when the transaction is committed.
1513 */
71783438 1514 ilen = mp->m_ialloc_inos;
413d57c9
MS
1515 be32_add_cpu(&agi->agi_count, -ilen);
1516 be32_add_cpu(&agi->agi_freecount, -(ilen - 1));
1da177e4 1517 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT);
44b56e0a
DC
1518 pag = xfs_perag_get(mp, agno);
1519 pag->pagi_freecount -= ilen - 1;
1520 xfs_perag_put(pag);
1da177e4
LT
1521 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen);
1522 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1));
1523
91cca5df 1524 if ((error = xfs_btree_delete(cur, &i))) {
0b932ccc
DC
1525 xfs_warn(mp, "%s: xfs_btree_delete returned error %d.",
1526 __func__, error);
1da177e4
LT
1527 goto error0;
1528 }
1529
126cd105
JL
1530 xfs_bmap_add_free(XFS_AGB_TO_FSB(mp, agno,
1531 XFS_AGINO_TO_AGBNO(mp, rec.ir_startino)),
1532 mp->m_ialloc_blks, flist, mp);
1da177e4 1533 } else {
376c2f3a 1534 *deleted = 0;
1da177e4 1535
afabc24a
CH
1536 error = xfs_inobt_update(cur, &rec);
1537 if (error) {
0b932ccc
DC
1538 xfs_warn(mp, "%s: xfs_inobt_update returned error %d.",
1539 __func__, error);
1da177e4
LT
1540 goto error0;
1541 }
afabc24a 1542
1da177e4
LT
1543 /*
1544 * Change the inode free counts and log the ag/sb changes.
1545 */
413d57c9 1546 be32_add_cpu(&agi->agi_freecount, 1);
1da177e4 1547 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
44b56e0a
DC
1548 pag = xfs_perag_get(mp, agno);
1549 pag->pagi_freecount++;
1550 xfs_perag_put(pag);
1da177e4
LT
1551 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1);
1552 }
1553
0b48db80
DC
1554 error = xfs_check_agi_freecount(cur, agi);
1555 if (error)
1556 goto error0;
1da177e4 1557
2b64ee5c 1558 *orec = rec;
1da177e4
LT
1559 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1560 return 0;
1561
1562error0:
1563 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1564 return error;
1565}
1566
3efa4ffd
BF
1567/*
1568 * Free an inode in the free inode btree.
1569 */
1570STATIC int
1571xfs_difree_finobt(
1572 struct xfs_mount *mp,
1573 struct xfs_trans *tp,
1574 struct xfs_buf *agbp,
1575 xfs_agino_t agino,
1576 struct xfs_inobt_rec_incore *ibtrec) /* inobt record */
1577{
1578 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1579 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1580 struct xfs_btree_cur *cur;
1581 struct xfs_inobt_rec_incore rec;
1582 int offset = agino - ibtrec->ir_startino;
1583 int error;
1584 int i;
1585
1586 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO);
1587
1588 error = xfs_inobt_lookup(cur, ibtrec->ir_startino, XFS_LOOKUP_EQ, &i);
1589 if (error)
1590 goto error;
1591 if (i == 0) {
1592 /*
1593 * If the record does not exist in the finobt, we must have just
1594 * freed an inode in a previously fully allocated chunk. If not,
1595 * something is out of sync.
1596 */
1597 XFS_WANT_CORRUPTED_GOTO(ibtrec->ir_freecount == 1, error);
1598
1599 error = xfs_inobt_insert_rec(cur, ibtrec->ir_freecount,
1600 ibtrec->ir_free, &i);
1601 if (error)
1602 goto error;
1603 ASSERT(i == 1);
1604
1605 goto out;
1606 }
1607
1608 /*
1609 * Read and update the existing record. We could just copy the ibtrec
1610 * across here, but that would defeat the purpose of having redundant
1611 * metadata. By making the modifications independently, we can catch
1612 * corruptions that we wouldn't see if we just copied from one record
1613 * to another.
1614 */
1615 error = xfs_inobt_get_rec(cur, &rec, &i);
1616 if (error)
1617 goto error;
1618 XFS_WANT_CORRUPTED_GOTO(i == 1, error);
1619
1620 rec.ir_free |= XFS_INOBT_MASK(offset);
1621 rec.ir_freecount++;
1622
1623 XFS_WANT_CORRUPTED_GOTO((rec.ir_free == ibtrec->ir_free) &&
1624 (rec.ir_freecount == ibtrec->ir_freecount),
1625 error);
1626
1627 /*
1628 * The content of inobt records should always match between the inobt
1629 * and finobt. The lifecycle of records in the finobt is different from
1630 * the inobt in that the finobt only tracks records with at least one
1631 * free inode. Hence, if all of the inodes are free and we aren't
1632 * keeping inode chunks permanently on disk, remove the record.
1633 * Otherwise, update the record with the new information.
1634 */
1635 if (rec.ir_freecount == mp->m_ialloc_inos &&
1636 !(mp->m_flags & XFS_MOUNT_IKEEP)) {
1637 error = xfs_btree_delete(cur, &i);
1638 if (error)
1639 goto error;
1640 ASSERT(i == 1);
1641 } else {
1642 error = xfs_inobt_update(cur, &rec);
1643 if (error)
1644 goto error;
1645 }
1646
1647out:
1648 error = xfs_check_agi_freecount(cur, agi);
1649 if (error)
1650 goto error;
1651
1652 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1653 return 0;
1654
1655error:
1656 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1657 return error;
1658}
1659
2b64ee5c
BF
1660/*
1661 * Free disk inode. Carefully avoids touching the incore inode, all
1662 * manipulations incore are the caller's responsibility.
1663 * The on-disk inode is not changed by this operation, only the
1664 * btree (free inode mask) is changed.
1665 */
1666int
1667xfs_difree(
1668 struct xfs_trans *tp, /* transaction pointer */
1669 xfs_ino_t inode, /* inode to be freed */
1670 struct xfs_bmap_free *flist, /* extents to free */
0d907a3b 1671 int *deleted,/* set if inode cluster was deleted */
2b64ee5c
BF
1672 xfs_ino_t *first_ino)/* first inode in deleted cluster */
1673{
1674 /* REFERENCED */
1675 xfs_agblock_t agbno; /* block number containing inode */
1676 struct xfs_buf *agbp; /* buffer for allocation group header */
1677 xfs_agino_t agino; /* allocation group inode number */
1678 xfs_agnumber_t agno; /* allocation group number */
1679 int error; /* error return value */
1680 struct xfs_mount *mp; /* mount structure for filesystem */
1681 struct xfs_inobt_rec_incore rec;/* btree record */
1682
1683 mp = tp->t_mountp;
1684
1685 /*
1686 * Break up inode number into its components.
1687 */
1688 agno = XFS_INO_TO_AGNO(mp, inode);
1689 if (agno >= mp->m_sb.sb_agcount) {
1690 xfs_warn(mp, "%s: agno >= mp->m_sb.sb_agcount (%d >= %d).",
1691 __func__, agno, mp->m_sb.sb_agcount);
1692 ASSERT(0);
2451337d 1693 return -EINVAL;
2b64ee5c
BF
1694 }
1695 agino = XFS_INO_TO_AGINO(mp, inode);
1696 if (inode != XFS_AGINO_TO_INO(mp, agno, agino)) {
1697 xfs_warn(mp, "%s: inode != XFS_AGINO_TO_INO() (%llu != %llu).",
1698 __func__, (unsigned long long)inode,
1699 (unsigned long long)XFS_AGINO_TO_INO(mp, agno, agino));
1700 ASSERT(0);
2451337d 1701 return -EINVAL;
2b64ee5c
BF
1702 }
1703 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1704 if (agbno >= mp->m_sb.sb_agblocks) {
1705 xfs_warn(mp, "%s: agbno >= mp->m_sb.sb_agblocks (%d >= %d).",
1706 __func__, agbno, mp->m_sb.sb_agblocks);
1707 ASSERT(0);
2451337d 1708 return -EINVAL;
2b64ee5c
BF
1709 }
1710 /*
1711 * Get the allocation group header.
1712 */
1713 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1714 if (error) {
1715 xfs_warn(mp, "%s: xfs_ialloc_read_agi() returned error %d.",
1716 __func__, error);
1717 return error;
1718 }
1719
1720 /*
1721 * Fix up the inode allocation btree.
1722 */
0d907a3b 1723 error = xfs_difree_inobt(mp, tp, agbp, agino, flist, deleted, first_ino,
2b64ee5c
BF
1724 &rec);
1725 if (error)
1726 goto error0;
1727
3efa4ffd
BF
1728 /*
1729 * Fix up the free inode btree.
1730 */
1731 if (xfs_sb_version_hasfinobt(&mp->m_sb)) {
1732 error = xfs_difree_finobt(mp, tp, agbp, agino, &rec);
1733 if (error)
1734 goto error0;
1735 }
1736
2b64ee5c
BF
1737 return 0;
1738
1739error0:
1740 return error;
1741}
1742
7124fe0a
DC
1743STATIC int
1744xfs_imap_lookup(
1745 struct xfs_mount *mp,
1746 struct xfs_trans *tp,
1747 xfs_agnumber_t agno,
1748 xfs_agino_t agino,
1749 xfs_agblock_t agbno,
1750 xfs_agblock_t *chunk_agbno,
1751 xfs_agblock_t *offset_agbno,
1752 int flags)
1753{
1754 struct xfs_inobt_rec_incore rec;
1755 struct xfs_btree_cur *cur;
1756 struct xfs_buf *agbp;
7124fe0a
DC
1757 int error;
1758 int i;
1759
1760 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1761 if (error) {
53487786
DC
1762 xfs_alert(mp,
1763 "%s: xfs_ialloc_read_agi() returned error %d, agno %d",
1764 __func__, error, agno);
7124fe0a
DC
1765 return error;
1766 }
1767
1768 /*
4536f2ad
DC
1769 * Lookup the inode record for the given agino. If the record cannot be
1770 * found, then it's an invalid inode number and we should abort. Once
1771 * we have a record, we need to ensure it contains the inode number
1772 * we are looking up.
7124fe0a 1773 */
57bd3dbe 1774 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
4536f2ad 1775 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i);
7124fe0a
DC
1776 if (!error) {
1777 if (i)
1778 error = xfs_inobt_get_rec(cur, &rec, &i);
1779 if (!error && i == 0)
2451337d 1780 error = -EINVAL;
7124fe0a
DC
1781 }
1782
1783 xfs_trans_brelse(tp, agbp);
1784 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1785 if (error)
1786 return error;
1787
4536f2ad
DC
1788 /* check that the returned record contains the required inode */
1789 if (rec.ir_startino > agino ||
71783438 1790 rec.ir_startino + mp->m_ialloc_inos <= agino)
2451337d 1791 return -EINVAL;
4536f2ad 1792
7124fe0a 1793 /* for untrusted inodes check it is allocated first */
1920779e 1794 if ((flags & XFS_IGET_UNTRUSTED) &&
7124fe0a 1795 (rec.ir_free & XFS_INOBT_MASK(agino - rec.ir_startino)))
2451337d 1796 return -EINVAL;
7124fe0a
DC
1797
1798 *chunk_agbno = XFS_AGINO_TO_AGBNO(mp, rec.ir_startino);
1799 *offset_agbno = agbno - *chunk_agbno;
1800 return 0;
1801}
1802
1da177e4 1803/*
94e1b69d 1804 * Return the location of the inode in imap, for mapping it into a buffer.
1da177e4 1805 */
1da177e4 1806int
94e1b69d
CH
1807xfs_imap(
1808 xfs_mount_t *mp, /* file system mount structure */
1809 xfs_trans_t *tp, /* transaction pointer */
1da177e4 1810 xfs_ino_t ino, /* inode to locate */
94e1b69d
CH
1811 struct xfs_imap *imap, /* location map structure */
1812 uint flags) /* flags for inode btree lookup */
1da177e4
LT
1813{
1814 xfs_agblock_t agbno; /* block number of inode in the alloc group */
1da177e4
LT
1815 xfs_agino_t agino; /* inode number within alloc group */
1816 xfs_agnumber_t agno; /* allocation group number */
1817 int blks_per_cluster; /* num blocks per inode cluster */
1818 xfs_agblock_t chunk_agbno; /* first block in inode chunk */
1da177e4 1819 xfs_agblock_t cluster_agbno; /* first block in inode cluster */
1da177e4 1820 int error; /* error code */
1da177e4 1821 int offset; /* index of inode in its buffer */
836a94ad 1822 xfs_agblock_t offset_agbno; /* blks from chunk start to inode */
1da177e4
LT
1823
1824 ASSERT(ino != NULLFSINO);
94e1b69d 1825
1da177e4
LT
1826 /*
1827 * Split up the inode number into its parts.
1828 */
1829 agno = XFS_INO_TO_AGNO(mp, ino);
1830 agino = XFS_INO_TO_AGINO(mp, ino);
1831 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1832 if (agno >= mp->m_sb.sb_agcount || agbno >= mp->m_sb.sb_agblocks ||
1833 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
1834#ifdef DEBUG
1920779e
DC
1835 /*
1836 * Don't output diagnostic information for untrusted inodes
1837 * as they can be invalid without implying corruption.
1838 */
1839 if (flags & XFS_IGET_UNTRUSTED)
2451337d 1840 return -EINVAL;
1da177e4 1841 if (agno >= mp->m_sb.sb_agcount) {
53487786
DC
1842 xfs_alert(mp,
1843 "%s: agno (%d) >= mp->m_sb.sb_agcount (%d)",
1844 __func__, agno, mp->m_sb.sb_agcount);
1da177e4
LT
1845 }
1846 if (agbno >= mp->m_sb.sb_agblocks) {
53487786
DC
1847 xfs_alert(mp,
1848 "%s: agbno (0x%llx) >= mp->m_sb.sb_agblocks (0x%lx)",
1849 __func__, (unsigned long long)agbno,
1850 (unsigned long)mp->m_sb.sb_agblocks);
1da177e4
LT
1851 }
1852 if (ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
53487786
DC
1853 xfs_alert(mp,
1854 "%s: ino (0x%llx) != XFS_AGINO_TO_INO() (0x%llx)",
1855 __func__, ino,
1856 XFS_AGINO_TO_INO(mp, agno, agino));
1da177e4 1857 }
745b1f47 1858 xfs_stack_trace();
1da177e4 1859#endif /* DEBUG */
2451337d 1860 return -EINVAL;
1da177e4 1861 }
94e1b69d 1862
f9e5abcf 1863 blks_per_cluster = xfs_icluster_size_fsb(mp);
7124fe0a
DC
1864
1865 /*
1866 * For bulkstat and handle lookups, we have an untrusted inode number
1867 * that we have to verify is valid. We cannot do this just by reading
1868 * the inode buffer as it may have been unlinked and removed leaving
1869 * inodes in stale state on disk. Hence we have to do a btree lookup
1870 * in all cases where an untrusted inode number is passed.
1871 */
1920779e 1872 if (flags & XFS_IGET_UNTRUSTED) {
7124fe0a
DC
1873 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1874 &chunk_agbno, &offset_agbno, flags);
1875 if (error)
1876 return error;
1877 goto out_map;
1878 }
1879
94e1b69d
CH
1880 /*
1881 * If the inode cluster size is the same as the blocksize or
1882 * smaller we get to the buffer by simple arithmetics.
1883 */
f9e5abcf 1884 if (blks_per_cluster == 1) {
1da177e4
LT
1885 offset = XFS_INO_TO_OFFSET(mp, ino);
1886 ASSERT(offset < mp->m_sb.sb_inopblock);
94e1b69d
CH
1887
1888 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, agbno);
1889 imap->im_len = XFS_FSB_TO_BB(mp, 1);
1890 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
1da177e4
LT
1891 return 0;
1892 }
94e1b69d 1893
94e1b69d
CH
1894 /*
1895 * If the inode chunks are aligned then use simple maths to
1896 * find the location. Otherwise we have to do a btree
1897 * lookup to find the location.
1898 */
1da177e4
LT
1899 if (mp->m_inoalign_mask) {
1900 offset_agbno = agbno & mp->m_inoalign_mask;
1901 chunk_agbno = agbno - offset_agbno;
1902 } else {
7124fe0a
DC
1903 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1904 &chunk_agbno, &offset_agbno, flags);
1da177e4
LT
1905 if (error)
1906 return error;
1da177e4 1907 }
94e1b69d 1908
7124fe0a 1909out_map:
1da177e4
LT
1910 ASSERT(agbno >= chunk_agbno);
1911 cluster_agbno = chunk_agbno +
1912 ((offset_agbno / blks_per_cluster) * blks_per_cluster);
1913 offset = ((agbno - cluster_agbno) * mp->m_sb.sb_inopblock) +
1914 XFS_INO_TO_OFFSET(mp, ino);
94e1b69d
CH
1915
1916 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, cluster_agbno);
1917 imap->im_len = XFS_FSB_TO_BB(mp, blks_per_cluster);
1918 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
1919
1920 /*
1921 * If the inode number maps to a block outside the bounds
1922 * of the file system then return NULL rather than calling
1923 * read_buf and panicing when we get an error from the
1924 * driver.
1925 */
1926 if ((imap->im_blkno + imap->im_len) >
1927 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)) {
53487786
DC
1928 xfs_alert(mp,
1929 "%s: (im_blkno (0x%llx) + im_len (0x%llx)) > sb_dblocks (0x%llx)",
1930 __func__, (unsigned long long) imap->im_blkno,
94e1b69d
CH
1931 (unsigned long long) imap->im_len,
1932 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks));
2451337d 1933 return -EINVAL;
94e1b69d 1934 }
1da177e4 1935 return 0;
1da177e4
LT
1936}
1937
1938/*
1939 * Compute and fill in value of m_in_maxlevels.
1940 */
1941void
1942xfs_ialloc_compute_maxlevels(
1943 xfs_mount_t *mp) /* file system mount structure */
1944{
1945 int level;
1946 uint maxblocks;
1947 uint maxleafents;
1948 int minleafrecs;
1949 int minnoderecs;
1950
1951 maxleafents = (1LL << XFS_INO_AGINO_BITS(mp)) >>
1952 XFS_INODES_PER_CHUNK_LOG;
1953 minleafrecs = mp->m_alloc_mnr[0];
1954 minnoderecs = mp->m_alloc_mnr[1];
1955 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1956 for (level = 1; maxblocks > 1; level++)
1957 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1958 mp->m_in_maxlevels = level;
1959}
1960
1961/*
aafc3c24
BF
1962 * Log specified fields for the ag hdr (inode section). The growth of the agi
1963 * structure over time requires that we interpret the buffer as two logical
1964 * regions delineated by the end of the unlinked list. This is due to the size
1965 * of the hash table and its location in the middle of the agi.
1966 *
1967 * For example, a request to log a field before agi_unlinked and a field after
1968 * agi_unlinked could cause us to log the entire hash table and use an excessive
1969 * amount of log space. To avoid this behavior, log the region up through
1970 * agi_unlinked in one call and the region after agi_unlinked through the end of
1971 * the structure in another.
1da177e4
LT
1972 */
1973void
1974xfs_ialloc_log_agi(
1975 xfs_trans_t *tp, /* transaction pointer */
1976 xfs_buf_t *bp, /* allocation group header buffer */
1977 int fields) /* bitmask of fields to log */
1978{
1979 int first; /* first byte number */
1980 int last; /* last byte number */
1981 static const short offsets[] = { /* field starting offsets */
1982 /* keep in sync with bit definitions */
1983 offsetof(xfs_agi_t, agi_magicnum),
1984 offsetof(xfs_agi_t, agi_versionnum),
1985 offsetof(xfs_agi_t, agi_seqno),
1986 offsetof(xfs_agi_t, agi_length),
1987 offsetof(xfs_agi_t, agi_count),
1988 offsetof(xfs_agi_t, agi_root),
1989 offsetof(xfs_agi_t, agi_level),
1990 offsetof(xfs_agi_t, agi_freecount),
1991 offsetof(xfs_agi_t, agi_newino),
1992 offsetof(xfs_agi_t, agi_dirino),
1993 offsetof(xfs_agi_t, agi_unlinked),
aafc3c24
BF
1994 offsetof(xfs_agi_t, agi_free_root),
1995 offsetof(xfs_agi_t, agi_free_level),
1da177e4
LT
1996 sizeof(xfs_agi_t)
1997 };
1998#ifdef DEBUG
1999 xfs_agi_t *agi; /* allocation group header */
2000
2001 agi = XFS_BUF_TO_AGI(bp);
69ef921b 2002 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
1da177e4 2003#endif
aafc3c24
BF
2004
2005 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGI_BUF);
2006
1da177e4 2007 /*
aafc3c24
BF
2008 * Compute byte offsets for the first and last fields in the first
2009 * region and log the agi buffer. This only logs up through
2010 * agi_unlinked.
1da177e4 2011 */
aafc3c24
BF
2012 if (fields & XFS_AGI_ALL_BITS_R1) {
2013 xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R1,
2014 &first, &last);
2015 xfs_trans_log_buf(tp, bp, first, last);
2016 }
2017
1da177e4 2018 /*
aafc3c24
BF
2019 * Mask off the bits in the first region and calculate the first and
2020 * last field offsets for any bits in the second region.
1da177e4 2021 */
aafc3c24
BF
2022 fields &= ~XFS_AGI_ALL_BITS_R1;
2023 if (fields) {
2024 xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R2,
2025 &first, &last);
2026 xfs_trans_log_buf(tp, bp, first, last);
2027 }
1da177e4
LT
2028}
2029
5e1be0fb
CH
2030#ifdef DEBUG
2031STATIC void
2032xfs_check_agi_unlinked(
2033 struct xfs_agi *agi)
2034{
2035 int i;
2036
2037 for (i = 0; i < XFS_AGI_UNLINKED_BUCKETS; i++)
2038 ASSERT(agi->agi_unlinked[i]);
2039}
2040#else
2041#define xfs_check_agi_unlinked(agi)
2042#endif
2043
983d09ff 2044static bool
612cfbfe 2045xfs_agi_verify(
3702ce6e
DC
2046 struct xfs_buf *bp)
2047{
2048 struct xfs_mount *mp = bp->b_target->bt_mount;
2049 struct xfs_agi *agi = XFS_BUF_TO_AGI(bp);
3702ce6e 2050
983d09ff
DC
2051 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2052 !uuid_equal(&agi->agi_uuid, &mp->m_sb.sb_uuid))
2053 return false;
3702ce6e
DC
2054 /*
2055 * Validate the magic number of the agi block.
2056 */
983d09ff
DC
2057 if (agi->agi_magicnum != cpu_to_be32(XFS_AGI_MAGIC))
2058 return false;
2059 if (!XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum)))
2060 return false;
3702ce6e 2061
e1b05723
ES
2062 if (be32_to_cpu(agi->agi_level) > XFS_BTREE_MAXLEVELS)
2063 return false;
3702ce6e
DC
2064 /*
2065 * during growfs operations, the perag is not fully initialised,
2066 * so we can't use it for any useful checking. growfs ensures we can't
2067 * use it by using uncached buffers that don't have the perag attached
2068 * so we can detect and avoid this problem.
2069 */
983d09ff
DC
2070 if (bp->b_pag && be32_to_cpu(agi->agi_seqno) != bp->b_pag->pag_agno)
2071 return false;
3702ce6e 2072
3702ce6e 2073 xfs_check_agi_unlinked(agi);
983d09ff 2074 return true;
612cfbfe
DC
2075}
2076
1813dd64
DC
2077static void
2078xfs_agi_read_verify(
612cfbfe
DC
2079 struct xfs_buf *bp)
2080{
983d09ff 2081 struct xfs_mount *mp = bp->b_target->bt_mount;
983d09ff 2082
ce5028cf
ES
2083 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2084 !xfs_buf_verify_cksum(bp, XFS_AGI_CRC_OFF))
2451337d 2085 xfs_buf_ioerror(bp, -EFSBADCRC);
ce5028cf
ES
2086 else if (XFS_TEST_ERROR(!xfs_agi_verify(bp), mp,
2087 XFS_ERRTAG_IALLOC_READ_AGI,
2088 XFS_RANDOM_IALLOC_READ_AGI))
2451337d 2089 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf
ES
2090
2091 if (bp->b_error)
2092 xfs_verifier_error(bp);
612cfbfe
DC
2093}
2094
b0f539de 2095static void
1813dd64 2096xfs_agi_write_verify(
612cfbfe
DC
2097 struct xfs_buf *bp)
2098{
983d09ff
DC
2099 struct xfs_mount *mp = bp->b_target->bt_mount;
2100 struct xfs_buf_log_item *bip = bp->b_fspriv;
2101
2102 if (!xfs_agi_verify(bp)) {
2451337d 2103 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 2104 xfs_verifier_error(bp);
983d09ff
DC
2105 return;
2106 }
2107
2108 if (!xfs_sb_version_hascrc(&mp->m_sb))
2109 return;
2110
2111 if (bip)
2112 XFS_BUF_TO_AGI(bp)->agi_lsn = cpu_to_be64(bip->bli_item.li_lsn);
f1dbcd7e 2113 xfs_buf_update_cksum(bp, XFS_AGI_CRC_OFF);
3702ce6e
DC
2114}
2115
1813dd64
DC
2116const struct xfs_buf_ops xfs_agi_buf_ops = {
2117 .verify_read = xfs_agi_read_verify,
2118 .verify_write = xfs_agi_write_verify,
2119};
2120
1da177e4
LT
2121/*
2122 * Read in the allocation group header (inode allocation section)
2123 */
2124int
5e1be0fb
CH
2125xfs_read_agi(
2126 struct xfs_mount *mp, /* file system mount structure */
2127 struct xfs_trans *tp, /* transaction pointer */
2128 xfs_agnumber_t agno, /* allocation group number */
2129 struct xfs_buf **bpp) /* allocation group hdr buf */
1da177e4 2130{
5e1be0fb 2131 int error;
1da177e4 2132
d123031a 2133 trace_xfs_read_agi(mp, agno);
5e1be0fb 2134
d123031a 2135 ASSERT(agno != NULLAGNUMBER);
5e1be0fb 2136 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
1da177e4 2137 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
1813dd64 2138 XFS_FSS_TO_BB(mp, 1), 0, bpp, &xfs_agi_buf_ops);
1da177e4
LT
2139 if (error)
2140 return error;
5e1be0fb 2141
38f23232 2142 xfs_buf_set_ref(*bpp, XFS_AGI_REF);
5e1be0fb
CH
2143 return 0;
2144}
2145
2146int
2147xfs_ialloc_read_agi(
2148 struct xfs_mount *mp, /* file system mount structure */
2149 struct xfs_trans *tp, /* transaction pointer */
2150 xfs_agnumber_t agno, /* allocation group number */
2151 struct xfs_buf **bpp) /* allocation group hdr buf */
2152{
2153 struct xfs_agi *agi; /* allocation group header */
2154 struct xfs_perag *pag; /* per allocation group data */
2155 int error;
2156
d123031a
DC
2157 trace_xfs_ialloc_read_agi(mp, agno);
2158
5e1be0fb
CH
2159 error = xfs_read_agi(mp, tp, agno, bpp);
2160 if (error)
2161 return error;
2162
2163 agi = XFS_BUF_TO_AGI(*bpp);
44b56e0a 2164 pag = xfs_perag_get(mp, agno);
1da177e4 2165 if (!pag->pagi_init) {
16259e7d 2166 pag->pagi_freecount = be32_to_cpu(agi->agi_freecount);
92821e2b 2167 pag->pagi_count = be32_to_cpu(agi->agi_count);
1da177e4 2168 pag->pagi_init = 1;
1da177e4 2169 }
1da177e4 2170
5e1be0fb
CH
2171 /*
2172 * It's possible for these to be out of sync if
2173 * we are in the middle of a forced shutdown.
2174 */
2175 ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) ||
2176 XFS_FORCED_SHUTDOWN(mp));
44b56e0a 2177 xfs_perag_put(pag);
1da177e4
LT
2178 return 0;
2179}
92821e2b
DC
2180
2181/*
2182 * Read in the agi to initialise the per-ag data in the mount structure
2183 */
2184int
2185xfs_ialloc_pagi_init(
2186 xfs_mount_t *mp, /* file system mount structure */
2187 xfs_trans_t *tp, /* transaction pointer */
2188 xfs_agnumber_t agno) /* allocation group number */
2189{
2190 xfs_buf_t *bp = NULL;
2191 int error;
2192
2193 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
2194 if (error)
2195 return error;
2196 if (bp)
2197 xfs_trans_brelse(tp, bp);
2198 return 0;
2199}
This page took 0.755934 seconds and 5 git commands to generate.