Dave Chinner | 0b61f8a | 2018-06-05 19:42:14 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc. |
| 4 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include "xfs.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 7 | #include "xfs_fs.h" |
Dave Chinner | 70a9883 | 2013-10-23 10:36:05 +1100 | [diff] [blame] | 8 | #include "xfs_shared.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 9 | #include "xfs_format.h" |
| 10 | #include "xfs_log_format.h" |
| 11 | #include "xfs_trans_resv.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 12 | #include "xfs_bit.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "xfs_sb.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include "xfs_mount.h" |
Darrick J. Wong | 3ab78df | 2016-08-03 11:15:38 +1000 | [diff] [blame] | 15 | #include "xfs_defer.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include "xfs_inode.h" |
Nathan Scott | a844f45 | 2005-11-02 14:38:42 +1100 | [diff] [blame] | 17 | #include "xfs_btree.h" |
| 18 | #include "xfs_ialloc.h" |
Dave Chinner | a4fbe6a | 2013-10-23 10:51:50 +1100 | [diff] [blame] | 19 | #include "xfs_ialloc_btree.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include "xfs_alloc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include "xfs_rtalloc.h" |
Darrick J. Wong | e9e899a | 2017-10-31 12:04:49 -0700 | [diff] [blame] | 22 | #include "xfs_errortag.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "xfs_error.h" |
| 24 | #include "xfs_bmap.h" |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 25 | #include "xfs_cksum.h" |
Dave Chinner | 239880e | 2013-10-23 10:50:10 +1100 | [diff] [blame] | 26 | #include "xfs_trans.h" |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 27 | #include "xfs_buf_item.h" |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 28 | #include "xfs_icreate_item.h" |
Dave Chinner | 7bb85ef | 2013-08-12 20:49:34 +1000 | [diff] [blame] | 29 | #include "xfs_icache.h" |
Dave Chinner | d123031 | 2013-11-01 15:27:19 +1100 | [diff] [blame] | 30 | #include "xfs_trace.h" |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 31 | #include "xfs_log.h" |
Darrick J. Wong | 340785c | 2016-08-03 11:33:42 +1000 | [diff] [blame] | 32 | #include "xfs_rmap.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | /* |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 35 | * Lookup a record by ino in the btree given by cur. |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 36 | */ |
Christoph Hellwig | 81e2517 | 2009-09-01 19:56:55 -0400 | [diff] [blame] | 37 | int /* error */ |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 38 | xfs_inobt_lookup( |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 39 | struct xfs_btree_cur *cur, /* btree cursor */ |
| 40 | xfs_agino_t ino, /* starting inode of chunk */ |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 41 | xfs_lookup_t dir, /* <=, >=, == */ |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 42 | int *stat) /* success/failure */ |
| 43 | { |
| 44 | cur->bc_rec.i.ir_startino = ino; |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 45 | cur->bc_rec.i.ir_holemask = 0; |
| 46 | cur->bc_rec.i.ir_count = 0; |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 47 | cur->bc_rec.i.ir_freecount = 0; |
| 48 | cur->bc_rec.i.ir_free = 0; |
| 49 | return xfs_btree_lookup(cur, dir, stat); |
Christoph Hellwig | fe033cc | 2008-10-30 16:56:09 +1100 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | /* |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 53 | * Update the record referred to by cur to the value given. |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 54 | * This either works (return 0) or gets an EFSCORRUPTED error. |
| 55 | */ |
| 56 | STATIC int /* error */ |
| 57 | xfs_inobt_update( |
| 58 | struct xfs_btree_cur *cur, /* btree cursor */ |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 59 | xfs_inobt_rec_incore_t *irec) /* btree record */ |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 60 | { |
| 61 | union xfs_btree_rec rec; |
| 62 | |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 63 | rec.inobt.ir_startino = cpu_to_be32(irec->ir_startino); |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 64 | if (xfs_sb_version_hassparseinodes(&cur->bc_mp->m_sb)) { |
| 65 | rec.inobt.ir_u.sp.ir_holemask = cpu_to_be16(irec->ir_holemask); |
| 66 | rec.inobt.ir_u.sp.ir_count = irec->ir_count; |
| 67 | rec.inobt.ir_u.sp.ir_freecount = irec->ir_freecount; |
| 68 | } else { |
| 69 | /* ir_holemask/ir_count not supported on-disk */ |
| 70 | rec.inobt.ir_u.f.ir_freecount = cpu_to_be32(irec->ir_freecount); |
| 71 | } |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 72 | rec.inobt.ir_free = cpu_to_be64(irec->ir_free); |
Christoph Hellwig | 278d0ca | 2008-10-30 16:56:32 +1100 | [diff] [blame] | 73 | return xfs_btree_update(cur, &rec); |
| 74 | } |
| 75 | |
Darrick J. Wong | e936945 | 2017-06-16 11:00:08 -0700 | [diff] [blame] | 76 | /* Convert on-disk btree record to incore inobt record. */ |
| 77 | void |
| 78 | xfs_inobt_btrec_to_irec( |
| 79 | struct xfs_mount *mp, |
| 80 | union xfs_btree_rec *rec, |
| 81 | struct xfs_inobt_rec_incore *irec) |
Christoph Hellwig | 8cc938f | 2008-10-30 16:58:11 +1100 | [diff] [blame] | 82 | { |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 83 | irec->ir_startino = be32_to_cpu(rec->inobt.ir_startino); |
Darrick J. Wong | e936945 | 2017-06-16 11:00:08 -0700 | [diff] [blame] | 84 | if (xfs_sb_version_hassparseinodes(&mp->m_sb)) { |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 85 | irec->ir_holemask = be16_to_cpu(rec->inobt.ir_u.sp.ir_holemask); |
| 86 | irec->ir_count = rec->inobt.ir_u.sp.ir_count; |
| 87 | irec->ir_freecount = rec->inobt.ir_u.sp.ir_freecount; |
| 88 | } else { |
| 89 | /* |
| 90 | * ir_holemask/ir_count not supported on-disk. Fill in hardcoded |
| 91 | * values for full inode chunks. |
| 92 | */ |
| 93 | irec->ir_holemask = XFS_INOBT_HOLEMASK_FULL; |
| 94 | irec->ir_count = XFS_INODES_PER_CHUNK; |
| 95 | irec->ir_freecount = |
| 96 | be32_to_cpu(rec->inobt.ir_u.f.ir_freecount); |
Christoph Hellwig | 8cc938f | 2008-10-30 16:58:11 +1100 | [diff] [blame] | 97 | } |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 98 | irec->ir_free = be64_to_cpu(rec->inobt.ir_free); |
Darrick J. Wong | e936945 | 2017-06-16 11:00:08 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /* |
| 102 | * Get the data from the pointed-to record. |
| 103 | */ |
| 104 | int |
| 105 | xfs_inobt_get_rec( |
| 106 | struct xfs_btree_cur *cur, |
| 107 | struct xfs_inobt_rec_incore *irec, |
| 108 | int *stat) |
| 109 | { |
Dave Chinner | 9e6c08d | 2018-06-05 19:42:13 -0700 | [diff] [blame] | 110 | struct xfs_mount *mp = cur->bc_mp; |
| 111 | xfs_agnumber_t agno = cur->bc_private.a.agno; |
Darrick J. Wong | e936945 | 2017-06-16 11:00:08 -0700 | [diff] [blame] | 112 | union xfs_btree_rec *rec; |
| 113 | int error; |
Dave Chinner | 9e6c08d | 2018-06-05 19:42:13 -0700 | [diff] [blame] | 114 | uint64_t realfree; |
Darrick J. Wong | e936945 | 2017-06-16 11:00:08 -0700 | [diff] [blame] | 115 | |
| 116 | error = xfs_btree_get_rec(cur, &rec, stat); |
| 117 | if (error || *stat == 0) |
| 118 | return error; |
| 119 | |
Dave Chinner | 9e6c08d | 2018-06-05 19:42:13 -0700 | [diff] [blame] | 120 | xfs_inobt_btrec_to_irec(mp, rec, irec); |
| 121 | |
| 122 | if (!xfs_verify_agino(mp, agno, irec->ir_startino)) |
| 123 | goto out_bad_rec; |
| 124 | if (irec->ir_count < XFS_INODES_PER_HOLEMASK_BIT || |
| 125 | irec->ir_count > XFS_INODES_PER_CHUNK) |
| 126 | goto out_bad_rec; |
| 127 | if (irec->ir_freecount > XFS_INODES_PER_CHUNK) |
| 128 | goto out_bad_rec; |
| 129 | |
| 130 | /* if there are no holes, return the first available offset */ |
| 131 | if (!xfs_inobt_issparse(irec->ir_holemask)) |
| 132 | realfree = irec->ir_free; |
| 133 | else |
| 134 | realfree = irec->ir_free & xfs_inobt_irec_to_allocmask(irec); |
| 135 | if (hweight64(realfree) != irec->ir_freecount) |
| 136 | goto out_bad_rec; |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 137 | |
| 138 | return 0; |
Dave Chinner | 9e6c08d | 2018-06-05 19:42:13 -0700 | [diff] [blame] | 139 | |
| 140 | out_bad_rec: |
| 141 | xfs_warn(mp, |
| 142 | "%s Inode BTree record corruption in AG %d detected!", |
| 143 | cur->bc_btnum == XFS_BTNUM_INO ? "Used" : "Free", agno); |
| 144 | xfs_warn(mp, |
| 145 | "start inode 0x%x, count 0x%x, free 0x%x freemask 0x%llx, holemask 0x%x", |
| 146 | irec->ir_startino, irec->ir_count, irec->ir_freecount, |
| 147 | irec->ir_free, irec->ir_holemask); |
| 148 | return -EFSCORRUPTED; |
Christoph Hellwig | 8cc938f | 2008-10-30 16:58:11 +1100 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | /* |
Brian Foster | 0aa0a75 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 152 | * Insert a single inobt record. Cursor must already point to desired location. |
| 153 | */ |
Darrick J. Wong | 7f8f131 | 2018-05-09 10:02:02 -0700 | [diff] [blame] | 154 | int |
Brian Foster | 0aa0a75 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 155 | xfs_inobt_insert_rec( |
| 156 | struct xfs_btree_cur *cur, |
Darrick J. Wong | c8ce540 | 2017-06-16 11:00:05 -0700 | [diff] [blame] | 157 | uint16_t holemask, |
| 158 | uint8_t count, |
| 159 | int32_t freecount, |
Brian Foster | 0aa0a75 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 160 | xfs_inofree_t free, |
| 161 | int *stat) |
| 162 | { |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 163 | cur->bc_rec.i.ir_holemask = holemask; |
| 164 | cur->bc_rec.i.ir_count = count; |
Brian Foster | 0aa0a75 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 165 | cur->bc_rec.i.ir_freecount = freecount; |
| 166 | cur->bc_rec.i.ir_free = free; |
| 167 | return xfs_btree_insert(cur, stat); |
| 168 | } |
| 169 | |
| 170 | /* |
| 171 | * Insert records describing a newly allocated inode chunk into the inobt. |
| 172 | */ |
| 173 | STATIC int |
| 174 | xfs_inobt_insert( |
| 175 | struct xfs_mount *mp, |
| 176 | struct xfs_trans *tp, |
| 177 | struct xfs_buf *agbp, |
| 178 | xfs_agino_t newino, |
| 179 | xfs_agino_t newlen, |
| 180 | xfs_btnum_t btnum) |
| 181 | { |
| 182 | struct xfs_btree_cur *cur; |
| 183 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 184 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 185 | xfs_agino_t thisino; |
| 186 | int i; |
| 187 | int error; |
| 188 | |
| 189 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, btnum); |
| 190 | |
| 191 | for (thisino = newino; |
| 192 | thisino < newino + newlen; |
| 193 | thisino += XFS_INODES_PER_CHUNK) { |
| 194 | error = xfs_inobt_lookup(cur, thisino, XFS_LOOKUP_EQ, &i); |
| 195 | if (error) { |
| 196 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 197 | return error; |
| 198 | } |
| 199 | ASSERT(i == 0); |
| 200 | |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 201 | error = xfs_inobt_insert_rec(cur, XFS_INOBT_HOLEMASK_FULL, |
| 202 | XFS_INODES_PER_CHUNK, |
| 203 | XFS_INODES_PER_CHUNK, |
Brian Foster | 0aa0a75 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 204 | XFS_INOBT_ALL_FREE, &i); |
| 205 | if (error) { |
| 206 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 207 | return error; |
| 208 | } |
| 209 | ASSERT(i == 1); |
| 210 | } |
| 211 | |
| 212 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
| 217 | /* |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 218 | * Verify that the number of free inodes in the AGI is correct. |
| 219 | */ |
| 220 | #ifdef DEBUG |
| 221 | STATIC int |
| 222 | xfs_check_agi_freecount( |
| 223 | struct xfs_btree_cur *cur, |
| 224 | struct xfs_agi *agi) |
| 225 | { |
| 226 | if (cur->bc_nlevels == 1) { |
| 227 | xfs_inobt_rec_incore_t rec; |
| 228 | int freecount = 0; |
| 229 | int error; |
| 230 | int i; |
| 231 | |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 232 | error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i); |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 233 | if (error) |
| 234 | return error; |
| 235 | |
| 236 | do { |
| 237 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 238 | if (error) |
| 239 | return error; |
| 240 | |
| 241 | if (i) { |
| 242 | freecount += rec.ir_freecount; |
| 243 | error = xfs_btree_increment(cur, 0, &i); |
| 244 | if (error) |
| 245 | return error; |
| 246 | } |
| 247 | } while (i == 1); |
| 248 | |
| 249 | if (!XFS_FORCED_SHUTDOWN(cur->bc_mp)) |
| 250 | ASSERT(freecount == be32_to_cpu(agi->agi_freecount)); |
| 251 | } |
| 252 | return 0; |
| 253 | } |
| 254 | #else |
| 255 | #define xfs_check_agi_freecount(cur, agi) 0 |
| 256 | #endif |
| 257 | |
| 258 | /* |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 259 | * Initialise a new set of inodes. When called without a transaction context |
| 260 | * (e.g. from recovery) we initiate a delayed write of the inode buffers rather |
| 261 | * than logging them (which in a transaction context puts them into the AIL |
| 262 | * for writeback rather than the xfsbufd queue). |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 263 | */ |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 264 | int |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 265 | xfs_ialloc_inode_init( |
| 266 | struct xfs_mount *mp, |
| 267 | struct xfs_trans *tp, |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 268 | struct list_head *buffer_list, |
Brian Foster | 463958a | 2015-05-29 09:05:49 +1000 | [diff] [blame] | 269 | int icount, |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 270 | xfs_agnumber_t agno, |
| 271 | xfs_agblock_t agbno, |
| 272 | xfs_agblock_t length, |
| 273 | unsigned int gen) |
| 274 | { |
| 275 | struct xfs_buf *fbuf; |
| 276 | struct xfs_dinode *free; |
Darrick J. Wong | 83dcdb4 | 2018-12-12 08:46:25 -0800 | [diff] [blame] | 277 | int nbufs; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 278 | int version; |
| 279 | int i, j; |
| 280 | xfs_daddr_t d; |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 281 | xfs_ino_t ino = 0; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 282 | |
| 283 | /* |
Jie Liu | 6e0c7b8 | 2013-12-13 15:51:49 +1100 | [diff] [blame] | 284 | * Loop over the new block(s), filling in the inodes. For small block |
| 285 | * sizes, manipulate the inodes in buffers which are multiples of the |
| 286 | * blocks size. |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 287 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 288 | nbufs = length / M_IGEO(mp)->blocks_per_cluster; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 289 | |
| 290 | /* |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 291 | * Figure out what version number to use in the inodes we create. If |
| 292 | * the superblock version has caught up to the one that supports the new |
| 293 | * inode format, then use the new inode version. Otherwise use the old |
| 294 | * version so that old kernels will continue to be able to use the file |
| 295 | * system. |
| 296 | * |
| 297 | * For v3 inodes, we also need to write the inode number into the inode, |
| 298 | * so calculate the first inode number of the chunk here as |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 299 | * XFS_AGB_TO_AGINO() only works within a filesystem block, not |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 300 | * across multiple filesystem blocks (such as a cluster) and so cannot |
| 301 | * be used in the cluster buffer loop below. |
| 302 | * |
| 303 | * Further, because we are writing the inode directly into the buffer |
| 304 | * and calculating a CRC on the entire inode, we have ot log the entire |
| 305 | * inode so that the entire range the CRC covers is present in the log. |
| 306 | * That means for v3 inode we log the entire buffer rather than just the |
| 307 | * inode cores. |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 308 | */ |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 309 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 310 | version = 3; |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 311 | ino = XFS_AGINO_TO_INO(mp, agno, XFS_AGB_TO_AGINO(mp, agbno)); |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 312 | |
| 313 | /* |
| 314 | * log the initialisation that is about to take place as an |
| 315 | * logical operation. This means the transaction does not |
| 316 | * need to log the physical changes to the inode buffers as log |
| 317 | * recovery will know what initialisation is actually needed. |
| 318 | * Hence we only need to log the buffers as "ordered" buffers so |
| 319 | * they track in the AIL as if they were physically logged. |
| 320 | */ |
| 321 | if (tp) |
Brian Foster | 463958a | 2015-05-29 09:05:49 +1000 | [diff] [blame] | 322 | xfs_icreate_log(tp, agno, agbno, icount, |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 323 | mp->m_sb.sb_inodesize, length, gen); |
Dave Chinner | 263997a | 2014-05-20 07:46:40 +1000 | [diff] [blame] | 324 | } else |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 325 | version = 2; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 326 | |
| 327 | for (j = 0; j < nbufs; j++) { |
| 328 | /* |
| 329 | * Get the block. |
| 330 | */ |
Darrick J. Wong | 83dcdb4 | 2018-12-12 08:46:25 -0800 | [diff] [blame] | 331 | d = XFS_AGB_TO_DADDR(mp, agno, agbno + |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 332 | (j * M_IGEO(mp)->blocks_per_cluster)); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 333 | fbuf = xfs_trans_get_buf(tp, mp->m_ddev_targp, d, |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 334 | mp->m_bsize * |
| 335 | M_IGEO(mp)->blocks_per_cluster, |
Dave Chinner | 7c4cebe | 2012-11-23 14:24:23 +1100 | [diff] [blame] | 336 | XBF_UNMAPPED); |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 337 | if (!fbuf) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 338 | return -ENOMEM; |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 339 | |
| 340 | /* Initialize the inode buffers and log them appropriately. */ |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 341 | fbuf->b_ops = &xfs_inode_buf_ops; |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 342 | xfs_buf_zero(fbuf, 0, BBTOB(fbuf->b_length)); |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 343 | for (i = 0; i < M_IGEO(mp)->inodes_per_cluster; i++) { |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 344 | int ioffset = i << mp->m_sb.sb_inodelog; |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 345 | uint isize = xfs_dinode_size(version); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 346 | |
| 347 | free = xfs_make_iptr(mp, fbuf, i); |
| 348 | free->di_magic = cpu_to_be16(XFS_DINODE_MAGIC); |
| 349 | free->di_version = version; |
| 350 | free->di_gen = cpu_to_be32(gen); |
| 351 | free->di_next_unlinked = cpu_to_be32(NULLAGINO); |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 352 | |
| 353 | if (version == 3) { |
| 354 | free->di_ino = cpu_to_be64(ino); |
| 355 | ino++; |
Eric Sandeen | ce748ea | 2015-07-29 11:53:31 +1000 | [diff] [blame] | 356 | uuid_copy(&free->di_uuid, |
| 357 | &mp->m_sb.sb_meta_uuid); |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 358 | xfs_dinode_calc_crc(mp, free); |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 359 | } else if (tp) { |
Christoph Hellwig | 93848a9 | 2013-04-03 16:11:17 +1100 | [diff] [blame] | 360 | /* just log the inode core */ |
| 361 | xfs_trans_log_buf(tp, fbuf, ioffset, |
| 362 | ioffset + isize - 1); |
| 363 | } |
| 364 | } |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 365 | |
| 366 | if (tp) { |
| 367 | /* |
| 368 | * Mark the buffer as an inode allocation buffer so it |
| 369 | * sticks in AIL at the point of this allocation |
| 370 | * transaction. This ensures the they are on disk before |
| 371 | * the tail of the log can be moved past this |
| 372 | * transaction (i.e. by preventing relogging from moving |
| 373 | * it forward in the log). |
| 374 | */ |
| 375 | xfs_trans_inode_alloc_buf(tp, fbuf); |
| 376 | if (version == 3) { |
Dave Chinner | ddf6ad0 | 2013-06-27 16:04:56 +1000 | [diff] [blame] | 377 | /* |
| 378 | * Mark the buffer as ordered so that they are |
| 379 | * not physically logged in the transaction but |
| 380 | * still tracked in the AIL as part of the |
| 381 | * transaction and pin the log appropriately. |
| 382 | */ |
| 383 | xfs_trans_ordered_buf(tp, fbuf); |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 384 | } |
| 385 | } else { |
| 386 | fbuf->b_flags |= XBF_DONE; |
| 387 | xfs_buf_delwri_queue(fbuf, buffer_list); |
| 388 | xfs_buf_relse(fbuf); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 389 | } |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 390 | } |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 391 | return 0; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /* |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 395 | * Align startino and allocmask for a recently allocated sparse chunk such that |
| 396 | * they are fit for insertion (or merge) into the on-disk inode btrees. |
| 397 | * |
| 398 | * Background: |
| 399 | * |
| 400 | * When enabled, sparse inode support increases the inode alignment from cluster |
| 401 | * size to inode chunk size. This means that the minimum range between two |
| 402 | * non-adjacent inode records in the inobt is large enough for a full inode |
| 403 | * record. This allows for cluster sized, cluster aligned block allocation |
| 404 | * without need to worry about whether the resulting inode record overlaps with |
| 405 | * another record in the tree. Without this basic rule, we would have to deal |
| 406 | * with the consequences of overlap by potentially undoing recent allocations in |
| 407 | * the inode allocation codepath. |
| 408 | * |
| 409 | * Because of this alignment rule (which is enforced on mount), there are two |
| 410 | * inobt possibilities for newly allocated sparse chunks. One is that the |
| 411 | * aligned inode record for the chunk covers a range of inodes not already |
| 412 | * covered in the inobt (i.e., it is safe to insert a new sparse record). The |
| 413 | * other is that a record already exists at the aligned startino that considers |
| 414 | * the newly allocated range as sparse. In the latter case, record content is |
| 415 | * merged in hope that sparse inode chunks fill to full chunks over time. |
| 416 | */ |
| 417 | STATIC void |
| 418 | xfs_align_sparse_ino( |
| 419 | struct xfs_mount *mp, |
| 420 | xfs_agino_t *startino, |
| 421 | uint16_t *allocmask) |
| 422 | { |
| 423 | xfs_agblock_t agbno; |
| 424 | xfs_agblock_t mod; |
| 425 | int offset; |
| 426 | |
| 427 | agbno = XFS_AGINO_TO_AGBNO(mp, *startino); |
| 428 | mod = agbno % mp->m_sb.sb_inoalignmt; |
| 429 | if (!mod) |
| 430 | return; |
| 431 | |
| 432 | /* calculate the inode offset and align startino */ |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 433 | offset = XFS_AGB_TO_AGINO(mp, mod); |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 434 | *startino -= offset; |
| 435 | |
| 436 | /* |
| 437 | * Since startino has been aligned down, left shift allocmask such that |
| 438 | * it continues to represent the same physical inodes relative to the |
| 439 | * new startino. |
| 440 | */ |
| 441 | *allocmask <<= offset / XFS_INODES_PER_HOLEMASK_BIT; |
| 442 | } |
| 443 | |
| 444 | /* |
| 445 | * Determine whether the source inode record can merge into the target. Both |
| 446 | * records must be sparse, the inode ranges must match and there must be no |
| 447 | * allocation overlap between the records. |
| 448 | */ |
| 449 | STATIC bool |
| 450 | __xfs_inobt_can_merge( |
| 451 | struct xfs_inobt_rec_incore *trec, /* tgt record */ |
| 452 | struct xfs_inobt_rec_incore *srec) /* src record */ |
| 453 | { |
| 454 | uint64_t talloc; |
| 455 | uint64_t salloc; |
| 456 | |
| 457 | /* records must cover the same inode range */ |
| 458 | if (trec->ir_startino != srec->ir_startino) |
| 459 | return false; |
| 460 | |
| 461 | /* both records must be sparse */ |
| 462 | if (!xfs_inobt_issparse(trec->ir_holemask) || |
| 463 | !xfs_inobt_issparse(srec->ir_holemask)) |
| 464 | return false; |
| 465 | |
| 466 | /* both records must track some inodes */ |
| 467 | if (!trec->ir_count || !srec->ir_count) |
| 468 | return false; |
| 469 | |
| 470 | /* can't exceed capacity of a full record */ |
| 471 | if (trec->ir_count + srec->ir_count > XFS_INODES_PER_CHUNK) |
| 472 | return false; |
| 473 | |
| 474 | /* verify there is no allocation overlap */ |
| 475 | talloc = xfs_inobt_irec_to_allocmask(trec); |
| 476 | salloc = xfs_inobt_irec_to_allocmask(srec); |
| 477 | if (talloc & salloc) |
| 478 | return false; |
| 479 | |
| 480 | return true; |
| 481 | } |
| 482 | |
| 483 | /* |
| 484 | * Merge the source inode record into the target. The caller must call |
| 485 | * __xfs_inobt_can_merge() to ensure the merge is valid. |
| 486 | */ |
| 487 | STATIC void |
| 488 | __xfs_inobt_rec_merge( |
| 489 | struct xfs_inobt_rec_incore *trec, /* target */ |
| 490 | struct xfs_inobt_rec_incore *srec) /* src */ |
| 491 | { |
| 492 | ASSERT(trec->ir_startino == srec->ir_startino); |
| 493 | |
| 494 | /* combine the counts */ |
| 495 | trec->ir_count += srec->ir_count; |
| 496 | trec->ir_freecount += srec->ir_freecount; |
| 497 | |
| 498 | /* |
| 499 | * Merge the holemask and free mask. For both fields, 0 bits refer to |
| 500 | * allocated inodes. We combine the allocated ranges with bitwise AND. |
| 501 | */ |
| 502 | trec->ir_holemask &= srec->ir_holemask; |
| 503 | trec->ir_free &= srec->ir_free; |
| 504 | } |
| 505 | |
| 506 | /* |
| 507 | * Insert a new sparse inode chunk into the associated inode btree. The inode |
| 508 | * record for the sparse chunk is pre-aligned to a startino that should match |
| 509 | * any pre-existing sparse inode record in the tree. This allows sparse chunks |
| 510 | * to fill over time. |
| 511 | * |
| 512 | * This function supports two modes of handling preexisting records depending on |
| 513 | * the merge flag. If merge is true, the provided record is merged with the |
| 514 | * existing record and updated in place. The merged record is returned in nrec. |
| 515 | * If merge is false, an existing record is replaced with the provided record. |
| 516 | * If no preexisting record exists, the provided record is always inserted. |
| 517 | * |
| 518 | * It is considered corruption if a merge is requested and not possible. Given |
| 519 | * the sparse inode alignment constraints, this should never happen. |
| 520 | */ |
| 521 | STATIC int |
| 522 | xfs_inobt_insert_sprec( |
| 523 | struct xfs_mount *mp, |
| 524 | struct xfs_trans *tp, |
| 525 | struct xfs_buf *agbp, |
| 526 | int btnum, |
| 527 | struct xfs_inobt_rec_incore *nrec, /* in/out: new/merged rec. */ |
| 528 | bool merge) /* merge or replace */ |
| 529 | { |
| 530 | struct xfs_btree_cur *cur; |
| 531 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 532 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 533 | int error; |
| 534 | int i; |
| 535 | struct xfs_inobt_rec_incore rec; |
| 536 | |
| 537 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, btnum); |
| 538 | |
| 539 | /* the new record is pre-aligned so we know where to look */ |
| 540 | error = xfs_inobt_lookup(cur, nrec->ir_startino, XFS_LOOKUP_EQ, &i); |
| 541 | if (error) |
| 542 | goto error; |
| 543 | /* if nothing there, insert a new record and return */ |
| 544 | if (i == 0) { |
| 545 | error = xfs_inobt_insert_rec(cur, nrec->ir_holemask, |
| 546 | nrec->ir_count, nrec->ir_freecount, |
| 547 | nrec->ir_free, &i); |
| 548 | if (error) |
| 549 | goto error; |
| 550 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error); |
| 551 | |
| 552 | goto out; |
| 553 | } |
| 554 | |
| 555 | /* |
| 556 | * A record exists at this startino. Merge or replace the record |
| 557 | * depending on what we've been asked to do. |
| 558 | */ |
| 559 | if (merge) { |
| 560 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 561 | if (error) |
| 562 | goto error; |
| 563 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error); |
| 564 | XFS_WANT_CORRUPTED_GOTO(mp, |
| 565 | rec.ir_startino == nrec->ir_startino, |
| 566 | error); |
| 567 | |
| 568 | /* |
| 569 | * This should never fail. If we have coexisting records that |
| 570 | * cannot merge, something is seriously wrong. |
| 571 | */ |
| 572 | XFS_WANT_CORRUPTED_GOTO(mp, __xfs_inobt_can_merge(nrec, &rec), |
| 573 | error); |
| 574 | |
| 575 | trace_xfs_irec_merge_pre(mp, agno, rec.ir_startino, |
| 576 | rec.ir_holemask, nrec->ir_startino, |
| 577 | nrec->ir_holemask); |
| 578 | |
| 579 | /* merge to nrec to output the updated record */ |
| 580 | __xfs_inobt_rec_merge(nrec, &rec); |
| 581 | |
| 582 | trace_xfs_irec_merge_post(mp, agno, nrec->ir_startino, |
| 583 | nrec->ir_holemask); |
| 584 | |
| 585 | error = xfs_inobt_rec_check_count(mp, nrec); |
| 586 | if (error) |
| 587 | goto error; |
| 588 | } |
| 589 | |
| 590 | error = xfs_inobt_update(cur, nrec); |
| 591 | if (error) |
| 592 | goto error; |
| 593 | |
| 594 | out: |
| 595 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 596 | return 0; |
| 597 | error: |
| 598 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 599 | return error; |
| 600 | } |
| 601 | |
| 602 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | * Allocate new inodes in the allocation group specified by agbp. |
| 604 | * Return 0 for success, else error code. |
| 605 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 606 | STATIC int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | xfs_ialloc_ag_alloc( |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 608 | struct xfs_trans *tp, |
| 609 | struct xfs_buf *agbp, |
| 610 | int *alloc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 612 | struct xfs_agi *agi; |
| 613 | struct xfs_alloc_arg args; |
| 614 | xfs_agnumber_t agno; |
| 615 | int error; |
| 616 | xfs_agino_t newino; /* new first inode's number */ |
| 617 | xfs_agino_t newlen; /* new number of inodes */ |
| 618 | int isaligned = 0; /* inode allocation at stripe */ |
| 619 | /* unit boundary */ |
| 620 | /* init. to full chunk */ |
| 621 | uint16_t allocmask = (uint16_t) -1; |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 622 | struct xfs_inobt_rec_incore rec; |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 623 | struct xfs_perag *pag; |
| 624 | struct xfs_ino_geometry *igeo = M_IGEO(tp->t_mountp); |
| 625 | int do_sparse = 0; |
Brian Foster | 1cdadee | 2015-05-29 09:19:29 +1000 | [diff] [blame] | 626 | |
Mark Tinguely | a004168 | 2012-09-20 13:16:45 -0500 | [diff] [blame] | 627 | memset(&args, 0, sizeof(args)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | args.tp = tp; |
| 629 | args.mp = tp->t_mountp; |
Brian Foster | 1cdadee | 2015-05-29 09:19:29 +1000 | [diff] [blame] | 630 | args.fsbno = NULLFSBLOCK; |
Darrick J. Wong | 7280fed | 2018-12-12 08:46:23 -0800 | [diff] [blame] | 631 | args.oinfo = XFS_RMAP_OINFO_INODES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Brian Foster | 46fc58d | 2015-06-04 13:03:34 +1000 | [diff] [blame] | 633 | #ifdef DEBUG |
| 634 | /* randomly do sparse inode allocations */ |
| 635 | if (xfs_sb_version_hassparseinodes(&tp->t_mountp->m_sb) && |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 636 | igeo->ialloc_min_blks < igeo->ialloc_blks) |
Brian Foster | 46fc58d | 2015-06-04 13:03:34 +1000 | [diff] [blame] | 637 | do_sparse = prandom_u32() & 1; |
| 638 | #endif |
| 639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | /* |
| 641 | * Locking will ensure that we don't have two callers in here |
| 642 | * at one time. |
| 643 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 644 | newlen = igeo->ialloc_inos; |
| 645 | if (igeo->maxicount && |
George Wang | 74f9ce1 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 646 | percpu_counter_read_positive(&args.mp->m_icount) + newlen > |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 647 | igeo->maxicount) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 648 | return -ENOSPC; |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 649 | args.minlen = args.maxlen = igeo->ialloc_blks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | /* |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 651 | * First try to allocate inodes contiguous with the last-allocated |
| 652 | * chunk of inodes. If the filesystem is striped, this will fill |
| 653 | * an entire stripe unit with inodes. |
Dave Chinner | 28c8e41 | 2013-06-27 16:04:55 +1000 | [diff] [blame] | 654 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | agi = XFS_BUF_TO_AGI(agbp); |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 656 | newino = be32_to_cpu(agi->agi_newino); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 657 | agno = be32_to_cpu(agi->agi_seqno); |
Nathan Scott | 019ff2d | 2006-04-11 15:45:05 +1000 | [diff] [blame] | 658 | args.agbno = XFS_AGINO_TO_AGBNO(args.mp, newino) + |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 659 | igeo->ialloc_blks; |
Brian Foster | 1cdadee | 2015-05-29 09:19:29 +1000 | [diff] [blame] | 660 | if (do_sparse) |
| 661 | goto sparse_alloc; |
Nathan Scott | 019ff2d | 2006-04-11 15:45:05 +1000 | [diff] [blame] | 662 | if (likely(newino != NULLAGINO && |
| 663 | (args.agbno < be32_to_cpu(agi->agi_length)))) { |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 664 | args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno); |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 665 | args.type = XFS_ALLOCTYPE_THIS_BNO; |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 666 | args.prod = 1; |
David Chinner | 75de2a9 | 2008-03-27 18:00:38 +1100 | [diff] [blame] | 667 | |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 668 | /* |
David Chinner | 75de2a9 | 2008-03-27 18:00:38 +1100 | [diff] [blame] | 669 | * We need to take into account alignment here to ensure that |
| 670 | * we don't modify the free list if we fail to have an exact |
| 671 | * block. If we don't have an exact match, and every oher |
| 672 | * attempt allocation attempt fails, we'll end up cancelling |
| 673 | * a dirty transaction and shutting down. |
| 674 | * |
| 675 | * For an exact allocation, alignment must be 1, |
| 676 | * however we need to take cluster alignment into account when |
| 677 | * fixing up the freelist. Use the minalignslop field to |
| 678 | * indicate that extra blocks might be required for alignment, |
| 679 | * but not to use them in the actual exact allocation. |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 680 | */ |
David Chinner | 75de2a9 | 2008-03-27 18:00:38 +1100 | [diff] [blame] | 681 | args.alignment = 1; |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 682 | args.minalignslop = igeo->cluster_align - 1; |
David Chinner | 75de2a9 | 2008-03-27 18:00:38 +1100 | [diff] [blame] | 683 | |
| 684 | /* Allow space for the inode btree to split. */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 685 | args.minleft = igeo->inobt_maxlevels - 1; |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 686 | if ((error = xfs_alloc_vextent(&args))) |
| 687 | return error; |
Brian Foster | e480a72 | 2014-03-07 16:19:14 +1100 | [diff] [blame] | 688 | |
| 689 | /* |
| 690 | * This request might have dirtied the transaction if the AG can |
| 691 | * satisfy the request, but the exact block was not available. |
| 692 | * If the allocation did fail, subsequent requests will relax |
| 693 | * the exact agbno requirement and increase the alignment |
| 694 | * instead. It is critical that the total size of the request |
| 695 | * (len + alignment + slop) does not increase from this point |
| 696 | * on, so reset minalignslop to ensure it is not included in |
| 697 | * subsequent requests. |
| 698 | */ |
| 699 | args.minalignslop = 0; |
Brian Foster | 1cdadee | 2015-05-29 09:19:29 +1000 | [diff] [blame] | 700 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 702 | if (unlikely(args.fsbno == NULLFSBLOCK)) { |
| 703 | /* |
| 704 | * Set the alignment for the allocation. |
| 705 | * If stripe alignment is turned on then align at stripe unit |
| 706 | * boundary. |
Nathan Scott | 019ff2d | 2006-04-11 15:45:05 +1000 | [diff] [blame] | 707 | * If the cluster size is smaller than a filesystem block |
| 708 | * then we're doing I/O for inodes in filesystem block size |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 709 | * pieces, so don't need alignment anyway. |
| 710 | */ |
| 711 | isaligned = 0; |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 712 | if (igeo->ialloc_align) { |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 713 | ASSERT(!(args.mp->m_flags & XFS_MOUNT_NOALIGN)); |
| 714 | args.alignment = args.mp->m_dalign; |
| 715 | isaligned = 1; |
David Chinner | 75de2a9 | 2008-03-27 18:00:38 +1100 | [diff] [blame] | 716 | } else |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 717 | args.alignment = igeo->cluster_align; |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 718 | /* |
| 719 | * Need to figure out where to allocate the inode blocks. |
| 720 | * Ideally they should be spaced out through the a.g. |
| 721 | * For now, just allocate blocks up front. |
| 722 | */ |
| 723 | args.agbno = be32_to_cpu(agi->agi_root); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 724 | args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno); |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 725 | /* |
| 726 | * Allocate a fixed-size extent of inodes. |
| 727 | */ |
| 728 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 729 | args.prod = 1; |
| 730 | /* |
| 731 | * Allow space for the inode btree to split. |
| 732 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 733 | args.minleft = igeo->inobt_maxlevels - 1; |
Glen Overby | 3ccb8b5 | 2006-03-29 09:52:28 +1000 | [diff] [blame] | 734 | if ((error = xfs_alloc_vextent(&args))) |
| 735 | return error; |
| 736 | } |
Nathan Scott | 019ff2d | 2006-04-11 15:45:05 +1000 | [diff] [blame] | 737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | /* |
| 739 | * If stripe alignment is turned on, then try again with cluster |
| 740 | * alignment. |
| 741 | */ |
| 742 | if (isaligned && args.fsbno == NULLFSBLOCK) { |
| 743 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
Christoph Hellwig | 16259e7 | 2005-11-02 15:11:25 +1100 | [diff] [blame] | 744 | args.agbno = be32_to_cpu(agi->agi_root); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 745 | args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno); |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 746 | args.alignment = igeo->cluster_align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | if ((error = xfs_alloc_vextent(&args))) |
| 748 | return error; |
| 749 | } |
| 750 | |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 751 | /* |
| 752 | * Finally, try a sparse allocation if the filesystem supports it and |
| 753 | * the sparse allocation length is smaller than a full chunk. |
| 754 | */ |
| 755 | if (xfs_sb_version_hassparseinodes(&args.mp->m_sb) && |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 756 | igeo->ialloc_min_blks < igeo->ialloc_blks && |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 757 | args.fsbno == NULLFSBLOCK) { |
Brian Foster | 1cdadee | 2015-05-29 09:19:29 +1000 | [diff] [blame] | 758 | sparse_alloc: |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 759 | args.type = XFS_ALLOCTYPE_NEAR_BNO; |
| 760 | args.agbno = be32_to_cpu(agi->agi_root); |
| 761 | args.fsbno = XFS_AGB_TO_FSB(args.mp, agno, args.agbno); |
| 762 | args.alignment = args.mp->m_sb.sb_spino_align; |
| 763 | args.prod = 1; |
| 764 | |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 765 | args.minlen = igeo->ialloc_min_blks; |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 766 | args.maxlen = args.minlen; |
| 767 | |
| 768 | /* |
| 769 | * The inode record will be aligned to full chunk size. We must |
| 770 | * prevent sparse allocation from AG boundaries that result in |
| 771 | * invalid inode records, such as records that start at agbno 0 |
| 772 | * or extend beyond the AG. |
| 773 | * |
| 774 | * Set min agbno to the first aligned, non-zero agbno and max to |
| 775 | * the last aligned agbno that is at least one full chunk from |
| 776 | * the end of the AG. |
| 777 | */ |
| 778 | args.min_agbno = args.mp->m_sb.sb_inoalignmt; |
| 779 | args.max_agbno = round_down(args.mp->m_sb.sb_agblocks, |
| 780 | args.mp->m_sb.sb_inoalignmt) - |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 781 | igeo->ialloc_blks; |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 782 | |
| 783 | error = xfs_alloc_vextent(&args); |
| 784 | if (error) |
| 785 | return error; |
| 786 | |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 787 | newlen = XFS_AGB_TO_AGINO(args.mp, args.len); |
Brian Foster | 46fc58d | 2015-06-04 13:03:34 +1000 | [diff] [blame] | 788 | ASSERT(newlen <= XFS_INODES_PER_CHUNK); |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 789 | allocmask = (1 << (newlen / XFS_INODES_PER_HOLEMASK_BIT)) - 1; |
| 790 | } |
| 791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | if (args.fsbno == NULLFSBLOCK) { |
| 793 | *alloc = 0; |
| 794 | return 0; |
| 795 | } |
| 796 | ASSERT(args.len == args.minlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | |
David Chinner | 359346a | 2008-04-29 12:53:32 +1000 | [diff] [blame] | 798 | /* |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 799 | * Stamp and write the inode buffers. |
| 800 | * |
David Chinner | 359346a | 2008-04-29 12:53:32 +1000 | [diff] [blame] | 801 | * Seed the new inode cluster with a random generation number. This |
| 802 | * prevents short-term reuse of generation numbers if a chunk is |
| 803 | * freed and then immediately reallocated. We use random numbers |
| 804 | * rather than a linear progression to prevent the next generation |
| 805 | * number from being easily guessable. |
| 806 | */ |
Brian Foster | 463958a | 2015-05-29 09:05:49 +1000 | [diff] [blame] | 807 | error = xfs_ialloc_inode_init(args.mp, tp, NULL, newlen, agno, |
| 808 | args.agbno, args.len, prandom_u32()); |
Christoph Hellwig | d42f08f | 2008-11-28 14:23:38 +1100 | [diff] [blame] | 809 | |
Chandra Seetharaman | 2a30f36d | 2011-09-20 13:56:55 +0000 | [diff] [blame] | 810 | if (error) |
| 811 | return error; |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 812 | /* |
| 813 | * Convert the results. |
| 814 | */ |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 815 | newino = XFS_AGB_TO_AGINO(args.mp, args.agbno); |
Brian Foster | 56d1115 | 2015-05-29 09:18:32 +1000 | [diff] [blame] | 816 | |
| 817 | if (xfs_inobt_issparse(~allocmask)) { |
| 818 | /* |
| 819 | * We've allocated a sparse chunk. Align the startino and mask. |
| 820 | */ |
| 821 | xfs_align_sparse_ino(args.mp, &newino, &allocmask); |
| 822 | |
| 823 | rec.ir_startino = newino; |
| 824 | rec.ir_holemask = ~allocmask; |
| 825 | rec.ir_count = newlen; |
| 826 | rec.ir_freecount = newlen; |
| 827 | rec.ir_free = XFS_INOBT_ALL_FREE; |
| 828 | |
| 829 | /* |
| 830 | * Insert the sparse record into the inobt and allow for a merge |
| 831 | * if necessary. If a merge does occur, rec is updated to the |
| 832 | * merged record. |
| 833 | */ |
| 834 | error = xfs_inobt_insert_sprec(args.mp, tp, agbp, XFS_BTNUM_INO, |
| 835 | &rec, true); |
| 836 | if (error == -EFSCORRUPTED) { |
| 837 | xfs_alert(args.mp, |
| 838 | "invalid sparse inode record: ino 0x%llx holemask 0x%x count %u", |
| 839 | XFS_AGINO_TO_INO(args.mp, agno, |
| 840 | rec.ir_startino), |
| 841 | rec.ir_holemask, rec.ir_count); |
| 842 | xfs_force_shutdown(args.mp, SHUTDOWN_CORRUPT_INCORE); |
| 843 | } |
| 844 | if (error) |
| 845 | return error; |
| 846 | |
| 847 | /* |
| 848 | * We can't merge the part we've just allocated as for the inobt |
| 849 | * due to finobt semantics. The original record may or may not |
| 850 | * exist independent of whether physical inodes exist in this |
| 851 | * sparse chunk. |
| 852 | * |
| 853 | * We must update the finobt record based on the inobt record. |
| 854 | * rec contains the fully merged and up to date inobt record |
| 855 | * from the previous call. Set merge false to replace any |
| 856 | * existing record with this one. |
| 857 | */ |
| 858 | if (xfs_sb_version_hasfinobt(&args.mp->m_sb)) { |
| 859 | error = xfs_inobt_insert_sprec(args.mp, tp, agbp, |
| 860 | XFS_BTNUM_FINO, &rec, |
| 861 | false); |
| 862 | if (error) |
| 863 | return error; |
| 864 | } |
| 865 | } else { |
| 866 | /* full chunk - insert new records to both btrees */ |
| 867 | error = xfs_inobt_insert(args.mp, tp, agbp, newino, newlen, |
| 868 | XFS_BTNUM_INO); |
| 869 | if (error) |
| 870 | return error; |
| 871 | |
| 872 | if (xfs_sb_version_hasfinobt(&args.mp->m_sb)) { |
| 873 | error = xfs_inobt_insert(args.mp, tp, agbp, newino, |
| 874 | newlen, XFS_BTNUM_FINO); |
| 875 | if (error) |
| 876 | return error; |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | /* |
| 881 | * Update AGI counts and newino. |
| 882 | */ |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 883 | be32_add_cpu(&agi->agi_count, newlen); |
| 884 | be32_add_cpu(&agi->agi_freecount, newlen); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 885 | pag = xfs_perag_get(args.mp, agno); |
| 886 | pag->pagi_freecount += newlen; |
Darrick J. Wong | 89e9b5c | 2018-06-11 21:52:01 -0700 | [diff] [blame] | 887 | pag->pagi_count += newlen; |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 888 | xfs_perag_put(pag); |
Christoph Hellwig | 16259e7 | 2005-11-02 15:11:25 +1100 | [diff] [blame] | 889 | agi->agi_newino = cpu_to_be32(newino); |
Dave Chinner | 85c0b2a | 2009-08-31 20:56:51 -0300 | [diff] [blame] | 890 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | * Log allocation group header fields |
| 893 | */ |
| 894 | xfs_ialloc_log_agi(tp, agbp, |
| 895 | XFS_AGI_COUNT | XFS_AGI_FREECOUNT | XFS_AGI_NEWINO); |
| 896 | /* |
| 897 | * Modify/log superblock values for inode count and inode free count. |
| 898 | */ |
| 899 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, (long)newlen); |
| 900 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, (long)newlen); |
| 901 | *alloc = 1; |
| 902 | return 0; |
| 903 | } |
| 904 | |
Christoph Hellwig | b8f82a4 | 2009-11-14 16:17:22 +0000 | [diff] [blame] | 905 | STATIC xfs_agnumber_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | xfs_ialloc_next_ag( |
| 907 | xfs_mount_t *mp) |
| 908 | { |
| 909 | xfs_agnumber_t agno; |
| 910 | |
| 911 | spin_lock(&mp->m_agirotor_lock); |
| 912 | agno = mp->m_agirotor; |
Carlos Maiolino | 8aea3ff | 2012-09-20 10:32:36 -0300 | [diff] [blame] | 913 | if (++mp->m_agirotor >= mp->m_maxagi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | mp->m_agirotor = 0; |
| 915 | spin_unlock(&mp->m_agirotor_lock); |
| 916 | |
| 917 | return agno; |
| 918 | } |
| 919 | |
| 920 | /* |
| 921 | * Select an allocation group to look for a free inode in, based on the parent |
Zhi Yong Wu | 2f21ff1 | 2013-08-12 03:14:58 +0000 | [diff] [blame] | 922 | * inode and the mode. Return the allocation group buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | */ |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 924 | STATIC xfs_agnumber_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | xfs_ialloc_ag_select( |
| 926 | xfs_trans_t *tp, /* transaction pointer */ |
| 927 | xfs_ino_t parent, /* parent directory inode number */ |
Christoph Hellwig | f59cf5c | 2017-12-04 17:32:55 -0800 | [diff] [blame] | 928 | umode_t mode) /* bits set to indicate file type */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | xfs_agnumber_t agcount; /* number of ag's in the filesystem */ |
| 931 | xfs_agnumber_t agno; /* current ag number */ |
| 932 | int flags; /* alloc buffer locking flags */ |
| 933 | xfs_extlen_t ineed; /* blocks needed for inode allocation */ |
| 934 | xfs_extlen_t longest = 0; /* longest extent available */ |
| 935 | xfs_mount_t *mp; /* mount point structure */ |
| 936 | int needspace; /* file mode implies space allocated */ |
| 937 | xfs_perag_t *pag; /* per allocation group data */ |
| 938 | xfs_agnumber_t pagno; /* parent (starting) ag number */ |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 939 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
| 941 | /* |
| 942 | * Files of these types need at least one block if length > 0 |
| 943 | * (and they won't fit in the inode, but that's hard to figure out). |
| 944 | */ |
| 945 | needspace = S_ISDIR(mode) || S_ISREG(mode) || S_ISLNK(mode); |
| 946 | mp = tp->t_mountp; |
| 947 | agcount = mp->m_maxagi; |
| 948 | if (S_ISDIR(mode)) |
| 949 | pagno = xfs_ialloc_next_ag(mp); |
| 950 | else { |
| 951 | pagno = XFS_INO_TO_AGNO(mp, parent); |
| 952 | if (pagno >= agcount) |
| 953 | pagno = 0; |
| 954 | } |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | ASSERT(pagno < agcount); |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 957 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | /* |
| 959 | * Loop through allocation groups, looking for one with a little |
| 960 | * free space in it. Note we don't look for free inodes, exactly. |
| 961 | * Instead, we include whether there is a need to allocate inodes |
| 962 | * to mean that blocks must be allocated for them, |
| 963 | * if none are currently free. |
| 964 | */ |
| 965 | agno = pagno; |
| 966 | flags = XFS_ALLOC_FLAG_TRYLOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | for (;;) { |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 968 | pag = xfs_perag_get(mp, agno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | if (!pag->pagi_inodeok) { |
| 970 | xfs_ialloc_next_ag(mp); |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 971 | goto nextag; |
| 972 | } |
| 973 | |
| 974 | if (!pag->pagi_init) { |
| 975 | error = xfs_ialloc_pagi_init(mp, tp, agno); |
| 976 | if (error) |
| 977 | goto nextag; |
| 978 | } |
| 979 | |
| 980 | if (pag->pagi_freecount) { |
| 981 | xfs_perag_put(pag); |
| 982 | return agno; |
| 983 | } |
| 984 | |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 985 | if (!pag->pagf_init) { |
| 986 | error = xfs_alloc_pagf_init(mp, tp, agno, flags); |
| 987 | if (error) |
| 988 | goto nextag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | /* |
Dave Chinner | 7a1df15 | 2014-12-04 09:42:21 +1100 | [diff] [blame] | 992 | * Check that there is enough free space for the file plus a |
| 993 | * chunk of inodes if we need to allocate some. If this is the |
| 994 | * first pass across the AGs, take into account the potential |
| 995 | * space needed for alignment of inode chunks when checking the |
| 996 | * longest contiguous free space in the AG - this prevents us |
| 997 | * from getting ENOSPC because we have free space larger than |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 998 | * ialloc_blks but alignment constraints prevent us from using |
Dave Chinner | 7a1df15 | 2014-12-04 09:42:21 +1100 | [diff] [blame] | 999 | * it. |
| 1000 | * |
| 1001 | * If we can't find an AG with space for full alignment slack to |
| 1002 | * be taken into account, we must be near ENOSPC in all AGs. |
| 1003 | * Hence we don't include alignment for the second pass and so |
| 1004 | * if we fail allocation due to alignment issues then it is most |
| 1005 | * likely a real ENOSPC condition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 1007 | ineed = M_IGEO(mp)->ialloc_min_blks; |
Dave Chinner | 7a1df15 | 2014-12-04 09:42:21 +1100 | [diff] [blame] | 1008 | if (flags && ineed > 1) |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 1009 | ineed += M_IGEO(mp)->cluster_align; |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 1010 | longest = pag->pagf_longest; |
| 1011 | if (!longest) |
| 1012 | longest = pag->pagf_flcount > 0; |
| 1013 | |
| 1014 | if (pag->pagf_freeblks >= needspace + ineed && |
| 1015 | longest >= ineed) { |
| 1016 | xfs_perag_put(pag); |
| 1017 | return agno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | nextag: |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1020 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | /* |
| 1022 | * No point in iterating over the rest, if we're shutting |
| 1023 | * down. |
| 1024 | */ |
Dave Chinner | 1c1c6eb | 2010-01-11 11:47:44 +0000 | [diff] [blame] | 1025 | if (XFS_FORCED_SHUTDOWN(mp)) |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 1026 | return NULLAGNUMBER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | agno++; |
| 1028 | if (agno >= agcount) |
| 1029 | agno = 0; |
| 1030 | if (agno == pagno) { |
Dave Chinner | 1c1c6eb | 2010-01-11 11:47:44 +0000 | [diff] [blame] | 1031 | if (flags == 0) |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 1032 | return NULLAGNUMBER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | flags = 0; |
| 1034 | } |
| 1035 | } |
| 1036 | } |
| 1037 | |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1038 | /* |
| 1039 | * Try to retrieve the next record to the left/right from the current one. |
| 1040 | */ |
| 1041 | STATIC int |
| 1042 | xfs_ialloc_next_rec( |
| 1043 | struct xfs_btree_cur *cur, |
| 1044 | xfs_inobt_rec_incore_t *rec, |
| 1045 | int *done, |
| 1046 | int left) |
| 1047 | { |
| 1048 | int error; |
| 1049 | int i; |
| 1050 | |
| 1051 | if (left) |
| 1052 | error = xfs_btree_decrement(cur, 0, &i); |
| 1053 | else |
| 1054 | error = xfs_btree_increment(cur, 0, &i); |
| 1055 | |
| 1056 | if (error) |
| 1057 | return error; |
| 1058 | *done = !i; |
| 1059 | if (i) { |
| 1060 | error = xfs_inobt_get_rec(cur, rec, &i); |
| 1061 | if (error) |
| 1062 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1063 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1064 | } |
| 1065 | |
| 1066 | return 0; |
| 1067 | } |
| 1068 | |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1069 | STATIC int |
| 1070 | xfs_ialloc_get_rec( |
| 1071 | struct xfs_btree_cur *cur, |
| 1072 | xfs_agino_t agino, |
| 1073 | xfs_inobt_rec_incore_t *rec, |
Jie Liu | 43df2ee | 2013-06-24 13:37:23 +0800 | [diff] [blame] | 1074 | int *done) |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1075 | { |
| 1076 | int error; |
| 1077 | int i; |
| 1078 | |
| 1079 | error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_EQ, &i); |
| 1080 | if (error) |
| 1081 | return error; |
| 1082 | *done = !i; |
| 1083 | if (i) { |
| 1084 | error = xfs_inobt_get_rec(cur, rec, &i); |
| 1085 | if (error) |
| 1086 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1087 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | return 0; |
| 1091 | } |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 1092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | /* |
Brian Foster | 26dd521 | 2015-05-29 09:20:10 +1000 | [diff] [blame] | 1094 | * Return the offset of the first free inode in the record. If the inode chunk |
| 1095 | * is sparsely allocated, we convert the record holemask to inode granularity |
| 1096 | * and mask off the unallocated regions from the inode free mask. |
Brian Foster | d4cc540 | 2015-05-29 08:50:21 +1000 | [diff] [blame] | 1097 | */ |
| 1098 | STATIC int |
| 1099 | xfs_inobt_first_free_inode( |
| 1100 | struct xfs_inobt_rec_incore *rec) |
| 1101 | { |
Brian Foster | 26dd521 | 2015-05-29 09:20:10 +1000 | [diff] [blame] | 1102 | xfs_inofree_t realfree; |
| 1103 | |
| 1104 | /* if there are no holes, return the first available offset */ |
| 1105 | if (!xfs_inobt_issparse(rec->ir_holemask)) |
| 1106 | return xfs_lowbit64(rec->ir_free); |
| 1107 | |
| 1108 | realfree = xfs_inobt_irec_to_allocmask(rec); |
| 1109 | realfree &= rec->ir_free; |
| 1110 | |
| 1111 | return xfs_lowbit64(realfree); |
Brian Foster | d4cc540 | 2015-05-29 08:50:21 +1000 | [diff] [blame] | 1112 | } |
| 1113 | |
| 1114 | /* |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1115 | * Allocate an inode using the inobt-only algorithm. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | */ |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1117 | STATIC int |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1118 | xfs_dialloc_ag_inobt( |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1119 | struct xfs_trans *tp, |
| 1120 | struct xfs_buf *agbp, |
| 1121 | xfs_ino_t parent, |
| 1122 | xfs_ino_t *inop) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | { |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1124 | struct xfs_mount *mp = tp->t_mountp; |
| 1125 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 1126 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 1127 | xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent); |
| 1128 | xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent); |
| 1129 | struct xfs_perag *pag; |
| 1130 | struct xfs_btree_cur *cur, *tcur; |
| 1131 | struct xfs_inobt_rec_incore rec, trec; |
| 1132 | xfs_ino_t ino; |
| 1133 | int error; |
| 1134 | int offset; |
| 1135 | int i, j; |
Carlos Maiolino | 2d32311 | 2017-08-18 18:07:04 -0700 | [diff] [blame] | 1136 | int searchdistance = 10; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1138 | pag = xfs_perag_get(mp, agno); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1139 | |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1140 | ASSERT(pag->pagi_init); |
| 1141 | ASSERT(pag->pagi_inodeok); |
| 1142 | ASSERT(pag->pagi_freecount > 0); |
| 1143 | |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1144 | restart_pagno: |
Brian Foster | 57bd3db | 2014-04-24 16:00:50 +1000 | [diff] [blame] | 1145 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | /* |
| 1147 | * If pagino is 0 (this is the root inode allocation) use newino. |
| 1148 | * This must work because we've just allocated some. |
| 1149 | */ |
| 1150 | if (!pagino) |
Christoph Hellwig | 16259e7 | 2005-11-02 15:11:25 +1100 | [diff] [blame] | 1151 | pagino = be32_to_cpu(agi->agi_newino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 1153 | error = xfs_check_agi_freecount(cur, agi); |
| 1154 | if (error) |
| 1155 | goto error0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | /* |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1158 | * If in the same AG as the parent, try to get near the parent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1159 | */ |
| 1160 | if (pagno == agno) { |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1161 | int doneleft; /* done, to the left */ |
| 1162 | int doneright; /* done, to the right */ |
| 1163 | |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 1164 | error = xfs_inobt_lookup(cur, pagino, XFS_LOOKUP_LE, &i); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1165 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | goto error0; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1167 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1168 | |
| 1169 | error = xfs_inobt_get_rec(cur, &rec, &j); |
| 1170 | if (error) |
| 1171 | goto error0; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1172 | XFS_WANT_CORRUPTED_GOTO(mp, j == 1, error0); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1173 | |
| 1174 | if (rec.ir_freecount > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | /* |
| 1176 | * Found a free inode in the same chunk |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1177 | * as the parent, done. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | */ |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1179 | goto alloc_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1181 | |
| 1182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | /* |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1184 | * In the same AG as parent, but parent's chunk is full. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1187 | /* duplicate the cursor, search left & right simultaneously */ |
| 1188 | error = xfs_btree_dup_cursor(cur, &tcur); |
| 1189 | if (error) |
| 1190 | goto error0; |
| 1191 | |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1192 | /* |
| 1193 | * Skip to last blocks looked up if same parent inode. |
| 1194 | */ |
| 1195 | if (pagino != NULLAGINO && |
| 1196 | pag->pagl_pagino == pagino && |
| 1197 | pag->pagl_leftrec != NULLAGINO && |
| 1198 | pag->pagl_rightrec != NULLAGINO) { |
| 1199 | error = xfs_ialloc_get_rec(tcur, pag->pagl_leftrec, |
Jie Liu | 43df2ee | 2013-06-24 13:37:23 +0800 | [diff] [blame] | 1200 | &trec, &doneleft); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1201 | if (error) |
| 1202 | goto error1; |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1203 | |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1204 | error = xfs_ialloc_get_rec(cur, pag->pagl_rightrec, |
Jie Liu | 43df2ee | 2013-06-24 13:37:23 +0800 | [diff] [blame] | 1205 | &rec, &doneright); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1206 | if (error) |
| 1207 | goto error1; |
| 1208 | } else { |
| 1209 | /* search left with tcur, back up 1 record */ |
| 1210 | error = xfs_ialloc_next_rec(tcur, &trec, &doneleft, 1); |
| 1211 | if (error) |
| 1212 | goto error1; |
| 1213 | |
| 1214 | /* search right with cur, go forward 1 record. */ |
| 1215 | error = xfs_ialloc_next_rec(cur, &rec, &doneright, 0); |
| 1216 | if (error) |
| 1217 | goto error1; |
| 1218 | } |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1219 | |
| 1220 | /* |
| 1221 | * Loop until we find an inode chunk with a free inode. |
| 1222 | */ |
Carlos Maiolino | 2d32311 | 2017-08-18 18:07:04 -0700 | [diff] [blame] | 1223 | while (--searchdistance > 0 && (!doneleft || !doneright)) { |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1224 | int useleft; /* using left inode chunk this time */ |
| 1225 | |
| 1226 | /* figure out the closer block if both are valid. */ |
| 1227 | if (!doneleft && !doneright) { |
| 1228 | useleft = pagino - |
| 1229 | (trec.ir_startino + XFS_INODES_PER_CHUNK - 1) < |
| 1230 | rec.ir_startino - pagino; |
| 1231 | } else { |
| 1232 | useleft = !doneleft; |
| 1233 | } |
| 1234 | |
| 1235 | /* free inodes to the left? */ |
| 1236 | if (useleft && trec.ir_freecount) { |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1237 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 1238 | cur = tcur; |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1239 | |
| 1240 | pag->pagl_leftrec = trec.ir_startino; |
| 1241 | pag->pagl_rightrec = rec.ir_startino; |
| 1242 | pag->pagl_pagino = pagino; |
Omar Sandoval | c44245b | 2017-08-11 09:00:06 -0700 | [diff] [blame] | 1243 | rec = trec; |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1244 | goto alloc_inode; |
| 1245 | } |
| 1246 | |
| 1247 | /* free inodes to the right? */ |
| 1248 | if (!useleft && rec.ir_freecount) { |
| 1249 | xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1250 | |
| 1251 | pag->pagl_leftrec = trec.ir_startino; |
| 1252 | pag->pagl_rightrec = rec.ir_startino; |
| 1253 | pag->pagl_pagino = pagino; |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1254 | goto alloc_inode; |
| 1255 | } |
| 1256 | |
| 1257 | /* get next record to check */ |
| 1258 | if (useleft) { |
| 1259 | error = xfs_ialloc_next_rec(tcur, &trec, |
| 1260 | &doneleft, 1); |
| 1261 | } else { |
| 1262 | error = xfs_ialloc_next_rec(cur, &rec, |
| 1263 | &doneright, 0); |
| 1264 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | goto error1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | } |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1268 | |
Carlos Maiolino | 2d32311 | 2017-08-18 18:07:04 -0700 | [diff] [blame] | 1269 | if (searchdistance <= 0) { |
| 1270 | /* |
| 1271 | * Not in range - save last search |
| 1272 | * location and allocate a new inode |
| 1273 | */ |
| 1274 | xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); |
| 1275 | pag->pagl_leftrec = trec.ir_startino; |
| 1276 | pag->pagl_rightrec = rec.ir_startino; |
| 1277 | pag->pagl_pagino = pagino; |
| 1278 | |
| 1279 | } else { |
| 1280 | /* |
| 1281 | * We've reached the end of the btree. because |
| 1282 | * we are only searching a small chunk of the |
| 1283 | * btree each search, there is obviously free |
| 1284 | * inodes closer to the parent inode than we |
| 1285 | * are now. restart the search again. |
| 1286 | */ |
| 1287 | pag->pagl_pagino = NULLAGINO; |
| 1288 | pag->pagl_leftrec = NULLAGINO; |
| 1289 | pag->pagl_rightrec = NULLAGINO; |
| 1290 | xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR); |
| 1291 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 1292 | goto restart_pagno; |
| 1293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | } |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | /* |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1297 | * In a different AG from the parent. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | * See if the most recently allocated block has any free. |
| 1299 | */ |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1300 | if (agi->agi_newino != cpu_to_be32(NULLAGINO)) { |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 1301 | error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino), |
| 1302 | XFS_LOOKUP_EQ, &i); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1303 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | goto error0; |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1305 | |
| 1306 | if (i == 1) { |
| 1307 | error = xfs_inobt_get_rec(cur, &rec, &j); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1308 | if (error) |
| 1309 | goto error0; |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1310 | |
| 1311 | if (j == 1 && rec.ir_freecount > 0) { |
| 1312 | /* |
| 1313 | * The last chunk allocated in the group |
| 1314 | * still has a free inode. |
| 1315 | */ |
| 1316 | goto alloc_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | } |
| 1318 | } |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1319 | } |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1320 | |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1321 | /* |
| 1322 | * None left in the last group, search the whole AG |
| 1323 | */ |
| 1324 | error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i); |
| 1325 | if (error) |
| 1326 | goto error0; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1327 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1328 | |
| 1329 | for (;;) { |
| 1330 | error = xfs_inobt_get_rec(cur, &rec, &i); |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1331 | if (error) |
| 1332 | goto error0; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1333 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Dave Chinner | bd16956 | 2009-08-31 20:58:28 -0300 | [diff] [blame] | 1334 | if (rec.ir_freecount > 0) |
| 1335 | break; |
| 1336 | error = xfs_btree_increment(cur, 0, &i); |
| 1337 | if (error) |
| 1338 | goto error0; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1339 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | } |
Christoph Hellwig | 4254b0b | 2009-08-31 20:57:14 -0300 | [diff] [blame] | 1341 | |
| 1342 | alloc_inode: |
Brian Foster | d4cc540 | 2015-05-29 08:50:21 +1000 | [diff] [blame] | 1343 | offset = xfs_inobt_first_free_inode(&rec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | ASSERT(offset >= 0); |
| 1345 | ASSERT(offset < XFS_INODES_PER_CHUNK); |
| 1346 | ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) % |
| 1347 | XFS_INODES_PER_CHUNK) == 0); |
| 1348 | ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset); |
Christoph Hellwig | 0d87e65 | 2009-02-09 08:37:14 +0100 | [diff] [blame] | 1349 | rec.ir_free &= ~XFS_INOBT_MASK(offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | rec.ir_freecount--; |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 1351 | error = xfs_inobt_update(cur, &rec); |
| 1352 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | goto error0; |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 1354 | be32_add_cpu(&agi->agi_freecount, -1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1356 | pag->pagi_freecount--; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 1358 | error = xfs_check_agi_freecount(cur, agi); |
| 1359 | if (error) |
| 1360 | goto error0; |
| 1361 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 1363 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1364 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | *inop = ino; |
| 1366 | return 0; |
| 1367 | error1: |
| 1368 | xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR); |
| 1369 | error0: |
| 1370 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1371 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | return error; |
| 1373 | } |
| 1374 | |
| 1375 | /* |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1376 | * Use the free inode btree to allocate an inode based on distance from the |
| 1377 | * parent. Note that the provided cursor may be deleted and replaced. |
| 1378 | */ |
| 1379 | STATIC int |
| 1380 | xfs_dialloc_ag_finobt_near( |
| 1381 | xfs_agino_t pagino, |
| 1382 | struct xfs_btree_cur **ocur, |
| 1383 | struct xfs_inobt_rec_incore *rec) |
| 1384 | { |
| 1385 | struct xfs_btree_cur *lcur = *ocur; /* left search cursor */ |
| 1386 | struct xfs_btree_cur *rcur; /* right search cursor */ |
| 1387 | struct xfs_inobt_rec_incore rrec; |
| 1388 | int error; |
| 1389 | int i, j; |
| 1390 | |
| 1391 | error = xfs_inobt_lookup(lcur, pagino, XFS_LOOKUP_LE, &i); |
| 1392 | if (error) |
| 1393 | return error; |
| 1394 | |
| 1395 | if (i == 1) { |
| 1396 | error = xfs_inobt_get_rec(lcur, rec, &i); |
| 1397 | if (error) |
| 1398 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1399 | XFS_WANT_CORRUPTED_RETURN(lcur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1400 | |
| 1401 | /* |
| 1402 | * See if we've landed in the parent inode record. The finobt |
| 1403 | * only tracks chunks with at least one free inode, so record |
| 1404 | * existence is enough. |
| 1405 | */ |
| 1406 | if (pagino >= rec->ir_startino && |
| 1407 | pagino < (rec->ir_startino + XFS_INODES_PER_CHUNK)) |
| 1408 | return 0; |
| 1409 | } |
| 1410 | |
| 1411 | error = xfs_btree_dup_cursor(lcur, &rcur); |
| 1412 | if (error) |
| 1413 | return error; |
| 1414 | |
| 1415 | error = xfs_inobt_lookup(rcur, pagino, XFS_LOOKUP_GE, &j); |
| 1416 | if (error) |
| 1417 | goto error_rcur; |
| 1418 | if (j == 1) { |
| 1419 | error = xfs_inobt_get_rec(rcur, &rrec, &j); |
| 1420 | if (error) |
| 1421 | goto error_rcur; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1422 | XFS_WANT_CORRUPTED_GOTO(lcur->bc_mp, j == 1, error_rcur); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1423 | } |
| 1424 | |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1425 | XFS_WANT_CORRUPTED_GOTO(lcur->bc_mp, i == 1 || j == 1, error_rcur); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1426 | if (i == 1 && j == 1) { |
| 1427 | /* |
| 1428 | * Both the left and right records are valid. Choose the closer |
| 1429 | * inode chunk to the target. |
| 1430 | */ |
| 1431 | if ((pagino - rec->ir_startino + XFS_INODES_PER_CHUNK - 1) > |
| 1432 | (rrec.ir_startino - pagino)) { |
| 1433 | *rec = rrec; |
| 1434 | xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR); |
| 1435 | *ocur = rcur; |
| 1436 | } else { |
| 1437 | xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR); |
| 1438 | } |
| 1439 | } else if (j == 1) { |
| 1440 | /* only the right record is valid */ |
| 1441 | *rec = rrec; |
| 1442 | xfs_btree_del_cursor(lcur, XFS_BTREE_NOERROR); |
| 1443 | *ocur = rcur; |
| 1444 | } else if (i == 1) { |
| 1445 | /* only the left record is valid */ |
| 1446 | xfs_btree_del_cursor(rcur, XFS_BTREE_NOERROR); |
| 1447 | } |
| 1448 | |
| 1449 | return 0; |
| 1450 | |
| 1451 | error_rcur: |
| 1452 | xfs_btree_del_cursor(rcur, XFS_BTREE_ERROR); |
| 1453 | return error; |
| 1454 | } |
| 1455 | |
| 1456 | /* |
| 1457 | * Use the free inode btree to find a free inode based on a newino hint. If |
| 1458 | * the hint is NULL, find the first free inode in the AG. |
| 1459 | */ |
| 1460 | STATIC int |
| 1461 | xfs_dialloc_ag_finobt_newino( |
| 1462 | struct xfs_agi *agi, |
| 1463 | struct xfs_btree_cur *cur, |
| 1464 | struct xfs_inobt_rec_incore *rec) |
| 1465 | { |
| 1466 | int error; |
| 1467 | int i; |
| 1468 | |
| 1469 | if (agi->agi_newino != cpu_to_be32(NULLAGINO)) { |
Dave Chinner | e68ed77 | 2014-09-29 10:43:15 +1000 | [diff] [blame] | 1470 | error = xfs_inobt_lookup(cur, be32_to_cpu(agi->agi_newino), |
| 1471 | XFS_LOOKUP_EQ, &i); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1472 | if (error) |
| 1473 | return error; |
| 1474 | if (i == 1) { |
| 1475 | error = xfs_inobt_get_rec(cur, rec, &i); |
| 1476 | if (error) |
| 1477 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1478 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1479 | return 0; |
| 1480 | } |
| 1481 | } |
| 1482 | |
| 1483 | /* |
| 1484 | * Find the first inode available in the AG. |
| 1485 | */ |
| 1486 | error = xfs_inobt_lookup(cur, 0, XFS_LOOKUP_GE, &i); |
| 1487 | if (error) |
| 1488 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1489 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1490 | |
| 1491 | error = xfs_inobt_get_rec(cur, rec, &i); |
| 1492 | if (error) |
| 1493 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1494 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1495 | |
| 1496 | return 0; |
| 1497 | } |
| 1498 | |
| 1499 | /* |
| 1500 | * Update the inobt based on a modification made to the finobt. Also ensure that |
| 1501 | * the records from both trees are equivalent post-modification. |
| 1502 | */ |
| 1503 | STATIC int |
| 1504 | xfs_dialloc_ag_update_inobt( |
| 1505 | struct xfs_btree_cur *cur, /* inobt cursor */ |
| 1506 | struct xfs_inobt_rec_incore *frec, /* finobt record */ |
| 1507 | int offset) /* inode offset */ |
| 1508 | { |
| 1509 | struct xfs_inobt_rec_incore rec; |
| 1510 | int error; |
| 1511 | int i; |
| 1512 | |
| 1513 | error = xfs_inobt_lookup(cur, frec->ir_startino, XFS_LOOKUP_EQ, &i); |
| 1514 | if (error) |
| 1515 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1516 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1517 | |
| 1518 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 1519 | if (error) |
| 1520 | return error; |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1521 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, i == 1); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1522 | ASSERT((XFS_AGINO_TO_OFFSET(cur->bc_mp, rec.ir_startino) % |
| 1523 | XFS_INODES_PER_CHUNK) == 0); |
| 1524 | |
| 1525 | rec.ir_free &= ~XFS_INOBT_MASK(offset); |
| 1526 | rec.ir_freecount--; |
| 1527 | |
Eric Sandeen | 5fb5aee | 2015-02-23 22:39:13 +1100 | [diff] [blame] | 1528 | XFS_WANT_CORRUPTED_RETURN(cur->bc_mp, (rec.ir_free == frec->ir_free) && |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1529 | (rec.ir_freecount == frec->ir_freecount)); |
| 1530 | |
kbuild test robot | b72091f | 2014-12-01 08:24:58 +1100 | [diff] [blame] | 1531 | return xfs_inobt_update(cur, &rec); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | /* |
| 1535 | * Allocate an inode using the free inode btree, if available. Otherwise, fall |
| 1536 | * back to the inobt search algorithm. |
| 1537 | * |
| 1538 | * The caller selected an AG for us, and made sure that free inodes are |
| 1539 | * available. |
| 1540 | */ |
| 1541 | STATIC int |
| 1542 | xfs_dialloc_ag( |
| 1543 | struct xfs_trans *tp, |
| 1544 | struct xfs_buf *agbp, |
| 1545 | xfs_ino_t parent, |
| 1546 | xfs_ino_t *inop) |
| 1547 | { |
| 1548 | struct xfs_mount *mp = tp->t_mountp; |
| 1549 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 1550 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 1551 | xfs_agnumber_t pagno = XFS_INO_TO_AGNO(mp, parent); |
| 1552 | xfs_agino_t pagino = XFS_INO_TO_AGINO(mp, parent); |
| 1553 | struct xfs_perag *pag; |
| 1554 | struct xfs_btree_cur *cur; /* finobt cursor */ |
| 1555 | struct xfs_btree_cur *icur; /* inobt cursor */ |
| 1556 | struct xfs_inobt_rec_incore rec; |
| 1557 | xfs_ino_t ino; |
| 1558 | int error; |
| 1559 | int offset; |
| 1560 | int i; |
| 1561 | |
| 1562 | if (!xfs_sb_version_hasfinobt(&mp->m_sb)) |
| 1563 | return xfs_dialloc_ag_inobt(tp, agbp, parent, inop); |
| 1564 | |
| 1565 | pag = xfs_perag_get(mp, agno); |
| 1566 | |
| 1567 | /* |
| 1568 | * If pagino is 0 (this is the root inode allocation) use newino. |
| 1569 | * This must work because we've just allocated some. |
| 1570 | */ |
| 1571 | if (!pagino) |
| 1572 | pagino = be32_to_cpu(agi->agi_newino); |
| 1573 | |
| 1574 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO); |
| 1575 | |
| 1576 | error = xfs_check_agi_freecount(cur, agi); |
| 1577 | if (error) |
| 1578 | goto error_cur; |
| 1579 | |
| 1580 | /* |
| 1581 | * The search algorithm depends on whether we're in the same AG as the |
| 1582 | * parent. If so, find the closest available inode to the parent. If |
| 1583 | * not, consider the agi hint or find the first free inode in the AG. |
| 1584 | */ |
| 1585 | if (agno == pagno) |
| 1586 | error = xfs_dialloc_ag_finobt_near(pagino, &cur, &rec); |
| 1587 | else |
| 1588 | error = xfs_dialloc_ag_finobt_newino(agi, cur, &rec); |
| 1589 | if (error) |
| 1590 | goto error_cur; |
| 1591 | |
Brian Foster | d4cc540 | 2015-05-29 08:50:21 +1000 | [diff] [blame] | 1592 | offset = xfs_inobt_first_free_inode(&rec); |
Brian Foster | 6dd8638 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1593 | ASSERT(offset >= 0); |
| 1594 | ASSERT(offset < XFS_INODES_PER_CHUNK); |
| 1595 | ASSERT((XFS_AGINO_TO_OFFSET(mp, rec.ir_startino) % |
| 1596 | XFS_INODES_PER_CHUNK) == 0); |
| 1597 | ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino + offset); |
| 1598 | |
| 1599 | /* |
| 1600 | * Modify or remove the finobt record. |
| 1601 | */ |
| 1602 | rec.ir_free &= ~XFS_INOBT_MASK(offset); |
| 1603 | rec.ir_freecount--; |
| 1604 | if (rec.ir_freecount) |
| 1605 | error = xfs_inobt_update(cur, &rec); |
| 1606 | else |
| 1607 | error = xfs_btree_delete(cur, &i); |
| 1608 | if (error) |
| 1609 | goto error_cur; |
| 1610 | |
| 1611 | /* |
| 1612 | * The finobt has now been updated appropriately. We haven't updated the |
| 1613 | * agi and superblock yet, so we can create an inobt cursor and validate |
| 1614 | * the original freecount. If all is well, make the equivalent update to |
| 1615 | * the inobt using the finobt record and offset information. |
| 1616 | */ |
| 1617 | icur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO); |
| 1618 | |
| 1619 | error = xfs_check_agi_freecount(icur, agi); |
| 1620 | if (error) |
| 1621 | goto error_icur; |
| 1622 | |
| 1623 | error = xfs_dialloc_ag_update_inobt(icur, &rec, offset); |
| 1624 | if (error) |
| 1625 | goto error_icur; |
| 1626 | |
| 1627 | /* |
| 1628 | * Both trees have now been updated. We must update the perag and |
| 1629 | * superblock before we can check the freecount for each btree. |
| 1630 | */ |
| 1631 | be32_add_cpu(&agi->agi_freecount, -1); |
| 1632 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); |
| 1633 | pag->pagi_freecount--; |
| 1634 | |
| 1635 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -1); |
| 1636 | |
| 1637 | error = xfs_check_agi_freecount(icur, agi); |
| 1638 | if (error) |
| 1639 | goto error_icur; |
| 1640 | error = xfs_check_agi_freecount(cur, agi); |
| 1641 | if (error) |
| 1642 | goto error_icur; |
| 1643 | |
| 1644 | xfs_btree_del_cursor(icur, XFS_BTREE_NOERROR); |
| 1645 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 1646 | xfs_perag_put(pag); |
| 1647 | *inop = ino; |
| 1648 | return 0; |
| 1649 | |
| 1650 | error_icur: |
| 1651 | xfs_btree_del_cursor(icur, XFS_BTREE_ERROR); |
| 1652 | error_cur: |
| 1653 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 1654 | xfs_perag_put(pag); |
| 1655 | return error; |
| 1656 | } |
| 1657 | |
| 1658 | /* |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1659 | * Allocate an inode on disk. |
| 1660 | * |
| 1661 | * Mode is used to tell whether the new inode will need space, and whether it |
| 1662 | * is a directory. |
| 1663 | * |
| 1664 | * This function is designed to be called twice if it has to do an allocation |
| 1665 | * to make more free inodes. On the first call, *IO_agbp should be set to NULL. |
| 1666 | * If an inode is available without having to performn an allocation, an inode |
Carlos Maiolino | cd856db | 2012-10-20 11:08:19 -0300 | [diff] [blame] | 1667 | * number is returned. In this case, *IO_agbp is set to NULL. If an allocation |
| 1668 | * needs to be done, xfs_dialloc returns the current AGI buffer in *IO_agbp. |
| 1669 | * The caller should then commit the current transaction, allocate a |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1670 | * new transaction, and call xfs_dialloc() again, passing in the previous value |
| 1671 | * of *IO_agbp. IO_agbp should be held across the transactions. Since the AGI |
| 1672 | * buffer is locked across the two calls, the second call is guaranteed to have |
| 1673 | * a free inode available. |
| 1674 | * |
| 1675 | * Once we successfully pick an inode its number is returned and the on-disk |
| 1676 | * data structures are updated. The inode itself is not read in, since doing so |
| 1677 | * would break ordering constraints with xfs_reclaim. |
| 1678 | */ |
| 1679 | int |
| 1680 | xfs_dialloc( |
| 1681 | struct xfs_trans *tp, |
| 1682 | xfs_ino_t parent, |
| 1683 | umode_t mode, |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1684 | struct xfs_buf **IO_agbp, |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1685 | xfs_ino_t *inop) |
| 1686 | { |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 1687 | struct xfs_mount *mp = tp->t_mountp; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1688 | struct xfs_buf *agbp; |
| 1689 | xfs_agnumber_t agno; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1690 | int error; |
| 1691 | int ialloced; |
| 1692 | int noroom = 0; |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1693 | xfs_agnumber_t start_agno; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1694 | struct xfs_perag *pag; |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 1695 | struct xfs_ino_geometry *igeo = M_IGEO(mp); |
Christoph Hellwig | f59cf5c | 2017-12-04 17:32:55 -0800 | [diff] [blame] | 1696 | int okalloc = 1; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1697 | |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1698 | if (*IO_agbp) { |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1699 | /* |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1700 | * If the caller passes in a pointer to the AGI buffer, |
| 1701 | * continue where we left off before. In this case, we |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1702 | * know that the allocation group has free inodes. |
| 1703 | */ |
| 1704 | agbp = *IO_agbp; |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1705 | goto out_alloc; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1706 | } |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1707 | |
| 1708 | /* |
| 1709 | * We do not have an agbp, so select an initial allocation |
| 1710 | * group for inode allocation. |
| 1711 | */ |
Christoph Hellwig | f59cf5c | 2017-12-04 17:32:55 -0800 | [diff] [blame] | 1712 | start_agno = xfs_ialloc_ag_select(tp, parent, mode); |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1713 | if (start_agno == NULLAGNUMBER) { |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1714 | *inop = NULLFSINO; |
| 1715 | return 0; |
| 1716 | } |
Christoph Hellwig | 55d6af6 | 2012-07-04 10:54:49 -0400 | [diff] [blame] | 1717 | |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1718 | /* |
| 1719 | * If we have already hit the ceiling of inode blocks then clear |
| 1720 | * okalloc so we scan all available agi structures for a free |
| 1721 | * inode. |
George Wang | 74f9ce1 | 2015-05-29 07:39:34 +1000 | [diff] [blame] | 1722 | * |
| 1723 | * Read rough value of mp->m_icount by percpu_counter_read_positive, |
| 1724 | * which will sacrifice the preciseness but improve the performance. |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1725 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 1726 | if (igeo->maxicount && |
| 1727 | percpu_counter_read_positive(&mp->m_icount) + igeo->ialloc_inos |
| 1728 | > igeo->maxicount) { |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1729 | noroom = 1; |
| 1730 | okalloc = 0; |
| 1731 | } |
| 1732 | |
| 1733 | /* |
| 1734 | * Loop until we find an allocation group that either has free inodes |
| 1735 | * or in which we can allocate some inodes. Iterate through the |
| 1736 | * allocation groups upward, wrapping at the end. |
| 1737 | */ |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1738 | agno = start_agno; |
| 1739 | for (;;) { |
| 1740 | pag = xfs_perag_get(mp, agno); |
| 1741 | if (!pag->pagi_inodeok) { |
| 1742 | xfs_ialloc_next_ag(mp); |
| 1743 | goto nextag; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1744 | } |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1745 | |
| 1746 | if (!pag->pagi_init) { |
| 1747 | error = xfs_ialloc_pagi_init(mp, tp, agno); |
| 1748 | if (error) |
| 1749 | goto out_error; |
| 1750 | } |
| 1751 | |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1752 | /* |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1753 | * Do a first racy fast path check if this AG is usable. |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1754 | */ |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1755 | if (!pag->pagi_freecount && !okalloc) |
| 1756 | goto nextag; |
| 1757 | |
Christoph Hellwig | c498211 | 2012-08-07 02:02:02 -0400 | [diff] [blame] | 1758 | /* |
| 1759 | * Then read in the AGI buffer and recheck with the AGI buffer |
| 1760 | * lock held. |
| 1761 | */ |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1762 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); |
| 1763 | if (error) |
| 1764 | goto out_error; |
| 1765 | |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1766 | if (pag->pagi_freecount) { |
| 1767 | xfs_perag_put(pag); |
| 1768 | goto out_alloc; |
| 1769 | } |
| 1770 | |
Christoph Hellwig | c498211 | 2012-08-07 02:02:02 -0400 | [diff] [blame] | 1771 | if (!okalloc) |
| 1772 | goto nextag_relse_buffer; |
| 1773 | |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1774 | |
| 1775 | error = xfs_ialloc_ag_alloc(tp, agbp, &ialloced); |
| 1776 | if (error) { |
| 1777 | xfs_trans_brelse(tp, agbp); |
| 1778 | |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1779 | if (error != -ENOSPC) |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1780 | goto out_error; |
| 1781 | |
| 1782 | xfs_perag_put(pag); |
| 1783 | *inop = NULLFSINO; |
| 1784 | return 0; |
| 1785 | } |
| 1786 | |
| 1787 | if (ialloced) { |
| 1788 | /* |
| 1789 | * We successfully allocated some inodes, return |
| 1790 | * the current context to the caller so that it |
| 1791 | * can commit the current transaction and call |
| 1792 | * us again where we left off. |
| 1793 | */ |
| 1794 | ASSERT(pag->pagi_freecount > 0); |
| 1795 | xfs_perag_put(pag); |
| 1796 | |
| 1797 | *IO_agbp = agbp; |
| 1798 | *inop = NULLFSINO; |
| 1799 | return 0; |
| 1800 | } |
| 1801 | |
Christoph Hellwig | c498211 | 2012-08-07 02:02:02 -0400 | [diff] [blame] | 1802 | nextag_relse_buffer: |
| 1803 | xfs_trans_brelse(tp, agbp); |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1804 | nextag: |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1805 | xfs_perag_put(pag); |
| 1806 | if (++agno == mp->m_sb.sb_agcount) |
| 1807 | agno = 0; |
| 1808 | if (agno == start_agno) { |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1809 | *inop = NULLFSINO; |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 1810 | return noroom ? -ENOSPC : 0; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1811 | } |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1812 | } |
| 1813 | |
Christoph Hellwig | 4bb6106 | 2012-07-04 10:54:48 -0400 | [diff] [blame] | 1814 | out_alloc: |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1815 | *IO_agbp = NULL; |
| 1816 | return xfs_dialloc_ag(tp, agbp, parent, inop); |
Christoph Hellwig | be60fe5 | 2012-07-04 10:54:50 -0400 | [diff] [blame] | 1817 | out_error: |
| 1818 | xfs_perag_put(pag); |
Eric Sandeen | b474c7a | 2014-06-22 15:04:54 +1000 | [diff] [blame] | 1819 | return error; |
Christoph Hellwig | f2ecc5e | 2012-07-04 10:54:46 -0400 | [diff] [blame] | 1820 | } |
| 1821 | |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1822 | /* |
| 1823 | * Free the blocks of an inode chunk. We must consider that the inode chunk |
| 1824 | * might be sparse and only free the regions that are allocated as part of the |
| 1825 | * chunk. |
| 1826 | */ |
| 1827 | STATIC void |
| 1828 | xfs_difree_inode_chunk( |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1829 | struct xfs_trans *tp, |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1830 | xfs_agnumber_t agno, |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1831 | struct xfs_inobt_rec_incore *rec) |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1832 | { |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1833 | struct xfs_mount *mp = tp->t_mountp; |
| 1834 | xfs_agblock_t sagbno = XFS_AGINO_TO_AGBNO(mp, |
| 1835 | rec->ir_startino); |
| 1836 | int startidx, endidx; |
| 1837 | int nextbit; |
| 1838 | xfs_agblock_t agbno; |
| 1839 | int contigblk; |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1840 | DECLARE_BITMAP(holemask, XFS_INOBT_HOLEMASK_BITS); |
| 1841 | |
| 1842 | if (!xfs_inobt_issparse(rec->ir_holemask)) { |
| 1843 | /* not sparse, calculate extent info directly */ |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1844 | xfs_bmap_add_free(tp, XFS_AGB_TO_FSB(mp, agno, sagbno), |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 1845 | M_IGEO(mp)->ialloc_blks, |
| 1846 | &XFS_RMAP_OINFO_INODES); |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1847 | return; |
| 1848 | } |
| 1849 | |
| 1850 | /* holemask is only 16-bits (fits in an unsigned long) */ |
| 1851 | ASSERT(sizeof(rec->ir_holemask) <= sizeof(holemask[0])); |
| 1852 | holemask[0] = rec->ir_holemask; |
| 1853 | |
| 1854 | /* |
| 1855 | * Find contiguous ranges of zeroes (i.e., allocated regions) in the |
| 1856 | * holemask and convert the start/end index of each range to an extent. |
| 1857 | * We start with the start and end index both pointing at the first 0 in |
| 1858 | * the mask. |
| 1859 | */ |
| 1860 | startidx = endidx = find_first_zero_bit(holemask, |
| 1861 | XFS_INOBT_HOLEMASK_BITS); |
| 1862 | nextbit = startidx + 1; |
| 1863 | while (startidx < XFS_INOBT_HOLEMASK_BITS) { |
| 1864 | nextbit = find_next_zero_bit(holemask, XFS_INOBT_HOLEMASK_BITS, |
| 1865 | nextbit); |
| 1866 | /* |
| 1867 | * If the next zero bit is contiguous, update the end index of |
| 1868 | * the current range and continue. |
| 1869 | */ |
| 1870 | if (nextbit != XFS_INOBT_HOLEMASK_BITS && |
| 1871 | nextbit == endidx + 1) { |
| 1872 | endidx = nextbit; |
| 1873 | goto next; |
| 1874 | } |
| 1875 | |
| 1876 | /* |
| 1877 | * nextbit is not contiguous with the current end index. Convert |
| 1878 | * the current start/end to an extent and add it to the free |
| 1879 | * list. |
| 1880 | */ |
| 1881 | agbno = sagbno + (startidx * XFS_INODES_PER_HOLEMASK_BIT) / |
| 1882 | mp->m_sb.sb_inopblock; |
| 1883 | contigblk = ((endidx - startidx + 1) * |
| 1884 | XFS_INODES_PER_HOLEMASK_BIT) / |
| 1885 | mp->m_sb.sb_inopblock; |
| 1886 | |
| 1887 | ASSERT(agbno % mp->m_sb.sb_spino_align == 0); |
| 1888 | ASSERT(contigblk % mp->m_sb.sb_spino_align == 0); |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1889 | xfs_bmap_add_free(tp, XFS_AGB_TO_FSB(mp, agno, agbno), |
Darrick J. Wong | 7280fed | 2018-12-12 08:46:23 -0800 | [diff] [blame] | 1890 | contigblk, &XFS_RMAP_OINFO_INODES); |
Brian Foster | 10ae3dc7 | 2015-05-29 09:22:52 +1000 | [diff] [blame] | 1891 | |
| 1892 | /* reset range to current bit and carry on... */ |
| 1893 | startidx = endidx = nextbit; |
| 1894 | |
| 1895 | next: |
| 1896 | nextbit++; |
| 1897 | } |
| 1898 | } |
| 1899 | |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1900 | STATIC int |
| 1901 | xfs_difree_inobt( |
| 1902 | struct xfs_mount *mp, |
| 1903 | struct xfs_trans *tp, |
| 1904 | struct xfs_buf *agbp, |
| 1905 | xfs_agino_t agino, |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 1906 | struct xfs_icluster *xic, |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1907 | struct xfs_inobt_rec_incore *orec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | { |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1909 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 1910 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 1911 | struct xfs_perag *pag; |
| 1912 | struct xfs_btree_cur *cur; |
| 1913 | struct xfs_inobt_rec_incore rec; |
| 1914 | int ilen; |
| 1915 | int error; |
| 1916 | int i; |
| 1917 | int off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 1919 | ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC)); |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 1920 | ASSERT(XFS_AGINO_TO_AGBNO(mp, agino) < be32_to_cpu(agi->agi_length)); |
| 1921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | /* |
| 1923 | * Initialize the cursor. |
| 1924 | */ |
Brian Foster | 57bd3db | 2014-04-24 16:00:50 +1000 | [diff] [blame] | 1925 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 1927 | error = xfs_check_agi_freecount(cur, agi); |
| 1928 | if (error) |
| 1929 | goto error0; |
| 1930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1931 | /* |
| 1932 | * Look for the entry describing this inode. |
| 1933 | */ |
Christoph Hellwig | 2187550 | 2009-08-31 20:58:21 -0300 | [diff] [blame] | 1934 | if ((error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i))) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 1935 | xfs_warn(mp, "%s: xfs_inobt_lookup() returned error %d.", |
| 1936 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | goto error0; |
| 1938 | } |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1939 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Christoph Hellwig | 2e287a7 | 2009-08-31 20:56:58 -0300 | [diff] [blame] | 1940 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 1941 | if (error) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 1942 | xfs_warn(mp, "%s: xfs_inobt_get_rec() returned error %d.", |
| 1943 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | goto error0; |
| 1945 | } |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 1946 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | /* |
| 1948 | * Get the offset in the inode chunk. |
| 1949 | */ |
| 1950 | off = agino - rec.ir_startino; |
| 1951 | ASSERT(off >= 0 && off < XFS_INODES_PER_CHUNK); |
Christoph Hellwig | 0d87e65 | 2009-02-09 08:37:14 +0100 | [diff] [blame] | 1952 | ASSERT(!(rec.ir_free & XFS_INOBT_MASK(off))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1953 | /* |
| 1954 | * Mark the inode free & increment the count. |
| 1955 | */ |
Christoph Hellwig | 0d87e65 | 2009-02-09 08:37:14 +0100 | [diff] [blame] | 1956 | rec.ir_free |= XFS_INOBT_MASK(off); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1957 | rec.ir_freecount++; |
| 1958 | |
| 1959 | /* |
Brian Foster | 999633d | 2015-05-29 08:51:37 +1000 | [diff] [blame] | 1960 | * When an inode chunk is free, it becomes eligible for removal. Don't |
| 1961 | * remove the chunk if the block size is large enough for multiple inode |
| 1962 | * chunks (that might not be free). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | */ |
Josef Jeff Sipek | 1bd960e | 2008-02-29 13:58:40 +1100 | [diff] [blame] | 1964 | if (!(mp->m_flags & XFS_MOUNT_IKEEP) && |
Brian Foster | 999633d | 2015-05-29 08:51:37 +1000 | [diff] [blame] | 1965 | rec.ir_free == XFS_INOBT_ALL_FREE && |
| 1966 | mp->m_sb.sb_inopblock <= XFS_INODES_PER_CHUNK) { |
Thomas Meyer | 749f24f | 2017-10-09 11:38:54 -0700 | [diff] [blame] | 1967 | xic->deleted = true; |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 1968 | xic->first_ino = XFS_AGINO_TO_INO(mp, agno, rec.ir_startino); |
| 1969 | xic->alloc = xfs_inobt_irec_to_allocmask(&rec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
| 1971 | /* |
| 1972 | * Remove the inode cluster from the AGI B+Tree, adjust the |
| 1973 | * AGI and Superblock inode counts, and mark the disk space |
| 1974 | * to be freed when the transaction is committed. |
| 1975 | */ |
Brian Foster | 999633d | 2015-05-29 08:51:37 +1000 | [diff] [blame] | 1976 | ilen = rec.ir_freecount; |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 1977 | be32_add_cpu(&agi->agi_count, -ilen); |
| 1978 | be32_add_cpu(&agi->agi_freecount, -(ilen - 1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_COUNT | XFS_AGI_FREECOUNT); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1980 | pag = xfs_perag_get(mp, agno); |
| 1981 | pag->pagi_freecount -= ilen - 1; |
Darrick J. Wong | 89e9b5c | 2018-06-11 21:52:01 -0700 | [diff] [blame] | 1982 | pag->pagi_count -= ilen; |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 1983 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_ICOUNT, -ilen); |
| 1985 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, -(ilen - 1)); |
| 1986 | |
Christoph Hellwig | 91cca5df | 2008-10-30 16:58:01 +1100 | [diff] [blame] | 1987 | if ((error = xfs_btree_delete(cur, &i))) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 1988 | xfs_warn(mp, "%s: xfs_btree_delete returned error %d.", |
| 1989 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | goto error0; |
| 1991 | } |
| 1992 | |
Brian Foster | 0f37d17 | 2018-08-01 07:20:34 -0700 | [diff] [blame] | 1993 | xfs_difree_inode_chunk(tp, agno, &rec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | } else { |
Thomas Meyer | 749f24f | 2017-10-09 11:38:54 -0700 | [diff] [blame] | 1995 | xic->deleted = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 1997 | error = xfs_inobt_update(cur, &rec); |
| 1998 | if (error) { |
Dave Chinner | 0b932cc | 2011-03-07 10:08:35 +1100 | [diff] [blame] | 1999 | xfs_warn(mp, "%s: xfs_inobt_update returned error %d.", |
| 2000 | __func__, error); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | goto error0; |
| 2002 | } |
Christoph Hellwig | afabc24 | 2009-08-31 20:57:03 -0300 | [diff] [blame] | 2003 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | /* |
| 2005 | * Change the inode free counts and log the ag/sb changes. |
| 2006 | */ |
Marcin Slusarz | 413d57c | 2008-02-13 15:03:29 -0800 | [diff] [blame] | 2007 | be32_add_cpu(&agi->agi_freecount, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | xfs_ialloc_log_agi(tp, agbp, XFS_AGI_FREECOUNT); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 2009 | pag = xfs_perag_get(mp, agno); |
| 2010 | pag->pagi_freecount++; |
| 2011 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | xfs_trans_mod_sb(tp, XFS_TRANS_SB_IFREE, 1); |
| 2013 | } |
| 2014 | |
Dave Chinner | 0b48db8 | 2009-08-31 20:57:09 -0300 | [diff] [blame] | 2015 | error = xfs_check_agi_freecount(cur, agi); |
| 2016 | if (error) |
| 2017 | goto error0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2018 | |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2019 | *orec = rec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 2021 | return 0; |
| 2022 | |
| 2023 | error0: |
| 2024 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 2025 | return error; |
| 2026 | } |
| 2027 | |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2028 | /* |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2029 | * Free an inode in the free inode btree. |
| 2030 | */ |
| 2031 | STATIC int |
| 2032 | xfs_difree_finobt( |
| 2033 | struct xfs_mount *mp, |
| 2034 | struct xfs_trans *tp, |
| 2035 | struct xfs_buf *agbp, |
| 2036 | xfs_agino_t agino, |
| 2037 | struct xfs_inobt_rec_incore *ibtrec) /* inobt record */ |
| 2038 | { |
| 2039 | struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp); |
| 2040 | xfs_agnumber_t agno = be32_to_cpu(agi->agi_seqno); |
| 2041 | struct xfs_btree_cur *cur; |
| 2042 | struct xfs_inobt_rec_incore rec; |
| 2043 | int offset = agino - ibtrec->ir_startino; |
| 2044 | int error; |
| 2045 | int i; |
| 2046 | |
| 2047 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_FINO); |
| 2048 | |
| 2049 | error = xfs_inobt_lookup(cur, ibtrec->ir_startino, XFS_LOOKUP_EQ, &i); |
| 2050 | if (error) |
| 2051 | goto error; |
| 2052 | if (i == 0) { |
| 2053 | /* |
| 2054 | * If the record does not exist in the finobt, we must have just |
| 2055 | * freed an inode in a previously fully allocated chunk. If not, |
| 2056 | * something is out of sync. |
| 2057 | */ |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2058 | XFS_WANT_CORRUPTED_GOTO(mp, ibtrec->ir_freecount == 1, error); |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2059 | |
Brian Foster | 5419040 | 2015-05-29 09:03:04 +1000 | [diff] [blame] | 2060 | error = xfs_inobt_insert_rec(cur, ibtrec->ir_holemask, |
| 2061 | ibtrec->ir_count, |
| 2062 | ibtrec->ir_freecount, |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2063 | ibtrec->ir_free, &i); |
| 2064 | if (error) |
| 2065 | goto error; |
| 2066 | ASSERT(i == 1); |
| 2067 | |
| 2068 | goto out; |
| 2069 | } |
| 2070 | |
| 2071 | /* |
| 2072 | * Read and update the existing record. We could just copy the ibtrec |
| 2073 | * across here, but that would defeat the purpose of having redundant |
| 2074 | * metadata. By making the modifications independently, we can catch |
| 2075 | * corruptions that we wouldn't see if we just copied from one record |
| 2076 | * to another. |
| 2077 | */ |
| 2078 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 2079 | if (error) |
| 2080 | goto error; |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2081 | XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error); |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2082 | |
| 2083 | rec.ir_free |= XFS_INOBT_MASK(offset); |
| 2084 | rec.ir_freecount++; |
| 2085 | |
Eric Sandeen | c29aad4 | 2015-02-23 22:39:08 +1100 | [diff] [blame] | 2086 | XFS_WANT_CORRUPTED_GOTO(mp, (rec.ir_free == ibtrec->ir_free) && |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2087 | (rec.ir_freecount == ibtrec->ir_freecount), |
| 2088 | error); |
| 2089 | |
| 2090 | /* |
| 2091 | * The content of inobt records should always match between the inobt |
| 2092 | * and finobt. The lifecycle of records in the finobt is different from |
| 2093 | * the inobt in that the finobt only tracks records with at least one |
| 2094 | * free inode. Hence, if all of the inodes are free and we aren't |
| 2095 | * keeping inode chunks permanently on disk, remove the record. |
| 2096 | * Otherwise, update the record with the new information. |
Brian Foster | 999633d | 2015-05-29 08:51:37 +1000 | [diff] [blame] | 2097 | * |
| 2098 | * Note that we currently can't free chunks when the block size is large |
| 2099 | * enough for multiple chunks. Leave the finobt record to remain in sync |
| 2100 | * with the inobt. |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2101 | */ |
Brian Foster | 999633d | 2015-05-29 08:51:37 +1000 | [diff] [blame] | 2102 | if (rec.ir_free == XFS_INOBT_ALL_FREE && |
| 2103 | mp->m_sb.sb_inopblock <= XFS_INODES_PER_CHUNK && |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2104 | !(mp->m_flags & XFS_MOUNT_IKEEP)) { |
| 2105 | error = xfs_btree_delete(cur, &i); |
| 2106 | if (error) |
| 2107 | goto error; |
| 2108 | ASSERT(i == 1); |
| 2109 | } else { |
| 2110 | error = xfs_inobt_update(cur, &rec); |
| 2111 | if (error) |
| 2112 | goto error; |
| 2113 | } |
| 2114 | |
| 2115 | out: |
| 2116 | error = xfs_check_agi_freecount(cur, agi); |
| 2117 | if (error) |
| 2118 | goto error; |
| 2119 | |
| 2120 | xfs_btree_del_cursor(cur, XFS_BTREE_NOERROR); |
| 2121 | return 0; |
| 2122 | |
| 2123 | error: |
| 2124 | xfs_btree_del_cursor(cur, XFS_BTREE_ERROR); |
| 2125 | return error; |
| 2126 | } |
| 2127 | |
| 2128 | /* |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2129 | * Free disk inode. Carefully avoids touching the incore inode, all |
| 2130 | * manipulations incore are the caller's responsibility. |
| 2131 | * The on-disk inode is not changed by this operation, only the |
| 2132 | * btree (free inode mask) is changed. |
| 2133 | */ |
| 2134 | int |
| 2135 | xfs_difree( |
| 2136 | struct xfs_trans *tp, /* transaction pointer */ |
| 2137 | xfs_ino_t inode, /* inode to be freed */ |
Brian Foster | 09b5660 | 2015-05-29 09:26:03 +1000 | [diff] [blame] | 2138 | struct xfs_icluster *xic) /* cluster info if deleted */ |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2139 | { |
| 2140 | /* REFERENCED */ |
| 2141 | xfs_agblock_t agbno; /* block number containing inode */ |
| 2142 | struct xfs_buf *agbp; /* buffer for allocation group header */ |
| 2143 | xfs_agino_t agino; /* allocation group inode number */ |
| 2144 | xfs_agnumber_t agno; /* allocation group number */ |
| 2145 | int error; /* error return value */ |
| 2146 | struct xfs_mount *mp; /* mount structure for filesystem */ |
| 2147 | struct xfs_inobt_rec_incore rec;/* btree record */ |
| 2148 | |
| 2149 | mp = tp->t_mountp; |
| 2150 | |
| 2151 | /* |
| 2152 | * Break up inode number into its components. |
| 2153 | */ |
| 2154 | agno = XFS_INO_TO_AGNO(mp, inode); |
| 2155 | if (agno >= mp->m_sb.sb_agcount) { |
| 2156 | xfs_warn(mp, "%s: agno >= mp->m_sb.sb_agcount (%d >= %d).", |
| 2157 | __func__, agno, mp->m_sb.sb_agcount); |
| 2158 | ASSERT(0); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2159 | return -EINVAL; |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2160 | } |
| 2161 | agino = XFS_INO_TO_AGINO(mp, inode); |
| 2162 | if (inode != XFS_AGINO_TO_INO(mp, agno, agino)) { |
| 2163 | xfs_warn(mp, "%s: inode != XFS_AGINO_TO_INO() (%llu != %llu).", |
| 2164 | __func__, (unsigned long long)inode, |
| 2165 | (unsigned long long)XFS_AGINO_TO_INO(mp, agno, agino)); |
| 2166 | ASSERT(0); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2167 | return -EINVAL; |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2168 | } |
| 2169 | agbno = XFS_AGINO_TO_AGBNO(mp, agino); |
| 2170 | if (agbno >= mp->m_sb.sb_agblocks) { |
| 2171 | xfs_warn(mp, "%s: agbno >= mp->m_sb.sb_agblocks (%d >= %d).", |
| 2172 | __func__, agbno, mp->m_sb.sb_agblocks); |
| 2173 | ASSERT(0); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2174 | return -EINVAL; |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2175 | } |
| 2176 | /* |
| 2177 | * Get the allocation group header. |
| 2178 | */ |
| 2179 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); |
| 2180 | if (error) { |
| 2181 | xfs_warn(mp, "%s: xfs_ialloc_read_agi() returned error %d.", |
| 2182 | __func__, error); |
| 2183 | return error; |
| 2184 | } |
| 2185 | |
| 2186 | /* |
| 2187 | * Fix up the inode allocation btree. |
| 2188 | */ |
Brian Foster | 0e0417f | 2018-07-11 22:26:07 -0700 | [diff] [blame] | 2189 | error = xfs_difree_inobt(mp, tp, agbp, agino, xic, &rec); |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2190 | if (error) |
| 2191 | goto error0; |
| 2192 | |
Brian Foster | 3efa4ff | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2193 | /* |
| 2194 | * Fix up the free inode btree. |
| 2195 | */ |
| 2196 | if (xfs_sb_version_hasfinobt(&mp->m_sb)) { |
| 2197 | error = xfs_difree_finobt(mp, tp, agbp, agino, &rec); |
| 2198 | if (error) |
| 2199 | goto error0; |
| 2200 | } |
| 2201 | |
Brian Foster | 2b64ee5 | 2014-04-24 16:00:53 +1000 | [diff] [blame] | 2202 | return 0; |
| 2203 | |
| 2204 | error0: |
| 2205 | return error; |
| 2206 | } |
| 2207 | |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2208 | STATIC int |
| 2209 | xfs_imap_lookup( |
| 2210 | struct xfs_mount *mp, |
| 2211 | struct xfs_trans *tp, |
| 2212 | xfs_agnumber_t agno, |
| 2213 | xfs_agino_t agino, |
| 2214 | xfs_agblock_t agbno, |
| 2215 | xfs_agblock_t *chunk_agbno, |
| 2216 | xfs_agblock_t *offset_agbno, |
| 2217 | int flags) |
| 2218 | { |
| 2219 | struct xfs_inobt_rec_incore rec; |
| 2220 | struct xfs_btree_cur *cur; |
| 2221 | struct xfs_buf *agbp; |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2222 | int error; |
| 2223 | int i; |
| 2224 | |
| 2225 | error = xfs_ialloc_read_agi(mp, tp, agno, &agbp); |
| 2226 | if (error) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 2227 | xfs_alert(mp, |
| 2228 | "%s: xfs_ialloc_read_agi() returned error %d, agno %d", |
| 2229 | __func__, error, agno); |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2230 | return error; |
| 2231 | } |
| 2232 | |
| 2233 | /* |
Dave Chinner | 4536f2a | 2010-08-24 11:42:30 +1000 | [diff] [blame] | 2234 | * Lookup the inode record for the given agino. If the record cannot be |
| 2235 | * found, then it's an invalid inode number and we should abort. Once |
| 2236 | * we have a record, we need to ensure it contains the inode number |
| 2237 | * we are looking up. |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2238 | */ |
Brian Foster | 57bd3db | 2014-04-24 16:00:50 +1000 | [diff] [blame] | 2239 | cur = xfs_inobt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_INO); |
Dave Chinner | 4536f2a | 2010-08-24 11:42:30 +1000 | [diff] [blame] | 2240 | error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &i); |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2241 | if (!error) { |
| 2242 | if (i) |
| 2243 | error = xfs_inobt_get_rec(cur, &rec, &i); |
| 2244 | if (!error && i == 0) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2245 | error = -EINVAL; |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2246 | } |
| 2247 | |
| 2248 | xfs_trans_brelse(tp, agbp); |
Darrick J. Wong | 0b04b6b8 | 2018-07-19 12:26:31 -0700 | [diff] [blame] | 2249 | xfs_btree_del_cursor(cur, error); |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2250 | if (error) |
| 2251 | return error; |
| 2252 | |
Dave Chinner | 4536f2a | 2010-08-24 11:42:30 +1000 | [diff] [blame] | 2253 | /* check that the returned record contains the required inode */ |
| 2254 | if (rec.ir_startino > agino || |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2255 | rec.ir_startino + M_IGEO(mp)->ialloc_inos <= agino) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2256 | return -EINVAL; |
Dave Chinner | 4536f2a | 2010-08-24 11:42:30 +1000 | [diff] [blame] | 2257 | |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2258 | /* for untrusted inodes check it is allocated first */ |
Dave Chinner | 1920779 | 2010-06-24 11:15:47 +1000 | [diff] [blame] | 2259 | if ((flags & XFS_IGET_UNTRUSTED) && |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2260 | (rec.ir_free & XFS_INOBT_MASK(agino - rec.ir_startino))) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2261 | return -EINVAL; |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2262 | |
| 2263 | *chunk_agbno = XFS_AGINO_TO_AGBNO(mp, rec.ir_startino); |
| 2264 | *offset_agbno = agbno - *chunk_agbno; |
| 2265 | return 0; |
| 2266 | } |
| 2267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | /* |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2269 | * Return the location of the inode in imap, for mapping it into a buffer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | int |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2272 | xfs_imap( |
| 2273 | xfs_mount_t *mp, /* file system mount structure */ |
| 2274 | xfs_trans_t *tp, /* transaction pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | xfs_ino_t ino, /* inode to locate */ |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2276 | struct xfs_imap *imap, /* location map structure */ |
| 2277 | uint flags) /* flags for inode btree lookup */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | { |
| 2279 | xfs_agblock_t agbno; /* block number of inode in the alloc group */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | xfs_agino_t agino; /* inode number within alloc group */ |
| 2281 | xfs_agnumber_t agno; /* allocation group number */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | xfs_agblock_t chunk_agbno; /* first block in inode chunk */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | xfs_agblock_t cluster_agbno; /* first block in inode cluster */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | int error; /* error code */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | int offset; /* index of inode in its buffer */ |
Dave Chinner | 836a94a | 2013-08-12 20:49:44 +1000 | [diff] [blame] | 2286 | xfs_agblock_t offset_agbno; /* blks from chunk start to inode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | |
| 2288 | ASSERT(ino != NULLFSINO); |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | /* |
| 2291 | * Split up the inode number into its parts. |
| 2292 | */ |
| 2293 | agno = XFS_INO_TO_AGNO(mp, ino); |
| 2294 | agino = XFS_INO_TO_AGINO(mp, ino); |
| 2295 | agbno = XFS_AGINO_TO_AGBNO(mp, agino); |
| 2296 | if (agno >= mp->m_sb.sb_agcount || agbno >= mp->m_sb.sb_agblocks || |
| 2297 | ino != XFS_AGINO_TO_INO(mp, agno, agino)) { |
| 2298 | #ifdef DEBUG |
Dave Chinner | 1920779 | 2010-06-24 11:15:47 +1000 | [diff] [blame] | 2299 | /* |
| 2300 | * Don't output diagnostic information for untrusted inodes |
| 2301 | * as they can be invalid without implying corruption. |
| 2302 | */ |
| 2303 | if (flags & XFS_IGET_UNTRUSTED) |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2304 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | if (agno >= mp->m_sb.sb_agcount) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 2306 | xfs_alert(mp, |
| 2307 | "%s: agno (%d) >= mp->m_sb.sb_agcount (%d)", |
| 2308 | __func__, agno, mp->m_sb.sb_agcount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | } |
| 2310 | if (agbno >= mp->m_sb.sb_agblocks) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 2311 | xfs_alert(mp, |
| 2312 | "%s: agbno (0x%llx) >= mp->m_sb.sb_agblocks (0x%lx)", |
| 2313 | __func__, (unsigned long long)agbno, |
| 2314 | (unsigned long)mp->m_sb.sb_agblocks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | } |
| 2316 | if (ino != XFS_AGINO_TO_INO(mp, agno, agino)) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 2317 | xfs_alert(mp, |
| 2318 | "%s: ino (0x%llx) != XFS_AGINO_TO_INO() (0x%llx)", |
| 2319 | __func__, ino, |
| 2320 | XFS_AGINO_TO_INO(mp, agno, agino)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | } |
Nathan Scott | 745b1f47 | 2006-09-28 11:02:23 +1000 | [diff] [blame] | 2322 | xfs_stack_trace(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | #endif /* DEBUG */ |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2324 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2325 | } |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2326 | |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2327 | /* |
| 2328 | * For bulkstat and handle lookups, we have an untrusted inode number |
| 2329 | * that we have to verify is valid. We cannot do this just by reading |
| 2330 | * the inode buffer as it may have been unlinked and removed leaving |
| 2331 | * inodes in stale state on disk. Hence we have to do a btree lookup |
| 2332 | * in all cases where an untrusted inode number is passed. |
| 2333 | */ |
Dave Chinner | 1920779 | 2010-06-24 11:15:47 +1000 | [diff] [blame] | 2334 | if (flags & XFS_IGET_UNTRUSTED) { |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2335 | error = xfs_imap_lookup(mp, tp, agno, agino, agbno, |
| 2336 | &chunk_agbno, &offset_agbno, flags); |
| 2337 | if (error) |
| 2338 | return error; |
| 2339 | goto out_map; |
| 2340 | } |
| 2341 | |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2342 | /* |
| 2343 | * If the inode cluster size is the same as the blocksize or |
| 2344 | * smaller we get to the buffer by simple arithmetics. |
| 2345 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2346 | if (M_IGEO(mp)->blocks_per_cluster == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | offset = XFS_INO_TO_OFFSET(mp, ino); |
| 2348 | ASSERT(offset < mp->m_sb.sb_inopblock); |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2349 | |
| 2350 | imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, agbno); |
| 2351 | imap->im_len = XFS_FSB_TO_BB(mp, 1); |
Darrick J. Wong | 755c7bf | 2016-11-08 11:55:48 +1100 | [diff] [blame] | 2352 | imap->im_boffset = (unsigned short)(offset << |
| 2353 | mp->m_sb.sb_inodelog); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2354 | return 0; |
| 2355 | } |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2356 | |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2357 | /* |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2358 | * If the inode chunks are aligned then use simple maths to |
| 2359 | * find the location. Otherwise we have to do a btree |
| 2360 | * lookup to find the location. |
| 2361 | */ |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2362 | if (M_IGEO(mp)->inoalign_mask) { |
| 2363 | offset_agbno = agbno & M_IGEO(mp)->inoalign_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2364 | chunk_agbno = agbno - offset_agbno; |
| 2365 | } else { |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2366 | error = xfs_imap_lookup(mp, tp, agno, agino, agbno, |
| 2367 | &chunk_agbno, &offset_agbno, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | if (error) |
| 2369 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | } |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2371 | |
Dave Chinner | 7124fe0 | 2010-06-24 11:15:33 +1000 | [diff] [blame] | 2372 | out_map: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | ASSERT(agbno >= chunk_agbno); |
| 2374 | cluster_agbno = chunk_agbno + |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2375 | ((offset_agbno / M_IGEO(mp)->blocks_per_cluster) * |
| 2376 | M_IGEO(mp)->blocks_per_cluster); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | offset = ((agbno - cluster_agbno) * mp->m_sb.sb_inopblock) + |
| 2378 | XFS_INO_TO_OFFSET(mp, ino); |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2379 | |
| 2380 | imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, cluster_agbno); |
Darrick J. Wong | ef32595 | 2019-06-05 11:19:34 -0700 | [diff] [blame] | 2381 | imap->im_len = XFS_FSB_TO_BB(mp, M_IGEO(mp)->blocks_per_cluster); |
Darrick J. Wong | 755c7bf | 2016-11-08 11:55:48 +1100 | [diff] [blame] | 2382 | imap->im_boffset = (unsigned short)(offset << mp->m_sb.sb_inodelog); |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2383 | |
| 2384 | /* |
| 2385 | * If the inode number maps to a block outside the bounds |
| 2386 | * of the file system then return NULL rather than calling |
| 2387 | * read_buf and panicing when we get an error from the |
| 2388 | * driver. |
| 2389 | */ |
| 2390 | if ((imap->im_blkno + imap->im_len) > |
| 2391 | XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)) { |
Dave Chinner | 5348778 | 2011-03-07 10:05:35 +1100 | [diff] [blame] | 2392 | xfs_alert(mp, |
| 2393 | "%s: (im_blkno (0x%llx) + im_len (0x%llx)) > sb_dblocks (0x%llx)", |
| 2394 | __func__, (unsigned long long) imap->im_blkno, |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2395 | (unsigned long long) imap->im_len, |
| 2396 | XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)); |
Dave Chinner | 2451337 | 2014-06-25 14:58:08 +1000 | [diff] [blame] | 2397 | return -EINVAL; |
Christoph Hellwig | 94e1b69 | 2008-11-28 14:23:41 +1100 | [diff] [blame] | 2398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | } |
| 2401 | |
| 2402 | /* |
Brian Foster | aafc3c2 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 2403 | * Log specified fields for the ag hdr (inode section). The growth of the agi |
| 2404 | * structure over time requires that we interpret the buffer as two logical |
| 2405 | * regions delineated by the end of the unlinked list. This is due to the size |
| 2406 | * of the hash table and its location in the middle of the agi. |
| 2407 | * |
| 2408 | * For example, a request to log a field before agi_unlinked and a field after |
| 2409 | * agi_unlinked could cause us to log the entire hash table and use an excessive |
| 2410 | * amount of log space. To avoid this behavior, log the region up through |
| 2411 | * agi_unlinked in one call and the region after agi_unlinked through the end of |
| 2412 | * the structure in another. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | */ |
| 2414 | void |
| 2415 | xfs_ialloc_log_agi( |
| 2416 | xfs_trans_t *tp, /* transaction pointer */ |
| 2417 | xfs_buf_t *bp, /* allocation group header buffer */ |
| 2418 | int fields) /* bitmask of fields to log */ |
| 2419 | { |
| 2420 | int first; /* first byte number */ |
| 2421 | int last; /* last byte number */ |
| 2422 | static const short offsets[] = { /* field starting offsets */ |
| 2423 | /* keep in sync with bit definitions */ |
| 2424 | offsetof(xfs_agi_t, agi_magicnum), |
| 2425 | offsetof(xfs_agi_t, agi_versionnum), |
| 2426 | offsetof(xfs_agi_t, agi_seqno), |
| 2427 | offsetof(xfs_agi_t, agi_length), |
| 2428 | offsetof(xfs_agi_t, agi_count), |
| 2429 | offsetof(xfs_agi_t, agi_root), |
| 2430 | offsetof(xfs_agi_t, agi_level), |
| 2431 | offsetof(xfs_agi_t, agi_freecount), |
| 2432 | offsetof(xfs_agi_t, agi_newino), |
| 2433 | offsetof(xfs_agi_t, agi_dirino), |
| 2434 | offsetof(xfs_agi_t, agi_unlinked), |
Brian Foster | aafc3c2 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 2435 | offsetof(xfs_agi_t, agi_free_root), |
| 2436 | offsetof(xfs_agi_t, agi_free_level), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | sizeof(xfs_agi_t) |
| 2438 | }; |
| 2439 | #ifdef DEBUG |
| 2440 | xfs_agi_t *agi; /* allocation group header */ |
| 2441 | |
| 2442 | agi = XFS_BUF_TO_AGI(bp); |
Christoph Hellwig | 69ef921 | 2011-07-08 14:36:05 +0200 | [diff] [blame] | 2443 | ASSERT(agi->agi_magicnum == cpu_to_be32(XFS_AGI_MAGIC)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2444 | #endif |
Brian Foster | aafc3c2 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 2445 | |
Brian Foster | aafc3c2 | 2014-04-24 16:00:52 +1000 | [diff] [blame] | 2446 | /* |
| 2447 | * Compute byte offsets for the first and last fields in the first |
| 2448 | * region and log the agi buffer. This only logs up through |
| 2449 | * agi_unlinked. |
| 2450 | */ |
| 2451 | if (fields & XFS_AGI_ALL_BITS_R1) { |
| 2452 | xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R1, |
| 2453 | &first, &last); |
| 2454 | xfs_trans_log_buf(tp, bp, first, last); |
| 2455 | } |
| 2456 | |
| 2457 | /* |
| 2458 | * Mask off the bits in the first region and calculate the first and |
| 2459 | * last field offsets for any bits in the second region. |
| 2460 | */ |
| 2461 | fields &= ~XFS_AGI_ALL_BITS_R1; |
| 2462 | if (fields) { |
| 2463 | xfs_btree_offsets(fields, offsets, XFS_AGI_NUM_BITS_R2, |
| 2464 | &first, &last); |
| 2465 | xfs_trans_log_buf(tp, bp, first, last); |
| 2466 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2467 | } |
| 2468 | |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2469 | static xfs_failaddr_t |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 2470 | xfs_agi_verify( |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2471 | struct xfs_buf *bp) |
| 2472 | { |
| 2473 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 2474 | struct xfs_agi *agi = XFS_BUF_TO_AGI(bp); |
Dave Chinner | 9f96cc9 | 2018-06-03 16:12:16 -0700 | [diff] [blame] | 2475 | int i; |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2476 | |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 2477 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 2478 | if (!uuid_equal(&agi->agi_uuid, &mp->m_sb.sb_meta_uuid)) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2479 | return __this_address; |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 2480 | if (!xfs_log_check_lsn(mp, |
| 2481 | be64_to_cpu(XFS_BUF_TO_AGI(bp)->agi_lsn))) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2482 | return __this_address; |
Brian Foster | a45086e | 2015-10-12 15:59:25 +1100 | [diff] [blame] | 2483 | } |
| 2484 | |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2485 | /* |
| 2486 | * Validate the magic number of the agi block. |
| 2487 | */ |
Brian Foster | 39708c2 | 2019-02-07 10:45:48 -0800 | [diff] [blame] | 2488 | if (!xfs_verify_magic(bp, agi->agi_magicnum)) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2489 | return __this_address; |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2490 | if (!XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum))) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2491 | return __this_address; |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2492 | |
Darrick J. Wong | d2a047f | 2016-12-05 12:32:50 +1100 | [diff] [blame] | 2493 | if (be32_to_cpu(agi->agi_level) < 1 || |
| 2494 | be32_to_cpu(agi->agi_level) > XFS_BTREE_MAXLEVELS) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2495 | return __this_address; |
Darrick J. Wong | d2a047f | 2016-12-05 12:32:50 +1100 | [diff] [blame] | 2496 | |
| 2497 | if (xfs_sb_version_hasfinobt(&mp->m_sb) && |
| 2498 | (be32_to_cpu(agi->agi_free_level) < 1 || |
| 2499 | be32_to_cpu(agi->agi_free_level) > XFS_BTREE_MAXLEVELS)) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2500 | return __this_address; |
Darrick J. Wong | d2a047f | 2016-12-05 12:32:50 +1100 | [diff] [blame] | 2501 | |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2502 | /* |
| 2503 | * during growfs operations, the perag is not fully initialised, |
| 2504 | * so we can't use it for any useful checking. growfs ensures we can't |
| 2505 | * use it by using uncached buffers that don't have the perag attached |
| 2506 | * so we can detect and avoid this problem. |
| 2507 | */ |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2508 | if (bp->b_pag && be32_to_cpu(agi->agi_seqno) != bp->b_pag->pag_agno) |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2509 | return __this_address; |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2510 | |
Dave Chinner | 9f96cc9 | 2018-06-03 16:12:16 -0700 | [diff] [blame] | 2511 | for (i = 0; i < XFS_AGI_UNLINKED_BUCKETS; i++) { |
Carlos Maiolino | 5089eaf | 2018-07-17 14:25:20 -0700 | [diff] [blame] | 2512 | if (agi->agi_unlinked[i] == cpu_to_be32(NULLAGINO)) |
Dave Chinner | 9f96cc9 | 2018-06-03 16:12:16 -0700 | [diff] [blame] | 2513 | continue; |
| 2514 | if (!xfs_verify_ino(mp, be32_to_cpu(agi->agi_unlinked[i]))) |
| 2515 | return __this_address; |
| 2516 | } |
| 2517 | |
Darrick J. Wong | a6a781a | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2518 | return NULL; |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 2519 | } |
| 2520 | |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2521 | static void |
| 2522 | xfs_agi_read_verify( |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 2523 | struct xfs_buf *bp) |
| 2524 | { |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2525 | struct xfs_mount *mp = bp->b_target->bt_mount; |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2526 | xfs_failaddr_t fa; |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2527 | |
Eric Sandeen | ce5028c | 2014-02-27 15:23:10 +1100 | [diff] [blame] | 2528 | if (xfs_sb_version_hascrc(&mp->m_sb) && |
| 2529 | !xfs_buf_verify_cksum(bp, XFS_AGI_CRC_OFF)) |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2530 | xfs_verifier_error(bp, -EFSBADCRC, __this_address); |
| 2531 | else { |
| 2532 | fa = xfs_agi_verify(bp); |
| 2533 | if (XFS_TEST_ERROR(fa, mp, XFS_ERRTAG_IALLOC_READ_AGI)) |
| 2534 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); |
| 2535 | } |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 2536 | } |
| 2537 | |
Dave Chinner | b0f539d | 2012-11-14 17:53:49 +1100 | [diff] [blame] | 2538 | static void |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2539 | xfs_agi_write_verify( |
Dave Chinner | 612cfbf | 2012-11-14 17:52:32 +1100 | [diff] [blame] | 2540 | struct xfs_buf *bp) |
| 2541 | { |
Carlos Maiolino | fb1755a | 2018-01-24 13:38:48 -0800 | [diff] [blame] | 2542 | struct xfs_mount *mp = bp->b_target->bt_mount; |
| 2543 | struct xfs_buf_log_item *bip = bp->b_log_item; |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2544 | xfs_failaddr_t fa; |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2545 | |
Darrick J. Wong | bc1a09b | 2018-01-08 10:51:03 -0800 | [diff] [blame] | 2546 | fa = xfs_agi_verify(bp); |
| 2547 | if (fa) { |
| 2548 | xfs_verifier_error(bp, -EFSCORRUPTED, fa); |
Dave Chinner | 983d09f | 2013-04-03 16:11:15 +1100 | [diff] [blame] | 2549 | return; |
| 2550 | } |
| 2551 | |
| 2552 | if (!xfs_sb_version_hascrc(&mp->m_sb)) |
| 2553 | return; |
| 2554 | |
| 2555 | if (bip) |
| 2556 | XFS_BUF_TO_AGI(bp)->agi_lsn = cpu_to_be64(bip->bli_item.li_lsn); |
Eric Sandeen | f1dbcd7 | 2014-02-27 15:18:23 +1100 | [diff] [blame] | 2557 | xfs_buf_update_cksum(bp, XFS_AGI_CRC_OFF); |
Dave Chinner | 3702ce6 | 2012-11-12 22:54:05 +1100 | [diff] [blame] | 2558 | } |
| 2559 | |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2560 | const struct xfs_buf_ops xfs_agi_buf_ops = { |
Eric Sandeen | 233135b | 2016-01-04 16:10:19 +1100 | [diff] [blame] | 2561 | .name = "xfs_agi", |
Brian Foster | 39708c2 | 2019-02-07 10:45:48 -0800 | [diff] [blame] | 2562 | .magic = { cpu_to_be32(XFS_AGI_MAGIC), cpu_to_be32(XFS_AGI_MAGIC) }, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2563 | .verify_read = xfs_agi_read_verify, |
| 2564 | .verify_write = xfs_agi_write_verify, |
Darrick J. Wong | b557259 | 2018-01-08 10:51:08 -0800 | [diff] [blame] | 2565 | .verify_struct = xfs_agi_verify, |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2566 | }; |
| 2567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | /* |
| 2569 | * Read in the allocation group header (inode allocation section) |
| 2570 | */ |
| 2571 | int |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2572 | xfs_read_agi( |
| 2573 | struct xfs_mount *mp, /* file system mount structure */ |
| 2574 | struct xfs_trans *tp, /* transaction pointer */ |
| 2575 | xfs_agnumber_t agno, /* allocation group number */ |
| 2576 | struct xfs_buf **bpp) /* allocation group hdr buf */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | { |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2578 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2579 | |
Dave Chinner | d123031 | 2013-11-01 15:27:19 +1100 | [diff] [blame] | 2580 | trace_xfs_read_agi(mp, agno); |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2581 | |
Dave Chinner | d123031 | 2013-11-01 15:27:19 +1100 | [diff] [blame] | 2582 | ASSERT(agno != NULLAGNUMBER); |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2583 | error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2584 | XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)), |
Dave Chinner | 1813dd6 | 2012-11-14 17:54:40 +1100 | [diff] [blame] | 2585 | XFS_FSS_TO_BB(mp, 1), 0, bpp, &xfs_agi_buf_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | if (error) |
| 2587 | return error; |
Eric Sandeen | 200237d | 2016-12-05 12:31:31 +1100 | [diff] [blame] | 2588 | if (tp) |
| 2589 | xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_AGI_BUF); |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2590 | |
Christoph Hellwig | 38f2323 | 2011-10-10 16:52:45 +0000 | [diff] [blame] | 2591 | xfs_buf_set_ref(*bpp, XFS_AGI_REF); |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2592 | return 0; |
| 2593 | } |
| 2594 | |
| 2595 | int |
| 2596 | xfs_ialloc_read_agi( |
| 2597 | struct xfs_mount *mp, /* file system mount structure */ |
| 2598 | struct xfs_trans *tp, /* transaction pointer */ |
| 2599 | xfs_agnumber_t agno, /* allocation group number */ |
| 2600 | struct xfs_buf **bpp) /* allocation group hdr buf */ |
| 2601 | { |
| 2602 | struct xfs_agi *agi; /* allocation group header */ |
| 2603 | struct xfs_perag *pag; /* per allocation group data */ |
| 2604 | int error; |
| 2605 | |
Dave Chinner | d123031 | 2013-11-01 15:27:19 +1100 | [diff] [blame] | 2606 | trace_xfs_ialloc_read_agi(mp, agno); |
| 2607 | |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2608 | error = xfs_read_agi(mp, tp, agno, bpp); |
| 2609 | if (error) |
| 2610 | return error; |
| 2611 | |
| 2612 | agi = XFS_BUF_TO_AGI(*bpp); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 2613 | pag = xfs_perag_get(mp, agno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2614 | if (!pag->pagi_init) { |
Christoph Hellwig | 16259e7 | 2005-11-02 15:11:25 +1100 | [diff] [blame] | 2615 | pag->pagi_freecount = be32_to_cpu(agi->agi_freecount); |
David Chinner | 92821e2 | 2007-05-24 15:26:31 +1000 | [diff] [blame] | 2616 | pag->pagi_count = be32_to_cpu(agi->agi_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2617 | pag->pagi_init = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2618 | } |
| 2619 | |
Christoph Hellwig | 5e1be0f | 2008-11-28 14:23:37 +1100 | [diff] [blame] | 2620 | /* |
| 2621 | * It's possible for these to be out of sync if |
| 2622 | * we are in the middle of a forced shutdown. |
| 2623 | */ |
| 2624 | ASSERT(pag->pagi_freecount == be32_to_cpu(agi->agi_freecount) || |
| 2625 | XFS_FORCED_SHUTDOWN(mp)); |
Dave Chinner | 44b56e0 | 2010-01-11 11:47:43 +0000 | [diff] [blame] | 2626 | xfs_perag_put(pag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2627 | return 0; |
| 2628 | } |
David Chinner | 92821e2 | 2007-05-24 15:26:31 +1000 | [diff] [blame] | 2629 | |
| 2630 | /* |
| 2631 | * Read in the agi to initialise the per-ag data in the mount structure |
| 2632 | */ |
| 2633 | int |
| 2634 | xfs_ialloc_pagi_init( |
| 2635 | xfs_mount_t *mp, /* file system mount structure */ |
| 2636 | xfs_trans_t *tp, /* transaction pointer */ |
| 2637 | xfs_agnumber_t agno) /* allocation group number */ |
| 2638 | { |
| 2639 | xfs_buf_t *bp = NULL; |
| 2640 | int error; |
| 2641 | |
| 2642 | error = xfs_ialloc_read_agi(mp, tp, agno, &bp); |
| 2643 | if (error) |
| 2644 | return error; |
| 2645 | if (bp) |
| 2646 | xfs_trans_brelse(tp, bp); |
| 2647 | return 0; |
| 2648 | } |
Darrick J. Wong | 91fb9af | 2017-10-17 21:37:34 -0700 | [diff] [blame] | 2649 | |
Darrick J. Wong | 2e00126 | 2018-01-16 18:52:12 -0800 | [diff] [blame] | 2650 | /* Is there an inode record covering a given range of inode numbers? */ |
| 2651 | int |
| 2652 | xfs_ialloc_has_inode_record( |
| 2653 | struct xfs_btree_cur *cur, |
| 2654 | xfs_agino_t low, |
| 2655 | xfs_agino_t high, |
| 2656 | bool *exists) |
| 2657 | { |
| 2658 | struct xfs_inobt_rec_incore irec; |
| 2659 | xfs_agino_t agino; |
| 2660 | uint16_t holemask; |
| 2661 | int has_record; |
| 2662 | int i; |
| 2663 | int error; |
| 2664 | |
| 2665 | *exists = false; |
| 2666 | error = xfs_inobt_lookup(cur, low, XFS_LOOKUP_LE, &has_record); |
| 2667 | while (error == 0 && has_record) { |
| 2668 | error = xfs_inobt_get_rec(cur, &irec, &has_record); |
| 2669 | if (error || irec.ir_startino > high) |
| 2670 | break; |
| 2671 | |
| 2672 | agino = irec.ir_startino; |
| 2673 | holemask = irec.ir_holemask; |
| 2674 | for (i = 0; i < XFS_INOBT_HOLEMASK_BITS; holemask >>= 1, |
| 2675 | i++, agino += XFS_INODES_PER_HOLEMASK_BIT) { |
| 2676 | if (holemask & 1) |
| 2677 | continue; |
| 2678 | if (agino + XFS_INODES_PER_HOLEMASK_BIT > low && |
| 2679 | agino <= high) { |
| 2680 | *exists = true; |
| 2681 | return 0; |
| 2682 | } |
| 2683 | } |
| 2684 | |
| 2685 | error = xfs_btree_increment(cur, 0, &has_record); |
| 2686 | } |
| 2687 | return error; |
| 2688 | } |
| 2689 | |
| 2690 | /* Is there an inode record covering a given extent? */ |
| 2691 | int |
| 2692 | xfs_ialloc_has_inodes_at_extent( |
| 2693 | struct xfs_btree_cur *cur, |
| 2694 | xfs_agblock_t bno, |
| 2695 | xfs_extlen_t len, |
| 2696 | bool *exists) |
| 2697 | { |
| 2698 | xfs_agino_t low; |
| 2699 | xfs_agino_t high; |
| 2700 | |
Darrick J. Wong | 43004b2 | 2018-12-12 08:46:24 -0800 | [diff] [blame] | 2701 | low = XFS_AGB_TO_AGINO(cur->bc_mp, bno); |
| 2702 | high = XFS_AGB_TO_AGINO(cur->bc_mp, bno + len) - 1; |
Darrick J. Wong | 2e00126 | 2018-01-16 18:52:12 -0800 | [diff] [blame] | 2703 | |
| 2704 | return xfs_ialloc_has_inode_record(cur, low, high, exists); |
| 2705 | } |
| 2706 | |
| 2707 | struct xfs_ialloc_count_inodes { |
| 2708 | xfs_agino_t count; |
| 2709 | xfs_agino_t freecount; |
| 2710 | }; |
| 2711 | |
| 2712 | /* Record inode counts across all inobt records. */ |
| 2713 | STATIC int |
| 2714 | xfs_ialloc_count_inodes_rec( |
| 2715 | struct xfs_btree_cur *cur, |
| 2716 | union xfs_btree_rec *rec, |
| 2717 | void *priv) |
| 2718 | { |
| 2719 | struct xfs_inobt_rec_incore irec; |
| 2720 | struct xfs_ialloc_count_inodes *ci = priv; |
| 2721 | |
| 2722 | xfs_inobt_btrec_to_irec(cur->bc_mp, rec, &irec); |
| 2723 | ci->count += irec.ir_count; |
| 2724 | ci->freecount += irec.ir_freecount; |
| 2725 | |
| 2726 | return 0; |
| 2727 | } |
| 2728 | |
| 2729 | /* Count allocated and free inodes under an inobt. */ |
| 2730 | int |
| 2731 | xfs_ialloc_count_inodes( |
| 2732 | struct xfs_btree_cur *cur, |
| 2733 | xfs_agino_t *count, |
| 2734 | xfs_agino_t *freecount) |
| 2735 | { |
| 2736 | struct xfs_ialloc_count_inodes ci = {0}; |
| 2737 | int error; |
| 2738 | |
| 2739 | ASSERT(cur->bc_btnum == XFS_BTNUM_INO); |
| 2740 | error = xfs_btree_query_all(cur, xfs_ialloc_count_inodes_rec, &ci); |
| 2741 | if (error) |
| 2742 | return error; |
| 2743 | |
| 2744 | *count = ci.count; |
| 2745 | *freecount = ci.freecount; |
| 2746 | return 0; |
| 2747 | } |
Darrick J. Wong | 494dba7 | 2019-06-05 11:19:35 -0700 | [diff] [blame^] | 2748 | |
| 2749 | /* |
| 2750 | * Initialize inode-related geometry information. |
| 2751 | * |
| 2752 | * Compute the inode btree min and max levels and set maxicount. |
| 2753 | * |
| 2754 | * Set the inode cluster size. This may still be overridden by the file |
| 2755 | * system block size if it is larger than the chosen cluster size. |
| 2756 | * |
| 2757 | * For v5 filesystems, scale the cluster size with the inode size to keep a |
| 2758 | * constant ratio of inode per cluster buffer, but only if mkfs has set the |
| 2759 | * inode alignment value appropriately for larger cluster sizes. |
| 2760 | * |
| 2761 | * Then compute the inode cluster alignment information. |
| 2762 | */ |
| 2763 | void |
| 2764 | xfs_ialloc_setup_geometry( |
| 2765 | struct xfs_mount *mp) |
| 2766 | { |
| 2767 | struct xfs_sb *sbp = &mp->m_sb; |
| 2768 | struct xfs_ino_geometry *igeo = M_IGEO(mp); |
| 2769 | uint64_t icount; |
| 2770 | uint inodes; |
| 2771 | |
| 2772 | /* Compute inode btree geometry. */ |
| 2773 | igeo->agino_log = sbp->sb_inopblog + sbp->sb_agblklog; |
| 2774 | igeo->inobt_mxr[0] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 1); |
| 2775 | igeo->inobt_mxr[1] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 0); |
| 2776 | igeo->inobt_mnr[0] = igeo->inobt_mxr[0] / 2; |
| 2777 | igeo->inobt_mnr[1] = igeo->inobt_mxr[1] / 2; |
| 2778 | |
| 2779 | igeo->ialloc_inos = max_t(uint16_t, XFS_INODES_PER_CHUNK, |
| 2780 | sbp->sb_inopblock); |
| 2781 | igeo->ialloc_blks = igeo->ialloc_inos >> sbp->sb_inopblog; |
| 2782 | |
| 2783 | if (sbp->sb_spino_align) |
| 2784 | igeo->ialloc_min_blks = sbp->sb_spino_align; |
| 2785 | else |
| 2786 | igeo->ialloc_min_blks = igeo->ialloc_blks; |
| 2787 | |
| 2788 | /* Compute and fill in value of m_ino_geo.inobt_maxlevels. */ |
| 2789 | inodes = (1LL << XFS_INO_AGINO_BITS(mp)) >> XFS_INODES_PER_CHUNK_LOG; |
| 2790 | igeo->inobt_maxlevels = xfs_btree_compute_maxlevels(igeo->inobt_mnr, |
| 2791 | inodes); |
| 2792 | |
| 2793 | /* Set the maximum inode count for this filesystem. */ |
| 2794 | if (sbp->sb_imax_pct) { |
| 2795 | /* |
| 2796 | * Make sure the maximum inode count is a multiple |
| 2797 | * of the units we allocate inodes in. |
| 2798 | */ |
| 2799 | icount = sbp->sb_dblocks * sbp->sb_imax_pct; |
| 2800 | do_div(icount, 100); |
| 2801 | do_div(icount, igeo->ialloc_blks); |
| 2802 | igeo->maxicount = XFS_FSB_TO_INO(mp, |
| 2803 | icount * igeo->ialloc_blks); |
| 2804 | } else { |
| 2805 | igeo->maxicount = 0; |
| 2806 | } |
| 2807 | |
| 2808 | igeo->inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE; |
| 2809 | if (xfs_sb_version_hascrc(&mp->m_sb)) { |
| 2810 | int new_size = igeo->inode_cluster_size; |
| 2811 | |
| 2812 | new_size *= mp->m_sb.sb_inodesize / XFS_DINODE_MIN_SIZE; |
| 2813 | if (mp->m_sb.sb_inoalignmt >= XFS_B_TO_FSBT(mp, new_size)) |
| 2814 | igeo->inode_cluster_size = new_size; |
| 2815 | } |
| 2816 | |
| 2817 | /* Calculate inode cluster ratios. */ |
| 2818 | if (igeo->inode_cluster_size > mp->m_sb.sb_blocksize) |
| 2819 | igeo->blocks_per_cluster = XFS_B_TO_FSBT(mp, |
| 2820 | igeo->inode_cluster_size); |
| 2821 | else |
| 2822 | igeo->blocks_per_cluster = 1; |
| 2823 | igeo->inodes_per_cluster = XFS_FSB_TO_INO(mp, igeo->blocks_per_cluster); |
| 2824 | |
| 2825 | /* Calculate inode cluster alignment. */ |
| 2826 | if (xfs_sb_version_hasalign(&mp->m_sb) && |
| 2827 | mp->m_sb.sb_inoalignmt >= igeo->blocks_per_cluster) |
| 2828 | igeo->cluster_align = mp->m_sb.sb_inoalignmt; |
| 2829 | else |
| 2830 | igeo->cluster_align = 1; |
| 2831 | igeo->inoalign_mask = igeo->cluster_align - 1; |
| 2832 | igeo->cluster_align_inodes = XFS_FSB_TO_INO(mp, igeo->cluster_align); |
| 2833 | |
| 2834 | /* |
| 2835 | * If we are using stripe alignment, check whether |
| 2836 | * the stripe unit is a multiple of the inode alignment |
| 2837 | */ |
| 2838 | if (mp->m_dalign && igeo->inoalign_mask && |
| 2839 | !(mp->m_dalign & igeo->inoalign_mask)) |
| 2840 | igeo->ialloc_align = mp->m_dalign; |
| 2841 | else |
| 2842 | igeo->ialloc_align = 0; |
| 2843 | } |