blob: bc7ef18da243e9a76c1976900979eef4b7c09534 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110022#include "xfs_log_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100026#include "xfs_defer.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110029#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_trans_space.h"
33#include "xfs_rtalloc.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_log.h"
Dave Chinnerb16817b2018-05-13 23:10:08 -070036#include "xfs_ag.h"
Darrick J. Wong84d69612016-10-03 09:11:44 -070037#include "xfs_ag_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
Dave Chinnerb16817b2018-05-13 23:10:08 -070040 * growfs operations
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static int
43xfs_growfs_data_private(
44 xfs_mount_t *mp, /* mount point for filesystem */
45 xfs_growfs_data_t *in) /* growfs data input struct */
46{
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 xfs_buf_t *bp;
Dave Chinner83a7f862018-05-13 23:10:07 -070048 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 xfs_agnumber_t nagcount;
50 xfs_agnumber_t nagimax = 0;
51 xfs_rfsblock_t nb, nb_mod;
52 xfs_rfsblock_t new;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 xfs_agnumber_t oagcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 xfs_trans_t *tp;
Dave Chinner9aebe802018-05-13 23:10:06 -070055 LIST_HEAD (buffer_list);
Dave Chinner0410c3b2018-05-13 23:10:06 -070056 struct aghdr_init_data id = {};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 nb = in->newblocks;
Dave Chinner87444b82018-05-13 23:10:07 -070059 if (nb < mp->m_sb.sb_dblocks)
Dave Chinner24513372014-06-25 14:58:08 +100060 return -EINVAL;
Nathan Scott4cc929e2007-05-14 18:24:02 +100061 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
62 return error;
Dave Chinnerba3726742014-10-02 09:05:32 +100063 error = xfs_buf_read_uncached(mp->m_ddev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +100064 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
Dave Chinnerba3726742014-10-02 09:05:32 +100065 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
66 if (error)
Dave Chinnereab4e632012-11-12 22:54:02 +110067 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 xfs_buf_relse(bp);
69
70 new = nb; /* use new as a temporary here */
71 nb_mod = do_div(new, mp->m_sb.sb_agblocks);
72 nagcount = new + (nb_mod != 0);
73 if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
74 nagcount--;
Eric Sandeene6da7c92009-05-23 14:30:12 -050075 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (nb < mp->m_sb.sb_dblocks)
Dave Chinner24513372014-06-25 14:58:08 +100077 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79 new = nb - mp->m_sb.sb_dblocks;
80 oagcount = mp->m_sb.sb_agcount;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000081
82 /* allocate the new per-ag structures */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 if (nagcount > oagcount) {
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000084 error = xfs_initialize_perag(mp, nagcount, &nagimax);
85 if (error)
86 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000088
Christoph Hellwig253f4912016-04-06 09:19:55 +100089 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
90 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
91 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Dave Chinner1c1c6eb2010-01-11 11:47:44 +000094 /*
Dave Chinner9aebe802018-05-13 23:10:06 -070095 * Write new AG headers to disk. Non-transactional, but need to be
96 * written and completed prior to the growfs transaction being logged.
97 * To do this, we use a delayed write buffer list and wait for
98 * submission and IO completion of the list as a whole. This allows the
99 * IO subsystem to merge all the AG headers in a single AG into a single
100 * IO and hide most of the latency of the IO from us.
101 *
102 * This also means that if we get an error whilst building the buffer
103 * list to write, we can cancel the entire list without having written
104 * anything.
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000105 */
Dave Chinner0410c3b2018-05-13 23:10:06 -0700106 INIT_LIST_HEAD(&id.buffer_list);
107 for (id.agno = nagcount - 1;
108 id.agno >= oagcount;
109 id.agno--, new -= id.agsize) {
Dave Chinnerf94c4452013-11-21 15:41:06 +1100110
Dave Chinner0410c3b2018-05-13 23:10:06 -0700111 if (id.agno == nagcount - 1)
112 id.agsize = nb -
113 (id.agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 else
Dave Chinner0410c3b2018-05-13 23:10:06 -0700115 id.agsize = mp->m_sb.sb_agblocks;
Darrick J. Wonge70d8292016-08-03 11:36:08 +1000116
Dave Chinnerb16817b2018-05-13 23:10:08 -0700117 error = xfs_ag_init_headers(mp, &id);
Dave Chinner9aebe802018-05-13 23:10:06 -0700118 if (error) {
Dave Chinner0410c3b2018-05-13 23:10:06 -0700119 xfs_buf_delwri_cancel(&id.buffer_list);
Dave Chinner83a7f862018-05-13 23:10:07 -0700120 goto out_trans_cancel;
Dave Chinner9aebe802018-05-13 23:10:06 -0700121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Dave Chinner0410c3b2018-05-13 23:10:06 -0700123 error = xfs_buf_delwri_submit(&id.buffer_list);
Dave Chinner9aebe802018-05-13 23:10:06 -0700124 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700125 goto out_trans_cancel;
Dave Chinner9aebe802018-05-13 23:10:06 -0700126
Dave Chinner0410c3b2018-05-13 23:10:06 -0700127 xfs_trans_agblocks_delta(tp, id.nfree);
Dave Chinnercce77bc2018-05-13 23:10:05 -0700128
Dave Chinner49dd56f2018-05-13 23:10:08 -0700129 /* If there are new blocks in the old last AG, extend it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (new) {
Dave Chinner49dd56f2018-05-13 23:10:08 -0700131 error = xfs_ag_extend_space(mp, tp, &id, new);
Darrick J. Wong340785c2016-08-03 11:33:42 +1000132 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700133 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000135
136 /*
137 * Update changed superblock fields transactionally. These are not
138 * seen by the rest of the world until the transaction commit applies
139 * them atomically to the superblock.
140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (nagcount > oagcount)
142 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
143 if (nb > mp->m_sb.sb_dblocks)
144 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
145 nb - mp->m_sb.sb_dblocks);
Dave Chinner0410c3b2018-05-13 23:10:06 -0700146 if (id.nfree)
147 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, id.nfree);
Christoph Hellwigf8079b82015-02-05 11:13:21 +1100148 xfs_trans_set_sync(tp);
Christoph Hellwig70393312015-06-04 13:48:08 +1000149 error = xfs_trans_commit(tp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000150 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return error;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /* New allocation groups fully initialized, so update mount struct */
154 if (nagimax)
155 mp->m_maxagi = nagimax;
Dave Chinner055388a2011-01-04 11:35:03 +1100156 xfs_set_low_space_thresholds(mp);
Darrick J. Wong52548852016-08-03 11:38:24 +1000157 mp->m_alloc_set_aside = xfs_alloc_set_aside(mp);
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000158
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800159 /*
160 * If we expanded the last AG, free the per-AG reservation
161 * so we can reinitialize it with the new size.
162 */
163 if (new) {
164 struct xfs_perag *pag;
165
Dave Chinner0410c3b2018-05-13 23:10:06 -0700166 pag = xfs_perag_get(mp, id.agno);
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800167 error = xfs_ag_resv_free(pag);
168 xfs_perag_put(pag);
169 if (error)
Dave Chinner83a7f862018-05-13 23:10:07 -0700170 return error;
Darrick J. Wong20e73b02017-01-03 18:39:33 -0800171 }
172
Dave Chinner83a7f862018-05-13 23:10:07 -0700173 /*
174 * Reserve AG metadata blocks. ENOSPC here does not mean there was a
175 * growfs failure, just that there still isn't space for new user data
176 * after the grow has been run.
177 */
Darrick J. Wong84d69612016-10-03 09:11:44 -0700178 error = xfs_fs_reserve_ag_blocks(mp);
Dave Chinner83a7f862018-05-13 23:10:07 -0700179 if (error == -ENOSPC)
180 error = 0;
181 return error;
182
183out_trans_cancel:
184 xfs_trans_cancel(tp);
185 return error;
186}
187
188static int
189xfs_growfs_log_private(
190 xfs_mount_t *mp, /* mount point for filesystem */
191 xfs_growfs_log_t *in) /* growfs log input struct */
192{
193 xfs_extlen_t nb;
194
195 nb = in->newblocks;
196 if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
197 return -EINVAL;
198 if (nb == mp->m_sb.sb_logblocks &&
199 in->isint == (mp->m_sb.sb_logstart != 0))
200 return -EINVAL;
201 /*
202 * Moving the log is hard, need new interfaces to sync
203 * the log first, hold off all activity while moving it.
204 * Can have shorter or longer log in the same space,
205 * or transform internal to external log or vice versa.
206 */
207 return -ENOSYS;
208}
209
210static int
211xfs_growfs_imaxpct(
212 struct xfs_mount *mp,
213 __u32 imaxpct)
214{
215 struct xfs_trans *tp;
216 int dpct;
217 int error;
218
219 if (imaxpct > 100)
220 return -EINVAL;
221
222 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
223 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
224 if (error)
225 return error;
226
227 dpct = imaxpct - mp->m_sb.sb_imax_pct;
228 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
229 xfs_trans_set_sync(tp);
230 return xfs_trans_commit(tp);
231}
232
233/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * protected versions of growfs function acquire and release locks on the mount
235 * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
236 * XFS_IOC_FSGROWFSRT
237 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238int
239xfs_growfs_data(
Dave Chinner87444b82018-05-13 23:10:07 -0700240 struct xfs_mount *mp,
241 struct xfs_growfs_data *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
Dave Chinner87444b82018-05-13 23:10:07 -0700243 int error = 0;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600244
245 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000246 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000247 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000248 return -EWOULDBLOCK;
Dave Chinner87444b82018-05-13 23:10:07 -0700249
250 /* update imaxpct separately to the physical grow of the filesystem */
251 if (in->imaxpct != mp->m_sb.sb_imax_pct) {
252 error = xfs_growfs_imaxpct(mp, in->imaxpct);
253 if (error)
254 goto out_error;
255 }
256
257 if (in->newblocks != mp->m_sb.sb_dblocks) {
258 error = xfs_growfs_data_private(mp, in);
259 if (error)
260 goto out_error;
261 }
262
263 /* Post growfs calculations needed to reflect new state in operations */
264 if (mp->m_sb.sb_imax_pct) {
265 uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
266 do_div(icount, 100);
267 mp->m_maxicount = icount << mp->m_sb.sb_inopblog;
268 } else
269 mp->m_maxicount = 0;
270
Dave Chinner83a7f862018-05-13 23:10:07 -0700271 /* Update secondary superblocks now the physical grow has completed */
Dave Chinnerb16817b2018-05-13 23:10:08 -0700272 error = xfs_update_secondary_sbs(mp);
Dave Chinner83a7f862018-05-13 23:10:07 -0700273
Dave Chinner87444b82018-05-13 23:10:07 -0700274out_error:
Christoph Hellwig52785112015-02-16 11:49:23 +1100275 /*
276 * Increment the generation unconditionally, the error could be from
277 * updating the secondary superblocks, in which case the new size
278 * is live already.
279 */
280 mp->m_generation++;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000281 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return error;
283}
284
285int
286xfs_growfs_log(
287 xfs_mount_t *mp,
288 xfs_growfs_log_t *in)
289{
290 int error;
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600291
292 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000293 return -EPERM;
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000294 if (!mutex_trylock(&mp->m_growlock))
Dave Chinner24513372014-06-25 14:58:08 +1000295 return -EWOULDBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 error = xfs_growfs_log_private(mp, in);
Christoph Hellwigcc92e7a2007-08-30 17:21:54 +1000297 mutex_unlock(&mp->m_growlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return error;
299}
300
301/*
302 * exported through ioctl XFS_IOC_FSCOUNTS
303 */
304
305int
306xfs_fs_counts(
307 xfs_mount_t *mp,
308 xfs_fsop_counts_t *cnt)
309{
Dave Chinner501ab322015-02-23 21:19:28 +1100310 cnt->allocino = percpu_counter_read_positive(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +1100311 cnt->freeino = percpu_counter_read_positive(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100312 cnt->freedata = percpu_counter_read_positive(&mp->m_fdblocks) -
Darrick J. Wong52548852016-08-03 11:38:24 +1000313 mp->m_alloc_set_aside;
Dave Chinner501ab322015-02-23 21:19:28 +1100314
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000315 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 cnt->freertx = mp->m_sb.sb_frextents;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000317 spin_unlock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return 0;
319}
320
321/*
322 * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
323 *
324 * xfs_reserve_blocks is called to set m_resblks
325 * in the in-core mount table. The number of unused reserved blocks
Nathan Scottc41564b2006-03-29 08:55:14 +1000326 * is kept in m_resblks_avail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 *
328 * Reserve the requested number of blocks if available. Otherwise return
329 * as many as possible to satisfy the request. The actual number
330 * reserved are returned in outval
331 *
332 * A null inval pointer indicates that only the current reserved blocks
333 * available should be returned no settings are changed.
334 */
335
336int
337xfs_reserve_blocks(
338 xfs_mount_t *mp,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700339 uint64_t *inval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xfs_fsop_resblks_t *outval)
341{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700342 int64_t lcounter, delta;
343 int64_t fdblks_delta = 0;
344 uint64_t request;
345 int64_t free;
Brian Foster408fd482016-06-21 11:53:28 +1000346 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /* If inval is null, report current values and return */
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700349 if (inval == (uint64_t *)NULL) {
David Chinner84e1e992007-06-18 16:50:27 +1000350 if (!outval)
Dave Chinner24513372014-06-25 14:58:08 +1000351 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 outval->resblks = mp->m_resblks;
353 outval->resblks_avail = mp->m_resblks_avail;
Jesper Juhl014c2542006-01-15 02:37:08 +0100354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356
357 request = *inval;
David Chinnerdbcabad2007-02-10 18:36:17 +1100358
359 /*
Brian Foster408fd482016-06-21 11:53:28 +1000360 * With per-cpu counters, this becomes an interesting problem. we need
361 * to work out if we are freeing or allocation blocks first, then we can
362 * do the modification as necessary.
David Chinnerdbcabad2007-02-10 18:36:17 +1100363 *
Brian Foster408fd482016-06-21 11:53:28 +1000364 * We do this under the m_sb_lock so that if we are near ENOSPC, we will
365 * hold out any changes while we work out what to do. This means that
366 * the amount of free space can change while we do this, so we need to
367 * retry if we end up trying to reserve more space than is available.
David Chinnerdbcabad2007-02-10 18:36:17 +1100368 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000369 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 /*
372 * If our previous reservation was larger than the current value,
Brian Foster408fd482016-06-21 11:53:28 +1000373 * then move any unused blocks back to the free pool. Modify the resblks
374 * counters directly since we shouldn't have any problems unreserving
375 * space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (mp->m_resblks > request) {
378 lcounter = mp->m_resblks_avail - request;
379 if (lcounter > 0) { /* release unused blocks */
David Chinnerdbcabad2007-02-10 18:36:17 +1100380 fdblks_delta = lcounter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 mp->m_resblks_avail -= lcounter;
382 }
383 mp->m_resblks = request;
Brian Foster408fd482016-06-21 11:53:28 +1000384 if (fdblks_delta) {
385 spin_unlock(&mp->m_sb_lock);
386 error = xfs_mod_fdblocks(mp, fdblks_delta, 0);
387 spin_lock(&mp->m_sb_lock);
388 }
David Chinner4be536d2006-09-07 14:26:50 +1000389
Brian Foster408fd482016-06-21 11:53:28 +1000390 goto out;
391 }
392
393 /*
394 * If the request is larger than the current reservation, reserve the
395 * blocks before we update the reserve counters. Sample m_fdblocks and
396 * perform a partial reservation if the request exceeds free space.
397 */
398 error = -ENOSPC;
399 do {
Dave Chinner0d485ad2015-02-23 21:22:03 +1100400 free = percpu_counter_sum(&mp->m_fdblocks) -
Darrick J. Wong52548852016-08-03 11:38:24 +1000401 mp->m_alloc_set_aside;
David Chinnerdbcabad2007-02-10 18:36:17 +1100402 if (!free)
Brian Foster408fd482016-06-21 11:53:28 +1000403 break;
David Chinnerdbcabad2007-02-10 18:36:17 +1100404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 delta = request - mp->m_resblks;
David Chinner4be536d2006-09-07 14:26:50 +1000406 lcounter = free - delta;
Brian Foster408fd482016-06-21 11:53:28 +1000407 if (lcounter < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /* We can't satisfy the request, just get what we can */
Brian Foster408fd482016-06-21 11:53:28 +1000409 fdblks_delta = free;
410 else
411 fdblks_delta = delta;
412
413 /*
414 * We'll either succeed in getting space from the free block
415 * count or we'll get an ENOSPC. If we get a ENOSPC, it means
416 * things changed while we were calculating fdblks_delta and so
417 * we should try again to see if there is anything left to
418 * reserve.
419 *
420 * Don't set the reserved flag here - we don't want to reserve
421 * the extra reserve blocks from the reserve.....
422 */
423 spin_unlock(&mp->m_sb_lock);
424 error = xfs_mod_fdblocks(mp, -fdblks_delta, 0);
425 spin_lock(&mp->m_sb_lock);
426 } while (error == -ENOSPC);
427
428 /*
429 * Update the reserve counters if blocks have been successfully
430 * allocated.
431 */
432 if (!error && fdblks_delta) {
433 mp->m_resblks += fdblks_delta;
434 mp->m_resblks_avail += fdblks_delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Brian Foster408fd482016-06-21 11:53:28 +1000436
David Chinnerdbcabad2007-02-10 18:36:17 +1100437out:
David Chinner84e1e992007-06-18 16:50:27 +1000438 if (outval) {
439 outval->resblks = mp->m_resblks;
440 outval->resblks_avail = mp->m_resblks_avail;
441 }
David Chinnerdbcabad2007-02-10 18:36:17 +1100442
Brian Foster408fd482016-06-21 11:53:28 +1000443 spin_unlock(&mp->m_sb_lock);
444 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447int
448xfs_fs_goingdown(
449 xfs_mount_t *mp,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700450 uint32_t inflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 switch (inflags) {
453 case XFS_FSOP_GOING_FLAGS_DEFAULT: {
Christoph Hellwigb267ce92007-08-30 17:21:30 +1000454 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Christoph Hellwigf33c6792005-11-25 16:41:47 +1100456 if (sb && !IS_ERR(sb)) {
Nathan Scott7d04a332006-06-09 14:58:38 +1000457 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 thaw_bdev(sb->s_bdev, sb);
459 }
Barry Naujok189f4bf2008-05-21 16:58:55 +1000460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 break;
462 }
463 case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000464 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 break;
466 case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
Nathan Scott7d04a332006-06-09 14:58:38 +1000467 xfs_force_shutdown(mp,
468 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 default:
Dave Chinner24513372014-06-25 14:58:08 +1000471 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473
474 return 0;
475}
Dave Chinner2af51f32012-04-23 15:59:03 +1000476
477/*
478 * Force a shutdown of the filesystem instantly while keeping the filesystem
479 * consistent. We don't do an unmount here; just shutdown the shop, make sure
480 * that absolutely nothing persistent happens to this filesystem after this
481 * point.
482 */
483void
484xfs_do_force_shutdown(
485 xfs_mount_t *mp,
486 int flags,
487 char *fname,
488 int lnnum)
489{
490 int logerror;
491
492 logerror = flags & SHUTDOWN_LOG_IO_ERROR;
493
494 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
495 xfs_notice(mp,
Darrick J. Wongc9690042018-01-09 12:02:55 -0800496 "%s(0x%x) called from line %d of file %s. Return address = "PTR_FMT,
Dave Chinner2af51f32012-04-23 15:59:03 +1000497 __func__, flags, lnnum, fname, __return_address);
498 }
499 /*
500 * No need to duplicate efforts.
501 */
502 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
503 return;
504
505 /*
506 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
507 * queue up anybody new on the log reservations, and wakes up
508 * everybody who's sleeping on log reservations to tell them
509 * the bad news.
510 */
511 if (xfs_log_force_umount(mp, logerror))
512 return;
513
514 if (flags & SHUTDOWN_CORRUPT_INCORE) {
515 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
516 "Corruption of in-memory data detected. Shutting down filesystem");
517 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
518 xfs_stack_trace();
519 } else if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
520 if (logerror) {
521 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
522 "Log I/O Error Detected. Shutting down filesystem");
523 } else if (flags & SHUTDOWN_DEVICE_REQ) {
524 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
525 "All device paths lost. Shutting down filesystem");
526 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
527 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
528 "I/O Error Detected. Shutting down filesystem");
529 }
530 }
531 if (!(flags & SHUTDOWN_FORCE_UMOUNT)) {
532 xfs_alert(mp,
533 "Please umount the filesystem and rectify the problem(s)");
534 }
535}
Darrick J. Wong84d69612016-10-03 09:11:44 -0700536
537/*
538 * Reserve free space for per-AG metadata.
539 */
540int
541xfs_fs_reserve_ag_blocks(
542 struct xfs_mount *mp)
543{
544 xfs_agnumber_t agno;
545 struct xfs_perag *pag;
546 int error = 0;
547 int err2;
548
549 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
550 pag = xfs_perag_get(mp, agno);
551 err2 = xfs_ag_resv_init(pag);
552 xfs_perag_put(pag);
553 if (err2 && !error)
554 error = err2;
555 }
556
557 if (error && error != -ENOSPC) {
558 xfs_warn(mp,
559 "Error %d reserving per-AG metadata reserve pool.", error);
560 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
561 }
562
563 return error;
564}
565
566/*
567 * Free space reserved for per-AG metadata.
568 */
569int
570xfs_fs_unreserve_ag_blocks(
571 struct xfs_mount *mp)
572{
573 xfs_agnumber_t agno;
574 struct xfs_perag *pag;
575 int error = 0;
576 int err2;
577
578 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
579 pag = xfs_perag_get(mp, agno);
580 err2 = xfs_ag_resv_free(pag);
581 xfs_perag_put(pag);
582 if (err2 && !error)
583 error = err2;
584 }
585
586 if (error)
587 xfs_warn(mp,
588 "Error %d freeing per-AG metadata reserve pool.", error);
589
590 return error;
591}