source: mainline/uspace/srv/fs/mfs/mfs.h@ eb40d86

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since eb40d86 was 1eaa3cf, checked in by Maurizio Lombardi <m.lombardi85@…>, 12 years ago

mfs: cache the number of free zones to speed up subsequent requests (do not scan the whole bitmap every time statfs() is invoked).

  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*
2 * Copyright (c) 2011 Maurizio Lombardi
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup fs
30 * @{
31 */
32
33#ifndef _MFS_H_
34#define _MFS_H_
35
36#include <minix.h>
37#include <macros.h>
38#include <block.h>
39#include <libfs.h>
40#include <adt/list.h>
41#include <malloc.h>
42#include <mem.h>
43#include <stdio.h>
44#include <errno.h>
45#include <assert.h>
46#include <stdbool.h>
47#include "../../vfs/vfs.h"
48
49#define NAME "mfs"
50
51/* #define DEBUG_MODE */
52
53#define min(a, b) ((a) < (b) ? (a) : (b))
54
55#ifdef DEBUG_MODE
56#define mfsdebug(...) printf(__VA_ARGS__)
57#else
58#define mfsdebug(...)
59#endif
60
61#define MFS_BMAP_START_BLOCK(sbi, bid) \
62 ((bid) == BMAP_ZONE ? 2 + (sbi)->ibmap_blocks : 2)
63
64#define MFS_BMAP_SIZE_BITS(sbi, bid) \
65 ((bid) == BMAP_ZONE ? (sbi)->nzones - (sbi)->firstdatazone - 1 : \
66 (sbi)->ninodes - 1)
67
68#define MFS_BMAP_SIZE_BLOCKS(sbi, bid) \
69 ((bid) == BMAP_ZONE ? (sbi)->zbmap_blocks : (sbi)->ibmap_blocks)
70
71typedef uint32_t bitchunk_t;
72
73typedef enum {
74 BMAP_ZONE,
75 BMAP_INODE
76} bmap_id_t;
77
78typedef enum {
79 MFS_VERSION_V1 = 1,
80 MFS_VERSION_V2,
81 MFS_VERSION_V3
82} mfs_version_t;
83
84/* Generic MinixFS superblock */
85struct mfs_sb_info {
86 uint32_t ninodes;
87 uint32_t nzones;
88 unsigned long ibmap_blocks;
89 unsigned long zbmap_blocks;
90 unsigned long firstdatazone;
91 int log2_zone_size;
92 int block_size;
93 uint32_t max_file_size;
94 uint16_t magic;
95 uint16_t state;
96
97 /* The following fields do not exist on disk but only in memory */
98 unsigned long itable_size;
99 mfs_version_t fs_version;
100 int ino_per_block;
101 size_t dirsize;
102 int itable_off;
103 unsigned max_name_len;
104 bool long_names;
105 bool native;
106 unsigned isearch;
107 unsigned zsearch;
108
109 bool nfree_zones_valid;
110 unsigned nfree_zones;
111};
112
113/* Generic MinixFS inode */
114struct mfs_ino_info {
115 uint16_t i_mode;
116 uint16_t i_nlinks;
117 int16_t i_uid;
118 uint16_t i_gid;
119 size_t i_size;
120 int32_t i_atime;
121 int32_t i_mtime;
122 int32_t i_ctime;
123 /* Block numbers for direct zones */
124 uint32_t i_dzone[V2_NR_DIRECT_ZONES];
125 /* Block numbers for indirect zones */
126 uint32_t i_izone[V2_NR_INDIRECT_ZONES];
127
128 /* The following fields do not exist on disk but only in memory */
129 bool dirty;
130 fs_index_t index;
131};
132
133/* Generic MFS directory entry */
134struct mfs_dentry_info {
135 uint32_t d_inum;
136 char d_name[MFS3_MAX_NAME_LEN + 1];
137
138 /* The following fields do not exist on disk but only in memory */
139
140 /* Index of the dentry in the list */
141 unsigned index;
142 /* Pointer to the node at witch the dentry belongs */
143 struct mfs_node *node;
144};
145
146struct mfs_instance {
147 service_id_t service_id;
148 struct mfs_sb_info *sbi;
149 unsigned open_nodes_cnt;
150};
151
152/* MinixFS node in core */
153struct mfs_node {
154 struct mfs_ino_info *ino_i;
155 struct mfs_instance *instance;
156 unsigned refcnt;
157 fs_node_t *fsnode;
158 ht_link_t link;
159};
160
161/* mfs_ops.c */
162extern vfs_out_ops_t mfs_ops;
163extern libfs_ops_t mfs_libfs_ops;
164
165extern int
166mfs_global_init(void);
167
168/* mfs_inode.c */
169extern int
170mfs_get_inode(struct mfs_instance *inst, struct mfs_ino_info **ino_i,
171 fs_index_t index);
172
173extern int
174mfs_put_inode(struct mfs_node *mnode);
175
176extern int
177mfs_inode_shrink(struct mfs_node *mnode, size_t size_shrink);
178
179/* mfs_rw.c */
180extern int
181mfs_read_map(uint32_t *b, const struct mfs_node *mnode, const uint32_t pos);
182
183extern int
184mfs_write_map(struct mfs_node *mnode, uint32_t pos, uint32_t new_zone,
185 uint32_t *old_zone);
186
187extern int
188mfs_prune_ind_zones(struct mfs_node *mnode, size_t new_size);
189
190/* mfs_dentry.c */
191extern int
192mfs_read_dentry(struct mfs_node *mnode,
193 struct mfs_dentry_info *d_info, unsigned index);
194
195extern int
196mfs_write_dentry(struct mfs_dentry_info *d_info);
197
198extern int
199mfs_remove_dentry(struct mfs_node *mnode, const char *d_name);
200
201extern int
202mfs_insert_dentry(struct mfs_node *mnode, const char *d_name, fs_index_t d_inum);
203
204/* mfs_balloc.c */
205extern int
206mfs_alloc_inode(struct mfs_instance *inst, uint32_t *inum);
207
208extern int
209mfs_free_inode(struct mfs_instance *inst, uint32_t inum);
210
211extern int
212mfs_alloc_zone(struct mfs_instance *inst, uint32_t *zone);
213
214extern int
215mfs_free_zone(struct mfs_instance *inst, uint32_t zone);
216
217extern int
218mfs_count_free_zones(struct mfs_instance *inst, uint32_t *zones);
219
220extern int
221mfs_count_free_inodes(struct mfs_instance *inst, uint32_t *inodes);
222
223
224/* mfs_utils.c */
225extern uint16_t
226conv16(bool native, uint16_t n);
227
228extern uint32_t
229conv32(bool native, uint32_t n);
230
231extern uint64_t
232conv64(bool native, uint64_t n);
233
234#endif
235
236/**
237 * @}
238 */
239
Note: See TracBrowser for help on using the repository browser.