blob: 23dcb72fc5e688f7d550f4cd79b7f4fbac8ec7b3 [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"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_sb.h"
27#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_btree.h"
31#include "xfs_ialloc.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_rtalloc.h"
35#include "xfs_error.h"
36#include "xfs_bmap.h"
Dave Chinner983d09f2013-04-03 16:11:15 +110037#include "xfs_cksum.h"
Dave Chinner239880e2013-10-23 10:50:10 +110038#include "xfs_trans.h"
Dave Chinner983d09f2013-04-03 16:11:15 +110039#include "xfs_buf_item.h"
Dave Chinnerddf6ad02013-06-27 16:04:56 +100040#include "xfs_icreate_item.h"
Dave Chinner7bb85ef2013-08-12 20:49:34 +100041#include "xfs_icache.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110042#include "xfs_dinode.h"
Dave Chinnerd1230312013-11-01 15:27:19 +110043#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * Allocation group level functions.
48 */
David Chinner75de2a92008-03-27 18:00:38 +110049static inline int
50xfs_ialloc_cluster_alignment(
51 xfs_alloc_arg_t *args)
52{
53 if (xfs_sb_version_hasalign(&args->mp->m_sb) &&
54 args->mp->m_sb.sb_inoalignmt >=
Jie Liu0f49efd2013-12-13 15:51:48 +110055 XFS_B_TO_FSBT(args->mp, args->mp->m_inode_cluster_size))
David Chinner75de2a92008-03-27 18:00:38 +110056 return args->mp->m_sb.sb_inoalignmt;
57 return 1;
58}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60/*
Christoph Hellwig21875502009-08-31 20:58:21 -030061 * Lookup a record by ino in the btree given by cur.
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110062 */
Christoph Hellwig81e25172009-09-01 19:56:55 -040063int /* error */
Christoph Hellwig21875502009-08-31 20:58:21 -030064xfs_inobt_lookup(
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110065 struct xfs_btree_cur *cur, /* btree cursor */
66 xfs_agino_t ino, /* starting inode of chunk */
Christoph Hellwig21875502009-08-31 20:58:21 -030067 xfs_lookup_t dir, /* <=, >=, == */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110068 int *stat) /* success/failure */
69{
70 cur->bc_rec.i.ir_startino = ino;
Christoph Hellwig21875502009-08-31 20:58:21 -030071 cur->bc_rec.i.ir_freecount = 0;
72 cur->bc_rec.i.ir_free = 0;
73 return xfs_btree_lookup(cur, dir, stat);
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110074}
75
76/*
Christoph Hellwigafabc242009-08-31 20:57:03 -030077 * Update the record referred to by cur to the value given.
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110078 * This either works (return 0) or gets an EFSCORRUPTED error.
79 */
80STATIC int /* error */
81xfs_inobt_update(
82 struct xfs_btree_cur *cur, /* btree cursor */
Christoph Hellwigafabc242009-08-31 20:57:03 -030083 xfs_inobt_rec_incore_t *irec) /* btree record */
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110084{
85 union xfs_btree_rec rec;
86
Christoph Hellwigafabc242009-08-31 20:57:03 -030087 rec.inobt.ir_startino = cpu_to_be32(irec->ir_startino);
88 rec.inobt.ir_freecount = cpu_to_be32(irec->ir_freecount);
89 rec.inobt.ir_free = cpu_to_be64(irec->ir_free);
Christoph Hellwig278d0ca2008-10-30 16:56:32 +110090 return xfs_btree_update(cur, &rec);
91}
92
93/*
Christoph Hellwig8cc938f2008-10-30 16:58:11 +110094 * Get the data from the pointed-to record.
95 */
96int /* error */
97xfs_inobt_get_rec(
98 struct xfs_btree_cur *cur, /* btree cursor */
Christoph Hellwig2e287a72009-08-31 20:56:58 -030099 xfs_inobt_rec_incore_t *irec, /* btree record */
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100100 int *stat) /* output: success/failure */
101{
102 union xfs_btree_rec *rec;
103 int error;
104
105 error = xfs_btree_get_rec(cur, &rec, stat);
106 if (!error && *stat == 1) {
Christoph Hellwig2e287a72009-08-31 20:56:58 -0300107 irec->ir_startino = be32_to_cpu(rec->inobt.ir_startino);
108 irec->ir_freecount = be32_to_cpu(rec->inobt.ir_freecount);
109 irec->ir_free = be64_to_cpu(rec->inobt.ir_free);
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100110 }
111 return error;
112}
113
114/*
Brian Foster0aa0a752014-04-24 16:00:53 +1000115 * Insert a single inobt record. Cursor must already point to desired location.
116 */
117STATIC int
118xfs_inobt_insert_rec(
119 struct xfs_btree_cur *cur,
120 __int32_t freecount,
121 xfs_inofree_t free,
122 int *stat)
123{
124 cur->bc_rec.i.ir_freecount = freecount;
125 cur->bc_rec.i.ir_free = free;
126 return xfs_btree_insert(cur, stat);
127}
128
129/*
130 * Insert records describing a newly allocated inode chunk into the inobt.
131 */
132STATIC int
133xfs_inobt_insert(
134 struct xfs_mount *mp,
135 struct xfs_trans *tp,
136 struct xfs_buf *agbp,
137 xfs_agino_t newino,
138 xfs_agino_t newlen,
139 xfs_btnum_t btnum)
140{
141 struct xfs_btree_cur *cur;
142 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
143 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
144 xfs_agino_t thisino;
145 int i;
146 int error;
147
148 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, btnum);
149
150 for (thisino = newino;
151 thisino < newino + newlen;
152 thisino += XFS_INODES_PER_CHUNK) {
153 error = xfs_inobt_lookup(cur, thisino, XFS_LOOKUP_EQ, &i);
154 if (error) {
155 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
156 return error;
157 }
158 ASSERT(i == 0);
159
160 error = xfs_inobt_insert_rec(cur, XFS_INODES_PER_CHUNK,
161 XFS_INOBT_ALL_FREE, &i);
162 if (error) {
163 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
164 return error;
165 }
166 ASSERT(i == 1);
167 }
168
169 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
170
171 return 0;
172}
173
174/*
Dave Chinner0b48db82009-08-31 20:57:09 -0300175 * Verify that the number of free inodes in the AGI is correct.
176 */
177#ifdef DEBUG
178STATIC int
179xfs_check_agi_freecount(
180 struct xfs_btree_cur *cur,
181 struct xfs_agi *agi)
182{
183 if (cur->bc_nlevels == 1) {
184 xfs_inobt_rec_incore_t rec;
185 int freecount = 0;
186 int error;
187 int i;
188
Christoph Hellwig21875502009-08-31 20:58:21 -0300189 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
Dave Chinner0b48db82009-08-31 20:57:09 -0300190 if (error)
191 return error;
192
193 do {
194 error = xfs_inobt_get_rec(cur, &rec, &i);
195 if (error)
196 return error;
197
198 if (i) {
199 freecount += rec.ir_freecount;
200 error = xfs_btree_increment(cur, 0, &i);
201 if (error)
202 return error;
203 }
204 } while (i == 1);
205
206 if (!XFS_FORCED_SHUTDOWN(cur->bc_mp))
207 ASSERT(freecount == be32_to_cpu(agi->agi_freecount));
208 }
209 return 0;
210}
211#else
212#define xfs_check_agi_freecount(cur, agi) 0
213#endif
214
215/*
Dave Chinner28c8e412013-06-27 16:04:55 +1000216 * Initialise a new set of inodes. When called without a transaction context
217 * (e.g. from recovery) we initiate a delayed write of the inode buffers rather
218 * than logging them (which in a transaction context puts them into the AIL
219 * for writeback rather than the xfsbufd queue).
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300220 */
Dave Chinnerddf6ad02013-06-27 16:04:56 +1000221int
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300222xfs_ialloc_inode_init(
223 struct xfs_mount *mp,
224 struct xfs_trans *tp,
Dave Chinner28c8e412013-06-27 16:04:55 +1000225 struct list_head *buffer_list,
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300226 xfs_agnumber_t agno,
227 xfs_agblock_t agbno,
228 xfs_agblock_t length,
229 unsigned int gen)
230{
231 struct xfs_buf *fbuf;
232 struct xfs_dinode *free;
Jie Liu6e0c7b82013-12-13 15:51:49 +1100233 int nbufs, blks_per_cluster, inodes_per_cluster;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300234 int version;
235 int i, j;
236 xfs_daddr_t d;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100237 xfs_ino_t ino = 0;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300238
239 /*
Jie Liu6e0c7b82013-12-13 15:51:49 +1100240 * Loop over the new block(s), filling in the inodes. For small block
241 * sizes, manipulate the inodes in buffers which are multiples of the
242 * blocks size.
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300243 */
Jie Liu6e0c7b82013-12-13 15:51:49 +1100244 blks_per_cluster = xfs_icluster_size_fsb(mp);
245 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
246 nbufs = length / blks_per_cluster;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300247
248 /*
Christoph Hellwig93848a92013-04-03 16:11:17 +1100249 * Figure out what version number to use in the inodes we create. If
250 * the superblock version has caught up to the one that supports the new
251 * inode format, then use the new inode version. Otherwise use the old
252 * version so that old kernels will continue to be able to use the file
253 * system.
254 *
255 * For v3 inodes, we also need to write the inode number into the inode,
256 * so calculate the first inode number of the chunk here as
257 * XFS_OFFBNO_TO_AGINO() only works within a filesystem block, not
258 * across multiple filesystem blocks (such as a cluster) and so cannot
259 * be used in the cluster buffer loop below.
260 *
261 * Further, because we are writing the inode directly into the buffer
262 * and calculating a CRC on the entire inode, we have ot log the entire
263 * inode so that the entire range the CRC covers is present in the log.
264 * That means for v3 inode we log the entire buffer rather than just the
265 * inode cores.
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300266 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100267 if (xfs_sb_version_hascrc(&mp->m_sb)) {
268 version = 3;
269 ino = XFS_AGINO_TO_INO(mp, agno,
270 XFS_OFFBNO_TO_AGINO(mp, agbno, 0));
Dave Chinnerddf6ad02013-06-27 16:04:56 +1000271
272 /*
273 * log the initialisation that is about to take place as an
274 * logical operation. This means the transaction does not
275 * need to log the physical changes to the inode buffers as log
276 * recovery will know what initialisation is actually needed.
277 * Hence we only need to log the buffers as "ordered" buffers so
278 * they track in the AIL as if they were physically logged.
279 */
280 if (tp)
Jie Liu71783432013-12-13 15:51:46 +1100281 xfs_icreate_log(tp, agno, agbno, mp->m_ialloc_inos,
Dave Chinnerddf6ad02013-06-27 16:04:56 +1000282 mp->m_sb.sb_inodesize, length, gen);
Dave Chinner263997a2014-05-20 07:46:40 +1000283 } else
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300284 version = 2;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300285
286 for (j = 0; j < nbufs; j++) {
287 /*
288 * Get the block.
289 */
290 d = XFS_AGB_TO_DADDR(mp, agno, agbno + (j * blks_per_cluster));
291 fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
Dave Chinner7c4cebe2012-11-23 14:24:23 +1100292 mp->m_bsize * blks_per_cluster,
293 XBF_UNMAPPED);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000294 if (!fbuf)
Dave Chinner24513372014-06-25 14:58:08 +1000295 return -ENOMEM;
Dave Chinnerddf6ad02013-06-27 16:04:56 +1000296
297 /* Initialize the inode buffers and log them appropriately. */
Dave Chinner1813dd62012-11-14 17:54:40 +1100298 fbuf->b_ops = &xfs_inode_buf_ops;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100299 xfs_buf_zero(fbuf, 0, BBTOB(fbuf->b_length));
Jie Liu6e0c7b82013-12-13 15:51:49 +1100300 for (i = 0; i < inodes_per_cluster; i++) {
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300301 int ioffset = i << mp->m_sb.sb_inodelog;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100302 uint isize = xfs_dinode_size(version);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300303
304 free = xfs_make_iptr(mp, fbuf, i);
305 free->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
306 free->di_version = version;
307 free->di_gen = cpu_to_be32(gen);
308 free->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig93848a92013-04-03 16:11:17 +1100309
310 if (version == 3) {
311 free->di_ino = cpu_to_be64(ino);
312 ino++;
313 uuid_copy(&free->di_uuid, &mp->m_sb.sb_uuid);
314 xfs_dinode_calc_crc(mp, free);
Dave Chinner28c8e412013-06-27 16:04:55 +1000315 } else if (tp) {
Christoph Hellwig93848a92013-04-03 16:11:17 +1100316 /* just log the inode core */
317 xfs_trans_log_buf(tp, fbuf, ioffset,
318 ioffset + isize - 1);
319 }
320 }
Dave Chinner28c8e412013-06-27 16:04:55 +1000321
322 if (tp) {
323 /*
324 * Mark the buffer as an inode allocation buffer so it
325 * sticks in AIL at the point of this allocation
326 * transaction. This ensures the they are on disk before
327 * the tail of the log can be moved past this
328 * transaction (i.e. by preventing relogging from moving
329 * it forward in the log).
330 */
331 xfs_trans_inode_alloc_buf(tp, fbuf);
332 if (version == 3) {
Dave Chinnerddf6ad02013-06-27 16:04:56 +1000333 /*
334 * Mark the buffer as ordered so that they are
335 * not physically logged in the transaction but
336 * still tracked in the AIL as part of the
337 * transaction and pin the log appropriately.
338 */
339 xfs_trans_ordered_buf(tp, fbuf);
Dave Chinner28c8e412013-06-27 16:04:55 +1000340 xfs_trans_log_buf(tp, fbuf, 0,
341 BBTOB(fbuf->b_length) - 1);
342 }
343 } else {
344 fbuf->b_flags |= XBF_DONE;
345 xfs_buf_delwri_queue(fbuf, buffer_list);
346 xfs_buf_relse(fbuf);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300347 }
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300348 }
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000349 return 0;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300350}
351
352/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Allocate new inodes in the allocation group specified by agbp.
354 * Return 0 for success, else error code.
355 */
356STATIC int /* error code or 0 */
357xfs_ialloc_ag_alloc(
358 xfs_trans_t *tp, /* transaction pointer */
359 xfs_buf_t *agbp, /* alloc group buffer */
360 int *alloc)
361{
362 xfs_agi_t *agi; /* allocation group header */
363 xfs_alloc_arg_t args; /* allocation argument structure */
David Chinner92821e22007-05-24 15:26:31 +1000364 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 xfs_agino_t newino; /* new first inode's number */
367 xfs_agino_t newlen; /* new number of inodes */
Glen Overby3ccb8b52006-03-29 09:52:28 +1000368 int isaligned = 0; /* inode allocation at stripe unit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* boundary */
Dave Chinner44b56e02010-01-11 11:47:43 +0000370 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Mark Tinguelya0041682012-09-20 13:16:45 -0500372 memset(&args, 0, sizeof(args));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 args.tp = tp;
374 args.mp = tp->t_mountp;
375
376 /*
377 * Locking will ensure that we don't have two callers in here
378 * at one time.
379 */
Jie Liu71783432013-12-13 15:51:46 +1100380 newlen = args.mp->m_ialloc_inos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (args.mp->m_maxicount &&
382 args.mp->m_sb.sb_icount + newlen > args.mp->m_maxicount)
Dave Chinner24513372014-06-25 14:58:08 +1000383 return -ENOSPC;
Jie Liu126cd102013-12-13 15:51:48 +1100384 args.minlen = args.maxlen = args.mp->m_ialloc_blks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /*
Glen Overby3ccb8b52006-03-29 09:52:28 +1000386 * First try to allocate inodes contiguous with the last-allocated
387 * chunk of inodes. If the filesystem is striped, this will fill
388 * an entire stripe unit with inodes.
Dave Chinner28c8e412013-06-27 16:04:55 +1000389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 agi = XFS_BUF_TO_AGI(agbp);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000391 newino = be32_to_cpu(agi->agi_newino);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300392 agno = be32_to_cpu(agi->agi_seqno);
Nathan Scott019ff2d2006-04-11 15:45:05 +1000393 args.agbno = XFS_AGINO_TO_AGBNO(args.mp, newino) +
Jie Liu126cd102013-12-13 15:51:48 +1100394 args.mp->m_ialloc_blks;
Nathan Scott019ff2d2006-04-11 15:45:05 +1000395 if (likely(newino != NULLAGINO &&
396 (args.agbno < be32_to_cpu(agi->agi_length)))) {
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300397 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000398 args.type = XFS_ALLOCTYPE_THIS_BNO;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000399 args.prod = 1;
David Chinner75de2a92008-03-27 18:00:38 +1100400
Glen Overby3ccb8b52006-03-29 09:52:28 +1000401 /*
David Chinner75de2a92008-03-27 18:00:38 +1100402 * We need to take into account alignment here to ensure that
403 * we don't modify the free list if we fail to have an exact
404 * block. If we don't have an exact match, and every oher
405 * attempt allocation attempt fails, we'll end up cancelling
406 * a dirty transaction and shutting down.
407 *
408 * For an exact allocation, alignment must be 1,
409 * however we need to take cluster alignment into account when
410 * fixing up the freelist. Use the minalignslop field to
411 * indicate that extra blocks might be required for alignment,
412 * but not to use them in the actual exact allocation.
Glen Overby3ccb8b52006-03-29 09:52:28 +1000413 */
David Chinner75de2a92008-03-27 18:00:38 +1100414 args.alignment = 1;
415 args.minalignslop = xfs_ialloc_cluster_alignment(&args) - 1;
416
417 /* Allow space for the inode btree to split. */
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100418 args.minleft = args.mp->m_in_maxlevels - 1;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000419 if ((error = xfs_alloc_vextent(&args)))
420 return error;
Brian Fostere480a722014-03-07 16:19:14 +1100421
422 /*
423 * This request might have dirtied the transaction if the AG can
424 * satisfy the request, but the exact block was not available.
425 * If the allocation did fail, subsequent requests will relax
426 * the exact agbno requirement and increase the alignment
427 * instead. It is critical that the total size of the request
428 * (len + alignment + slop) does not increase from this point
429 * on, so reset minalignslop to ensure it is not included in
430 * subsequent requests.
431 */
432 args.minalignslop = 0;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000433 } else
434 args.fsbno = NULLFSBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Glen Overby3ccb8b52006-03-29 09:52:28 +1000436 if (unlikely(args.fsbno == NULLFSBLOCK)) {
437 /*
438 * Set the alignment for the allocation.
439 * If stripe alignment is turned on then align at stripe unit
440 * boundary.
Nathan Scott019ff2d2006-04-11 15:45:05 +1000441 * If the cluster size is smaller than a filesystem block
442 * then we're doing I/O for inodes in filesystem block size
Glen Overby3ccb8b52006-03-29 09:52:28 +1000443 * pieces, so don't need alignment anyway.
444 */
445 isaligned = 0;
446 if (args.mp->m_sinoalign) {
447 ASSERT(!(args.mp->m_flags & XFS_MOUNT_NOALIGN));
448 args.alignment = args.mp->m_dalign;
449 isaligned = 1;
David Chinner75de2a92008-03-27 18:00:38 +1100450 } else
451 args.alignment = xfs_ialloc_cluster_alignment(&args);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000452 /*
453 * Need to figure out where to allocate the inode blocks.
454 * Ideally they should be spaced out through the a.g.
455 * For now, just allocate blocks up front.
456 */
457 args.agbno = be32_to_cpu(agi->agi_root);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300458 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
Glen Overby3ccb8b52006-03-29 09:52:28 +1000459 /*
460 * Allocate a fixed-size extent of inodes.
461 */
462 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000463 args.prod = 1;
464 /*
465 * Allow space for the inode btree to split.
466 */
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100467 args.minleft = args.mp->m_in_maxlevels - 1;
Glen Overby3ccb8b52006-03-29 09:52:28 +1000468 if ((error = xfs_alloc_vextent(&args)))
469 return error;
470 }
Nathan Scott019ff2d2006-04-11 15:45:05 +1000471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 /*
473 * If stripe alignment is turned on, then try again with cluster
474 * alignment.
475 */
476 if (isaligned && args.fsbno == NULLFSBLOCK) {
477 args.type = XFS_ALLOCTYPE_NEAR_BNO;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100478 args.agbno = be32_to_cpu(agi->agi_root);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300479 args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno);
David Chinner75de2a92008-03-27 18:00:38 +1100480 args.alignment = xfs_ialloc_cluster_alignment(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if ((error = xfs_alloc_vextent(&args)))
482 return error;
483 }
484
485 if (args.fsbno == NULLFSBLOCK) {
486 *alloc = 0;
487 return 0;
488 }
489 ASSERT(args.len == args.minlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
David Chinner359346a2008-04-29 12:53:32 +1000491 /*
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300492 * Stamp and write the inode buffers.
493 *
David Chinner359346a2008-04-29 12:53:32 +1000494 * Seed the new inode cluster with a random generation number. This
495 * prevents short-term reuse of generation numbers if a chunk is
496 * freed and then immediately reallocated. We use random numbers
497 * rather than a linear progression to prevent the next generation
498 * number from being easily guessable.
499 */
Dave Chinner28c8e412013-06-27 16:04:55 +1000500 error = xfs_ialloc_inode_init(args.mp, tp, NULL, agno, args.agbno,
Akinobu Mitaecb34032013-03-04 21:58:20 +0900501 args.len, prandom_u32());
Christoph Hellwigd42f08f2008-11-28 14:23:38 +1100502
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +0000503 if (error)
504 return error;
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300505 /*
506 * Convert the results.
507 */
508 newino = XFS_OFFBNO_TO_AGINO(args.mp, args.agbno, 0);
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800509 be32_add_cpu(&agi->agi_count, newlen);
510 be32_add_cpu(&agi->agi_freecount, newlen);
Dave Chinner44b56e02010-01-11 11:47:43 +0000511 pag = xfs_perag_get(args.mp, agno);
512 pag->pagi_freecount += newlen;
513 xfs_perag_put(pag);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100514 agi->agi_newino = cpu_to_be32(newino);
Dave Chinner85c0b2a2009-08-31 20:56:51 -0300515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /*
Brian Foster0aa0a752014-04-24 16:00:53 +1000517 * Insert records describing the new inode chunk into the btrees.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Brian Foster0aa0a752014-04-24 16:00:53 +1000519 error = xfs_inobt_insert(args.mp, tp, agbp, newino, newlen,
520 XFS_BTNUM_INO);
521 if (error)
522 return error;
523
524 if (xfs_sb_version_hasfinobt(&args.mp->m_sb)) {
525 error = xfs_inobt_insert(args.mp, tp, agbp, newino, newlen,
526 XFS_BTNUM_FINO);
527 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /*
531 * Log allocation group header fields
532 */
533 xfs_ialloc_log_agi(tp, agbp,
534 XFS_AGI_COUNT | XFS_AGI_FREECOUNT | XFS_AGI_NEWINO);
535 /*
536 * Modify/log superblock values for inode count and inode free count.
537 */
538 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, (long)newlen);
539 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, (long)newlen);
540 *alloc = 1;
541 return 0;
542}
543
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000544STATIC xfs_agnumber_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545xfs_ialloc_next_ag(
546 xfs_mount_t *mp)
547{
548 xfs_agnumber_t agno;
549
550 spin_lock(&mp->m_agirotor_lock);
551 agno = mp->m_agirotor;
Carlos Maiolino8aea3ff2012-09-20 10:32:36 -0300552 if (++mp->m_agirotor >= mp->m_maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 mp->m_agirotor = 0;
554 spin_unlock(&mp->m_agirotor_lock);
555
556 return agno;
557}
558
559/*
560 * Select an allocation group to look for a free inode in, based on the parent
Zhi Yong Wu2f21ff12013-08-12 03:14:58 +0000561 * inode and the mode. Return the allocation group buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400563STATIC xfs_agnumber_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564xfs_ialloc_ag_select(
565 xfs_trans_t *tp, /* transaction pointer */
566 xfs_ino_t parent, /* parent directory inode number */
Al Viro576b1d62011-07-26 02:50:15 -0400567 umode_t mode, /* bits set to indicate file type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int okalloc) /* ok to allocate more space */
569{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 xfs_agnumber_t agcount; /* number of ag's in the filesystem */
571 xfs_agnumber_t agno; /* current ag number */
572 int flags; /* alloc buffer locking flags */
573 xfs_extlen_t ineed; /* blocks needed for inode allocation */
574 xfs_extlen_t longest = 0; /* longest extent available */
575 xfs_mount_t *mp; /* mount point structure */
576 int needspace; /* file mode implies space allocated */
577 xfs_perag_t *pag; /* per allocation group data */
578 xfs_agnumber_t pagno; /* parent (starting) ag number */
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400579 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /*
582 * Files of these types need at least one block if length > 0
583 * (and they won't fit in the inode, but that's hard to figure out).
584 */
585 needspace = S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode);
586 mp = tp->t_mountp;
587 agcount = mp->m_maxagi;
588 if (S_ISDIR(mode))
589 pagno = xfs_ialloc_next_ag(mp);
590 else {
591 pagno = XFS_INO_TO_AGNO(mp, parent);
592 if (pagno >= agcount)
593 pagno = 0;
594 }
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 ASSERT(pagno < agcount);
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /*
599 * Loop through allocation groups, looking for one with a little
600 * free space in it. Note we don't look for free inodes, exactly.
601 * Instead, we include whether there is a need to allocate inodes
602 * to mean that blocks must be allocated for them,
603 * if none are currently free.
604 */
605 agno = pagno;
606 flags = XFS_ALLOC_FLAG_TRYLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 for (;;) {
Dave Chinner44b56e02010-01-11 11:47:43 +0000608 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (!pag->pagi_inodeok) {
610 xfs_ialloc_next_ag(mp);
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400611 goto nextag;
612 }
613
614 if (!pag->pagi_init) {
615 error = xfs_ialloc_pagi_init(mp, tp, agno);
616 if (error)
617 goto nextag;
618 }
619
620 if (pag->pagi_freecount) {
621 xfs_perag_put(pag);
622 return agno;
623 }
624
625 if (!okalloc)
626 goto nextag;
627
628 if (!pag->pagf_init) {
629 error = xfs_alloc_pagf_init(mp, tp, agno, flags);
630 if (error)
631 goto nextag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633
634 /*
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400635 * Is there enough free space for the file plus a block of
636 * inodes? (if we need to allocate some)?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
Jie Liu126cd102013-12-13 15:51:48 +1100638 ineed = mp->m_ialloc_blks;
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400639 longest = pag->pagf_longest;
640 if (!longest)
641 longest = pag->pagf_flcount > 0;
642
643 if (pag->pagf_freeblks >= needspace + ineed &&
644 longest >= ineed) {
645 xfs_perag_put(pag);
646 return agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648nextag:
Dave Chinner44b56e02010-01-11 11:47:43 +0000649 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
651 * No point in iterating over the rest, if we're shutting
652 * down.
653 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000654 if (XFS_FORCED_SHUTDOWN(mp))
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400655 return NULLAGNUMBER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 agno++;
657 if (agno >= agcount)
658 agno = 0;
659 if (agno == pagno) {
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000660 if (flags == 0)
Christoph Hellwig55d6af62012-07-04 10:54:49 -0400661 return NULLAGNUMBER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 flags = 0;
663 }
664 }
665}
666
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300667/*
668 * Try to retrieve the next record to the left/right from the current one.
669 */
670STATIC int
671xfs_ialloc_next_rec(
672 struct xfs_btree_cur *cur,
673 xfs_inobt_rec_incore_t *rec,
674 int *done,
675 int left)
676{
677 int error;
678 int i;
679
680 if (left)
681 error = xfs_btree_decrement(cur, 0, &i);
682 else
683 error = xfs_btree_increment(cur, 0, &i);
684
685 if (error)
686 return error;
687 *done = !i;
688 if (i) {
689 error = xfs_inobt_get_rec(cur, rec, &i);
690 if (error)
691 return error;
692 XFS_WANT_CORRUPTED_RETURN(i == 1);
693 }
694
695 return 0;
696}
697
Dave Chinnerbd169562009-08-31 20:58:28 -0300698STATIC int
699xfs_ialloc_get_rec(
700 struct xfs_btree_cur *cur,
701 xfs_agino_t agino,
702 xfs_inobt_rec_incore_t *rec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800703 int *done)
Dave Chinnerbd169562009-08-31 20:58:28 -0300704{
705 int error;
706 int i;
707
708 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_EQ, &i);
709 if (error)
710 return error;
711 *done = !i;
712 if (i) {
713 error = xfs_inobt_get_rec(cur, rec, &i);
714 if (error)
715 return error;
716 XFS_WANT_CORRUPTED_RETURN(i == 1);
717 }
718
719 return 0;
720}
Dave Chinner0b48db82009-08-31 20:57:09 -0300721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722/*
Brian Foster6dd86382014-04-24 16:00:53 +1000723 * Allocate an inode using the inobt-only algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 */
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400725STATIC int
Brian Foster6dd86382014-04-24 16:00:53 +1000726xfs_dialloc_ag_inobt(
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400727 struct xfs_trans *tp,
728 struct xfs_buf *agbp,
729 xfs_ino_t parent,
730 xfs_ino_t *inop)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -0400732 struct xfs_mount *mp = tp->t_mountp;
733 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
734 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
735 xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent);
736 xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent);
737 struct xfs_perag *pag;
738 struct xfs_btree_cur *cur, *tcur;
739 struct xfs_inobt_rec_incore rec, trec;
740 xfs_ino_t ino;
741 int error;
742 int offset;
743 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Dave Chinner44b56e02010-01-11 11:47:43 +0000745 pag = xfs_perag_get(mp, agno);
Dave Chinnerbd169562009-08-31 20:58:28 -0300746
Christoph Hellwig4bb61062012-07-04 10:54:48 -0400747 ASSERT(pag->pagi_init);
748 ASSERT(pag->pagi_inodeok);
749 ASSERT(pag->pagi_freecount > 0);
750
Dave Chinnerbd169562009-08-31 20:58:28 -0300751 restart_pagno:
Brian Foster57bd3db2014-04-24 16:00:50 +1000752 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * If pagino is 0 (this is the root inode allocation) use newino.
755 * This must work because we've just allocated some.
756 */
757 if (!pagino)
Christoph Hellwig16259e72005-11-02 15:11:25 +1100758 pagino = be32_to_cpu(agi->agi_newino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Dave Chinner0b48db82009-08-31 20:57:09 -0300760 error = xfs_check_agi_freecount(cur, agi);
761 if (error)
762 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300765 * If in the same AG as the parent, try to get near the parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
767 if (pagno == agno) {
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300768 int doneleft; /* done, to the left */
769 int doneright; /* done, to the right */
Dave Chinnerbd169562009-08-31 20:58:28 -0300770 int searchdistance = 10;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300771
Christoph Hellwig21875502009-08-31 20:58:21 -0300772 error = xfs_inobt_lookup(cur, pagino, XFS_LOOKUP_LE, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300773 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300775 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
776
777 error = xfs_inobt_get_rec(cur, &rec, &j);
778 if (error)
779 goto error0;
Brian Fosterb1210992013-08-27 17:15:45 -0400780 XFS_WANT_CORRUPTED_GOTO(j == 1, error0);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300781
782 if (rec.ir_freecount > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Found a free inode in the same chunk
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300785 * as the parent, done.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 */
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300787 goto alloc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300789
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300792 * In the same AG as parent, but parent's chunk is full.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300795 /* duplicate the cursor, search left & right simultaneously */
796 error = xfs_btree_dup_cursor(cur, &tcur);
797 if (error)
798 goto error0;
799
Dave Chinnerbd169562009-08-31 20:58:28 -0300800 /*
801 * Skip to last blocks looked up if same parent inode.
802 */
803 if (pagino != NULLAGINO &&
804 pag->pagl_pagino == pagino &&
805 pag->pagl_leftrec != NULLAGINO &&
806 pag->pagl_rightrec != NULLAGINO) {
807 error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800808 &trec, &doneleft);
Dave Chinnerbd169562009-08-31 20:58:28 -0300809 if (error)
810 goto error1;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300811
Dave Chinnerbd169562009-08-31 20:58:28 -0300812 error = xfs_ialloc_get_rec(cur, pag->pagl_rightrec,
Jie Liu43df2ee2013-06-24 13:37:23 +0800813 &rec, &doneright);
Dave Chinnerbd169562009-08-31 20:58:28 -0300814 if (error)
815 goto error1;
816 } else {
817 /* search left with tcur, back up 1 record */
818 error = xfs_ialloc_next_rec(tcur, &trec, &doneleft, 1);
819 if (error)
820 goto error1;
821
822 /* search right with cur, go forward 1 record. */
823 error = xfs_ialloc_next_rec(cur, &rec, &doneright, 0);
824 if (error)
825 goto error1;
826 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300827
828 /*
829 * Loop until we find an inode chunk with a free inode.
830 */
831 while (!doneleft || !doneright) {
832 int useleft; /* using left inode chunk this time */
833
Dave Chinnerbd169562009-08-31 20:58:28 -0300834 if (!--searchdistance) {
835 /*
836 * Not in range - save last search
837 * location and allocate a new inode
838 */
Eric Sandeen3b826382009-10-30 09:27:07 +0100839 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
Dave Chinnerbd169562009-08-31 20:58:28 -0300840 pag->pagl_leftrec = trec.ir_startino;
841 pag->pagl_rightrec = rec.ir_startino;
842 pag->pagl_pagino = pagino;
843 goto newino;
844 }
845
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300846 /* figure out the closer block if both are valid. */
847 if (!doneleft && !doneright) {
848 useleft = pagino -
849 (trec.ir_startino + XFS_INODES_PER_CHUNK - 1) <
850 rec.ir_startino - pagino;
851 } else {
852 useleft = !doneleft;
853 }
854
855 /* free inodes to the left? */
856 if (useleft && trec.ir_freecount) {
857 rec = trec;
858 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
859 cur = tcur;
Dave Chinnerbd169562009-08-31 20:58:28 -0300860
861 pag->pagl_leftrec = trec.ir_startino;
862 pag->pagl_rightrec = rec.ir_startino;
863 pag->pagl_pagino = pagino;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300864 goto alloc_inode;
865 }
866
867 /* free inodes to the right? */
868 if (!useleft && rec.ir_freecount) {
869 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
Dave Chinnerbd169562009-08-31 20:58:28 -0300870
871 pag->pagl_leftrec = trec.ir_startino;
872 pag->pagl_rightrec = rec.ir_startino;
873 pag->pagl_pagino = pagino;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300874 goto alloc_inode;
875 }
876
877 /* get next record to check */
878 if (useleft) {
879 error = xfs_ialloc_next_rec(tcur, &trec,
880 &doneleft, 1);
881 } else {
882 error = xfs_ialloc_next_rec(cur, &rec,
883 &doneright, 0);
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Dave Chinnerbd169562009-08-31 20:58:28 -0300888
889 /*
890 * We've reached the end of the btree. because
891 * we are only searching a small chunk of the
892 * btree each search, there is obviously free
893 * inodes closer to the parent inode than we
894 * are now. restart the search again.
895 */
896 pag->pagl_pagino = NULLAGINO;
897 pag->pagl_leftrec = NULLAGINO;
898 pag->pagl_rightrec = NULLAGINO;
899 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
900 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
901 goto restart_pagno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 /*
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300905 * In a different AG from the parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 * See if the most recently allocated block has any free.
907 */
Dave Chinnerbd169562009-08-31 20:58:28 -0300908newino:
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200909 if (agi->agi_newino != cpu_to_be32(NULLAGINO)) {
Christoph Hellwig21875502009-08-31 20:58:21 -0300910 error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino),
911 XFS_LOOKUP_EQ, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300912 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300914
915 if (i == 1) {
916 error = xfs_inobt_get_rec(cur, &rec, &j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (error)
918 goto error0;
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300919
920 if (j == 1 && rec.ir_freecount > 0) {
921 /*
922 * The last chunk allocated in the group
923 * still has a free inode.
924 */
925 goto alloc_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927 }
Dave Chinnerbd169562009-08-31 20:58:28 -0300928 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300929
Dave Chinnerbd169562009-08-31 20:58:28 -0300930 /*
931 * None left in the last group, search the whole AG
932 */
933 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
934 if (error)
935 goto error0;
936 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
937
938 for (;;) {
939 error = xfs_inobt_get_rec(cur, &rec, &i);
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300940 if (error)
941 goto error0;
942 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Dave Chinnerbd169562009-08-31 20:58:28 -0300943 if (rec.ir_freecount > 0)
944 break;
945 error = xfs_btree_increment(cur, 0, &i);
946 if (error)
947 goto error0;
948 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Christoph Hellwig4254b0b2009-08-31 20:57:14 -0300950
951alloc_inode:
Christoph Hellwig824c3132012-07-04 10:54:45 -0400952 offset = xfs_lowbit64(rec.ir_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 ASSERT(offset >= 0);
954 ASSERT(offset < XFS_INODES_PER_CHUNK);
955 ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) %
956 XFS_INODES_PER_CHUNK) == 0);
957 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
Christoph Hellwig0d87e652009-02-09 08:37:14 +0100958 rec.ir_free &= ~XFS_INOBT_MASK(offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 rec.ir_freecount--;
Christoph Hellwigafabc242009-08-31 20:57:03 -0300960 error = xfs_inobt_update(cur, &rec);
961 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 goto error0;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800963 be32_add_cpu(&agi->agi_freecount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +0000965 pag->pagi_freecount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Dave Chinner0b48db82009-08-31 20:57:09 -0300967 error = xfs_check_agi_freecount(cur, agi);
968 if (error)
969 goto error0;
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
972 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1);
Dave Chinner44b56e02010-01-11 11:47:43 +0000973 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 *inop = ino;
975 return 0;
976error1:
977 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
978error0:
979 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
Dave Chinner44b56e02010-01-11 11:47:43 +0000980 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return error;
982}
983
984/*
Brian Foster6dd86382014-04-24 16:00:53 +1000985 * Use the free inode btree to allocate an inode based on distance from the
986 * parent. Note that the provided cursor may be deleted and replaced.
987 */
988STATIC int
989xfs_dialloc_ag_finobt_near(
990 xfs_agino_t pagino,
991 struct xfs_btree_cur **ocur,
992 struct xfs_inobt_rec_incore *rec)
993{
994 struct xfs_btree_cur *lcur = *ocur; /* left search cursor */
995 struct xfs_btree_cur *rcur; /* right search cursor */
996 struct xfs_inobt_rec_incore rrec;
997 int error;
998 int i, j;
999
1000 error = xfs_inobt_lookup(lcur, pagino, XFS_LOOKUP_LE, &i);
1001 if (error)
1002 return error;
1003
1004 if (i == 1) {
1005 error = xfs_inobt_get_rec(lcur, rec, &i);
1006 if (error)
1007 return error;
1008 XFS_WANT_CORRUPTED_RETURN(i == 1);
1009
1010 /*
1011 * See if we've landed in the parent inode record. The finobt
1012 * only tracks chunks with at least one free inode, so record
1013 * existence is enough.
1014 */
1015 if (pagino >= rec->ir_startino &&
1016 pagino < (rec->ir_startino + XFS_INODES_PER_CHUNK))
1017 return 0;
1018 }
1019
1020 error = xfs_btree_dup_cursor(lcur, &rcur);
1021 if (error)
1022 return error;
1023
1024 error = xfs_inobt_lookup(rcur, pagino, XFS_LOOKUP_GE, &j);
1025 if (error)
1026 goto error_rcur;
1027 if (j == 1) {
1028 error = xfs_inobt_get_rec(rcur, &rrec, &j);
1029 if (error)
1030 goto error_rcur;
1031 XFS_WANT_CORRUPTED_GOTO(j == 1, error_rcur);
1032 }
1033
1034 XFS_WANT_CORRUPTED_GOTO(i == 1 || j == 1, error_rcur);
1035 if (i == 1 && j == 1) {
1036 /*
1037 * Both the left and right records are valid. Choose the closer
1038 * inode chunk to the target.
1039 */
1040 if ((pagino - rec->ir_startino + XFS_INODES_PER_CHUNK - 1) >
1041 (rrec.ir_startino - pagino)) {
1042 *rec = rrec;
1043 xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR);
1044 *ocur = rcur;
1045 } else {
1046 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1047 }
1048 } else if (j == 1) {
1049 /* only the right record is valid */
1050 *rec = rrec;
1051 xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR);
1052 *ocur = rcur;
1053 } else if (i == 1) {
1054 /* only the left record is valid */
1055 xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR);
1056 }
1057
1058 return 0;
1059
1060error_rcur:
1061 xfs_btree_del_cursor(rcur, XFS_BTREE_ERROR);
1062 return error;
1063}
1064
1065/*
1066 * Use the free inode btree to find a free inode based on a newino hint. If
1067 * the hint is NULL, find the first free inode in the AG.
1068 */
1069STATIC int
1070xfs_dialloc_ag_finobt_newino(
1071 struct xfs_agi *agi,
1072 struct xfs_btree_cur *cur,
1073 struct xfs_inobt_rec_incore *rec)
1074{
1075 int error;
1076 int i;
1077
1078 if (agi->agi_newino != cpu_to_be32(NULLAGINO)) {
Dave Chinnere68ed772014-09-29 10:43:15 +10001079 error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino),
1080 XFS_LOOKUP_EQ, &i);
Brian Foster6dd86382014-04-24 16:00:53 +10001081 if (error)
1082 return error;
1083 if (i == 1) {
1084 error = xfs_inobt_get_rec(cur, rec, &i);
1085 if (error)
1086 return error;
1087 XFS_WANT_CORRUPTED_RETURN(i == 1);
Brian Foster6dd86382014-04-24 16:00:53 +10001088 return 0;
1089 }
1090 }
1091
1092 /*
1093 * Find the first inode available in the AG.
1094 */
1095 error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i);
1096 if (error)
1097 return error;
1098 XFS_WANT_CORRUPTED_RETURN(i == 1);
1099
1100 error = xfs_inobt_get_rec(cur, rec, &i);
1101 if (error)
1102 return error;
1103 XFS_WANT_CORRUPTED_RETURN(i == 1);
1104
1105 return 0;
1106}
1107
1108/*
1109 * Update the inobt based on a modification made to the finobt. Also ensure that
1110 * the records from both trees are equivalent post-modification.
1111 */
1112STATIC int
1113xfs_dialloc_ag_update_inobt(
1114 struct xfs_btree_cur *cur, /* inobt cursor */
1115 struct xfs_inobt_rec_incore *frec, /* finobt record */
1116 int offset) /* inode offset */
1117{
1118 struct xfs_inobt_rec_incore rec;
1119 int error;
1120 int i;
1121
1122 error = xfs_inobt_lookup(cur, frec->ir_startino, XFS_LOOKUP_EQ, &i);
1123 if (error)
1124 return error;
1125 XFS_WANT_CORRUPTED_RETURN(i == 1);
1126
1127 error = xfs_inobt_get_rec(cur, &rec, &i);
1128 if (error)
1129 return error;
1130 XFS_WANT_CORRUPTED_RETURN(i == 1);
1131 ASSERT((XFS_AGINO_TO_OFFSET(cur->bc_mp, rec.ir_startino) %
1132 XFS_INODES_PER_CHUNK) == 0);
1133
1134 rec.ir_free &= ~XFS_INOBT_MASK(offset);
1135 rec.ir_freecount--;
1136
1137 XFS_WANT_CORRUPTED_RETURN((rec.ir_free == frec->ir_free) &&
1138 (rec.ir_freecount == frec->ir_freecount));
1139
1140 error = xfs_inobt_update(cur, &rec);
1141 if (error)
1142 return error;
1143
1144 return 0;
1145}
1146
1147/*
1148 * Allocate an inode using the free inode btree, if available. Otherwise, fall
1149 * back to the inobt search algorithm.
1150 *
1151 * The caller selected an AG for us, and made sure that free inodes are
1152 * available.
1153 */
1154STATIC int
1155xfs_dialloc_ag(
1156 struct xfs_trans *tp,
1157 struct xfs_buf *agbp,
1158 xfs_ino_t parent,
1159 xfs_ino_t *inop)
1160{
1161 struct xfs_mount *mp = tp->t_mountp;
1162 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1163 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1164 xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent);
1165 xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent);
1166 struct xfs_perag *pag;
1167 struct xfs_btree_cur *cur; /* finobt cursor */
1168 struct xfs_btree_cur *icur; /* inobt cursor */
1169 struct xfs_inobt_rec_incore rec;
1170 xfs_ino_t ino;
1171 int error;
1172 int offset;
1173 int i;
1174
1175 if (!xfs_sb_version_hasfinobt(&mp->m_sb))
1176 return xfs_dialloc_ag_inobt(tp, agbp, parent, inop);
1177
1178 pag = xfs_perag_get(mp, agno);
1179
1180 /*
1181 * If pagino is 0 (this is the root inode allocation) use newino.
1182 * This must work because we've just allocated some.
1183 */
1184 if (!pagino)
1185 pagino = be32_to_cpu(agi->agi_newino);
1186
1187 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO);
1188
1189 error = xfs_check_agi_freecount(cur, agi);
1190 if (error)
1191 goto error_cur;
1192
1193 /*
1194 * The search algorithm depends on whether we're in the same AG as the
1195 * parent. If so, find the closest available inode to the parent. If
1196 * not, consider the agi hint or find the first free inode in the AG.
1197 */
1198 if (agno == pagno)
1199 error = xfs_dialloc_ag_finobt_near(pagino, &cur, &rec);
1200 else
1201 error = xfs_dialloc_ag_finobt_newino(agi, cur, &rec);
1202 if (error)
1203 goto error_cur;
1204
1205 offset = xfs_lowbit64(rec.ir_free);
1206 ASSERT(offset >= 0);
1207 ASSERT(offset < XFS_INODES_PER_CHUNK);
1208 ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) %
1209 XFS_INODES_PER_CHUNK) == 0);
1210 ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset);
1211
1212 /*
1213 * Modify or remove the finobt record.
1214 */
1215 rec.ir_free &= ~XFS_INOBT_MASK(offset);
1216 rec.ir_freecount--;
1217 if (rec.ir_freecount)
1218 error = xfs_inobt_update(cur, &rec);
1219 else
1220 error = xfs_btree_delete(cur, &i);
1221 if (error)
1222 goto error_cur;
1223
1224 /*
1225 * The finobt has now been updated appropriately. We haven't updated the
1226 * agi and superblock yet, so we can create an inobt cursor and validate
1227 * the original freecount. If all is well, make the equivalent update to
1228 * the inobt using the finobt record and offset information.
1229 */
1230 icur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
1231
1232 error = xfs_check_agi_freecount(icur, agi);
1233 if (error)
1234 goto error_icur;
1235
1236 error = xfs_dialloc_ag_update_inobt(icur, &rec, offset);
1237 if (error)
1238 goto error_icur;
1239
1240 /*
1241 * Both trees have now been updated. We must update the perag and
1242 * superblock before we can check the freecount for each btree.
1243 */
1244 be32_add_cpu(&agi->agi_freecount, -1);
1245 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
1246 pag->pagi_freecount--;
1247
1248 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1);
1249
1250 error = xfs_check_agi_freecount(icur, agi);
1251 if (error)
1252 goto error_icur;
1253 error = xfs_check_agi_freecount(cur, agi);
1254 if (error)
1255 goto error_icur;
1256
1257 xfs_btree_del_cursor(icur, XFS_BTREE_NOERROR);
1258 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1259 xfs_perag_put(pag);
1260 *inop = ino;
1261 return 0;
1262
1263error_icur:
1264 xfs_btree_del_cursor(icur, XFS_BTREE_ERROR);
1265error_cur:
1266 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1267 xfs_perag_put(pag);
1268 return error;
1269}
1270
1271/*
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001272 * Allocate an inode on disk.
1273 *
1274 * Mode is used to tell whether the new inode will need space, and whether it
1275 * is a directory.
1276 *
1277 * This function is designed to be called twice if it has to do an allocation
1278 * to make more free inodes. On the first call, *IO_agbp should be set to NULL.
1279 * If an inode is available without having to performn an allocation, an inode
Carlos Maiolinocd856db2012-10-20 11:08:19 -03001280 * number is returned. In this case, *IO_agbp is set to NULL. If an allocation
1281 * needs to be done, xfs_dialloc returns the current AGI buffer in *IO_agbp.
1282 * The caller should then commit the current transaction, allocate a
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001283 * new transaction, and call xfs_dialloc() again, passing in the previous value
1284 * of *IO_agbp. IO_agbp should be held across the transactions. Since the AGI
1285 * buffer is locked across the two calls, the second call is guaranteed to have
1286 * a free inode available.
1287 *
1288 * Once we successfully pick an inode its number is returned and the on-disk
1289 * data structures are updated. The inode itself is not read in, since doing so
1290 * would break ordering constraints with xfs_reclaim.
1291 */
1292int
1293xfs_dialloc(
1294 struct xfs_trans *tp,
1295 xfs_ino_t parent,
1296 umode_t mode,
1297 int okalloc,
1298 struct xfs_buf **IO_agbp,
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001299 xfs_ino_t *inop)
1300{
Christoph Hellwig55d6af62012-07-04 10:54:49 -04001301 struct xfs_mount *mp = tp->t_mountp;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001302 struct xfs_buf *agbp;
1303 xfs_agnumber_t agno;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001304 int error;
1305 int ialloced;
1306 int noroom = 0;
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001307 xfs_agnumber_t start_agno;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001308 struct xfs_perag *pag;
1309
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001310 if (*IO_agbp) {
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001311 /*
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001312 * If the caller passes in a pointer to the AGI buffer,
1313 * continue where we left off before. In this case, we
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001314 * know that the allocation group has free inodes.
1315 */
1316 agbp = *IO_agbp;
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001317 goto out_alloc;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001318 }
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001319
1320 /*
1321 * We do not have an agbp, so select an initial allocation
1322 * group for inode allocation.
1323 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001324 start_agno = xfs_ialloc_ag_select(tp, parent, mode, okalloc);
1325 if (start_agno == NULLAGNUMBER) {
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001326 *inop = NULLFSINO;
1327 return 0;
1328 }
Christoph Hellwig55d6af62012-07-04 10:54:49 -04001329
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001330 /*
1331 * If we have already hit the ceiling of inode blocks then clear
1332 * okalloc so we scan all available agi structures for a free
1333 * inode.
1334 */
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001335 if (mp->m_maxicount &&
Jie Liu71783432013-12-13 15:51:46 +11001336 mp->m_sb.sb_icount + mp->m_ialloc_inos > mp->m_maxicount) {
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001337 noroom = 1;
1338 okalloc = 0;
1339 }
1340
1341 /*
1342 * Loop until we find an allocation group that either has free inodes
1343 * or in which we can allocate some inodes. Iterate through the
1344 * allocation groups upward, wrapping at the end.
1345 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001346 agno = start_agno;
1347 for (;;) {
1348 pag = xfs_perag_get(mp, agno);
1349 if (!pag->pagi_inodeok) {
1350 xfs_ialloc_next_ag(mp);
1351 goto nextag;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001352 }
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001353
1354 if (!pag->pagi_init) {
1355 error = xfs_ialloc_pagi_init(mp, tp, agno);
1356 if (error)
1357 goto out_error;
1358 }
1359
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001360 /*
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001361 * Do a first racy fast path check if this AG is usable.
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001362 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001363 if (!pag->pagi_freecount && !okalloc)
1364 goto nextag;
1365
Christoph Hellwigc4982112012-08-07 02:02:02 -04001366 /*
1367 * Then read in the AGI buffer and recheck with the AGI buffer
1368 * lock held.
1369 */
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001370 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1371 if (error)
1372 goto out_error;
1373
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001374 if (pag->pagi_freecount) {
1375 xfs_perag_put(pag);
1376 goto out_alloc;
1377 }
1378
Christoph Hellwigc4982112012-08-07 02:02:02 -04001379 if (!okalloc)
1380 goto nextag_relse_buffer;
1381
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001382
1383 error = xfs_ialloc_ag_alloc(tp, agbp, &ialloced);
1384 if (error) {
1385 xfs_trans_brelse(tp, agbp);
1386
Dave Chinner24513372014-06-25 14:58:08 +10001387 if (error != -ENOSPC)
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001388 goto out_error;
1389
1390 xfs_perag_put(pag);
1391 *inop = NULLFSINO;
1392 return 0;
1393 }
1394
1395 if (ialloced) {
1396 /*
1397 * We successfully allocated some inodes, return
1398 * the current context to the caller so that it
1399 * can commit the current transaction and call
1400 * us again where we left off.
1401 */
1402 ASSERT(pag->pagi_freecount > 0);
1403 xfs_perag_put(pag);
1404
1405 *IO_agbp = agbp;
1406 *inop = NULLFSINO;
1407 return 0;
1408 }
1409
Christoph Hellwigc4982112012-08-07 02:02:02 -04001410nextag_relse_buffer:
1411 xfs_trans_brelse(tp, agbp);
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001412nextag:
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001413 xfs_perag_put(pag);
1414 if (++agno == mp->m_sb.sb_agcount)
1415 agno = 0;
1416 if (agno == start_agno) {
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001417 *inop = NULLFSINO;
Dave Chinner24513372014-06-25 14:58:08 +10001418 return noroom ? -ENOSPC : 0;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001419 }
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001420 }
1421
Christoph Hellwig4bb61062012-07-04 10:54:48 -04001422out_alloc:
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001423 *IO_agbp = NULL;
1424 return xfs_dialloc_ag(tp, agbp, parent, inop);
Christoph Hellwigbe60fe52012-07-04 10:54:50 -04001425out_error:
1426 xfs_perag_put(pag);
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001427 return error;
Christoph Hellwigf2ecc5e2012-07-04 10:54:46 -04001428}
1429
Brian Foster2b64ee52014-04-24 16:00:53 +10001430STATIC int
1431xfs_difree_inobt(
1432 struct xfs_mount *mp,
1433 struct xfs_trans *tp,
1434 struct xfs_buf *agbp,
1435 xfs_agino_t agino,
1436 struct xfs_bmap_free *flist,
Dave Chinner0d907a32014-05-20 08:56:00 +10001437 int *deleted,
Brian Foster2b64ee52014-04-24 16:00:53 +10001438 xfs_ino_t *first_ino,
1439 struct xfs_inobt_rec_incore *orec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
Brian Foster2b64ee52014-04-24 16:00:53 +10001441 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1442 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1443 struct xfs_perag *pag;
1444 struct xfs_btree_cur *cur;
1445 struct xfs_inobt_rec_incore rec;
1446 int ilen;
1447 int error;
1448 int i;
1449 int off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001451 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
Brian Foster2b64ee52014-04-24 16:00:53 +10001452 ASSERT(XFS_AGINO_TO_AGBNO(mp, agino) < be32_to_cpu(agi->agi_length));
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 /*
1455 * Initialize the cursor.
1456 */
Brian Foster57bd3db2014-04-24 16:00:50 +10001457 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Dave Chinner0b48db82009-08-31 20:57:09 -03001459 error = xfs_check_agi_freecount(cur, agi);
1460 if (error)
1461 goto error0;
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 /*
1464 * Look for the entry describing this inode.
1465 */
Christoph Hellwig21875502009-08-31 20:58:21 -03001466 if ((error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001467 xfs_warn(mp, "%s: xfs_inobt_lookup() returned error %d.",
1468 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 goto error0;
1470 }
1471 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig2e287a72009-08-31 20:56:58 -03001472 error = xfs_inobt_get_rec(cur, &rec, &i);
1473 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001474 xfs_warn(mp, "%s: xfs_inobt_get_rec() returned error %d.",
1475 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 goto error0;
1477 }
1478 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1479 /*
1480 * Get the offset in the inode chunk.
1481 */
1482 off = agino - rec.ir_startino;
1483 ASSERT(off >= 0 && off < XFS_INODES_PER_CHUNK);
Christoph Hellwig0d87e652009-02-09 08:37:14 +01001484 ASSERT(!(rec.ir_free & XFS_INOBT_MASK(off)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 /*
1486 * Mark the inode free & increment the count.
1487 */
Christoph Hellwig0d87e652009-02-09 08:37:14 +01001488 rec.ir_free |= XFS_INOBT_MASK(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 rec.ir_freecount++;
1490
1491 /*
Nathan Scottc41564b2006-03-29 08:55:14 +10001492 * When an inode cluster is free, it becomes eligible for removal
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 */
Josef Jeff Sipek1bd960e2008-02-29 13:58:40 +11001494 if (!(mp->m_flags & XFS_MOUNT_IKEEP) &&
Jie Liu71783432013-12-13 15:51:46 +11001495 (rec.ir_freecount == mp->m_ialloc_inos)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Roger Willcocks376c2f32014-05-20 08:52:21 +10001497 *deleted = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 *first_ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino);
1499
1500 /*
1501 * Remove the inode cluster from the AGI B+Tree, adjust the
1502 * AGI and Superblock inode counts, and mark the disk space
1503 * to be freed when the transaction is committed.
1504 */
Jie Liu71783432013-12-13 15:51:46 +11001505 ilen = mp->m_ialloc_inos;
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001506 be32_add_cpu(&agi->agi_count, -ilen);
1507 be32_add_cpu(&agi->agi_freecount, -(ilen - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +00001509 pag = xfs_perag_get(mp, agno);
1510 pag->pagi_freecount -= ilen - 1;
1511 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen);
1513 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1));
1514
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001515 if ((error = xfs_btree_delete(cur, &i))) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001516 xfs_warn(mp, "%s: xfs_btree_delete returned error %d.",
1517 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 goto error0;
1519 }
1520
Jie Liu126cd102013-12-13 15:51:48 +11001521 xfs_bmap_add_free(XFS_AGB_TO_FSB(mp, agno,
1522 XFS_AGINO_TO_AGBNO(mp, rec.ir_startino)),
1523 mp->m_ialloc_blks, flist, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 } else {
Roger Willcocks376c2f32014-05-20 08:52:21 +10001525 *deleted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Christoph Hellwigafabc242009-08-31 20:57:03 -03001527 error = xfs_inobt_update(cur, &rec);
1528 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001529 xfs_warn(mp, "%s: xfs_inobt_update returned error %d.",
1530 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 goto error0;
1532 }
Christoph Hellwigafabc242009-08-31 20:57:03 -03001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /*
1535 * Change the inode free counts and log the ag/sb changes.
1536 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001537 be32_add_cpu(&agi->agi_freecount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT);
Dave Chinner44b56e02010-01-11 11:47:43 +00001539 pag = xfs_perag_get(mp, agno);
1540 pag->pagi_freecount++;
1541 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1);
1543 }
1544
Dave Chinner0b48db82009-08-31 20:57:09 -03001545 error = xfs_check_agi_freecount(cur, agi);
1546 if (error)
1547 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Brian Foster2b64ee52014-04-24 16:00:53 +10001549 *orec = rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1551 return 0;
1552
1553error0:
1554 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1555 return error;
1556}
1557
Brian Foster2b64ee52014-04-24 16:00:53 +10001558/*
Brian Foster3efa4ff2014-04-24 16:00:53 +10001559 * Free an inode in the free inode btree.
1560 */
1561STATIC int
1562xfs_difree_finobt(
1563 struct xfs_mount *mp,
1564 struct xfs_trans *tp,
1565 struct xfs_buf *agbp,
1566 xfs_agino_t agino,
1567 struct xfs_inobt_rec_incore *ibtrec) /* inobt record */
1568{
1569 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
1570 xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno);
1571 struct xfs_btree_cur *cur;
1572 struct xfs_inobt_rec_incore rec;
1573 int offset = agino - ibtrec->ir_startino;
1574 int error;
1575 int i;
1576
1577 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO);
1578
1579 error = xfs_inobt_lookup(cur, ibtrec->ir_startino, XFS_LOOKUP_EQ, &i);
1580 if (error)
1581 goto error;
1582 if (i == 0) {
1583 /*
1584 * If the record does not exist in the finobt, we must have just
1585 * freed an inode in a previously fully allocated chunk. If not,
1586 * something is out of sync.
1587 */
1588 XFS_WANT_CORRUPTED_GOTO(ibtrec->ir_freecount == 1, error);
1589
1590 error = xfs_inobt_insert_rec(cur, ibtrec->ir_freecount,
1591 ibtrec->ir_free, &i);
1592 if (error)
1593 goto error;
1594 ASSERT(i == 1);
1595
1596 goto out;
1597 }
1598
1599 /*
1600 * Read and update the existing record. We could just copy the ibtrec
1601 * across here, but that would defeat the purpose of having redundant
1602 * metadata. By making the modifications independently, we can catch
1603 * corruptions that we wouldn't see if we just copied from one record
1604 * to another.
1605 */
1606 error = xfs_inobt_get_rec(cur, &rec, &i);
1607 if (error)
1608 goto error;
1609 XFS_WANT_CORRUPTED_GOTO(i == 1, error);
1610
1611 rec.ir_free |= XFS_INOBT_MASK(offset);
1612 rec.ir_freecount++;
1613
1614 XFS_WANT_CORRUPTED_GOTO((rec.ir_free == ibtrec->ir_free) &&
1615 (rec.ir_freecount == ibtrec->ir_freecount),
1616 error);
1617
1618 /*
1619 * The content of inobt records should always match between the inobt
1620 * and finobt. The lifecycle of records in the finobt is different from
1621 * the inobt in that the finobt only tracks records with at least one
1622 * free inode. Hence, if all of the inodes are free and we aren't
1623 * keeping inode chunks permanently on disk, remove the record.
1624 * Otherwise, update the record with the new information.
1625 */
1626 if (rec.ir_freecount == mp->m_ialloc_inos &&
1627 !(mp->m_flags & XFS_MOUNT_IKEEP)) {
1628 error = xfs_btree_delete(cur, &i);
1629 if (error)
1630 goto error;
1631 ASSERT(i == 1);
1632 } else {
1633 error = xfs_inobt_update(cur, &rec);
1634 if (error)
1635 goto error;
1636 }
1637
1638out:
1639 error = xfs_check_agi_freecount(cur, agi);
1640 if (error)
1641 goto error;
1642
1643 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1644 return 0;
1645
1646error:
1647 xfs_btree_del_cursor(cur, XFS_BTREE_ERROR);
1648 return error;
1649}
1650
1651/*
Brian Foster2b64ee52014-04-24 16:00:53 +10001652 * Free disk inode. Carefully avoids touching the incore inode, all
1653 * manipulations incore are the caller's responsibility.
1654 * The on-disk inode is not changed by this operation, only the
1655 * btree (free inode mask) is changed.
1656 */
1657int
1658xfs_difree(
1659 struct xfs_trans *tp, /* transaction pointer */
1660 xfs_ino_t inode, /* inode to be freed */
1661 struct xfs_bmap_free *flist, /* extents to free */
Dave Chinner0d907a32014-05-20 08:56:00 +10001662 int *deleted,/* set if inode cluster was deleted */
Brian Foster2b64ee52014-04-24 16:00:53 +10001663 xfs_ino_t *first_ino)/* first inode in deleted cluster */
1664{
1665 /* REFERENCED */
1666 xfs_agblock_t agbno; /* block number containing inode */
1667 struct xfs_buf *agbp; /* buffer for allocation group header */
1668 xfs_agino_t agino; /* allocation group inode number */
1669 xfs_agnumber_t agno; /* allocation group number */
1670 int error; /* error return value */
1671 struct xfs_mount *mp; /* mount structure for filesystem */
1672 struct xfs_inobt_rec_incore rec;/* btree record */
1673
1674 mp = tp->t_mountp;
1675
1676 /*
1677 * Break up inode number into its components.
1678 */
1679 agno = XFS_INO_TO_AGNO(mp, inode);
1680 if (agno >= mp->m_sb.sb_agcount) {
1681 xfs_warn(mp, "%s: agno >= mp->m_sb.sb_agcount (%d >= %d).",
1682 __func__, agno, mp->m_sb.sb_agcount);
1683 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001684 return -EINVAL;
Brian Foster2b64ee52014-04-24 16:00:53 +10001685 }
1686 agino = XFS_INO_TO_AGINO(mp, inode);
1687 if (inode != XFS_AGINO_TO_INO(mp, agno, agino)) {
1688 xfs_warn(mp, "%s: inode != XFS_AGINO_TO_INO() (%llu != %llu).",
1689 __func__, (unsigned long long)inode,
1690 (unsigned long long)XFS_AGINO_TO_INO(mp, agno, agino));
1691 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001692 return -EINVAL;
Brian Foster2b64ee52014-04-24 16:00:53 +10001693 }
1694 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1695 if (agbno >= mp->m_sb.sb_agblocks) {
1696 xfs_warn(mp, "%s: agbno >= mp->m_sb.sb_agblocks (%d >= %d).",
1697 __func__, agbno, mp->m_sb.sb_agblocks);
1698 ASSERT(0);
Dave Chinner24513372014-06-25 14:58:08 +10001699 return -EINVAL;
Brian Foster2b64ee52014-04-24 16:00:53 +10001700 }
1701 /*
1702 * Get the allocation group header.
1703 */
1704 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1705 if (error) {
1706 xfs_warn(mp, "%s: xfs_ialloc_read_agi() returned error %d.",
1707 __func__, error);
1708 return error;
1709 }
1710
1711 /*
1712 * Fix up the inode allocation btree.
1713 */
Dave Chinner0d907a32014-05-20 08:56:00 +10001714 error = xfs_difree_inobt(mp, tp, agbp, agino, flist, deleted, first_ino,
Brian Foster2b64ee52014-04-24 16:00:53 +10001715 &rec);
1716 if (error)
1717 goto error0;
1718
Brian Foster3efa4ff2014-04-24 16:00:53 +10001719 /*
1720 * Fix up the free inode btree.
1721 */
1722 if (xfs_sb_version_hasfinobt(&mp->m_sb)) {
1723 error = xfs_difree_finobt(mp, tp, agbp, agino, &rec);
1724 if (error)
1725 goto error0;
1726 }
1727
Brian Foster2b64ee52014-04-24 16:00:53 +10001728 return 0;
1729
1730error0:
1731 return error;
1732}
1733
Dave Chinner7124fe02010-06-24 11:15:33 +10001734STATIC int
1735xfs_imap_lookup(
1736 struct xfs_mount *mp,
1737 struct xfs_trans *tp,
1738 xfs_agnumber_t agno,
1739 xfs_agino_t agino,
1740 xfs_agblock_t agbno,
1741 xfs_agblock_t *chunk_agbno,
1742 xfs_agblock_t *offset_agbno,
1743 int flags)
1744{
1745 struct xfs_inobt_rec_incore rec;
1746 struct xfs_btree_cur *cur;
1747 struct xfs_buf *agbp;
Dave Chinner7124fe02010-06-24 11:15:33 +10001748 int error;
1749 int i;
1750
1751 error = xfs_ialloc_read_agi(mp, tp, agno, &agbp);
1752 if (error) {
Dave Chinner53487782011-03-07 10:05:35 +11001753 xfs_alert(mp,
1754 "%s: xfs_ialloc_read_agi() returned error %d, agno %d",
1755 __func__, error, agno);
Dave Chinner7124fe02010-06-24 11:15:33 +10001756 return error;
1757 }
1758
1759 /*
Dave Chinner4536f2a2010-08-24 11:42:30 +10001760 * Lookup the inode record for the given agino. If the record cannot be
1761 * found, then it's an invalid inode number and we should abort. Once
1762 * we have a record, we need to ensure it contains the inode number
1763 * we are looking up.
Dave Chinner7124fe02010-06-24 11:15:33 +10001764 */
Brian Foster57bd3db2014-04-24 16:00:50 +10001765 cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO);
Dave Chinner4536f2a2010-08-24 11:42:30 +10001766 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i);
Dave Chinner7124fe02010-06-24 11:15:33 +10001767 if (!error) {
1768 if (i)
1769 error = xfs_inobt_get_rec(cur, &rec, &i);
1770 if (!error && i == 0)
Dave Chinner24513372014-06-25 14:58:08 +10001771 error = -EINVAL;
Dave Chinner7124fe02010-06-24 11:15:33 +10001772 }
1773
1774 xfs_trans_brelse(tp, agbp);
1775 xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR);
1776 if (error)
1777 return error;
1778
Dave Chinner4536f2a2010-08-24 11:42:30 +10001779 /* check that the returned record contains the required inode */
1780 if (rec.ir_startino > agino ||
Jie Liu71783432013-12-13 15:51:46 +11001781 rec.ir_startino + mp->m_ialloc_inos <= agino)
Dave Chinner24513372014-06-25 14:58:08 +10001782 return -EINVAL;
Dave Chinner4536f2a2010-08-24 11:42:30 +10001783
Dave Chinner7124fe02010-06-24 11:15:33 +10001784 /* for untrusted inodes check it is allocated first */
Dave Chinner19207792010-06-24 11:15:47 +10001785 if ((flags & XFS_IGET_UNTRUSTED) &&
Dave Chinner7124fe02010-06-24 11:15:33 +10001786 (rec.ir_free & XFS_INOBT_MASK(agino - rec.ir_startino)))
Dave Chinner24513372014-06-25 14:58:08 +10001787 return -EINVAL;
Dave Chinner7124fe02010-06-24 11:15:33 +10001788
1789 *chunk_agbno = XFS_AGINO_TO_AGBNO(mp, rec.ir_startino);
1790 *offset_agbno = agbno - *chunk_agbno;
1791 return 0;
1792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794/*
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001795 * Return the location of the inode in imap, for mapping it into a buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797int
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001798xfs_imap(
1799 xfs_mount_t *mp, /* file system mount structure */
1800 xfs_trans_t *tp, /* transaction pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 xfs_ino_t ino, /* inode to locate */
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001802 struct xfs_imap *imap, /* location map structure */
1803 uint flags) /* flags for inode btree lookup */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
1805 xfs_agblock_t agbno; /* block number of inode in the alloc group */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 xfs_agino_t agino; /* inode number within alloc group */
1807 xfs_agnumber_t agno; /* allocation group number */
1808 int blks_per_cluster; /* num blocks per inode cluster */
1809 xfs_agblock_t chunk_agbno; /* first block in inode chunk */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 xfs_agblock_t cluster_agbno; /* first block in inode cluster */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 int error; /* error code */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 int offset; /* index of inode in its buffer */
Dave Chinner836a94a2013-08-12 20:49:44 +10001813 xfs_agblock_t offset_agbno; /* blks from chunk start to inode */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
1815 ASSERT(ino != NULLFSINO);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
1818 * Split up the inode number into its parts.
1819 */
1820 agno = XFS_INO_TO_AGNO(mp, ino);
1821 agino = XFS_INO_TO_AGINO(mp, ino);
1822 agbno = XFS_AGINO_TO_AGBNO(mp, agino);
1823 if (agno >= mp->m_sb.sb_agcount || agbno >= mp->m_sb.sb_agblocks ||
1824 ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
1825#ifdef DEBUG
Dave Chinner19207792010-06-24 11:15:47 +10001826 /*
1827 * Don't output diagnostic information for untrusted inodes
1828 * as they can be invalid without implying corruption.
1829 */
1830 if (flags & XFS_IGET_UNTRUSTED)
Dave Chinner24513372014-06-25 14:58:08 +10001831 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (agno >= mp->m_sb.sb_agcount) {
Dave Chinner53487782011-03-07 10:05:35 +11001833 xfs_alert(mp,
1834 "%s: agno (%d) >= mp->m_sb.sb_agcount (%d)",
1835 __func__, agno, mp->m_sb.sb_agcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837 if (agbno >= mp->m_sb.sb_agblocks) {
Dave Chinner53487782011-03-07 10:05:35 +11001838 xfs_alert(mp,
1839 "%s: agbno (0x%llx) >= mp->m_sb.sb_agblocks (0x%lx)",
1840 __func__, (unsigned long long)agbno,
1841 (unsigned long)mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843 if (ino != XFS_AGINO_TO_INO(mp, agno, agino)) {
Dave Chinner53487782011-03-07 10:05:35 +11001844 xfs_alert(mp,
1845 "%s: ino (0x%llx) != XFS_AGINO_TO_INO() (0x%llx)",
1846 __func__, ino,
1847 XFS_AGINO_TO_INO(mp, agno, agino));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
Nathan Scott745b1f472006-09-28 11:02:23 +10001849 xfs_stack_trace();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850#endif /* DEBUG */
Dave Chinner24513372014-06-25 14:58:08 +10001851 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001853
Jie Liuf9e5abc2013-12-13 15:51:49 +11001854 blks_per_cluster = xfs_icluster_size_fsb(mp);
Dave Chinner7124fe02010-06-24 11:15:33 +10001855
1856 /*
1857 * For bulkstat and handle lookups, we have an untrusted inode number
1858 * that we have to verify is valid. We cannot do this just by reading
1859 * the inode buffer as it may have been unlinked and removed leaving
1860 * inodes in stale state on disk. Hence we have to do a btree lookup
1861 * in all cases where an untrusted inode number is passed.
1862 */
Dave Chinner19207792010-06-24 11:15:47 +10001863 if (flags & XFS_IGET_UNTRUSTED) {
Dave Chinner7124fe02010-06-24 11:15:33 +10001864 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1865 &chunk_agbno, &offset_agbno, flags);
1866 if (error)
1867 return error;
1868 goto out_map;
1869 }
1870
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001871 /*
1872 * If the inode cluster size is the same as the blocksize or
1873 * smaller we get to the buffer by simple arithmetics.
1874 */
Jie Liuf9e5abc2013-12-13 15:51:49 +11001875 if (blks_per_cluster == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 offset = XFS_INO_TO_OFFSET(mp, ino);
1877 ASSERT(offset < mp->m_sb.sb_inopblock);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001878
1879 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, agbno);
1880 imap->im_len = XFS_FSB_TO_BB(mp, 1);
1881 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return 0;
1883 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001884
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001885 /*
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001886 * If the inode chunks are aligned then use simple maths to
1887 * find the location. Otherwise we have to do a btree
1888 * lookup to find the location.
1889 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 if (mp->m_inoalign_mask) {
1891 offset_agbno = agbno & mp->m_inoalign_mask;
1892 chunk_agbno = agbno - offset_agbno;
1893 } else {
Dave Chinner7124fe02010-06-24 11:15:33 +10001894 error = xfs_imap_lookup(mp, tp, agno, agino, agbno,
1895 &chunk_agbno, &offset_agbno, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (error)
1897 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001899
Dave Chinner7124fe02010-06-24 11:15:33 +10001900out_map:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 ASSERT(agbno >= chunk_agbno);
1902 cluster_agbno = chunk_agbno +
1903 ((offset_agbno / blks_per_cluster) * blks_per_cluster);
1904 offset = ((agbno - cluster_agbno) * mp->m_sb.sb_inopblock) +
1905 XFS_INO_TO_OFFSET(mp, ino);
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001906
1907 imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, cluster_agbno);
1908 imap->im_len = XFS_FSB_TO_BB(mp, blks_per_cluster);
1909 imap->im_boffset = (ushort)(offset << mp->m_sb.sb_inodelog);
1910
1911 /*
1912 * If the inode number maps to a block outside the bounds
1913 * of the file system then return NULL rather than calling
1914 * read_buf and panicing when we get an error from the
1915 * driver.
1916 */
1917 if ((imap->im_blkno + imap->im_len) >
1918 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)) {
Dave Chinner53487782011-03-07 10:05:35 +11001919 xfs_alert(mp,
1920 "%s: (im_blkno (0x%llx) + im_len (0x%llx)) > sb_dblocks (0x%llx)",
1921 __func__, (unsigned long long) imap->im_blkno,
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001922 (unsigned long long) imap->im_len,
1923 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks));
Dave Chinner24513372014-06-25 14:58:08 +10001924 return -EINVAL;
Christoph Hellwig94e1b692008-11-28 14:23:41 +11001925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
1929/*
1930 * Compute and fill in value of m_in_maxlevels.
1931 */
1932void
1933xfs_ialloc_compute_maxlevels(
1934 xfs_mount_t *mp) /* file system mount structure */
1935{
1936 int level;
1937 uint maxblocks;
1938 uint maxleafents;
1939 int minleafrecs;
1940 int minnoderecs;
1941
1942 maxleafents = (1LL << XFS_INO_AGINO_BITS(mp)) >>
1943 XFS_INODES_PER_CHUNK_LOG;
1944 minleafrecs = mp->m_alloc_mnr[0];
1945 minnoderecs = mp->m_alloc_mnr[1];
1946 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1947 for (level = 1; maxblocks > 1; level++)
1948 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1949 mp->m_in_maxlevels = level;
1950}
1951
1952/*
Brian Fosteraafc3c22014-04-24 16:00:52 +10001953 * Log specified fields for the ag hdr (inode section). The growth of the agi
1954 * structure over time requires that we interpret the buffer as two logical
1955 * regions delineated by the end of the unlinked list. This is due to the size
1956 * of the hash table and its location in the middle of the agi.
1957 *
1958 * For example, a request to log a field before agi_unlinked and a field after
1959 * agi_unlinked could cause us to log the entire hash table and use an excessive
1960 * amount of log space. To avoid this behavior, log the region up through
1961 * agi_unlinked in one call and the region after agi_unlinked through the end of
1962 * the structure in another.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 */
1964void
1965xfs_ialloc_log_agi(
1966 xfs_trans_t *tp, /* transaction pointer */
1967 xfs_buf_t *bp, /* allocation group header buffer */
1968 int fields) /* bitmask of fields to log */
1969{
1970 int first; /* first byte number */
1971 int last; /* last byte number */
1972 static const short offsets[] = { /* field starting offsets */
1973 /* keep in sync with bit definitions */
1974 offsetof(xfs_agi_t, agi_magicnum),
1975 offsetof(xfs_agi_t, agi_versionnum),
1976 offsetof(xfs_agi_t, agi_seqno),
1977 offsetof(xfs_agi_t, agi_length),
1978 offsetof(xfs_agi_t, agi_count),
1979 offsetof(xfs_agi_t, agi_root),
1980 offsetof(xfs_agi_t, agi_level),
1981 offsetof(xfs_agi_t, agi_freecount),
1982 offsetof(xfs_agi_t, agi_newino),
1983 offsetof(xfs_agi_t, agi_dirino),
1984 offsetof(xfs_agi_t, agi_unlinked),
Brian Fosteraafc3c22014-04-24 16:00:52 +10001985 offsetof(xfs_agi_t, agi_free_root),
1986 offsetof(xfs_agi_t, agi_free_level),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 sizeof(xfs_agi_t)
1988 };
1989#ifdef DEBUG
1990 xfs_agi_t *agi; /* allocation group header */
1991
1992 agi = XFS_BUF_TO_AGI(bp);
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001993 ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994#endif
Brian Fosteraafc3c22014-04-24 16:00:52 +10001995
Dave Chinner61fe1352013-04-03 16:11:30 +11001996 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGI_BUF);
Brian Fosteraafc3c22014-04-24 16:00:52 +10001997
1998 /*
1999 * Compute byte offsets for the first and last fields in the first
2000 * region and log the agi buffer. This only logs up through
2001 * agi_unlinked.
2002 */
2003 if (fields & XFS_AGI_ALL_BITS_R1) {
2004 xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R1,
2005 &first, &last);
2006 xfs_trans_log_buf(tp, bp, first, last);
2007 }
2008
2009 /*
2010 * Mask off the bits in the first region and calculate the first and
2011 * last field offsets for any bits in the second region.
2012 */
2013 fields &= ~XFS_AGI_ALL_BITS_R1;
2014 if (fields) {
2015 xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R2,
2016 &first, &last);
2017 xfs_trans_log_buf(tp, bp, first, last);
2018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002021#ifdef DEBUG
2022STATIC void
2023xfs_check_agi_unlinked(
2024 struct xfs_agi *agi)
2025{
2026 int i;
2027
2028 for (i = 0; i < XFS_AGI_UNLINKED_BUCKETS; i++)
2029 ASSERT(agi->agi_unlinked[i]);
2030}
2031#else
2032#define xfs_check_agi_unlinked(agi)
2033#endif
2034
Dave Chinner983d09f2013-04-03 16:11:15 +11002035static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +11002036xfs_agi_verify(
Dave Chinner3702ce62012-11-12 22:54:05 +11002037 struct xfs_buf *bp)
2038{
2039 struct xfs_mount *mp = bp->b_target->bt_mount;
2040 struct xfs_agi *agi = XFS_BUF_TO_AGI(bp);
Dave Chinner3702ce62012-11-12 22:54:05 +11002041
Dave Chinner983d09f2013-04-03 16:11:15 +11002042 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2043 !uuid_equal(&agi->agi_uuid, &mp->m_sb.sb_uuid))
2044 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11002045 /*
2046 * Validate the magic number of the agi block.
2047 */
Dave Chinner983d09f2013-04-03 16:11:15 +11002048 if (agi->agi_magicnum != cpu_to_be32(XFS_AGI_MAGIC))
2049 return false;
2050 if (!XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum)))
2051 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11002052
Eric Sandeene1b05722014-09-09 11:47:24 +10002053 if (be32_to_cpu(agi->agi_level) > XFS_BTREE_MAXLEVELS)
2054 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11002055 /*
2056 * during growfs operations, the perag is not fully initialised,
2057 * so we can't use it for any useful checking. growfs ensures we can't
2058 * use it by using uncached buffers that don't have the perag attached
2059 * so we can detect and avoid this problem.
2060 */
Dave Chinner983d09f2013-04-03 16:11:15 +11002061 if (bp->b_pag && be32_to_cpu(agi->agi_seqno) != bp->b_pag->pag_agno)
2062 return false;
Dave Chinner3702ce62012-11-12 22:54:05 +11002063
Dave Chinner3702ce62012-11-12 22:54:05 +11002064 xfs_check_agi_unlinked(agi);
Dave Chinner983d09f2013-04-03 16:11:15 +11002065 return true;
Dave Chinner612cfbf2012-11-14 17:52:32 +11002066}
2067
Dave Chinner1813dd62012-11-14 17:54:40 +11002068static void
2069xfs_agi_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002070 struct xfs_buf *bp)
2071{
Dave Chinner983d09f2013-04-03 16:11:15 +11002072 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner983d09f2013-04-03 16:11:15 +11002073
Eric Sandeence5028c2014-02-27 15:23:10 +11002074 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2075 !xfs_buf_verify_cksum(bp, XFS_AGI_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +10002076 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +11002077 else if (XFS_TEST_ERROR(!xfs_agi_verify(bp), mp,
2078 XFS_ERRTAG_IALLOC_READ_AGI,
2079 XFS_RANDOM_IALLOC_READ_AGI))
Dave Chinner24513372014-06-25 14:58:08 +10002080 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002081
2082 if (bp->b_error)
2083 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +11002084}
2085
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002086static void
Dave Chinner1813dd62012-11-14 17:54:40 +11002087xfs_agi_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002088 struct xfs_buf *bp)
2089{
Dave Chinner983d09f2013-04-03 16:11:15 +11002090 struct xfs_mount *mp = bp->b_target->bt_mount;
2091 struct xfs_buf_log_item *bip = bp->b_fspriv;
2092
2093 if (!xfs_agi_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +10002094 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002095 xfs_verifier_error(bp);
Dave Chinner983d09f2013-04-03 16:11:15 +11002096 return;
2097 }
2098
2099 if (!xfs_sb_version_hascrc(&mp->m_sb))
2100 return;
2101
2102 if (bip)
2103 XFS_BUF_TO_AGI(bp)->agi_lsn = cpu_to_be64(bip->bli_item.li_lsn);
Eric Sandeenf1dbcd72014-02-27 15:18:23 +11002104 xfs_buf_update_cksum(bp, XFS_AGI_CRC_OFF);
Dave Chinner3702ce62012-11-12 22:54:05 +11002105}
2106
Dave Chinner1813dd62012-11-14 17:54:40 +11002107const struct xfs_buf_ops xfs_agi_buf_ops = {
2108 .verify_read = xfs_agi_read_verify,
2109 .verify_write = xfs_agi_write_verify,
2110};
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112/*
2113 * Read in the allocation group header (inode allocation section)
2114 */
2115int
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002116xfs_read_agi(
2117 struct xfs_mount *mp, /* file system mount structure */
2118 struct xfs_trans *tp, /* transaction pointer */
2119 xfs_agnumber_t agno, /* allocation group number */
2120 struct xfs_buf **bpp) /* allocation group hdr buf */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121{
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002122 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Dave Chinnerd1230312013-11-01 15:27:19 +11002124 trace_xfs_read_agi(mp, agno);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002125
Dave Chinnerd1230312013-11-01 15:27:19 +11002126 ASSERT(agno != NULLAGNUMBER);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002127 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +11002129 XFS_FSS_TO_BB(mp, 1), 0, bpp, &xfs_agi_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (error)
2131 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002132
Christoph Hellwig38f23232011-10-10 16:52:45 +00002133 xfs_buf_set_ref(*bpp, XFS_AGI_REF);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002134 return 0;
2135}
2136
2137int
2138xfs_ialloc_read_agi(
2139 struct xfs_mount *mp, /* file system mount structure */
2140 struct xfs_trans *tp, /* transaction pointer */
2141 xfs_agnumber_t agno, /* allocation group number */
2142 struct xfs_buf **bpp) /* allocation group hdr buf */
2143{
2144 struct xfs_agi *agi; /* allocation group header */
2145 struct xfs_perag *pag; /* per allocation group data */
2146 int error;
2147
Dave Chinnerd1230312013-11-01 15:27:19 +11002148 trace_xfs_ialloc_read_agi(mp, agno);
2149
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002150 error = xfs_read_agi(mp, tp, agno, bpp);
2151 if (error)
2152 return error;
2153
2154 agi = XFS_BUF_TO_AGI(*bpp);
Dave Chinner44b56e02010-01-11 11:47:43 +00002155 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (!pag->pagi_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002157 pag->pagi_freecount = be32_to_cpu(agi->agi_freecount);
David Chinner92821e22007-05-24 15:26:31 +10002158 pag->pagi_count = be32_to_cpu(agi->agi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 pag->pagi_init = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002162 /*
2163 * It's possible for these to be out of sync if
2164 * we are in the middle of a forced shutdown.
2165 */
2166 ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) ||
2167 XFS_FORCED_SHUTDOWN(mp));
Dave Chinner44b56e02010-01-11 11:47:43 +00002168 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 return 0;
2170}
David Chinner92821e22007-05-24 15:26:31 +10002171
2172/*
2173 * Read in the agi to initialise the per-ag data in the mount structure
2174 */
2175int
2176xfs_ialloc_pagi_init(
2177 xfs_mount_t *mp, /* file system mount structure */
2178 xfs_trans_t *tp, /* transaction pointer */
2179 xfs_agnumber_t agno) /* allocation group number */
2180{
2181 xfs_buf_t *bp = NULL;
2182 int error;
2183
2184 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
2185 if (error)
2186 return error;
2187 if (bp)
2188 xfs_trans_brelse(tp, bp);
2189 return 0;
2190}