xfs: connect up write verifiers to new buffers
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / xfs / xfs_fsops.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
1da177e4
LT
21#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
a844f451 24#include "xfs_ag.h"
1da177e4 25#include "xfs_mount.h"
1da177e4 26#include "xfs_bmap_btree.h"
a844f451 27#include "xfs_alloc_btree.h"
1da177e4 28#include "xfs_ialloc_btree.h"
a844f451
NS
29#include "xfs_dinode.h"
30#include "xfs_inode.h"
31#include "xfs_inode_item.h"
1da177e4
LT
32#include "xfs_btree.h"
33#include "xfs_error.h"
34#include "xfs_alloc.h"
35#include "xfs_ialloc.h"
36#include "xfs_fsops.h"
37#include "xfs_itable.h"
1da177e4
LT
38#include "xfs_trans_space.h"
39#include "xfs_rtalloc.h"
2a82b8be 40#include "xfs_filestream.h"
0b1b213f 41#include "xfs_trace.h"
1da177e4
LT
42
43/*
44 * File system operations
45 */
46
47int
48xfs_fs_geometry(
49 xfs_mount_t *mp,
50 xfs_fsop_geom_t *geo,
51 int new_version)
52{
c4d0c3b0
DR
53
54 memset(geo, 0, sizeof(*geo));
55
1da177e4
LT
56 geo->blocksize = mp->m_sb.sb_blocksize;
57 geo->rtextsize = mp->m_sb.sb_rextsize;
58 geo->agblocks = mp->m_sb.sb_agblocks;
59 geo->agcount = mp->m_sb.sb_agcount;
60 geo->logblocks = mp->m_sb.sb_logblocks;
61 geo->sectsize = mp->m_sb.sb_sectsize;
62 geo->inodesize = mp->m_sb.sb_inodesize;
63 geo->imaxpct = mp->m_sb.sb_imax_pct;
64 geo->datablocks = mp->m_sb.sb_dblocks;
65 geo->rtblocks = mp->m_sb.sb_rblocks;
66 geo->rtextents = mp->m_sb.sb_rextents;
67 geo->logstart = mp->m_sb.sb_logstart;
68 ASSERT(sizeof(geo->uuid)==sizeof(mp->m_sb.sb_uuid));
69 memcpy(geo->uuid, &mp->m_sb.sb_uuid, sizeof(mp->m_sb.sb_uuid));
70 if (new_version >= 2) {
71 geo->sunit = mp->m_sb.sb_unit;
72 geo->swidth = mp->m_sb.sb_width;
73 }
74 if (new_version >= 3) {
75 geo->version = XFS_FSOP_GEOM_VERSION;
76 geo->flags =
62118709 77 (xfs_sb_version_hasattr(&mp->m_sb) ?
1da177e4 78 XFS_FSOP_GEOM_FLAGS_ATTR : 0) |
62118709 79 (xfs_sb_version_hasnlink(&mp->m_sb) ?
1da177e4 80 XFS_FSOP_GEOM_FLAGS_NLINK : 0) |
62118709 81 (xfs_sb_version_hasquota(&mp->m_sb) ?
1da177e4 82 XFS_FSOP_GEOM_FLAGS_QUOTA : 0) |
62118709 83 (xfs_sb_version_hasalign(&mp->m_sb) ?
1da177e4 84 XFS_FSOP_GEOM_FLAGS_IALIGN : 0) |
62118709 85 (xfs_sb_version_hasdalign(&mp->m_sb) ?
1da177e4 86 XFS_FSOP_GEOM_FLAGS_DALIGN : 0) |
62118709 87 (xfs_sb_version_hasshared(&mp->m_sb) ?
1da177e4 88 XFS_FSOP_GEOM_FLAGS_SHARED : 0) |
62118709 89 (xfs_sb_version_hasextflgbit(&mp->m_sb) ?
1da177e4 90 XFS_FSOP_GEOM_FLAGS_EXTFLG : 0) |
62118709 91 (xfs_sb_version_hasdirv2(&mp->m_sb) ?
1da177e4 92 XFS_FSOP_GEOM_FLAGS_DIRV2 : 0) |
62118709 93 (xfs_sb_version_hassector(&mp->m_sb) ?
d8cc890d 94 XFS_FSOP_GEOM_FLAGS_SECTOR : 0) |
189f4bf2
BN
95 (xfs_sb_version_hasasciici(&mp->m_sb) ?
96 XFS_FSOP_GEOM_FLAGS_DIRV2CI : 0) |
92821e2b
DC
97 (xfs_sb_version_haslazysbcount(&mp->m_sb) ?
98 XFS_FSOP_GEOM_FLAGS_LAZYSB : 0) |
62118709 99 (xfs_sb_version_hasattr2(&mp->m_sb) ?
69a58a43
ES
100 XFS_FSOP_GEOM_FLAGS_ATTR2 : 0) |
101 (xfs_sb_version_hasprojid32bit(&mp->m_sb) ?
102 XFS_FSOP_GEOM_FLAGS_PROJID32 : 0);
62118709 103 geo->logsectsize = xfs_sb_version_hassector(&mp->m_sb) ?
1da177e4
LT
104 mp->m_sb.sb_logsectsize : BBSIZE;
105 geo->rtsectsize = mp->m_sb.sb_blocksize;
106 geo->dirblocksize = mp->m_dirblksize;
107 }
108 if (new_version >= 4) {
109 geo->flags |=
62118709 110 (xfs_sb_version_haslogv2(&mp->m_sb) ?
1da177e4
LT
111 XFS_FSOP_GEOM_FLAGS_LOGV2 : 0);
112 geo->logsunit = mp->m_sb.sb_logsunit;
113 }
114 return 0;
115}
116
fd23683c
DC
117static struct xfs_buf *
118xfs_growfs_get_hdr_buf(
119 struct xfs_mount *mp,
120 xfs_daddr_t blkno,
121 size_t numblks,
122 int flags)
123{
124 struct xfs_buf *bp;
125
126 bp = xfs_buf_get_uncached(mp->m_ddev_targp, numblks, flags);
127 if (!bp)
128 return NULL;
129
130 xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
131 bp->b_bn = blkno;
132 bp->b_maps[0].bm_bn = blkno;
133
134 return bp;
135}
136
1da177e4
LT
137static int
138xfs_growfs_data_private(
139 xfs_mount_t *mp, /* mount point for filesystem */
140 xfs_growfs_data_t *in) /* growfs data input struct */
141{
142 xfs_agf_t *agf;
de497688 143 struct xfs_agfl *agfl;
1da177e4
LT
144 xfs_agi_t *agi;
145 xfs_agnumber_t agno;
146 xfs_extlen_t agsize;
147 xfs_extlen_t tmpsize;
148 xfs_alloc_rec_t *arec;
1da177e4
LT
149 xfs_buf_t *bp;
150 int bucket;
151 int dpct;
152 int error;
153 xfs_agnumber_t nagcount;
154 xfs_agnumber_t nagimax = 0;
155 xfs_rfsblock_t nb, nb_mod;
156 xfs_rfsblock_t new;
157 xfs_rfsblock_t nfree;
158 xfs_agnumber_t oagcount;
159 int pct;
1da177e4
LT
160 xfs_trans_t *tp;
161
162 nb = in->newblocks;
163 pct = in->imaxpct;
164 if (nb < mp->m_sb.sb_dblocks || pct < 0 || pct > 100)
165 return XFS_ERROR(EINVAL);
4cc929ee
NS
166 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
167 return error;
1da177e4 168 dpct = pct - mp->m_sb.sb_imax_pct;
e70b73f8 169 bp = xfs_buf_read_uncached(mp->m_ddev_targp,
1922c949 170 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
c3f8fc73 171 XFS_FSS_TO_BB(mp, 1), 0, NULL);
1922c949
DC
172 if (!bp)
173 return EIO;
eab4e633
DC
174 if (bp->b_error) {
175 int error = bp->b_error;
176 xfs_buf_relse(bp);
177 return error;
178 }
1da177e4
LT
179 xfs_buf_relse(bp);
180
181 new = nb; /* use new as a temporary here */
182 nb_mod = do_div(new, mp->m_sb.sb_agblocks);
183 nagcount = new + (nb_mod != 0);
184 if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
185 nagcount--;
e6da7c9f 186 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
1da177e4
LT
187 if (nb < mp->m_sb.sb_dblocks)
188 return XFS_ERROR(EINVAL);
189 }
190 new = nb - mp->m_sb.sb_dblocks;
191 oagcount = mp->m_sb.sb_agcount;
0cc6eee1 192
1c1c6ebc
DC
193 /* allocate the new per-ag structures */
194 if (nagcount > oagcount) {
195 error = xfs_initialize_perag(mp, nagcount, &nagimax);
196 if (error)
197 return error;
1da177e4 198 }
1c1c6ebc 199
1da177e4 200 tp = xfs_trans_alloc(mp, XFS_TRANS_GROWFS);
84e1e99f 201 tp->t_flags |= XFS_TRANS_RESERVE;
1da177e4
LT
202 if ((error = xfs_trans_reserve(tp, XFS_GROWFS_SPACE_RES(mp),
203 XFS_GROWDATA_LOG_RES(mp), 0, 0, 0))) {
204 xfs_trans_cancel(tp, 0);
205 return error;
206 }
207
1c1c6ebc
DC
208 /*
209 * Write new AG headers to disk. Non-transactional, but written
210 * synchronously so they are completed prior to the growfs transaction
211 * being logged.
212 */
1da177e4
LT
213 nfree = 0;
214 for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) {
215 /*
de497688 216 * AG freespace header block
1da177e4 217 */
fd23683c
DC
218 bp = xfs_growfs_get_hdr_buf(mp,
219 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
220 XFS_FSS_TO_BB(mp, 1), 0);
b522950f
CS
221 if (!bp) {
222 error = ENOMEM;
223 goto error0;
224 }
b0f539de 225 bp->b_pre_io = xfs_agf_write_verify;
fd23683c 226
1da177e4 227 agf = XFS_BUF_TO_AGF(bp);
16259e7d
CH
228 agf->agf_magicnum = cpu_to_be32(XFS_AGF_MAGIC);
229 agf->agf_versionnum = cpu_to_be32(XFS_AGF_VERSION);
230 agf->agf_seqno = cpu_to_be32(agno);
1da177e4
LT
231 if (agno == nagcount - 1)
232 agsize =
233 nb -
234 (agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
235 else
236 agsize = mp->m_sb.sb_agblocks;
16259e7d
CH
237 agf->agf_length = cpu_to_be32(agsize);
238 agf->agf_roots[XFS_BTNUM_BNOi] = cpu_to_be32(XFS_BNO_BLOCK(mp));
239 agf->agf_roots[XFS_BTNUM_CNTi] = cpu_to_be32(XFS_CNT_BLOCK(mp));
240 agf->agf_levels[XFS_BTNUM_BNOi] = cpu_to_be32(1);
241 agf->agf_levels[XFS_BTNUM_CNTi] = cpu_to_be32(1);
1da177e4 242 agf->agf_flfirst = 0;
16259e7d 243 agf->agf_fllast = cpu_to_be32(XFS_AGFL_SIZE(mp) - 1);
1da177e4
LT
244 agf->agf_flcount = 0;
245 tmpsize = agsize - XFS_PREALLOC_BLOCKS(mp);
16259e7d
CH
246 agf->agf_freeblks = cpu_to_be32(tmpsize);
247 agf->agf_longest = cpu_to_be32(tmpsize);
c2b006c1
CH
248 error = xfs_bwrite(bp);
249 xfs_buf_relse(bp);
250 if (error)
1da177e4 251 goto error0;
c2b006c1 252
de497688
DC
253 /*
254 * AG freelist header block
255 */
256 bp = xfs_growfs_get_hdr_buf(mp,
257 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
258 XFS_FSS_TO_BB(mp, 1), 0);
259 if (!bp) {
260 error = ENOMEM;
261 goto error0;
262 }
b0f539de 263 bp->b_pre_io = xfs_agfl_write_verify;
de497688
DC
264
265 agfl = XFS_BUF_TO_AGFL(bp);
266 for (bucket = 0; bucket < XFS_AGFL_SIZE(mp); bucket++)
267 agfl->agfl_bno[bucket] = cpu_to_be32(NULLAGBLOCK);
268
269 error = xfs_bwrite(bp);
270 xfs_buf_relse(bp);
271 if (error)
272 goto error0;
273
1da177e4
LT
274 /*
275 * AG inode header block
276 */
fd23683c
DC
277 bp = xfs_growfs_get_hdr_buf(mp,
278 XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp)),
279 XFS_FSS_TO_BB(mp, 1), 0);
b522950f
CS
280 if (!bp) {
281 error = ENOMEM;
282 goto error0;
283 }
b0f539de 284 bp->b_pre_io = xfs_agi_write_verify;
fd23683c 285
1da177e4 286 agi = XFS_BUF_TO_AGI(bp);
16259e7d
CH
287 agi->agi_magicnum = cpu_to_be32(XFS_AGI_MAGIC);
288 agi->agi_versionnum = cpu_to_be32(XFS_AGI_VERSION);
289 agi->agi_seqno = cpu_to_be32(agno);
290 agi->agi_length = cpu_to_be32(agsize);
1da177e4 291 agi->agi_count = 0;
16259e7d
CH
292 agi->agi_root = cpu_to_be32(XFS_IBT_BLOCK(mp));
293 agi->agi_level = cpu_to_be32(1);
1da177e4 294 agi->agi_freecount = 0;
16259e7d
CH
295 agi->agi_newino = cpu_to_be32(NULLAGINO);
296 agi->agi_dirino = cpu_to_be32(NULLAGINO);
1da177e4 297 for (bucket = 0; bucket < XFS_AGI_UNLINKED_BUCKETS; bucket++)
16259e7d 298 agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO);
c2b006c1
CH
299 error = xfs_bwrite(bp);
300 xfs_buf_relse(bp);
301 if (error)
1da177e4 302 goto error0;
c2b006c1 303
1da177e4
LT
304 /*
305 * BNO btree root block
306 */
fd23683c
DC
307 bp = xfs_growfs_get_hdr_buf(mp,
308 XFS_AGB_TO_DADDR(mp, agno, XFS_BNO_BLOCK(mp)),
309 BTOBB(mp->m_sb.sb_blocksize), 0);
310
b522950f
CS
311 if (!bp) {
312 error = ENOMEM;
313 goto error0;
314 }
b64f3a39 315
fd23683c 316 xfs_btree_init_block(mp, bp, XFS_ABTB_MAGIC, 0, 1, 0);
b64f3a39 317 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
16259e7d
CH
318 arec->ar_startblock = cpu_to_be32(XFS_PREALLOC_BLOCKS(mp));
319 arec->ar_blockcount = cpu_to_be32(
320 agsize - be32_to_cpu(arec->ar_startblock));
b64f3a39 321
c2b006c1
CH
322 error = xfs_bwrite(bp);
323 xfs_buf_relse(bp);
324 if (error)
1da177e4 325 goto error0;
c2b006c1 326
1da177e4
LT
327 /*
328 * CNT btree root block
329 */
fd23683c
DC
330 bp = xfs_growfs_get_hdr_buf(mp,
331 XFS_AGB_TO_DADDR(mp, agno, XFS_CNT_BLOCK(mp)),
332 BTOBB(mp->m_sb.sb_blocksize), 0);
b522950f
CS
333 if (!bp) {
334 error = ENOMEM;
335 goto error0;
336 }
b64f3a39 337
fd23683c 338 xfs_btree_init_block(mp, bp, XFS_ABTC_MAGIC, 0, 1, 0);
b64f3a39 339 arec = XFS_ALLOC_REC_ADDR(mp, XFS_BUF_TO_BLOCK(bp), 1);
16259e7d
CH
340 arec->ar_startblock = cpu_to_be32(XFS_PREALLOC_BLOCKS(mp));
341 arec->ar_blockcount = cpu_to_be32(
342 agsize - be32_to_cpu(arec->ar_startblock));
343 nfree += be32_to_cpu(arec->ar_blockcount);
b64f3a39 344
c2b006c1
CH
345 error = xfs_bwrite(bp);
346 xfs_buf_relse(bp);
347 if (error)
1da177e4 348 goto error0;
c2b006c1 349
1da177e4
LT
350 /*
351 * INO btree root block
352 */
fd23683c
DC
353 bp = xfs_growfs_get_hdr_buf(mp,
354 XFS_AGB_TO_DADDR(mp, agno, XFS_IBT_BLOCK(mp)),
355 BTOBB(mp->m_sb.sb_blocksize), 0);
b522950f
CS
356 if (!bp) {
357 error = ENOMEM;
358 goto error0;
359 }
fd23683c 360
b64f3a39
DC
361 xfs_btree_init_block(mp, bp, XFS_IBT_MAGIC, 0, 0, 0);
362
c2b006c1
CH
363 error = xfs_bwrite(bp);
364 xfs_buf_relse(bp);
365 if (error)
1da177e4 366 goto error0;
1da177e4
LT
367 }
368 xfs_trans_agblocks_delta(tp, nfree);
369 /*
370 * There are new blocks in the old last a.g.
371 */
372 if (new) {
373 /*
374 * Change the agi length.
375 */
376 error = xfs_ialloc_read_agi(mp, tp, agno, &bp);
377 if (error) {
378 goto error0;
379 }
380 ASSERT(bp);
381 agi = XFS_BUF_TO_AGI(bp);
413d57c9 382 be32_add_cpu(&agi->agi_length, new);
1da177e4 383 ASSERT(nagcount == oagcount ||
16259e7d 384 be32_to_cpu(agi->agi_length) == mp->m_sb.sb_agblocks);
1da177e4
LT
385 xfs_ialloc_log_agi(tp, bp, XFS_AGI_LENGTH);
386 /*
387 * Change agf length.
388 */
389 error = xfs_alloc_read_agf(mp, tp, agno, 0, &bp);
390 if (error) {
391 goto error0;
392 }
393 ASSERT(bp);
394 agf = XFS_BUF_TO_AGF(bp);
413d57c9 395 be32_add_cpu(&agf->agf_length, new);
16259e7d
CH
396 ASSERT(be32_to_cpu(agf->agf_length) ==
397 be32_to_cpu(agi->agi_length));
0b1b213f 398
0164af51 399 xfs_alloc_log_agf(tp, bp, XFS_AGF_LENGTH);
1da177e4
LT
400 /*
401 * Free the new space.
402 */
403 error = xfs_free_extent(tp, XFS_AGB_TO_FSB(mp, agno,
16259e7d 404 be32_to_cpu(agf->agf_length) - new), new);
1da177e4
LT
405 if (error) {
406 goto error0;
407 }
408 }
1c1c6ebc
DC
409
410 /*
411 * Update changed superblock fields transactionally. These are not
412 * seen by the rest of the world until the transaction commit applies
413 * them atomically to the superblock.
414 */
1da177e4
LT
415 if (nagcount > oagcount)
416 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
417 if (nb > mp->m_sb.sb_dblocks)
418 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
419 nb - mp->m_sb.sb_dblocks);
420 if (nfree)
421 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, nfree);
422 if (dpct)
423 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
1c72bf90 424 error = xfs_trans_commit(tp, 0);
1c1c6ebc 425 if (error)
1da177e4 426 return error;
1c1c6ebc 427
1da177e4
LT
428 /* New allocation groups fully initialized, so update mount struct */
429 if (nagimax)
430 mp->m_maxagi = nagimax;
431 if (mp->m_sb.sb_imax_pct) {
432 __uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
433 do_div(icount, 100);
434 mp->m_maxicount = icount << mp->m_sb.sb_inopblog;
435 } else
436 mp->m_maxicount = 0;
055388a3 437 xfs_set_low_space_thresholds(mp);
1c1c6ebc
DC
438
439 /* update secondary superblocks. */
1da177e4 440 for (agno = 1; agno < nagcount; agno++) {
1375cb65
DC
441 error = 0;
442 /*
443 * new secondary superblocks need to be zeroed, not read from
444 * disk as the contents of the new area we are growing into is
445 * completely unknown.
446 */
447 if (agno < oagcount) {
448 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
1da177e4 449 XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
98021821
DC
450 XFS_FSS_TO_BB(mp, 1), 0, &bp,
451 xfs_sb_read_verify);
1375cb65
DC
452 } else {
453 bp = xfs_trans_get_buf(NULL, mp->m_ddev_targp,
454 XFS_AGB_TO_DADDR(mp, agno, XFS_SB_BLOCK(mp)),
455 XFS_FSS_TO_BB(mp, 1), 0);
b0f539de 456 if (bp) {
1375cb65 457 xfs_buf_zero(bp, 0, BBTOB(bp->b_length));
b0f539de
DC
458 bp->b_pre_io = xfs_sb_write_verify;
459 } else
1375cb65
DC
460 error = ENOMEM;
461 }
462
1da177e4 463 if (error) {
53487786
DC
464 xfs_warn(mp,
465 "error %d reading secondary superblock for ag %d",
1da177e4
LT
466 error, agno);
467 break;
468 }
2bdf7cd0 469 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, XFS_SB_ALL_BITS);
98021821 470
1da177e4
LT
471 /*
472 * If we get an error writing out the alternate superblocks,
473 * just issue a warning and continue. The real work is
474 * already done and committed.
475 */
c2b006c1
CH
476 error = xfs_bwrite(bp);
477 xfs_buf_relse(bp);
478 if (error) {
53487786 479 xfs_warn(mp,
1da177e4
LT
480 "write error %d updating secondary superblock for ag %d",
481 error, agno);
482 break; /* no point in continuing */
483 }
484 }
1375cb65 485 return error;
1da177e4
LT
486
487 error0:
488 xfs_trans_cancel(tp, XFS_TRANS_ABORT);
489 return error;
490}
491
492static int
493xfs_growfs_log_private(
494 xfs_mount_t *mp, /* mount point for filesystem */
495 xfs_growfs_log_t *in) /* growfs log input struct */
496{
497 xfs_extlen_t nb;
498
499 nb = in->newblocks;
500 if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
501 return XFS_ERROR(EINVAL);
502 if (nb == mp->m_sb.sb_logblocks &&
503 in->isint == (mp->m_sb.sb_logstart != 0))
504 return XFS_ERROR(EINVAL);
505 /*
506 * Moving the log is hard, need new interfaces to sync
507 * the log first, hold off all activity while moving it.
508 * Can have shorter or longer log in the same space,
509 * or transform internal to external log or vice versa.
510 */
511 return XFS_ERROR(ENOSYS);
512}
513
514/*
515 * protected versions of growfs function acquire and release locks on the mount
516 * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
517 * XFS_IOC_FSGROWFSRT
518 */
519
520
521int
522xfs_growfs_data(
523 xfs_mount_t *mp,
524 xfs_growfs_data_t *in)
525{
526 int error;
743bb465 527
528 if (!capable(CAP_SYS_ADMIN))
529 return XFS_ERROR(EPERM);
cc92e7ac 530 if (!mutex_trylock(&mp->m_growlock))
1da177e4
LT
531 return XFS_ERROR(EWOULDBLOCK);
532 error = xfs_growfs_data_private(mp, in);
cc92e7ac 533 mutex_unlock(&mp->m_growlock);
1da177e4
LT
534 return error;
535}
536
537int
538xfs_growfs_log(
539 xfs_mount_t *mp,
540 xfs_growfs_log_t *in)
541{
542 int error;
743bb465 543
544 if (!capable(CAP_SYS_ADMIN))
545 return XFS_ERROR(EPERM);
cc92e7ac 546 if (!mutex_trylock(&mp->m_growlock))
1da177e4
LT
547 return XFS_ERROR(EWOULDBLOCK);
548 error = xfs_growfs_log_private(mp, in);
cc92e7ac 549 mutex_unlock(&mp->m_growlock);
1da177e4
LT
550 return error;
551}
552
553/*
554 * exported through ioctl XFS_IOC_FSCOUNTS
555 */
556
557int
558xfs_fs_counts(
559 xfs_mount_t *mp,
560 xfs_fsop_counts_t *cnt)
561{
d4d90b57 562 xfs_icsb_sync_counters(mp, XFS_ICSB_LAZY_COUNT);
3685c2a1 563 spin_lock(&mp->m_sb_lock);
4be536de 564 cnt->freedata = mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
1da177e4
LT
565 cnt->freertx = mp->m_sb.sb_frextents;
566 cnt->freeino = mp->m_sb.sb_ifree;
567 cnt->allocino = mp->m_sb.sb_icount;
3685c2a1 568 spin_unlock(&mp->m_sb_lock);
1da177e4
LT
569 return 0;
570}
571
572/*
573 * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
574 *
575 * xfs_reserve_blocks is called to set m_resblks
576 * in the in-core mount table. The number of unused reserved blocks
c41564b5 577 * is kept in m_resblks_avail.
1da177e4
LT
578 *
579 * Reserve the requested number of blocks if available. Otherwise return
580 * as many as possible to satisfy the request. The actual number
581 * reserved are returned in outval
582 *
583 * A null inval pointer indicates that only the current reserved blocks
584 * available should be returned no settings are changed.
585 */
586
587int
588xfs_reserve_blocks(
589 xfs_mount_t *mp,
590 __uint64_t *inval,
591 xfs_fsop_resblks_t *outval)
592{
dbcabad1 593 __int64_t lcounter, delta, fdblks_delta;
1da177e4 594 __uint64_t request;
1da177e4
LT
595
596 /* If inval is null, report current values and return */
1da177e4 597 if (inval == (__uint64_t *)NULL) {
84e1e99f
DC
598 if (!outval)
599 return EINVAL;
1da177e4
LT
600 outval->resblks = mp->m_resblks;
601 outval->resblks_avail = mp->m_resblks_avail;
014c2544 602 return 0;
1da177e4
LT
603 }
604
605 request = *inval;
dbcabad1
DC
606
607 /*
608 * With per-cpu counters, this becomes an interesting
609 * problem. we needto work out if we are freeing or allocation
610 * blocks first, then we can do the modification as necessary.
611 *
3685c2a1 612 * We do this under the m_sb_lock so that if we are near
dbcabad1
DC
613 * ENOSPC, we will hold out any changes while we work out
614 * what to do. This means that the amount of free space can
615 * change while we do this, so we need to retry if we end up
616 * trying to reserve more space than is available.
617 *
618 * We also use the xfs_mod_incore_sb() interface so that we
619 * don't have to care about whether per cpu counter are
620 * enabled, disabled or even compiled in....
621 */
622retry:
3685c2a1 623 spin_lock(&mp->m_sb_lock);
d4d90b57 624 xfs_icsb_sync_counters_locked(mp, 0);
1da177e4
LT
625
626 /*
627 * If our previous reservation was larger than the current value,
628 * then move any unused blocks back to the free pool.
629 */
dbcabad1 630 fdblks_delta = 0;
1da177e4
LT
631 if (mp->m_resblks > request) {
632 lcounter = mp->m_resblks_avail - request;
633 if (lcounter > 0) { /* release unused blocks */
dbcabad1 634 fdblks_delta = lcounter;
1da177e4
LT
635 mp->m_resblks_avail -= lcounter;
636 }
637 mp->m_resblks = request;
638 } else {
4be536de
DC
639 __int64_t free;
640
641 free = mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
dbcabad1
DC
642 if (!free)
643 goto out; /* ENOSPC and fdblks_delta = 0 */
644
1da177e4 645 delta = request - mp->m_resblks;
4be536de 646 lcounter = free - delta;
1da177e4
LT
647 if (lcounter < 0) {
648 /* We can't satisfy the request, just get what we can */
4be536de
DC
649 mp->m_resblks += free;
650 mp->m_resblks_avail += free;
dbcabad1 651 fdblks_delta = -free;
1da177e4 652 } else {
dbcabad1 653 fdblks_delta = -delta;
1da177e4
LT
654 mp->m_resblks = request;
655 mp->m_resblks_avail += delta;
656 }
657 }
dbcabad1 658out:
84e1e99f
DC
659 if (outval) {
660 outval->resblks = mp->m_resblks;
661 outval->resblks_avail = mp->m_resblks_avail;
662 }
3685c2a1 663 spin_unlock(&mp->m_sb_lock);
dbcabad1
DC
664
665 if (fdblks_delta) {
666 /*
667 * If we are putting blocks back here, m_resblks_avail is
9da096fd 668 * already at its max so this will put it in the free pool.
dbcabad1
DC
669 *
670 * If we need space, we'll either succeed in getting it
671 * from the free block count or we'll get an enospc. If
672 * we get a ENOSPC, it means things changed while we were
673 * calculating fdblks_delta and so we should try again to
674 * see if there is anything left to reserve.
675 *
676 * Don't set the reserved flag here - we don't want to reserve
677 * the extra reserve blocks from the reserve.....
678 */
679 int error;
96540c78
CH
680 error = xfs_icsb_modify_counters(mp, XFS_SBS_FDBLOCKS,
681 fdblks_delta, 0);
dbcabad1
DC
682 if (error == ENOSPC)
683 goto retry;
684 }
014c2544 685 return 0;
1da177e4
LT
686}
687
1a387d3b
DC
688/*
689 * Dump a transaction into the log that contains no real change. This is needed
690 * to be able to make the log dirty or stamp the current tail LSN into the log
691 * during the covering operation.
692 *
693 * We cannot use an inode here for this - that will push dirty state back up
694 * into the VFS and then periodic inode flushing will prevent log covering from
c58efdb4
DC
695 * making progress. Hence we log a field in the superblock instead and use a
696 * synchronous transaction to ensure the superblock is immediately unpinned
697 * and can be written back.
1a387d3b 698 */
c4be0c1d 699int
421ad134 700xfs_fs_log_dummy(
c58efdb4 701 xfs_mount_t *mp)
e13a73f0 702{
421ad134 703 xfs_trans_t *tp;
c4be0c1d 704 int error;
e13a73f0 705
80641dc6 706 tp = _xfs_trans_alloc(mp, XFS_TRANS_DUMMY1, KM_SLEEP);
1a387d3b
DC
707 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
708 XFS_DEFAULT_LOG_COUNT);
c4be0c1d 709 if (error) {
e13a73f0 710 xfs_trans_cancel(tp, 0);
c4be0c1d 711 return error;
e13a73f0
CH
712 }
713
1a387d3b
DC
714 /* log the UUID because it is an unchanging field */
715 xfs_mod_sb(tp, XFS_SB_UUID);
c58efdb4 716 xfs_trans_set_sync(tp);
1a387d3b 717 return xfs_trans_commit(tp, 0);
e13a73f0
CH
718}
719
1da177e4
LT
720int
721xfs_fs_goingdown(
722 xfs_mount_t *mp,
723 __uint32_t inflags)
724{
725 switch (inflags) {
726 case XFS_FSOP_GOING_FLAGS_DEFAULT: {
b267ce99 727 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
1da177e4 728
f33c6797 729 if (sb && !IS_ERR(sb)) {
7d04a335 730 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
1da177e4
LT
731 thaw_bdev(sb->s_bdev, sb);
732 }
189f4bf2 733
1da177e4
LT
734 break;
735 }
736 case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
7d04a335 737 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
1da177e4
LT
738 break;
739 case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
7d04a335
NS
740 xfs_force_shutdown(mp,
741 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
1da177e4
LT
742 break;
743 default:
744 return XFS_ERROR(EINVAL);
745 }
746
747 return 0;
748}
2af51f3a
DC
749
750/*
751 * Force a shutdown of the filesystem instantly while keeping the filesystem
752 * consistent. We don't do an unmount here; just shutdown the shop, make sure
753 * that absolutely nothing persistent happens to this filesystem after this
754 * point.
755 */
756void
757xfs_do_force_shutdown(
758 xfs_mount_t *mp,
759 int flags,
760 char *fname,
761 int lnnum)
762{
763 int logerror;
764
765 logerror = flags & SHUTDOWN_LOG_IO_ERROR;
766
767 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
768 xfs_notice(mp,
769 "%s(0x%x) called from line %d of file %s. Return address = 0x%p",
770 __func__, flags, lnnum, fname, __return_address);
771 }
772 /*
773 * No need to duplicate efforts.
774 */
775 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
776 return;
777
778 /*
779 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
780 * queue up anybody new on the log reservations, and wakes up
781 * everybody who's sleeping on log reservations to tell them
782 * the bad news.
783 */
784 if (xfs_log_force_umount(mp, logerror))
785 return;
786
787 if (flags & SHUTDOWN_CORRUPT_INCORE) {
788 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
789 "Corruption of in-memory data detected. Shutting down filesystem");
790 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
791 xfs_stack_trace();
792 } else if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
793 if (logerror) {
794 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
795 "Log I/O Error Detected. Shutting down filesystem");
796 } else if (flags & SHUTDOWN_DEVICE_REQ) {
797 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
798 "All device paths lost. Shutting down filesystem");
799 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
800 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
801 "I/O Error Detected. Shutting down filesystem");
802 }
803 }
804 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
805 xfs_alert(mp,
806 "Please umount the filesystem and rectify the problem(s)");
807 }
808}