2 * Copyright (c) 2006-2007 Silicon Graphics, Inc.
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
7 * published by the Free Software Foundation.
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.
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
19 #include "xfs_bmap_btree.h"
22 #include "xfs_dir2_sf.h"
23 #include "xfs_attr_sf.h"
24 #include "xfs_dinode.h"
25 #include "xfs_inode.h"
27 #include "xfs_dmapi.h"
29 #include "xfs_trans.h"
31 #include "xfs_mount.h"
33 #include "xfs_alloc.h"
34 #include "xfs_utils.h"
35 #include "xfs_mru_cache.h"
36 #include "xfs_filestream.h"
38 #ifdef XFS_FILESTREAMS_TRACE
40 ktrace_t
*xfs_filestreams_trace_buf
;
43 xfs_filestreams_trace(
44 xfs_mount_t
*mp
, /* mount point */
45 int type
, /* type of trace */
46 const char *func
, /* source function */
47 int line
, /* source line number */
55 ktrace_enter(xfs_filestreams_trace_buf
,
56 (void *)(__psint_t
)(type
| (line
<< 16)),
58 (void *)(__psunsigned_t
)current_pid(),
60 (void *)(__psunsigned_t
)arg0
,
61 (void *)(__psunsigned_t
)arg1
,
62 (void *)(__psunsigned_t
)arg2
,
63 (void *)(__psunsigned_t
)arg3
,
64 (void *)(__psunsigned_t
)arg4
,
65 (void *)(__psunsigned_t
)arg5
,
66 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
);
69 #define TRACE0(mp,t) TRACE6(mp,t,0,0,0,0,0,0)
70 #define TRACE1(mp,t,a0) TRACE6(mp,t,a0,0,0,0,0,0)
71 #define TRACE2(mp,t,a0,a1) TRACE6(mp,t,a0,a1,0,0,0,0)
72 #define TRACE3(mp,t,a0,a1,a2) TRACE6(mp,t,a0,a1,a2,0,0,0)
73 #define TRACE4(mp,t,a0,a1,a2,a3) TRACE6(mp,t,a0,a1,a2,a3,0,0)
74 #define TRACE5(mp,t,a0,a1,a2,a3,a4) TRACE6(mp,t,a0,a1,a2,a3,a4,0)
75 #define TRACE6(mp,t,a0,a1,a2,a3,a4,a5) \
76 xfs_filestreams_trace(mp, t, __func__, __LINE__, \
77 (__psunsigned_t)a0, (__psunsigned_t)a1, \
78 (__psunsigned_t)a2, (__psunsigned_t)a3, \
79 (__psunsigned_t)a4, (__psunsigned_t)a5)
81 #define TRACE_AG_SCAN(mp, ag, ag2) \
82 TRACE2(mp, XFS_FSTRM_KTRACE_AGSCAN, ag, ag2);
83 #define TRACE_AG_PICK1(mp, max_ag, maxfree) \
84 TRACE2(mp, XFS_FSTRM_KTRACE_AGPICK1, max_ag, maxfree);
85 #define TRACE_AG_PICK2(mp, ag, ag2, cnt, free, scan, flag) \
86 TRACE6(mp, XFS_FSTRM_KTRACE_AGPICK2, ag, ag2, \
87 cnt, free, scan, flag)
88 #define TRACE_UPDATE(mp, ip, ag, cnt, ag2, cnt2) \
89 TRACE5(mp, XFS_FSTRM_KTRACE_UPDATE, ip, ag, cnt, ag2, cnt2)
90 #define TRACE_FREE(mp, ip, pip, ag, cnt) \
91 TRACE4(mp, XFS_FSTRM_KTRACE_FREE, ip, pip, ag, cnt)
92 #define TRACE_LOOKUP(mp, ip, pip, ag, cnt) \
93 TRACE4(mp, XFS_FSTRM_KTRACE_ITEM_LOOKUP, ip, pip, ag, cnt)
94 #define TRACE_ASSOCIATE(mp, ip, pip, ag, cnt) \
95 TRACE4(mp, XFS_FSTRM_KTRACE_ASSOCIATE, ip, pip, ag, cnt)
96 #define TRACE_MOVEAG(mp, ip, pip, oag, ocnt, nag, ncnt) \
97 TRACE6(mp, XFS_FSTRM_KTRACE_MOVEAG, ip, pip, oag, ocnt, nag, ncnt)
98 #define TRACE_ORPHAN(mp, ip, ag) \
99 TRACE2(mp, XFS_FSTRM_KTRACE_ORPHAN, ip, ag);
103 #define TRACE_AG_SCAN(mp, ag, ag2)
104 #define TRACE_AG_PICK1(mp, max_ag, maxfree)
105 #define TRACE_AG_PICK2(mp, ag, ag2, cnt, free, scan, flag)
106 #define TRACE_UPDATE(mp, ip, ag, cnt, ag2, cnt2)
107 #define TRACE_FREE(mp, ip, pip, ag, cnt)
108 #define TRACE_LOOKUP(mp, ip, pip, ag, cnt)
109 #define TRACE_ASSOCIATE(mp, ip, pip, ag, cnt)
110 #define TRACE_MOVEAG(mp, ip, pip, oag, ocnt, nag, ncnt)
111 #define TRACE_ORPHAN(mp, ip, ag)
114 static kmem_zone_t
*item_zone
;
117 * Structure for associating a file or a directory with an allocation group.
118 * The parent directory pointer is only needed for files, but since there will
119 * generally be vastly more files than directories in the cache, using the same
120 * data structure simplifies the code with very little memory overhead.
122 typedef struct fstrm_item
124 xfs_agnumber_t ag
; /* AG currently in use for the file/directory. */
125 xfs_inode_t
*ip
; /* inode self-pointer. */
126 xfs_inode_t
*pip
; /* Parent directory inode pointer. */
131 * Scan the AGs starting at startag looking for an AG that isn't in use and has
132 * at least minlen blocks free.
135 _xfs_filestream_pick_ag(
137 xfs_agnumber_t startag
,
142 int err
, trylock
, nscan
;
143 xfs_extlen_t delta
, longest
, need
, free
, minfree
, maxfree
= 0;
144 xfs_agnumber_t ag
, max_ag
= NULLAGNUMBER
;
145 struct xfs_perag
*pag
;
147 /* 2% of an AG's blocks must be free for it to be chosen. */
148 minfree
= mp
->m_sb
.sb_agblocks
/ 50;
153 /* For the first pass, don't sleep trying to init the per-AG. */
154 trylock
= XFS_ALLOC_FLAG_TRYLOCK
;
156 for (nscan
= 0; 1; nscan
++) {
158 TRACE_AG_SCAN(mp
, ag
, xfs_filestream_peek_ag(mp
, ag
));
160 pag
= mp
->m_perag
+ ag
;
162 if (!pag
->pagf_init
) {
163 err
= xfs_alloc_pagf_init(mp
, NULL
, ag
, trylock
);
168 /* Might fail sometimes during the 1st pass with trylock set. */
172 /* Keep track of the AG with the most free blocks. */
173 if (pag
->pagf_freeblks
> maxfree
) {
174 maxfree
= pag
->pagf_freeblks
;
179 * The AG reference count does two things: it enforces mutual
180 * exclusion when examining the suitability of an AG in this
181 * loop, and it guards against two filestreams being established
182 * in the same AG as each other.
184 if (xfs_filestream_get_ag(mp
, ag
) > 1) {
185 xfs_filestream_put_ag(mp
, ag
);
189 need
= XFS_MIN_FREELIST_PAG(pag
, mp
);
190 delta
= need
> pag
->pagf_flcount
? need
- pag
->pagf_flcount
: 0;
191 longest
= (pag
->pagf_longest
> delta
) ?
192 (pag
->pagf_longest
- delta
) :
193 (pag
->pagf_flcount
> 0 || pag
->pagf_longest
> 0);
195 if (((minlen
&& longest
>= minlen
) ||
196 (!minlen
&& pag
->pagf_freeblks
>= minfree
)) &&
197 (!pag
->pagf_metadata
|| !(flags
& XFS_PICK_USERDATA
) ||
198 (flags
& XFS_PICK_LOWSPACE
))) {
200 /* Break out, retaining the reference on the AG. */
201 free
= pag
->pagf_freeblks
;
206 /* Drop the reference on this AG, it's not usable. */
207 xfs_filestream_put_ag(mp
, ag
);
209 /* Move to the next AG, wrapping to AG 0 if necessary. */
210 if (++ag
>= mp
->m_sb
.sb_agcount
)
213 /* If a full pass of the AGs hasn't been done yet, continue. */
217 /* Allow sleeping in xfs_alloc_pagf_init() on the 2nd pass. */
223 /* Finally, if lowspace wasn't set, set it for the 3rd pass. */
224 if (!(flags
& XFS_PICK_LOWSPACE
)) {
225 flags
|= XFS_PICK_LOWSPACE
;
230 * Take the AG with the most free space, regardless of whether
231 * it's already in use by another filestream.
233 if (max_ag
!= NULLAGNUMBER
) {
234 xfs_filestream_get_ag(mp
, max_ag
);
235 TRACE_AG_PICK1(mp
, max_ag
, maxfree
);
241 /* take AG 0 if none matched */
242 TRACE_AG_PICK1(mp
, max_ag
, maxfree
);
247 TRACE_AG_PICK2(mp
, startag
, *agp
, xfs_filestream_peek_ag(mp
, *agp
),
254 * Set the allocation group number for a file or a directory, updating inode
255 * references and per-AG references as appropriate. Must be called with the
256 * m_peraglock held in read mode.
259 _xfs_filestream_update_ag(
266 xfs_mru_cache_t
*cache
;
268 xfs_agnumber_t old_ag
;
269 xfs_inode_t
*old_pip
;
272 * Either ip is a regular file and pip is a directory, or ip is a
273 * directory and pip is NULL.
275 ASSERT(ip
&& (((ip
->i_d
.di_mode
& S_IFREG
) && pip
&&
276 (pip
->i_d
.di_mode
& S_IFDIR
)) ||
277 ((ip
->i_d
.di_mode
& S_IFDIR
) && !pip
)));
280 cache
= mp
->m_filestream
;
282 item
= xfs_mru_cache_lookup(cache
, ip
->i_ino
);
284 ASSERT(item
->ip
== ip
);
289 xfs_mru_cache_done(cache
);
292 * If the AG has changed, drop the old ref and take a new one,
293 * effectively transferring the reference from old to new AG.
296 xfs_filestream_put_ag(mp
, old_ag
);
297 xfs_filestream_get_ag(mp
, ag
);
301 * If ip is a file and its pip has changed, drop the old ref and
304 if (pip
&& pip
!= old_pip
) {
309 TRACE_UPDATE(mp
, ip
, old_ag
, xfs_filestream_peek_ag(mp
, old_ag
),
310 ag
, xfs_filestream_peek_ag(mp
, ag
));
314 item
= kmem_zone_zalloc(item_zone
, KM_MAYFAIL
);
322 err
= xfs_mru_cache_insert(cache
, ip
->i_ino
, item
);
324 kmem_zone_free(item_zone
, item
);
328 /* Take a reference on the AG. */
329 xfs_filestream_get_ag(mp
, ag
);
332 * Take a reference on the inode itself regardless of whether it's a
333 * regular file or a directory.
338 * In the case of a regular file, take a reference on the parent inode
339 * as well to ensure it remains in-core.
344 TRACE_UPDATE(mp
, ip
, ag
, xfs_filestream_peek_ag(mp
, ag
),
345 ag
, xfs_filestream_peek_ag(mp
, ag
));
350 /* xfs_fstrm_free_func(): callback for freeing cached stream items. */
356 fstrm_item_t
*item
= (fstrm_item_t
*)data
;
357 xfs_inode_t
*ip
= item
->ip
;
360 ASSERT(ip
->i_ino
== ino
);
362 xfs_iflags_clear(ip
, XFS_IFILESTREAM
);
364 /* Drop the reference taken on the AG when the item was added. */
365 ref
= xfs_filestream_put_ag(ip
->i_mount
, item
->ag
);
368 TRACE_FREE(ip
->i_mount
, ip
, item
->pip
, item
->ag
,
369 xfs_filestream_peek_ag(ip
->i_mount
, item
->ag
));
372 * _xfs_filestream_update_ag() always takes a reference on the inode
373 * itself, whether it's a file or a directory. Release it here.
374 * This can result in the inode being freed and so we must
375 * not hold any inode locks when freeing filesstreams objects
376 * otherwise we can deadlock here.
381 * In the case of a regular file, _xfs_filestream_update_ag() also
382 * takes a ref on the parent inode to keep it in-core. Release that
388 /* Finally, free the memory allocated for the item. */
389 kmem_zone_free(item_zone
, item
);
393 * xfs_filestream_init() is called at xfs initialisation time to set up the
394 * memory zone that will be used for filestream data structure allocation.
397 xfs_filestream_init(void)
399 item_zone
= kmem_zone_init(sizeof(fstrm_item_t
), "fstrm_item");
402 #ifdef XFS_FILESTREAMS_TRACE
403 xfs_filestreams_trace_buf
= ktrace_alloc(XFS_FSTRM_KTRACE_SIZE
, KM_NOFS
);
409 * xfs_filestream_uninit() is called at xfs termination time to destroy the
410 * memory zone that was used for filestream data structure allocation.
413 xfs_filestream_uninit(void)
415 #ifdef XFS_FILESTREAMS_TRACE
416 ktrace_free(xfs_filestreams_trace_buf
);
418 kmem_zone_destroy(item_zone
);
422 * xfs_filestream_mount() is called when a file system is mounted with the
423 * filestream option. It is responsible for allocating the data structures
424 * needed to track the new file system's file streams.
427 xfs_filestream_mount(
431 unsigned int lifetime
, grp_count
;
434 * The filestream timer tunable is currently fixed within the range of
435 * one second to four minutes, with five seconds being the default. The
436 * group count is somewhat arbitrary, but it'd be nice to adhere to the
437 * timer tunable to within about 10 percent. This requires at least 10
440 lifetime
= xfs_fstrm_centisecs
* 10;
443 err
= xfs_mru_cache_create(&mp
->m_filestream
, lifetime
, grp_count
,
444 xfs_fstrm_free_func
);
450 * xfs_filestream_unmount() is called when a file system that was mounted with
451 * the filestream option is unmounted. It drains the data structures created
452 * to track the file system's file streams and frees all the memory that was
456 xfs_filestream_unmount(
459 xfs_mru_cache_destroy(mp
->m_filestream
);
463 * If the mount point's m_perag array is going to be reallocated, all
464 * outstanding cache entries must be flushed to avoid accessing reference count
465 * addresses that have been freed. The call to xfs_filestream_flush() must be
466 * made inside the block that holds the m_peraglock in write mode to do the
470 xfs_filestream_flush(
473 xfs_mru_cache_flush(mp
->m_filestream
);
477 * Return the AG of the filestream the file or directory belongs to, or
478 * NULLAGNUMBER otherwise.
481 xfs_filestream_lookup_ag(
484 xfs_mru_cache_t
*cache
;
489 if (!(ip
->i_d
.di_mode
& (S_IFREG
| S_IFDIR
))) {
494 cache
= ip
->i_mount
->m_filestream
;
495 item
= xfs_mru_cache_lookup(cache
, ip
->i_ino
);
497 TRACE_LOOKUP(ip
->i_mount
, ip
, NULL
, NULLAGNUMBER
, 0);
501 ASSERT(ip
== item
->ip
);
503 ref
= xfs_filestream_peek_ag(ip
->i_mount
, ag
);
504 xfs_mru_cache_done(cache
);
506 TRACE_LOOKUP(ip
->i_mount
, ip
, item
->pip
, ag
, ref
);
511 * xfs_filestream_associate() should only be called to associate a regular file
512 * with its parent directory. Calling it with a child directory isn't
513 * appropriate because filestreams don't apply to entire directory hierarchies.
514 * Creating a file in a child directory of an existing filestream directory
515 * starts a new filestream with its own allocation group association.
517 * Returns < 0 on error, 0 if successful association occurred, > 0 if
518 * we failed to get an association because of locking issues.
521 xfs_filestream_associate(
526 xfs_mru_cache_t
*cache
;
528 xfs_agnumber_t ag
, rotorstep
, startag
;
531 ASSERT(pip
->i_d
.di_mode
& S_IFDIR
);
532 ASSERT(ip
->i_d
.di_mode
& S_IFREG
);
533 if (!(pip
->i_d
.di_mode
& S_IFDIR
) || !(ip
->i_d
.di_mode
& S_IFREG
))
537 cache
= mp
->m_filestream
;
538 down_read(&mp
->m_peraglock
);
541 * We have a problem, Houston.
543 * Taking the iolock here violates inode locking order - we already
544 * hold the ilock. Hence if we block getting this lock we may never
545 * wake. Unfortunately, that means if we can't get the lock, we're
546 * screwed in terms of getting a stream association - we can't spin
547 * waiting for the lock because someone else is waiting on the lock we
548 * hold and we cannot drop that as we are in a transaction here.
550 * Lucky for us, this inversion is rarely a problem because it's a
551 * directory inode that we are trying to lock here and that means the
552 * only place that matters is xfs_sync_inodes() and SYNC_DELWRI is
553 * used. i.e. freeze, remount-ro, quotasync or unmount.
555 * So, if we can't get the iolock without sleeping then just give up
557 if (!xfs_ilock_nowait(pip
, XFS_IOLOCK_EXCL
)) {
558 up_read(&mp
->m_peraglock
);
562 /* If the parent directory is already in the cache, use its AG. */
563 item
= xfs_mru_cache_lookup(cache
, pip
->i_ino
);
565 ASSERT(item
->ip
== pip
);
567 xfs_mru_cache_done(cache
);
569 TRACE_LOOKUP(mp
, pip
, pip
, ag
, xfs_filestream_peek_ag(mp
, ag
));
570 err
= _xfs_filestream_update_ag(ip
, pip
, ag
);
576 * Set the starting AG using the rotor for inode32, otherwise
577 * use the directory inode's AG.
579 if (mp
->m_flags
& XFS_MOUNT_32BITINODES
) {
580 rotorstep
= xfs_rotorstep
;
581 startag
= (mp
->m_agfrotor
/ rotorstep
) % mp
->m_sb
.sb_agcount
;
582 mp
->m_agfrotor
= (mp
->m_agfrotor
+ 1) %
583 (mp
->m_sb
.sb_agcount
* rotorstep
);
585 startag
= XFS_INO_TO_AGNO(mp
, pip
->i_ino
);
587 /* Pick a new AG for the parent inode starting at startag. */
588 err
= _xfs_filestream_pick_ag(mp
, startag
, &ag
, 0, 0);
589 if (err
|| ag
== NULLAGNUMBER
)
592 /* Associate the parent inode with the AG. */
593 err
= _xfs_filestream_update_ag(pip
, NULL
, ag
);
597 /* Associate the file inode with the AG. */
598 err
= _xfs_filestream_update_ag(ip
, pip
, ag
);
602 TRACE_ASSOCIATE(mp
, ip
, pip
, ag
, xfs_filestream_peek_ag(mp
, ag
));
606 * If _xfs_filestream_pick_ag() returned a valid AG, remove the
607 * reference it took on it, since the file and directory will have taken
608 * their own now if they were successfully cached.
610 if (ag
!= NULLAGNUMBER
)
611 xfs_filestream_put_ag(mp
, ag
);
614 xfs_iunlock(pip
, XFS_IOLOCK_EXCL
);
615 up_read(&mp
->m_peraglock
);
620 * Pick a new allocation group for the current file and its file stream. This
621 * function is called by xfs_bmap_filestreams() with the mount point's per-ag
625 xfs_filestream_new_ag(
630 xfs_inode_t
*ip
, *pip
= NULL
;
632 xfs_mru_cache_t
*cache
;
634 fstrm_item_t
*dir
, *file
;
635 xfs_agnumber_t ag
= NULLAGNUMBER
;
639 cache
= mp
->m_filestream
;
644 * Look for the file in the cache, removing it if it's found. Doing
645 * this allows it to be held across the dir lookup that follows.
647 file
= xfs_mru_cache_remove(cache
, ip
->i_ino
);
649 ASSERT(ip
== file
->ip
);
651 /* Save the file's parent inode and old AG number for later. */
655 /* Look for the file's directory in the cache. */
656 dir
= xfs_mru_cache_lookup(cache
, pip
->i_ino
);
658 ASSERT(pip
== dir
->ip
);
661 * If the directory has already moved on to a new AG,
662 * use that AG as the new AG for the file. Don't
663 * forget to twiddle the AG refcounts to match the
666 if (dir
->ag
!= file
->ag
) {
667 xfs_filestream_put_ag(mp
, file
->ag
);
668 xfs_filestream_get_ag(mp
, dir
->ag
);
669 *agp
= file
->ag
= dir
->ag
;
672 xfs_mru_cache_done(cache
);
676 * Put the file back in the cache. If this fails, the free
677 * function needs to be called to tidy up in the same way as if
678 * the item had simply expired from the cache.
680 err
= xfs_mru_cache_insert(cache
, ip
->i_ino
, file
);
682 xfs_fstrm_free_func(ip
->i_ino
, file
);
687 * If the file's AG was moved to the directory's new AG, there's
688 * nothing more to be done.
690 if (*agp
!= NULLAGNUMBER
) {
691 TRACE_MOVEAG(mp
, ip
, pip
,
692 ag
, xfs_filestream_peek_ag(mp
, ag
),
693 *agp
, xfs_filestream_peek_ag(mp
, *agp
));
699 * If the file's parent directory is known, take its iolock in exclusive
700 * mode to prevent two sibling files from racing each other to migrate
701 * themselves and their parent to different AGs.
704 xfs_ilock(pip
, XFS_IOLOCK_EXCL
);
707 * A new AG needs to be found for the file. If the file's parent
708 * directory is also known, it will be moved to the new AG as well to
709 * ensure that files created inside it in future use the new AG.
711 ag
= (ag
== NULLAGNUMBER
) ? 0 : (ag
+ 1) % mp
->m_sb
.sb_agcount
;
712 flags
= (ap
->userdata
? XFS_PICK_USERDATA
: 0) |
713 (ap
->low
? XFS_PICK_LOWSPACE
: 0);
715 err
= _xfs_filestream_pick_ag(mp
, ag
, agp
, flags
, minlen
);
716 if (err
|| *agp
== NULLAGNUMBER
)
720 * If the file wasn't found in the file cache, then its parent directory
721 * inode isn't known. For this to have happened, the file must either
722 * be pre-existing, or it was created long enough ago that its cache
723 * entry has expired. This isn't the sort of usage that the filestreams
724 * allocator is trying to optimise, so there's no point trying to track
725 * its new AG somehow in the filestream data structures.
728 TRACE_ORPHAN(mp
, ip
, *agp
);
732 /* Associate the parent inode with the AG. */
733 err
= _xfs_filestream_update_ag(pip
, NULL
, *agp
);
737 /* Associate the file inode with the AG. */
738 err
= _xfs_filestream_update_ag(ip
, pip
, *agp
);
742 TRACE_MOVEAG(mp
, ip
, pip
, NULLAGNUMBER
, 0,
743 *agp
, xfs_filestream_peek_ag(mp
, *agp
));
747 * If _xfs_filestream_pick_ag() returned a valid AG, remove the
748 * reference it took on it, since the file and directory will have taken
749 * their own now if they were successfully cached.
751 if (*agp
!= NULLAGNUMBER
)
752 xfs_filestream_put_ag(mp
, *agp
);
757 xfs_iunlock(pip
, XFS_IOLOCK_EXCL
);
763 * Remove an association between an inode and a filestream object.
764 * Typically this is done on last close of an unlinked file.
767 xfs_filestream_deassociate(
770 xfs_mru_cache_t
*cache
= ip
->i_mount
->m_filestream
;
772 xfs_mru_cache_delete(cache
, ip
->i_ino
);