blob: 6a3ce0f6dc9e90f2c8fae5ee9d44fa3aadd55387 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
David Chinner2a82b8b2007-07-11 11:09:12 +10002/*
3 * Copyright (c) 2006-2007 Silicon Graphics, Inc.
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +10004 * Copyright (c) 2014 Christoph Hellwig.
David Chinner2a82b8b2007-07-11 11:09:12 +10005 * All Rights Reserved.
David Chinner2a82b8b2007-07-11 11:09:12 +10006 */
7#include "xfs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07008#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +11009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Dave Chinner239880e2013-10-23 10:50:10 +110012#include "xfs_mount.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100013#include "xfs_inode.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100014#include "xfs_bmap.h"
15#include "xfs_alloc.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100016#include "xfs_mru_cache.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000017#include "xfs_trace.h"
Dave Chinner9bbafc712021-06-02 10:48:24 +100018#include "xfs_ag.h"
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100019#include "xfs_ag_resv.h"
Brian Foster3e3673e2018-07-11 22:26:14 -070020#include "xfs_trans.h"
Darrick J. Wongf368b292019-11-12 20:40:00 -080021#include "xfs_filestream.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100022
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100023struct xfs_fstrm_item {
24 struct xfs_mru_cache_elem mru;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100025 xfs_agnumber_t ag; /* AG in use for this directory */
26};
27
28enum xfs_fstrm_alloc {
29 XFS_PICK_USERDATA = 1,
30 XFS_PICK_LOWSPACE = 2,
31};
David Chinner2a82b8b2007-07-11 11:09:12 +100032
Christoph Hellwig0664ce82010-07-20 17:31:01 +100033/*
34 * Allocation group filestream associations are tracked with per-ag atomic
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100035 * counters. These counters allow xfs_filestream_pick_ag() to tell whether a
Gao Xiangb38e0742020-09-23 09:26:31 -070036 * particular AG already has active filestreams associated with it.
Christoph Hellwig0664ce82010-07-20 17:31:01 +100037 */
Christoph Hellwigb94acd42014-04-23 07:11:52 +100038int
Christoph Hellwig0664ce82010-07-20 17:31:01 +100039xfs_filestream_peek_ag(
40 xfs_mount_t *mp,
41 xfs_agnumber_t agno)
42{
43 struct xfs_perag *pag;
44 int ret;
45
46 pag = xfs_perag_get(mp, agno);
47 ret = atomic_read(&pag->pagf_fstrms);
48 xfs_perag_put(pag);
49 return ret;
50}
51
52static int
53xfs_filestream_get_ag(
54 xfs_mount_t *mp,
55 xfs_agnumber_t agno)
56{
57 struct xfs_perag *pag;
58 int ret;
59
60 pag = xfs_perag_get(mp, agno);
61 ret = atomic_inc_return(&pag->pagf_fstrms);
62 xfs_perag_put(pag);
63 return ret;
64}
65
66static void
67xfs_filestream_put_ag(
68 xfs_mount_t *mp,
69 xfs_agnumber_t agno)
70{
71 struct xfs_perag *pag;
72
73 pag = xfs_perag_get(mp, agno);
74 atomic_dec(&pag->pagf_fstrms);
75 xfs_perag_put(pag);
76}
David Chinner2a82b8b2007-07-11 11:09:12 +100077
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100078static void
79xfs_fstrm_free_func(
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -070080 void *data,
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100081 struct xfs_mru_cache_elem *mru)
82{
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -070083 struct xfs_mount *mp = data;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100084 struct xfs_fstrm_item *item =
85 container_of(mru, struct xfs_fstrm_item, mru);
86
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -070087 xfs_filestream_put_ag(mp, item->ag);
88 trace_xfs_filestream_free(mp, mru->key, item->ag);
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100089
Christoph Hellwig1919add2014-04-23 07:11:51 +100090 kmem_free(item);
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100091}
92
David Chinner2a82b8b2007-07-11 11:09:12 +100093/*
94 * Scan the AGs starting at startag looking for an AG that isn't in use and has
95 * at least minlen blocks free.
96 */
97static int
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +100098xfs_filestream_pick_ag(
99 struct xfs_inode *ip,
100 xfs_agnumber_t startag,
101 xfs_agnumber_t *agp,
102 int flags,
103 xfs_extlen_t minlen)
David Chinner2a82b8b2007-07-11 11:09:12 +1000104{
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000105 struct xfs_mount *mp = ip->i_mount;
106 struct xfs_fstrm_item *item;
107 struct xfs_perag *pag;
Christoph Hellwigb94acd42014-04-23 07:11:52 +1000108 xfs_extlen_t longest, free = 0, minfree, maxfree = 0;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000109 xfs_agnumber_t ag, max_ag = NULLAGNUMBER;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000110 int err, trylock, nscan;
111
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100112 ASSERT(S_ISDIR(VFS_I(ip)->i_mode));
David Chinner2a82b8b2007-07-11 11:09:12 +1000113
114 /* 2% of an AG's blocks must be free for it to be chosen. */
115 minfree = mp->m_sb.sb_agblocks / 50;
116
117 ag = startag;
118 *agp = NULLAGNUMBER;
119
120 /* For the first pass, don't sleep trying to init the per-AG. */
121 trylock = XFS_ALLOC_FLAG_TRYLOCK;
122
123 for (nscan = 0; 1; nscan++) {
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -0700124 trace_xfs_filestream_scan(mp, ip->i_ino, ag);
Christoph Hellwigb94acd42014-04-23 07:11:52 +1000125
Dave Chinner4196ac02010-01-11 11:47:42 +0000126 pag = xfs_perag_get(mp, ag);
David Chinner2a82b8b2007-07-11 11:09:12 +1000127
128 if (!pag->pagf_init) {
129 err = xfs_alloc_pagf_init(mp, NULL, ag, trylock);
Darrick J. Wongf48e2df2020-01-23 17:01:19 -0800130 if (err) {
Dave Chinner4196ac02010-01-11 11:47:42 +0000131 xfs_perag_put(pag);
Darrick J. Wongf48e2df2020-01-23 17:01:19 -0800132 if (err != -EAGAIN)
133 return err;
134 /* Couldn't lock the AGF, skip this AG. */
135 continue;
Dave Chinner4196ac02010-01-11 11:47:42 +0000136 }
David Chinner2a82b8b2007-07-11 11:09:12 +1000137 }
138
David Chinner2a82b8b2007-07-11 11:09:12 +1000139 /* Keep track of the AG with the most free blocks. */
140 if (pag->pagf_freeblks > maxfree) {
141 maxfree = pag->pagf_freeblks;
142 max_ag = ag;
143 }
144
145 /*
146 * The AG reference count does two things: it enforces mutual
147 * exclusion when examining the suitability of an AG in this
148 * loop, and it guards against two filestreams being established
149 * in the same AG as each other.
150 */
151 if (xfs_filestream_get_ag(mp, ag) > 1) {
152 xfs_filestream_put_ag(mp, ag);
153 goto next_ag;
154 }
155
Eric Sandeena1f69412018-04-06 10:09:42 -0700156 longest = xfs_alloc_longest_free_extent(pag,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000157 xfs_alloc_min_freelist(mp, pag),
158 xfs_ag_resv_needed(pag, XFS_AG_RESV_NONE));
David Chinner2a82b8b2007-07-11 11:09:12 +1000159 if (((minlen && longest >= minlen) ||
160 (!minlen && pag->pagf_freeblks >= minfree)) &&
161 (!pag->pagf_metadata || !(flags & XFS_PICK_USERDATA) ||
162 (flags & XFS_PICK_LOWSPACE))) {
163
164 /* Break out, retaining the reference on the AG. */
165 free = pag->pagf_freeblks;
Dave Chinner4196ac02010-01-11 11:47:42 +0000166 xfs_perag_put(pag);
David Chinner2a82b8b2007-07-11 11:09:12 +1000167 *agp = ag;
168 break;
169 }
170
171 /* Drop the reference on this AG, it's not usable. */
172 xfs_filestream_put_ag(mp, ag);
173next_ag:
Dave Chinner4196ac02010-01-11 11:47:42 +0000174 xfs_perag_put(pag);
David Chinner2a82b8b2007-07-11 11:09:12 +1000175 /* Move to the next AG, wrapping to AG 0 if necessary. */
176 if (++ag >= mp->m_sb.sb_agcount)
177 ag = 0;
178
179 /* If a full pass of the AGs hasn't been done yet, continue. */
180 if (ag != startag)
181 continue;
182
183 /* Allow sleeping in xfs_alloc_pagf_init() on the 2nd pass. */
184 if (trylock != 0) {
185 trylock = 0;
186 continue;
187 }
188
189 /* Finally, if lowspace wasn't set, set it for the 3rd pass. */
190 if (!(flags & XFS_PICK_LOWSPACE)) {
191 flags |= XFS_PICK_LOWSPACE;
192 continue;
193 }
194
195 /*
196 * Take the AG with the most free space, regardless of whether
197 * it's already in use by another filestream.
198 */
199 if (max_ag != NULLAGNUMBER) {
200 xfs_filestream_get_ag(mp, max_ag);
David Chinner2a82b8b2007-07-11 11:09:12 +1000201 free = maxfree;
202 *agp = max_ag;
203 break;
204 }
205
206 /* take AG 0 if none matched */
Christoph Hellwigb94acd42014-04-23 07:11:52 +1000207 trace_xfs_filestream_pick(ip, *agp, free, nscan);
David Chinner2a82b8b2007-07-11 11:09:12 +1000208 *agp = 0;
209 return 0;
210 }
211
Christoph Hellwigb94acd42014-04-23 07:11:52 +1000212 trace_xfs_filestream_pick(ip, *agp, free, nscan);
David Chinner2a82b8b2007-07-11 11:09:12 +1000213
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000214 if (*agp == NULLAGNUMBER)
David Chinner2a82b8b2007-07-11 11:09:12 +1000215 return 0;
David Chinner2a82b8b2007-07-11 11:09:12 +1000216
Dave Chinner24513372014-06-25 14:58:08 +1000217 err = -ENOMEM;
Christoph Hellwig1919add2014-04-23 07:11:51 +1000218 item = kmem_alloc(sizeof(*item), KM_MAYFAIL);
David Chinner2a82b8b2007-07-11 11:09:12 +1000219 if (!item)
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000220 goto out_put_ag;
David Chinner2a82b8b2007-07-11 11:09:12 +1000221
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000222 item->ag = *agp;
David Chinner2a82b8b2007-07-11 11:09:12 +1000223
Christoph Hellwig22328d72014-04-23 07:11:51 +1000224 err = xfs_mru_cache_insert(mp->m_filestream, ip->i_ino, &item->mru);
David Chinner2a82b8b2007-07-11 11:09:12 +1000225 if (err) {
Dave Chinner24513372014-06-25 14:58:08 +1000226 if (err == -EEXIST)
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000227 err = 0;
228 goto out_free_item;
David Chinner2a82b8b2007-07-11 11:09:12 +1000229 }
230
David Chinner2a82b8b2007-07-11 11:09:12 +1000231 return 0;
David Chinner2a82b8b2007-07-11 11:09:12 +1000232
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000233out_free_item:
Christoph Hellwig1919add2014-04-23 07:11:51 +1000234 kmem_free(item);
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000235out_put_ag:
236 xfs_filestream_put_ag(mp, *agp);
David Chinner2a82b8b2007-07-11 11:09:12 +1000237 return err;
238}
239
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000240static struct xfs_inode *
241xfs_filestream_get_parent(
242 struct xfs_inode *ip)
David Chinner2a82b8b2007-07-11 11:09:12 +1000243{
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000244 struct inode *inode = VFS_I(ip), *dir = NULL;
245 struct dentry *dentry, *parent;
246
247 dentry = d_find_alias(inode);
248 if (!dentry)
249 goto out;
250
251 parent = dget_parent(dentry);
252 if (!parent)
253 goto out_dput;
254
David Howells2b0143b2015-03-17 22:25:59 +0000255 dir = igrab(d_inode(parent));
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000256 dput(parent);
257
258out_dput:
259 dput(dentry);
260out:
261 return dir ? XFS_I(dir) : NULL;
David Chinner2a82b8b2007-07-11 11:09:12 +1000262}
263
264/*
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000265 * Find the right allocation group for a file, either by finding an
266 * existing file stream or creating a new one.
267 *
268 * Returns NULLAGNUMBER in case of an error.
David Chinner2a82b8b2007-07-11 11:09:12 +1000269 */
270xfs_agnumber_t
271xfs_filestream_lookup_ag(
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000272 struct xfs_inode *ip)
David Chinner2a82b8b2007-07-11 11:09:12 +1000273{
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000274 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000275 struct xfs_inode *pip = NULL;
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000276 xfs_agnumber_t startag, ag = NULLAGNUMBER;
Christoph Hellwig22328d72014-04-23 07:11:51 +1000277 struct xfs_mru_cache_elem *mru;
David Chinner2a82b8b2007-07-11 11:09:12 +1000278
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100279 ASSERT(S_ISREG(VFS_I(ip)->i_mode));
David Chinner2a82b8b2007-07-11 11:09:12 +1000280
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000281 pip = xfs_filestream_get_parent(ip);
282 if (!pip)
Eric Sandeenb26384d2015-03-25 14:54:25 +1100283 return NULLAGNUMBER;
David Chinner2a82b8b2007-07-11 11:09:12 +1000284
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000285 mru = xfs_mru_cache_lookup(mp->m_filestream, pip->i_ino);
Christoph Hellwig22328d72014-04-23 07:11:51 +1000286 if (mru) {
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000287 ag = container_of(mru, struct xfs_fstrm_item, mru)->ag;
Christoph Hellwig22328d72014-04-23 07:11:51 +1000288 xfs_mru_cache_done(mp->m_filestream);
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000289
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -0700290 trace_xfs_filestream_lookup(mp, ip->i_ino, ag);
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000291 goto out;
David Chinner2a82b8b2007-07-11 11:09:12 +1000292 }
293
294 /*
295 * Set the starting AG using the rotor for inode32, otherwise
296 * use the directory inode's AG.
297 */
Dave Chinner2e973b22021-08-18 18:46:52 -0700298 if (xfs_is_inode32(mp)) {
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000299 xfs_agnumber_t rotorstep = xfs_rotorstep;
David Chinner2a82b8b2007-07-11 11:09:12 +1000300 startag = (mp->m_agfrotor / rotorstep) % mp->m_sb.sb_agcount;
301 mp->m_agfrotor = (mp->m_agfrotor + 1) %
302 (mp->m_sb.sb_agcount * rotorstep);
303 } else
304 startag = XFS_INO_TO_AGNO(mp, pip->i_ino);
305
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000306 if (xfs_filestream_pick_ag(pip, startag, &ag, 0, 0))
307 ag = NULLAGNUMBER;
308out:
Darrick J. Wong44a87362018-07-25 12:52:32 -0700309 xfs_irele(pip);
Christoph Hellwig3b8d9072014-04-23 07:11:52 +1000310 return ag;
David Chinner2a82b8b2007-07-11 11:09:12 +1000311}
312
313/*
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000314 * Pick a new allocation group for the current file and its file stream.
315 *
316 * This is called when the allocator can't find a suitable extent in the
317 * current AG, and we have to move the stream into a new AG with more space.
David Chinner2a82b8b2007-07-11 11:09:12 +1000318 */
319int
320xfs_filestream_new_ag(
Dave Chinner68988112013-08-12 20:49:42 +1000321 struct xfs_bmalloca *ap,
322 xfs_agnumber_t *agp)
David Chinner2a82b8b2007-07-11 11:09:12 +1000323{
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000324 struct xfs_inode *ip = ap->ip, *pip;
325 struct xfs_mount *mp = ip->i_mount;
326 xfs_extlen_t minlen = ap->length;
327 xfs_agnumber_t startag = 0;
Dave Chinner292378e2016-09-26 08:21:28 +1000328 int flags = 0;
329 int err = 0;
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000330 struct xfs_mru_cache_elem *mru;
David Chinner2a82b8b2007-07-11 11:09:12 +1000331
David Chinner2a82b8b2007-07-11 11:09:12 +1000332 *agp = NULLAGNUMBER;
333
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000334 pip = xfs_filestream_get_parent(ip);
335 if (!pip)
336 goto exit;
337
338 mru = xfs_mru_cache_remove(mp->m_filestream, pip->i_ino);
Christoph Hellwig22328d72014-04-23 07:11:51 +1000339 if (mru) {
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000340 struct xfs_fstrm_item *item =
341 container_of(mru, struct xfs_fstrm_item, mru);
342 startag = (item->ag + 1) % mp->m_sb.sb_agcount;
David Chinner2a82b8b2007-07-11 11:09:12 +1000343 }
344
Christoph Hellwigc34d5702019-10-30 12:25:00 -0700345 if (ap->datatype & XFS_ALLOC_USERDATA)
Dave Chinner292378e2016-09-26 08:21:28 +1000346 flags |= XFS_PICK_USERDATA;
Brian Foster1214f1c2018-08-01 07:20:31 -0700347 if (ap->tp->t_flags & XFS_TRANS_LOWMODE)
Dave Chinner292378e2016-09-26 08:21:28 +1000348 flags |= XFS_PICK_LOWSPACE;
David Chinner2a82b8b2007-07-11 11:09:12 +1000349
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000350 err = xfs_filestream_pick_ag(pip, startag, agp, flags, minlen);
David Chinner2a82b8b2007-07-11 11:09:12 +1000351
352 /*
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000353 * Only free the item here so we skip over the old AG earlier.
David Chinner2a82b8b2007-07-11 11:09:12 +1000354 */
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000355 if (mru)
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -0700356 xfs_fstrm_free_func(mp, mru);
David Chinner2a82b8b2007-07-11 11:09:12 +1000357
Darrick J. Wong44a87362018-07-25 12:52:32 -0700358 xfs_irele(pip);
David Chinner2a82b8b2007-07-11 11:09:12 +1000359exit:
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000360 if (*agp == NULLAGNUMBER)
David Chinner2a82b8b2007-07-11 11:09:12 +1000361 *agp = 0;
David Chinner2a82b8b2007-07-11 11:09:12 +1000362 return err;
363}
364
David Chinner2a82b8b2007-07-11 11:09:12 +1000365void
366xfs_filestream_deassociate(
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000367 struct xfs_inode *ip)
David Chinner2a82b8b2007-07-11 11:09:12 +1000368{
Christoph Hellwig22328d72014-04-23 07:11:51 +1000369 xfs_mru_cache_delete(ip->i_mount->m_filestream, ip->i_ino);
David Chinner2a82b8b2007-07-11 11:09:12 +1000370}
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000371
372int
373xfs_filestream_mount(
374 xfs_mount_t *mp)
375{
376 /*
377 * The filestream timer tunable is currently fixed within the range of
378 * one second to four minutes, with five seconds being the default. The
379 * group count is somewhat arbitrary, but it'd be nice to adhere to the
380 * timer tunable to within about 10 percent. This requires at least 10
381 * groups.
382 */
Christoph Hellwig7fcd3ef2018-04-09 10:23:39 -0700383 return xfs_mru_cache_create(&mp->m_filestream, mp,
384 xfs_fstrm_centisecs * 10, 10, xfs_fstrm_free_func);
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +1000385}
386
387void
388xfs_filestream_unmount(
389 xfs_mount_t *mp)
390{
391 xfs_mru_cache_destroy(mp->m_filestream);
392}