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

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

mfs: add some comments

  • Property mode set to 100644
File size: 5.9 KB
RevLine 
[1ffbbc1]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 * @{
[8a49fed]31 */
[1ffbbc1]32
33#ifndef _MFS_H_
34#define _MFS_H_
35
[86d0b4b3]36#include <minix.h>
[668f1949]37#include <macros.h>
[f73b291]38#include <block.h>
[3b08178]39#include <libfs.h>
[953a823]40#include <adt/list.h>
[2874547]41#include <malloc.h>
42#include <mem.h>
43#include <stdio.h>
44#include <errno.h>
45#include <assert.h>
[1eaa3cf]46#include <stdbool.h>
[1ffbbc1]47#include "../../vfs/vfs.h"
48
[ac28650]49#define NAME "mfs"
50
[50a01a9]51/* #define DEBUG_MODE */
[92dd5c8]52
[bd64680]53#define min(a, b) ((a) < (b) ? (a) : (b))
54
[92dd5c8]55#ifdef DEBUG_MODE
56#define mfsdebug(...) printf(__VA_ARGS__)
57#else
58#define mfsdebug(...)
59#endif
60
[b2c96093]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
[152610a8]71typedef uint32_t bitchunk_t;
72
[fde8a276]73typedef enum {
74 BMAP_ZONE,
75 BMAP_INODE
76} bmap_id_t;
77
[82650385]78typedef enum {
79 MFS_VERSION_V1 = 1,
80 MFS_VERSION_V2,
81 MFS_VERSION_V3
82} mfs_version_t;
83
[50a01a9]84/* Generic MinixFS superblock */
[953a823]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;
[7a96476]96
[50a01a9]97 /* The following fields do not exist on disk but only in memory */
[7a96476]98 unsigned long itable_size;
99 mfs_version_t fs_version;
100 int ino_per_block;
[07dcec5]101 size_t dirsize;
[10eb754]102 int itable_off;
[bd64680]103 unsigned max_name_len;
[953a823]104 bool long_names;
105 bool native;
[ef76d72]106 unsigned isearch;
107 unsigned zsearch;
[1eaa3cf]108
[fd7dbbb]109 /* Indicates wether if the cached number of free zones
110 * is to be considered valid or not.
111 */
[1eaa3cf]112 bool nfree_zones_valid;
[fd7dbbb]113 /* Cached number of free zones, used to avoid to scan
114 * the whole bitmap every time the mfs_free_block_count()
115 * is invoked.
116 */
[1eaa3cf]117 unsigned nfree_zones;
[953a823]118};
119
[50a01a9]120/* Generic MinixFS inode */
[155f792]121struct mfs_ino_info {
[8a49fed]122 uint16_t i_mode;
123 uint16_t i_nlinks;
124 int16_t i_uid;
125 uint16_t i_gid;
126 size_t i_size;
127 int32_t i_atime;
128 int32_t i_mtime;
129 int32_t i_ctime;
[50a01a9]130 /* Block numbers for direct zones */
[8a49fed]131 uint32_t i_dzone[V2_NR_DIRECT_ZONES];
[50a01a9]132 /* Block numbers for indirect zones */
[8a49fed]133 uint32_t i_izone[V2_NR_INDIRECT_ZONES];
[54caa41b]134
[50a01a9]135 /* The following fields do not exist on disk but only in memory */
[54caa41b]136 bool dirty;
[41202a9]137 fs_index_t index;
[54caa41b]138};
139
[50a01a9]140/* Generic MFS directory entry */
[54caa41b]141struct mfs_dentry_info {
142 uint32_t d_inum;
[07dcec5]143 char d_name[MFS3_MAX_NAME_LEN + 1];
[54caa41b]144
[50a01a9]145 /* The following fields do not exist on disk but only in memory */
[c4eeb2f]146
[50a01a9]147 /* Index of the dentry in the list */
[87d4422]148 unsigned index;
[50a01a9]149 /* Pointer to the node at witch the dentry belongs */
[87d4422]150 struct mfs_node *node;
[155f792]151};
152
[953a823]153struct mfs_instance {
[03bc76a]154 service_id_t service_id;
[953a823]155 struct mfs_sb_info *sbi;
[ee257b2]156 unsigned open_nodes_cnt;
[953a823]157};
158
[50a01a9]159/* MinixFS node in core */
[e54ba607]160struct mfs_node {
[155f792]161 struct mfs_ino_info *ino_i;
[e54ba607]162 struct mfs_instance *instance;
[ee257b2]163 unsigned refcnt;
164 fs_node_t *fsnode;
[062d900]165 ht_link_t link;
[e54ba607]166};
167
[50a01a9]168/* mfs_ops.c */
[03bc76a]169extern vfs_out_ops_t mfs_ops;
170extern libfs_ops_t mfs_libfs_ops;
[51db5aeb]171
[ee257b2]172extern int
173mfs_global_init(void);
174
[50a01a9]175/* mfs_inode.c */
[8a49fed]176extern int
[3a5ee6c]177mfs_get_inode(struct mfs_instance *inst, struct mfs_ino_info **ino_i,
[802f0b7]178 fs_index_t index);
[f213ae7]179
[10eb754]180extern int
[5f509cc]181mfs_put_inode(struct mfs_node *mnode);
[10eb754]182
[8a49fed]183extern int
[3a5ee6c]184mfs_inode_shrink(struct mfs_node *mnode, size_t size_shrink);
[8a49fed]185
[50a01a9]186/* mfs_rw.c */
[2bbbfd3]187extern int
[3a5ee6c]188mfs_read_map(uint32_t *b, const struct mfs_node *mnode, const uint32_t pos);
[2bbbfd3]189
190extern int
[3a5ee6c]191mfs_write_map(struct mfs_node *mnode, uint32_t pos, uint32_t new_zone,
[802f0b7]192 uint32_t *old_zone);
[2bbbfd3]193
[1878386]194extern int
[3a5ee6c]195mfs_prune_ind_zones(struct mfs_node *mnode, size_t new_size);
[1878386]196
[50a01a9]197/* mfs_dentry.c */
[488f7ed]198extern int
[3a5ee6c]199mfs_read_dentry(struct mfs_node *mnode,
[802f0b7]200 struct mfs_dentry_info *d_info, unsigned index);
[54caa41b]201
[87d4422]202extern int
[3a5ee6c]203mfs_write_dentry(struct mfs_dentry_info *d_info);
[87d4422]204
[c955be91]205extern int
[3a5ee6c]206mfs_remove_dentry(struct mfs_node *mnode, const char *d_name);
[c955be91]207
[8a49fed]208extern int
[3a5ee6c]209mfs_insert_dentry(struct mfs_node *mnode, const char *d_name, fs_index_t d_inum);
[07dcec5]210
[50a01a9]211/* mfs_balloc.c */
[ba5beaf]212extern int
[70ac0af]213mfs_alloc_inode(struct mfs_instance *inst, uint32_t *inum);
[2cf95e8]214
215extern int
[70ac0af]216mfs_free_inode(struct mfs_instance *inst, uint32_t inum);
217
218extern int
219mfs_alloc_zone(struct mfs_instance *inst, uint32_t *zone);
220
221extern int
222mfs_free_zone(struct mfs_instance *inst, uint32_t zone);
[ba5beaf]223
[b2c96093]224extern int
225mfs_count_free_zones(struct mfs_instance *inst, uint32_t *zones);
226
227extern int
228mfs_count_free_inodes(struct mfs_instance *inst, uint32_t *inodes);
229
230
[50a01a9]231/* mfs_utils.c */
[88be951e]232extern uint16_t
233conv16(bool native, uint16_t n);
234
235extern uint32_t
236conv32(bool native, uint32_t n);
237
238extern uint64_t
239conv64(bool native, uint64_t n);
240
[1ffbbc1]241#endif
242
243/**
244 * @}
[8a49fed]245 */
[1ffbbc1]246
Note: See TracBrowser for help on using the repository browser.