xref: /linux/fs/ntfs/lcnalloc.h (revision 1e9ea7e04472d4e5e12e58c881eaacfb3e49b669)
1*1e9ea7e0SNamjae Jeon /* SPDX-License-Identifier: GPL-2.0-or-later */
2*1e9ea7e0SNamjae Jeon /*
3*1e9ea7e0SNamjae Jeon  * lcnalloc.h - Exports for NTFS kernel cluster (de)allocation.  Part of the
4*1e9ea7e0SNamjae Jeon  *		Linux-NTFS project.
5*1e9ea7e0SNamjae Jeon  *
6*1e9ea7e0SNamjae Jeon  * Copyright (c) 2004-2005 Anton Altaparmakov
7*1e9ea7e0SNamjae Jeon  */
8*1e9ea7e0SNamjae Jeon 
9*1e9ea7e0SNamjae Jeon #ifndef _LINUX_NTFS_LCNALLOC_H
10*1e9ea7e0SNamjae Jeon #define _LINUX_NTFS_LCNALLOC_H
11*1e9ea7e0SNamjae Jeon 
12*1e9ea7e0SNamjae Jeon #ifdef NTFS_RW
13*1e9ea7e0SNamjae Jeon 
14*1e9ea7e0SNamjae Jeon #include <linux/fs.h>
15*1e9ea7e0SNamjae Jeon 
16*1e9ea7e0SNamjae Jeon #include "attrib.h"
17*1e9ea7e0SNamjae Jeon #include "types.h"
18*1e9ea7e0SNamjae Jeon #include "inode.h"
19*1e9ea7e0SNamjae Jeon #include "runlist.h"
20*1e9ea7e0SNamjae Jeon #include "volume.h"
21*1e9ea7e0SNamjae Jeon 
22*1e9ea7e0SNamjae Jeon typedef enum {
23*1e9ea7e0SNamjae Jeon 	FIRST_ZONE	= 0,	/* For sanity checking. */
24*1e9ea7e0SNamjae Jeon 	MFT_ZONE	= 0,	/* Allocate from $MFT zone. */
25*1e9ea7e0SNamjae Jeon 	DATA_ZONE	= 1,	/* Allocate from $DATA zone. */
26*1e9ea7e0SNamjae Jeon 	LAST_ZONE	= 1,	/* For sanity checking. */
27*1e9ea7e0SNamjae Jeon } NTFS_CLUSTER_ALLOCATION_ZONES;
28*1e9ea7e0SNamjae Jeon 
29*1e9ea7e0SNamjae Jeon extern runlist_element *ntfs_cluster_alloc(ntfs_volume *vol,
30*1e9ea7e0SNamjae Jeon 		const VCN start_vcn, const s64 count, const LCN start_lcn,
31*1e9ea7e0SNamjae Jeon 		const NTFS_CLUSTER_ALLOCATION_ZONES zone,
32*1e9ea7e0SNamjae Jeon 		const bool is_extension);
33*1e9ea7e0SNamjae Jeon 
34*1e9ea7e0SNamjae Jeon extern s64 __ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn,
35*1e9ea7e0SNamjae Jeon 		s64 count, ntfs_attr_search_ctx *ctx, const bool is_rollback);
36*1e9ea7e0SNamjae Jeon 
37*1e9ea7e0SNamjae Jeon /**
38*1e9ea7e0SNamjae Jeon  * ntfs_cluster_free - free clusters on an ntfs volume
39*1e9ea7e0SNamjae Jeon  * @ni:		ntfs inode whose runlist describes the clusters to free
40*1e9ea7e0SNamjae Jeon  * @start_vcn:	vcn in the runlist of @ni at which to start freeing clusters
41*1e9ea7e0SNamjae Jeon  * @count:	number of clusters to free or -1 for all clusters
42*1e9ea7e0SNamjae Jeon  * @ctx:	active attribute search context if present or NULL if not
43*1e9ea7e0SNamjae Jeon  *
44*1e9ea7e0SNamjae Jeon  * Free @count clusters starting at the cluster @start_vcn in the runlist
45*1e9ea7e0SNamjae Jeon  * described by the ntfs inode @ni.
46*1e9ea7e0SNamjae Jeon  *
47*1e9ea7e0SNamjae Jeon  * If @count is -1, all clusters from @start_vcn to the end of the runlist are
48*1e9ea7e0SNamjae Jeon  * deallocated.  Thus, to completely free all clusters in a runlist, use
49*1e9ea7e0SNamjae Jeon  * @start_vcn = 0 and @count = -1.
50*1e9ea7e0SNamjae Jeon  *
51*1e9ea7e0SNamjae Jeon  * If @ctx is specified, it is an active search context of @ni and its base mft
52*1e9ea7e0SNamjae Jeon  * record.  This is needed when ntfs_cluster_free() encounters unmapped runlist
53*1e9ea7e0SNamjae Jeon  * fragments and allows their mapping.  If you do not have the mft record
54*1e9ea7e0SNamjae Jeon  * mapped, you can specify @ctx as NULL and ntfs_cluster_free() will perform
55*1e9ea7e0SNamjae Jeon  * the necessary mapping and unmapping.
56*1e9ea7e0SNamjae Jeon  *
57*1e9ea7e0SNamjae Jeon  * Note, ntfs_cluster_free() saves the state of @ctx on entry and restores it
58*1e9ea7e0SNamjae Jeon  * before returning.  Thus, @ctx will be left pointing to the same attribute on
59*1e9ea7e0SNamjae Jeon  * return as on entry.  However, the actual pointers in @ctx may point to
60*1e9ea7e0SNamjae Jeon  * different memory locations on return, so you must remember to reset any
61*1e9ea7e0SNamjae Jeon  * cached pointers from the @ctx, i.e. after the call to ntfs_cluster_free(),
62*1e9ea7e0SNamjae Jeon  * you will probably want to do:
63*1e9ea7e0SNamjae Jeon  *	m = ctx->mrec;
64*1e9ea7e0SNamjae Jeon  *	a = ctx->attr;
65*1e9ea7e0SNamjae Jeon  * Assuming you cache ctx->attr in a variable @a of type ATTR_RECORD * and that
66*1e9ea7e0SNamjae Jeon  * you cache ctx->mrec in a variable @m of type MFT_RECORD *.
67*1e9ea7e0SNamjae Jeon  *
68*1e9ea7e0SNamjae Jeon  * Note, ntfs_cluster_free() does not modify the runlist, so you have to remove
69*1e9ea7e0SNamjae Jeon  * from the runlist or mark sparse the freed runs later.
70*1e9ea7e0SNamjae Jeon  *
71*1e9ea7e0SNamjae Jeon  * Return the number of deallocated clusters (not counting sparse ones) on
72*1e9ea7e0SNamjae Jeon  * success and -errno on error.
73*1e9ea7e0SNamjae Jeon  *
74*1e9ea7e0SNamjae Jeon  * WARNING: If @ctx is supplied, regardless of whether success or failure is
75*1e9ea7e0SNamjae Jeon  *	    returned, you need to check IS_ERR(@ctx->mrec) and if 'true' the @ctx
76*1e9ea7e0SNamjae Jeon  *	    is no longer valid, i.e. you need to either call
77*1e9ea7e0SNamjae Jeon  *	    ntfs_attr_reinit_search_ctx() or ntfs_attr_put_search_ctx() on it.
78*1e9ea7e0SNamjae Jeon  *	    In that case PTR_ERR(@ctx->mrec) will give you the error code for
79*1e9ea7e0SNamjae Jeon  *	    why the mapping of the old inode failed.
80*1e9ea7e0SNamjae Jeon  *
81*1e9ea7e0SNamjae Jeon  * Locking: - The runlist described by @ni must be locked for writing on entry
82*1e9ea7e0SNamjae Jeon  *	      and is locked on return.  Note the runlist may be modified when
83*1e9ea7e0SNamjae Jeon  *	      needed runlist fragments need to be mapped.
84*1e9ea7e0SNamjae Jeon  *	    - The volume lcn bitmap must be unlocked on entry and is unlocked
85*1e9ea7e0SNamjae Jeon  *	      on return.
86*1e9ea7e0SNamjae Jeon  *	    - This function takes the volume lcn bitmap lock for writing and
87*1e9ea7e0SNamjae Jeon  *	      modifies the bitmap contents.
88*1e9ea7e0SNamjae Jeon  *	    - If @ctx is NULL, the base mft record of @ni must not be mapped on
89*1e9ea7e0SNamjae Jeon  *	      entry and it will be left unmapped on return.
90*1e9ea7e0SNamjae Jeon  *	    - If @ctx is not NULL, the base mft record must be mapped on entry
91*1e9ea7e0SNamjae Jeon  *	      and it will be left mapped on return.
92*1e9ea7e0SNamjae Jeon  */
93*1e9ea7e0SNamjae Jeon static inline s64 ntfs_cluster_free(ntfs_inode *ni, const VCN start_vcn,
94*1e9ea7e0SNamjae Jeon 		s64 count, ntfs_attr_search_ctx *ctx)
95*1e9ea7e0SNamjae Jeon {
96*1e9ea7e0SNamjae Jeon 	return __ntfs_cluster_free(ni, start_vcn, count, ctx, false);
97*1e9ea7e0SNamjae Jeon }
98*1e9ea7e0SNamjae Jeon 
99*1e9ea7e0SNamjae Jeon extern int ntfs_cluster_free_from_rl_nolock(ntfs_volume *vol,
100*1e9ea7e0SNamjae Jeon 		const runlist_element *rl);
101*1e9ea7e0SNamjae Jeon 
102*1e9ea7e0SNamjae Jeon /**
103*1e9ea7e0SNamjae Jeon  * ntfs_cluster_free_from_rl - free clusters from runlist
104*1e9ea7e0SNamjae Jeon  * @vol:	mounted ntfs volume on which to free the clusters
105*1e9ea7e0SNamjae Jeon  * @rl:		runlist describing the clusters to free
106*1e9ea7e0SNamjae Jeon  *
107*1e9ea7e0SNamjae Jeon  * Free all the clusters described by the runlist @rl on the volume @vol.  In
108*1e9ea7e0SNamjae Jeon  * the case of an error being returned, at least some of the clusters were not
109*1e9ea7e0SNamjae Jeon  * freed.
110*1e9ea7e0SNamjae Jeon  *
111*1e9ea7e0SNamjae Jeon  * Return 0 on success and -errno on error.
112*1e9ea7e0SNamjae Jeon  *
113*1e9ea7e0SNamjae Jeon  * Locking: - This function takes the volume lcn bitmap lock for writing and
114*1e9ea7e0SNamjae Jeon  *	      modifies the bitmap contents.
115*1e9ea7e0SNamjae Jeon  *	    - The caller must have locked the runlist @rl for reading or
116*1e9ea7e0SNamjae Jeon  *	      writing.
117*1e9ea7e0SNamjae Jeon  */
118*1e9ea7e0SNamjae Jeon static inline int ntfs_cluster_free_from_rl(ntfs_volume *vol,
119*1e9ea7e0SNamjae Jeon 		const runlist_element *rl)
120*1e9ea7e0SNamjae Jeon {
121*1e9ea7e0SNamjae Jeon 	int ret;
122*1e9ea7e0SNamjae Jeon 
123*1e9ea7e0SNamjae Jeon 	down_write(&vol->lcnbmp_lock);
124*1e9ea7e0SNamjae Jeon 	ret = ntfs_cluster_free_from_rl_nolock(vol, rl);
125*1e9ea7e0SNamjae Jeon 	up_write(&vol->lcnbmp_lock);
126*1e9ea7e0SNamjae Jeon 	return ret;
127*1e9ea7e0SNamjae Jeon }
128*1e9ea7e0SNamjae Jeon 
129*1e9ea7e0SNamjae Jeon #endif /* NTFS_RW */
130*1e9ea7e0SNamjae Jeon 
131*1e9ea7e0SNamjae Jeon #endif /* defined _LINUX_NTFS_LCNALLOC_H */
132