ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / hfs / hfs_fs.h
1 /*
2  *  linux/fs/hfs/hfs_fs.h
3  *
4  * Copyright (C) 1995-1997  Paul H. Hargrove
5  * (C) 2003 Ardis Technologies <roman@ardistech.com>
6  * This file may be distributed under the terms of the GNU General Public License.
7  */
8
9 #ifndef _LINUX_HFS_FS_H
10 #define _LINUX_HFS_FS_H
11
12 #include <linux/version.h>
13 #include <linux/slab.h>
14 #include <linux/types.h>
15 #include <linux/buffer_head.h>
16 #include <linux/fs.h>
17
18 #include <asm/byteorder.h>
19 #include <asm/uaccess.h>
20
21 #include "hfs.h"
22
23 #define DBG_BNODE_REFS  0x00000001
24 #define DBG_BNODE_MOD   0x00000002
25 #define DBG_CAT_MOD     0x00000004
26 #define DBG_INODE       0x00000008
27 #define DBG_SUPER       0x00000010
28 #define DBG_EXTENT      0x00000020
29 #define DBG_BITMAP      0x00000040
30
31 //#define DBG_MASK      (DBG_EXTENT|DBG_INODE|DBG_BNODE_MOD|DBG_CAT_MOD|DBG_BITMAP)
32 //#define DBG_MASK      (DBG_BNODE_MOD|DBG_CAT_MOD|DBG_INODE)
33 //#define DBG_MASK      (DBG_CAT_MOD|DBG_BNODE_REFS|DBG_INODE|DBG_EXTENT)
34 #define DBG_MASK        (0)
35
36 #define dprint(flg, fmt, args...) \
37         if (flg & DBG_MASK) printk(fmt , ## args)
38
39 #define hfs_warn(format, args...) printk(KERN_WARNING format , ## args)
40 #define hfs_error(format, args...) printk(KERN_ERR format , ## args)
41
42 /*
43  * struct hfs_inode_info
44  *
45  * The HFS-specific part of a Linux (struct inode)
46  */
47 struct hfs_inode_info {
48         atomic_t opencnt;
49
50         unsigned int flags;
51
52         /* to deal with localtime ugliness */
53         int tz_secondswest;
54
55         struct hfs_cat_key cat_key;
56
57         struct list_head open_dir_list;
58         struct inode *rsrc_inode;
59
60         struct semaphore extents_lock;
61
62         u16 alloc_blocks, clump_blocks;
63         /* Allocation extents from catlog record or volume header */
64         hfs_extent_rec first_extents;
65         u16 first_blocks;
66         hfs_extent_rec cached_extents;
67         u16 cached_start, cached_blocks;
68
69         loff_t phys_size;
70         struct inode vfs_inode;
71 };
72
73 #define HFS_FLG_RSRC            0x0001
74 #define HFS_FLG_EXT_DIRTY       0x0002
75 #define HFS_FLG_EXT_NEW         0x0004
76
77 #define HFS_IS_RSRC(inode)      (HFS_I(inode)->flags & HFS_FLG_RSRC)
78
79 /*
80  * struct hfs_sb_info
81  *
82  * The HFS-specific part of a Linux (struct super_block)
83  */
84 struct hfs_sb_info {
85         struct buffer_head *mdb_bh;             /* The hfs_buffer
86                                                    holding the real
87                                                    superblock (aka VIB
88                                                    or MDB) */
89         struct hfs_mdb *mdb;
90         struct buffer_head *alt_mdb_bh;         /* The hfs_buffer holding
91                                                    the alternate superblock */
92         struct hfs_mdb *alt_mdb;
93         u32 *bitmap;                            /* The page holding the
94                                                    allocation bitmap */
95         struct hfs_btree *ext_tree;                     /* Information about
96                                                    the extents b-tree */
97         struct hfs_btree *cat_tree;                     /* Information about
98                                                    the catalog b-tree */
99         u32 file_count;                         /* The number of
100                                                    regular files in
101                                                    the filesystem */
102         u32 folder_count;                       /* The number of
103                                                    directories in the
104                                                    filesystem */
105         u32 next_id;                            /* The next available
106                                                    file id number */
107         u32 clumpablks;                         /* The number of allocation
108                                                    blocks to try to add when
109                                                    extending a file */
110         u32 fs_start;                           /* The first 512-byte
111                                                    block represented
112                                                    in the bitmap */
113         u32 part_start;
114         u16 root_files;                         /* The number of
115                                                    regular
116                                                    (non-directory)
117                                                    files in the root
118                                                    directory */
119         u16 root_dirs;                          /* The number of
120                                                    directories in the
121                                                    root directory */
122         u16 fs_ablocks;                         /* The number of
123                                                    allocation blocks
124                                                    in the filesystem */
125         u16 free_ablocks;                       /* the number of unused
126                                                    allocation blocks
127                                                    in the filesystem */
128         u32 alloc_blksz;                        /* The size of an
129                                                    "allocation block" */
130         int s_quiet;                            /* Silent failure when
131                                                    changing owner or mode? */
132         u32 s_type;                             /* Type for new files */
133         u32 s_creator;                          /* Creator for new files */
134         umode_t s_file_umask;                   /* The umask applied to the
135                                                    permissions on all files */
136         umode_t s_dir_umask;                    /* The umask applied to the
137                                                    permissions on all dirs */
138         uid_t s_uid;                            /* The uid of all files */
139         gid_t s_gid;                            /* The gid of all files */
140
141         int session, part;
142
143         struct semaphore bitmap_lock;
144
145         unsigned long flags;
146
147         u16 blockoffset;
148
149         int fs_div;
150
151         struct hlist_head rsrc_inodes;
152 };
153
154 #define HFS_FLG_BITMAP_DIRTY    0
155 #define HFS_FLG_MDB_DIRTY       1
156 #define HFS_FLG_ALT_MDB_DIRTY   2
157
158 /* bitmap.c */
159 extern u32 hfs_vbm_search_free(struct super_block *, u32, u32 *);
160 extern int hfs_clear_vbm_bits(struct super_block *, u16, u16);
161
162 /* catalog.c */
163 extern int hfs_cat_keycmp(const btree_key *, const btree_key *);
164 struct hfs_find_data;
165 extern int hfs_cat_find_brec(struct super_block *, u32, struct hfs_find_data *);
166 extern int hfs_cat_create(u32, struct inode *, struct qstr *, struct inode *);
167 extern int hfs_cat_delete(u32, struct inode *, struct qstr *);
168 extern int hfs_cat_move(u32, struct inode *, struct qstr *,
169                         struct inode *, struct qstr *);
170 extern void hfs_cat_build_key(btree_key *, u32, struct qstr *);
171
172 /* dir.c */
173 extern struct file_operations hfs_dir_operations;
174 extern struct inode_operations hfs_dir_inode_operations;
175
176 extern int hfs_mkdir(struct inode *, struct dentry *, int);
177 extern int hfs_unlink(struct inode *, struct dentry *);
178 extern int hfs_rmdir(struct inode *, struct dentry *);
179 extern int hfs_rename(struct inode *, struct dentry *,
180                       struct inode *, struct dentry *);
181
182 /* extent.c */
183 extern int hfs_ext_keycmp(const btree_key *, const btree_key *);
184 extern int hfs_free_fork(struct super_block *, struct hfs_cat_file *, int);
185 extern void hfs_ext_write_extent(struct inode *);
186 extern int hfs_extend_file(struct inode *);
187 extern void hfs_file_truncate(struct inode *);
188
189 /* file.c */
190 extern struct inode_operations hfs_file_inode_operations;
191 extern struct file_operations hfs_file_operations;
192
193 extern int hfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
194
195 /* inode.c */
196 extern struct address_space_operations hfs_aops;
197 extern struct address_space_operations hfs_btree_aops;
198
199 extern struct inode *hfs_new_inode(struct inode *, struct qstr *, int);
200 extern void hfs_inode_write_fork(struct inode *, struct hfs_extent *, u32 *, u32 *);
201 extern void hfs_write_inode(struct inode *, int);
202 extern int hfs_inode_setattr(struct dentry *, struct iattr *);
203 extern void hfs_inode_read_fork(struct inode *inode, struct hfs_extent *ext,
204                                 u32 log_size, u32 phys_size, u32 clump_size);
205 extern struct inode *hfs_iget(struct super_block *, struct hfs_cat_key *, hfs_cat_rec *);
206 extern void hfs_clear_inode(struct inode *);
207 extern void hfs_delete_inode(struct inode *);
208
209 /* mdb.c */
210 extern int hfs_mdb_get(struct super_block *);
211 extern void hfs_mdb_commit(struct super_block *);
212 extern void hfs_mdb_close(struct super_block *);
213 extern void hfs_mdb_put(struct super_block *);
214
215 /* part_tbl.c */
216 extern int hfs_part_find(struct super_block *, sector_t *, sector_t *);
217
218 /* string.c */
219 extern struct dentry_operations hfs_dentry_operations;
220
221 extern int hfs_hash_dentry(struct dentry *, struct qstr *);
222 extern int hfs_strcmp(const unsigned char *, unsigned int,
223                       const unsigned char *, unsigned int);
224 extern int hfs_compare_dentry(struct dentry *, struct qstr *, struct qstr *);
225
226 /* super.c */
227 extern struct super_block *hfs_read_super(struct super_block *,void *,int);
228
229 /* trans.c */
230 extern void hfs_triv2mac(struct hfs_name *, struct qstr *);
231 extern int hfs_mac2triv(char *, const struct hfs_name *);
232
233 extern struct timezone sys_tz;
234
235 /*
236  * There are two time systems.  Both are based on seconds since
237  * a particular time/date.
238  *      Unix:   unsigned lil-endian since 00:00 GMT, Jan. 1, 1970
239  *      mac:    unsigned big-endian since 00:00 GMT, Jan. 1, 1904
240  *
241  */
242 #define __hfs_u_to_mtime(sec)   cpu_to_be32(sec + 2082844800U - sys_tz.tz_minuteswest * 60)
243 #define __hfs_m_to_utime(sec)   (be32_to_cpu(sec) - 2082844800U  + sys_tz.tz_minuteswest * 60)
244
245 #define HFS_I(inode)    (list_entry(inode, struct hfs_inode_info, vfs_inode))
246 #define HFS_SB(sb)      ((struct hfs_sb_info *)(sb)->s_fs_info)
247
248 #define hfs_m_to_utime(time)    (struct timespec){ .tv_sec = __hfs_m_to_utime(time) }
249 #define hfs_u_to_mtime(time)    __hfs_u_to_mtime((time).tv_sec)
250 #define hfs_mtime()             __hfs_u_to_mtime(get_seconds())
251
252 static inline const char *hfs_mdb_name(struct super_block *sb)
253 {
254         return sb->s_id;
255 }
256
257 static inline void hfs_bitmap_dirty(struct super_block *sb)
258 {
259         set_bit(HFS_FLG_BITMAP_DIRTY, &HFS_SB(sb)->flags);
260         sb->s_dirt = 1;
261 }
262
263 static inline void hfs_buffer_sync(struct buffer_head *bh)
264 {
265         while (buffer_locked(bh)) {
266                 wait_on_buffer(bh);
267         }
268         if (buffer_dirty(bh)) {
269                 ll_rw_block(WRITE, 1, &bh);
270                 wait_on_buffer(bh);
271         }
272 }
273
274 #define sb_bread512(sb, sec, data) ({                   \
275         struct buffer_head *__bh;                       \
276         sector_t __block;                               \
277         loff_t __start;                                 \
278         int __offset;                                   \
279                                                         \
280         __start = (loff_t)(sec) << HFS_SECTOR_SIZE_BITS;\
281         __block = __start >> (sb)->s_blocksize_bits;    \
282         __offset = __start & ((sb)->s_blocksize - 1);   \
283         __bh = sb_bread((sb), __block);                 \
284         if (likely(__bh != NULL))                       \
285                 data = (void *)(__bh->b_data + __offset);\
286         else                                            \
287                 data = NULL;                            \
288         __bh;                                           \
289 })
290
291 #endif