blob: ec2e63a7963b2676ba0f542f8fad1dec7acdf44e [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11007#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_format.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110010#include "xfs_log_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110011#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100014#include "xfs_defer.h"
Dave Chinner239880e2013-10-23 10:50:10 +110015#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110017#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_trans_space.h"
21#include "xfs_rtalloc.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000022#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_log.h"
Dave Chinnerb16817b2018-05-13 23:10:08 -070024#include "xfs_ag.h"
Darrick J. Wong84d69612016-10-03 09:11:44 -070025#include "xfs_ag_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/*
Dave Chinnerb16817b2018-05-13 23:10:08 -070028 * growfs operations
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static int
31xfs_growfs_data_private(
32 xfs_mount_t *mp, /* mount point for filesystem */
33 xfs_growfs_data_t *in) /* growfs data input struct */
34{
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 xfs_buf_t *bp;
Dave Chinner83a7f862018-05-13 23:10:07 -070036 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 xfs_agnumber_t nagcount;
38 xfs_agnumber_t nagimax = 0;
39 xfs_rfsblock_t nb, nb_mod;
40 xfs_rfsblock_t new;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 xfs_agnumber_t oagcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 xfs_trans_t *tp;
Dave Chinner9aebe802018-05-13 23:10:06 -070043 LIST_HEAD (buffer_list);
Dave Chinner0410c3b2018-05-13 23:10:06 -070044 struct aghdr_init_data id = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 nb = in->newblocks;
Dave Chinner87444b82018-05-13 23:10:07 -070047 if (nb < mp->m_sb.sb_dblocks)
Dave Chinner24513372014-06-25 14:58:08 +100048 return -EINVAL;
Nathan Scott4cc929e2007-05-14 18:24:02 +100049 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
50 return error;
Dave Chinnerba372672014-10-02 09:05:32 +100051 error = xfs_buf_read_uncached(mp->m_ddev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +100052 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
Dave Chinnerba372672014-10-02 09:05:32 +100053 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
54 if (error)
Dave Chinnereab4e632012-11-12 22:54:02 +110055 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 xfs_buf_relse(bp);
57
58 new = nb; /* use new as a temporary here */
59 nb_mod = do_div(new, mp->m_sb.sb_agblocks);
60 nagcount = new + (nb_mod != 0);
61 if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
62 nagcount--;
Eric Sandeene6da7c92009-05-23 14:30:12 -050063 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 if (nb < mp->m_sb.sb_dblocks)
Dave Chinner24513372014-06-25 14:58:08 +100065 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 }
67 new = nb - mp->m_sb.sb_dblocks;
68 oagcount = mp->m_sb.sb_agcount;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000069
70 /* allocate the new per-ag structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (nagcount > oagcount) {
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000072 error = xfs_initialize_perag(mp, nagcount, &nagimax);
73 if (error)
74 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000076
Christoph Hellwig253f4912016-04-06 09:19:55 +100077 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
78 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
79 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000082 /*
Dave Chinner9aebe802018-05-13 23:10:06 -070083 * Write new AG headers to disk. Non-transactional, but need to be
84 * written and completed prior to the growfs transaction being logged.
85 * To do this, we use a delayed write buffer list and wait for
86 * submission and IO completion of the list as a whole. This allows the
87 * IO subsystem to merge all the AG headers in a single AG into a single
88 * IO and hide most of the latency of the IO from us.
89 *
90 * This also means that if we get an error whilst building the buffer
91 * list to write, we can cancel the entire list without having written
92 * anything.
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000093 */
Dave Chinner0410c3b2018-05-13 23:10:06 -070094 INIT_LIST_HEAD(&id.buffer_list);
95 for (id.agno = nagcount - 1;
96 id.agno >= oagcount;
97 id.agno--, new -= id.agsize) {
Dave Chinnerf94c4452013-11-21 15:41:06 +110098
Dave Chinner0410c3b2018-05-13 23:10:06 -070099 if (id.agno == nagcount - 1)
100 id.agsize = nb -
101 (id.agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 else
Dave Chinner0410c3b2018-05-13 23:10:06 -0700103 id.agsize = mp->m_sb.sb_agblocks;
Darrick J. Wonge70d8292016-08-03 11:36:08 +1000104
Dave Chinnerb16817b2018-05-13 23:10:08 -0700105 error = xfs_ag_init_headers(mp, &id);
Dave Chinner9aebe802018-05-13 23:10:06 -0700106 if (error) {
Dave Chinner0410c3b2018-05-13 23:10:06 -0700107 xfs_buf_delwri_cancel(&id.buffer_list);
Dave Chinner83a7f862018-05-13 23:10:07 -0700108 goto out_trans_cancel;
Dave Chinner9aebe802018-05-13 23:10:06 -0700109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
Dave Chinner0410c3b2018-05-13 23:10:06 -0700111 error = xfs_buf_delwri_submit(&id.buffer_list);
Dave Chinner9aebe802018-05-13 23:10:06 -0700112 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700113 goto out_trans_cancel;
Dave Chinner9aebe802018-05-13 23:10:06 -0700114
Dave Chinner0410c3b2018-05-13 23:10:06 -0700115 xfs_trans_agblocks_delta(tp, id.nfree);
Dave Chinnercce77bc2018-05-13 23:10:05 -0700116
Dave Chinner49dd56f2018-05-13 23:10:08 -0700117 /* If there are new blocks in the old last AG, extend it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (new) {
Dave Chinner49dd56f2018-05-13 23:10:08 -0700119 error = xfs_ag_extend_space(mp, tp, &id, new);
Darrick J. Wong340785c2016-08-03 11:33:42 +1000120 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700121 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000123
124 /*
125 * Update changed superblock fields transactionally. These are not
126 * seen by the rest of the world until the transaction commit applies
127 * them atomically to the superblock.
128 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (nagcount > oagcount)
130 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
131 if (nb > mp->m_sb.sb_dblocks)
132 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
133 nb - mp->m_sb.sb_dblocks);
Dave Chinner0410c3b2018-05-13 23:10:06 -0700134 if (id.nfree)
135 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, id.nfree);
Christoph Hellwigf8079b82015-02-05 11:13:21 +1100136 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000137 error = xfs_trans_commit(tp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000138 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return error;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* New allocation groups fully initialized, so update mount struct */
142 if (nagimax)
143 mp->m_maxagi = nagimax;
Dave Chinner055388a2011-01-04 11:35:03 +1100144 xfs_set_low_space_thresholds(mp);
Darrick J. Wong52548852016-08-03 11:38:24 +1000145 mp->m_alloc_set_aside = xfs_alloc_set_aside(mp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000146
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800147 /*
148 * If we expanded the last AG, free the per-AG reservation
149 * so we can reinitialize it with the new size.
150 */
151 if (new) {
152 struct xfs_perag *pag;
153
Dave Chinner0410c3b2018-05-13 23:10:06 -0700154 pag = xfs_perag_get(mp, id.agno);
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800155 error = xfs_ag_resv_free(pag);
156 xfs_perag_put(pag);
157 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700158 return error;
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800159 }
160
Dave Chinner83a7f862018-05-13 23:10:07 -0700161 /*
162 * Reserve AG metadata blocks. ENOSPC here does not mean there was a
163 * growfs failure, just that there still isn't space for new user data
164 * after the grow has been run.
165 */
Darrick J. Wong84d69612016-10-03 09:11:44 -0700166 error = xfs_fs_reserve_ag_blocks(mp);
Dave Chinner83a7f862018-05-13 23:10:07 -0700167 if (error == -ENOSPC)
168 error = 0;
169 return error;
170
171out_trans_cancel:
172 xfs_trans_cancel(tp);
173 return error;
174}
175
176static int
177xfs_growfs_log_private(
178 xfs_mount_t *mp, /* mount point for filesystem */
179 xfs_growfs_log_t *in) /* growfs log input struct */
180{
181 xfs_extlen_t nb;
182
183 nb = in->newblocks;
184 if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
185 return -EINVAL;
186 if (nb == mp->m_sb.sb_logblocks &&
187 in->isint == (mp->m_sb.sb_logstart != 0))
188 return -EINVAL;
189 /*
190 * Moving the log is hard, need new interfaces to sync
191 * the log first, hold off all activity while moving it.
192 * Can have shorter or longer log in the same space,
193 * or transform internal to external log or vice versa.
194 */
195 return -ENOSYS;
196}
197
198static int
199xfs_growfs_imaxpct(
200 struct xfs_mount *mp,
201 __u32 imaxpct)
202{
203 struct xfs_trans *tp;
204 int dpct;
205 int error;
206
207 if (imaxpct > 100)
208 return -EINVAL;
209
210 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
211 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
212 if (error)
213 return error;
214
215 dpct = imaxpct - mp->m_sb.sb_imax_pct;
216 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
217 xfs_trans_set_sync(tp);
218 return xfs_trans_commit(tp);
219}
220
221/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * protected versions of growfs function acquire and release locks on the mount
223 * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
224 * XFS_IOC_FSGROWFSRT
225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226int
227xfs_growfs_data(
Dave Chinner87444b82018-05-13 23:10:07 -0700228 struct xfs_mount *mp,
229 struct xfs_growfs_data *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Dave Chinner87444b82018-05-13 23:10:07 -0700231 int error = 0;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600232
233 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000234 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000235 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000236 return -EWOULDBLOCK;
Dave Chinner87444b82018-05-13 23:10:07 -0700237
238 /* update imaxpct separately to the physical grow of the filesystem */
239 if (in->imaxpct != mp->m_sb.sb_imax_pct) {
240 error = xfs_growfs_imaxpct(mp, in->imaxpct);
241 if (error)
242 goto out_error;
243 }
244
245 if (in->newblocks != mp->m_sb.sb_dblocks) {
246 error = xfs_growfs_data_private(mp, in);
247 if (error)
248 goto out_error;
249 }
250
251 /* Post growfs calculations needed to reflect new state in operations */
252 if (mp->m_sb.sb_imax_pct) {
253 uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
254 do_div(icount, 100);
Darrick J. Wong43004b22018-12-12 08:46:24 -0800255 mp->m_maxicount = XFS_FSB_TO_INO(mp, icount);
Dave Chinner87444b82018-05-13 23:10:07 -0700256 } else
257 mp->m_maxicount = 0;
258
Dave Chinner83a7f862018-05-13 23:10:07 -0700259 /* Update secondary superblocks now the physical grow has completed */
Dave Chinnerb16817b2018-05-13 23:10:08 -0700260 error = xfs_update_secondary_sbs(mp);
Dave Chinner83a7f862018-05-13 23:10:07 -0700261
Dave Chinner87444b82018-05-13 23:10:07 -0700262out_error:
Christoph Hellwig52785112015-02-16 11:49:23 +1100263 /*
264 * Increment the generation unconditionally, the error could be from
265 * updating the secondary superblocks, in which case the new size
266 * is live already.
267 */
268 mp->m_generation++;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000269 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return error;
271}
272
273int
274xfs_growfs_log(
275 xfs_mount_t *mp,
276 xfs_growfs_log_t *in)
277{
278 int error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600279
280 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000281 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000282 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000283 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 error = xfs_growfs_log_private(mp, in);
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000285 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return error;
287}
288
289/*
290 * exported through ioctl XFS_IOC_FSCOUNTS
291 */
292
293int
294xfs_fs_counts(
295 xfs_mount_t *mp,
296 xfs_fsop_counts_t *cnt)
297{
Dave Chinner501ab322015-02-23 21:19:28 +1100298 cnt->allocino = percpu_counter_read_positive(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +1100299 cnt->freeino = percpu_counter_read_positive(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100300 cnt->freedata = percpu_counter_read_positive(&mp->m_fdblocks) -
Darrick J. Wong52548852016-08-03 11:38:24 +1000301 mp->m_alloc_set_aside;
Dave Chinner501ab322015-02-23 21:19:28 +1100302
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000303 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 cnt->freertx = mp->m_sb.sb_frextents;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000305 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307}
308
309/*
310 * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
311 *
312 * xfs_reserve_blocks is called to set m_resblks
313 * in the in-core mount table. The number of unused reserved blocks
Nathan Scottc41564b2006-03-29 08:55:14 +1000314 * is kept in m_resblks_avail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 *
316 * Reserve the requested number of blocks if available. Otherwise return
317 * as many as possible to satisfy the request. The actual number
318 * reserved are returned in outval
319 *
320 * A null inval pointer indicates that only the current reserved blocks
321 * available should be returned no settings are changed.
322 */
323
324int
325xfs_reserve_blocks(
326 xfs_mount_t *mp,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700327 uint64_t *inval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 xfs_fsop_resblks_t *outval)
329{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700330 int64_t lcounter, delta;
331 int64_t fdblks_delta = 0;
332 uint64_t request;
333 int64_t free;
Brian Foster408fd482016-06-21 11:53:28 +1000334 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 /* If inval is null, report current values and return */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700337 if (inval == (uint64_t *)NULL) {
David Chinner84e1e992007-06-18 16:50:27 +1000338 if (!outval)
Dave Chinner24513372014-06-25 14:58:08 +1000339 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 outval->resblks = mp->m_resblks;
341 outval->resblks_avail = mp->m_resblks_avail;
Jesper Juhl014c2542006-01-15 02:37:08 +0100342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 request = *inval;
David Chinnerdbcabad2007-02-10 18:36:17 +1100346
347 /*
Brian Foster408fd482016-06-21 11:53:28 +1000348 * With per-cpu counters, this becomes an interesting problem. we need
349 * to work out if we are freeing or allocation blocks first, then we can
350 * do the modification as necessary.
David Chinnerdbcabad2007-02-10 18:36:17 +1100351 *
Brian Foster408fd482016-06-21 11:53:28 +1000352 * We do this under the m_sb_lock so that if we are near ENOSPC, we will
353 * hold out any changes while we work out what to do. This means that
354 * the amount of free space can change while we do this, so we need to
355 * retry if we end up trying to reserve more space than is available.
David Chinnerdbcabad2007-02-10 18:36:17 +1100356 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000357 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /*
360 * If our previous reservation was larger than the current value,
Brian Foster408fd482016-06-21 11:53:28 +1000361 * then move any unused blocks back to the free pool. Modify the resblks
362 * counters directly since we shouldn't have any problems unreserving
363 * space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (mp->m_resblks > request) {
366 lcounter = mp->m_resblks_avail - request;
367 if (lcounter > 0) { /* release unused blocks */
David Chinnerdbcabad2007-02-10 18:36:17 +1100368 fdblks_delta = lcounter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 mp->m_resblks_avail -= lcounter;
370 }
371 mp->m_resblks = request;
Brian Foster408fd482016-06-21 11:53:28 +1000372 if (fdblks_delta) {
373 spin_unlock(&mp->m_sb_lock);
374 error = xfs_mod_fdblocks(mp, fdblks_delta, 0);
375 spin_lock(&mp->m_sb_lock);
376 }
David Chinner4be536d2006-09-07 14:26:50 +1000377
Brian Foster408fd482016-06-21 11:53:28 +1000378 goto out;
379 }
380
381 /*
382 * If the request is larger than the current reservation, reserve the
383 * blocks before we update the reserve counters. Sample m_fdblocks and
384 * perform a partial reservation if the request exceeds free space.
385 */
386 error = -ENOSPC;
387 do {
Dave Chinner0d485ad2015-02-23 21:22:03 +1100388 free = percpu_counter_sum(&mp->m_fdblocks) -
Darrick J. Wong52548852016-08-03 11:38:24 +1000389 mp->m_alloc_set_aside;
Darrick J. Wongaafe12c2018-06-21 23:26:56 -0700390 if (free <= 0)
Brian Foster408fd482016-06-21 11:53:28 +1000391 break;
David Chinnerdbcabad2007-02-10 18:36:17 +1100392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 delta = request - mp->m_resblks;
David Chinner4be536d2006-09-07 14:26:50 +1000394 lcounter = free - delta;
Brian Foster408fd482016-06-21 11:53:28 +1000395 if (lcounter < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* We can't satisfy the request, just get what we can */
Brian Foster408fd482016-06-21 11:53:28 +1000397 fdblks_delta = free;
398 else
399 fdblks_delta = delta;
400
401 /*
402 * We'll either succeed in getting space from the free block
403 * count or we'll get an ENOSPC. If we get a ENOSPC, it means
404 * things changed while we were calculating fdblks_delta and so
405 * we should try again to see if there is anything left to
406 * reserve.
407 *
408 * Don't set the reserved flag here - we don't want to reserve
409 * the extra reserve blocks from the reserve.....
410 */
411 spin_unlock(&mp->m_sb_lock);
412 error = xfs_mod_fdblocks(mp, -fdblks_delta, 0);
413 spin_lock(&mp->m_sb_lock);
414 } while (error == -ENOSPC);
415
416 /*
417 * Update the reserve counters if blocks have been successfully
418 * allocated.
419 */
420 if (!error && fdblks_delta) {
421 mp->m_resblks += fdblks_delta;
422 mp->m_resblks_avail += fdblks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Brian Foster408fd482016-06-21 11:53:28 +1000424
David Chinnerdbcabad2007-02-10 18:36:17 +1100425out:
David Chinner84e1e992007-06-18 16:50:27 +1000426 if (outval) {
427 outval->resblks = mp->m_resblks;
428 outval->resblks_avail = mp->m_resblks_avail;
429 }
David Chinnerdbcabad2007-02-10 18:36:17 +1100430
Brian Foster408fd482016-06-21 11:53:28 +1000431 spin_unlock(&mp->m_sb_lock);
432 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435int
436xfs_fs_goingdown(
437 xfs_mount_t *mp,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700438 uint32_t inflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 switch (inflags) {
441 case XFS_FSOP_GOING_FLAGS_DEFAULT: {
Christoph Hellwigb267ce92007-08-30 17:21:30 +1000442 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Christoph Hellwigf33c6792005-11-25 16:41:47 +1100444 if (sb && !IS_ERR(sb)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000445 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 thaw_bdev(sb->s_bdev, sb);
447 }
Barry Naujok189f4bf2008-05-21 16:58:55 +1000448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 break;
450 }
451 case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000452 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000455 xfs_force_shutdown(mp,
456 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
458 default:
Dave Chinner24513372014-06-25 14:58:08 +1000459 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461
462 return 0;
463}
Dave Chinner2af51f32012-04-23 15:59:03 +1000464
465/*
466 * Force a shutdown of the filesystem instantly while keeping the filesystem
467 * consistent. We don't do an unmount here; just shutdown the shop, make sure
468 * that absolutely nothing persistent happens to this filesystem after this
469 * point.
470 */
471void
472xfs_do_force_shutdown(
Dave Chinner56668a52018-10-18 17:20:39 +1100473 struct xfs_mount *mp,
Dave Chinner2af51f32012-04-23 15:59:03 +1000474 int flags,
475 char *fname,
476 int lnnum)
477{
Dave Chinner56668a52018-10-18 17:20:39 +1100478 bool logerror = flags & SHUTDOWN_LOG_IO_ERROR;
Dave Chinner2af51f32012-04-23 15:59:03 +1000479
Dave Chinner2af51f32012-04-23 15:59:03 +1000480 /*
481 * No need to duplicate efforts.
482 */
483 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
484 return;
485
486 /*
487 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
488 * queue up anybody new on the log reservations, and wakes up
489 * everybody who's sleeping on log reservations to tell them
490 * the bad news.
491 */
492 if (xfs_log_force_umount(mp, logerror))
493 return;
494
Dave Chinner56668a52018-10-18 17:20:39 +1100495 if (flags & SHUTDOWN_FORCE_UMOUNT) {
496 xfs_alert(mp,
497"User initiated shutdown received. Shutting down filesystem");
498 return;
499 }
500
501 xfs_notice(mp,
502"%s(0x%x) called from line %d of file %s. Return address = "PTR_FMT,
503 __func__, flags, lnnum, fname, __return_address);
504
Dave Chinner2af51f32012-04-23 15:59:03 +1000505 if (flags & SHUTDOWN_CORRUPT_INCORE) {
506 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
Dave Chinner56668a52018-10-18 17:20:39 +1100507"Corruption of in-memory data detected. Shutting down filesystem");
Dave Chinner2af51f32012-04-23 15:59:03 +1000508 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
509 xfs_stack_trace();
Dave Chinner56668a52018-10-18 17:20:39 +1100510 } else if (logerror) {
511 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
512 "Log I/O Error Detected. Shutting down filesystem");
513 } else if (flags & SHUTDOWN_DEVICE_REQ) {
514 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
515 "All device paths lost. Shutting down filesystem");
516 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
517 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
518 "I/O Error Detected. Shutting down filesystem");
Dave Chinner2af51f32012-04-23 15:59:03 +1000519 }
Dave Chinner56668a52018-10-18 17:20:39 +1100520
521 xfs_alert(mp,
522 "Please unmount the filesystem and rectify the problem(s)");
Dave Chinner2af51f32012-04-23 15:59:03 +1000523}
Darrick J. Wong84d69612016-10-03 09:11:44 -0700524
525/*
526 * Reserve free space for per-AG metadata.
527 */
528int
529xfs_fs_reserve_ag_blocks(
530 struct xfs_mount *mp)
531{
532 xfs_agnumber_t agno;
533 struct xfs_perag *pag;
534 int error = 0;
535 int err2;
536
537 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
538 pag = xfs_perag_get(mp, agno);
Darrick J. Wongebcbef32018-07-29 22:37:08 -0700539 err2 = xfs_ag_resv_init(pag, NULL);
Darrick J. Wong84d69612016-10-03 09:11:44 -0700540 xfs_perag_put(pag);
541 if (err2 && !error)
542 error = err2;
543 }
544
545 if (error && error != -ENOSPC) {
546 xfs_warn(mp,
547 "Error %d reserving per-AG metadata reserve pool.", error);
548 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
549 }
550
551 return error;
552}
553
554/*
555 * Free space reserved for per-AG metadata.
556 */
557int
558xfs_fs_unreserve_ag_blocks(
559 struct xfs_mount *mp)
560{
561 xfs_agnumber_t agno;
562 struct xfs_perag *pag;
563 int error = 0;
564 int err2;
565
566 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
567 pag = xfs_perag_get(mp, agno);
568 err2 = xfs_ag_resv_free(pag);
569 xfs_perag_put(pag);
570 if (err2 && !error)
571 error = err2;
572 }
573
574 if (error)
575 xfs_warn(mp,
576 "Error %d freeing per-AG metadata reserve pool.", error);
577
578 return error;
579}