OSDN Git Service

Merge branch 'master' of http://exfat.googlecode.com/svn/trunk/ into cm-10.2
[android-x86/external-exfat.git] / libexfat / exfat.h
1 /*
2         exfat.h (29.08.09)
3         Definitions of structures and constants used in exFAT file system
4         implementation.
5
6         Free exFAT implementation.
7         Copyright (C) 2010-2013  Andrew Nayenko
8
9         This program is free software; you can redistribute it and/or modify
10         it under the terms of the GNU General Public License as published by
11         the Free Software Foundation, either version 2 of the License, or
12         (at your option) any later version.
13
14         This program is distributed in the hope that it will be useful,
15         but WITHOUT ANY WARRANTY; without even the implied warranty of
16         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17         GNU General Public License for more details.
18
19         You should have received a copy of the GNU General Public License along
20         with this program; if not, write to the Free Software Foundation, Inc.,
21         51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24 #ifndef EXFAT_H_INCLUDED
25 #define EXFAT_H_INCLUDED
26
27 #if defined(__ANDROID__)
28 #define _OFF_T_DEFINED_
29 typedef long long off_t;
30 #endif
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <time.h>
35 #include <stdbool.h>
36 #include <sys/stat.h>
37 #include <sys/types.h>
38 #include "compiler.h"
39 #include "exfatfs.h"
40 #include "version.h"
41
42 #define EXFAT_NAME_MAX 256
43 #define EXFAT_ATTRIB_CONTIGUOUS 0x10000
44 #define EXFAT_ATTRIB_CACHED     0x20000
45 #define EXFAT_ATTRIB_DIRTY      0x40000
46 #define EXFAT_ATTRIB_UNLINKED   0x80000
47 #define IS_CONTIGUOUS(node) (((node).flags & EXFAT_ATTRIB_CONTIGUOUS) != 0)
48 #define SECTOR_SIZE(sb) (1 << (sb).sector_bits)
49 #define CLUSTER_SIZE(sb) (SECTOR_SIZE(sb) << (sb).spc_bits)
50 #define CLUSTER_INVALID(c) \
51         ((c) < EXFAT_FIRST_DATA_CLUSTER || (c) > EXFAT_LAST_DATA_CLUSTER)
52
53 #define MIN(a, b) ((a) < (b) ? (a) : (b))
54 #define MAX(a, b) ((a) > (b) ? (a) : (b))
55 #define DIV_ROUND_UP(x, d) (((x) + (d) - 1) / (d))
56 #define ROUND_UP(x, d) (DIV_ROUND_UP(x, d) * (d))
57 #define UTF8_BYTES(c) ((c) * 6) /* UTF-8 character can occupy up to 6 bytes */
58
59 typedef size_t bitmap_t;
60 #define BMAP_SIZE(count) (ROUND_UP(count, sizeof(bitmap_t) * 8) / 8)
61 #define BMAP_BLOCK(index) ((index) / sizeof(bitmap_t) / 8)
62 #define BMAP_MASK(index) ((bitmap_t) 1 << ((index) % (sizeof(bitmap_t) * 8)))
63 #define BMAP_GET(bitmap, index) \
64         ((bitmap)[BMAP_BLOCK(index)] & BMAP_MASK(index))
65 #define BMAP_SET(bitmap, index) \
66         ((bitmap)[BMAP_BLOCK(index)] |= BMAP_MASK(index))
67 #define BMAP_CLR(bitmap, index) \
68         ((bitmap)[BMAP_BLOCK(index)] &= ~BMAP_MASK(index))
69
70 struct exfat_node
71 {
72         struct exfat_node* parent;
73         struct exfat_node* child;
74         struct exfat_node* next;
75         struct exfat_node* prev;
76
77         int references;
78         uint32_t fptr_index;
79         cluster_t fptr_cluster;
80         cluster_t entry_cluster;
81         off_t entry_offset;
82         cluster_t start_cluster;
83         int flags;
84         uint64_t size;
85         time_t mtime, atime;
86         le16_t name[EXFAT_NAME_MAX + 1];
87 };
88
89 enum exfat_mode
90 {
91         EXFAT_MODE_RO,
92         EXFAT_MODE_RW,
93         EXFAT_MODE_ANY,
94 };
95
96 struct exfat_dev;
97
98 struct exfat
99 {
100         struct exfat_dev* dev;
101         struct exfat_super_block* sb;
102         le16_t* upcase;
103         size_t upcase_chars;
104         struct exfat_node* root;
105         struct
106         {
107                 cluster_t start_cluster;
108                 uint32_t size;                          /* in bits */
109                 bitmap_t* chunk;
110                 uint32_t chunk_size;            /* in bits */
111                 bool dirty;
112         }
113         cmap;
114         char label[UTF8_BYTES(EXFAT_ENAME_MAX) + 1];
115         void* zero_cluster;
116         int dmask, fmask;
117         uid_t uid;
118         gid_t gid;
119         int ro;
120         bool noatime;
121 };
122
123 /* in-core nodes iterator */
124 struct exfat_iterator
125 {
126         struct exfat_node* parent;
127         struct exfat_node* current;
128 };
129
130 struct exfat_human_bytes
131 {
132         uint64_t value;
133         const char* unit;
134 };
135
136 extern int exfat_errors;
137
138 void exfat_bug(const char* format, ...) PRINTF NORETURN;
139 void exfat_error(const char* format, ...) PRINTF;
140 void exfat_warn(const char* format, ...) PRINTF;
141 void exfat_debug(const char* format, ...) PRINTF;
142
143 struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode);
144 int exfat_close(struct exfat_dev* dev);
145 int exfat_fsync(struct exfat_dev* dev);
146 enum exfat_mode exfat_get_mode(const struct exfat_dev* dev);
147 off_t exfat_get_size(const struct exfat_dev* dev);
148 off_t exfat_seek(struct exfat_dev* dev, off_t offset, int whence);
149 ssize_t exfat_read(struct exfat_dev* dev, void* buffer, size_t size);
150 ssize_t exfat_write(struct exfat_dev* dev, const void* buffer, size_t size);
151 ssize_t exfat_pread(struct exfat_dev* dev, void* buffer, size_t size,
152                 off_t offset);
153 ssize_t exfat_pwrite(struct exfat_dev* dev, const void* buffer, size_t size,
154                 off_t offset);
155 ssize_t exfat_generic_pread(const struct exfat* ef, struct exfat_node* node,
156                 void* buffer, size_t size, off_t offset);
157 ssize_t exfat_generic_pwrite(struct exfat* ef, struct exfat_node* node,
158                 const void* buffer, size_t size, off_t offset);
159
160 int exfat_opendir(struct exfat* ef, struct exfat_node* dir,
161                 struct exfat_iterator* it);
162 void exfat_closedir(struct exfat* ef, struct exfat_iterator* it);
163 struct exfat_node* exfat_readdir(struct exfat* ef, struct exfat_iterator* it);
164 int exfat_lookup(struct exfat* ef, struct exfat_node** node,
165                 const char* path);
166 int exfat_split(struct exfat* ef, struct exfat_node** parent,
167                 struct exfat_node** node, le16_t* name, const char* path);
168
169 off_t exfat_c2o(const struct exfat* ef, cluster_t cluster);
170 cluster_t exfat_next_cluster(const struct exfat* ef,
171                 const struct exfat_node* node, cluster_t cluster);
172 cluster_t exfat_advance_cluster(const struct exfat* ef,
173                 struct exfat_node* node, uint32_t count);
174 int exfat_flush(struct exfat* ef);
175 int exfat_truncate(struct exfat* ef, struct exfat_node* node, uint64_t size,
176                 bool erase);
177 uint32_t exfat_count_free_clusters(const struct exfat* ef);
178 int exfat_find_used_sectors(const struct exfat* ef, off_t* a, off_t* b);
179
180 void exfat_stat(const struct exfat* ef, const struct exfat_node* node,
181                 struct stat* stbuf);
182 void exfat_get_name(const struct exfat_node* node, char* buffer, size_t n);
183 uint16_t exfat_start_checksum(const struct exfat_entry_meta1* entry);
184 uint16_t exfat_add_checksum(const void* entry, uint16_t sum);
185 le16_t exfat_calc_checksum(const struct exfat_entry_meta1* meta1,
186                 const struct exfat_entry_meta2* meta2, const le16_t* name);
187 uint32_t exfat_vbr_start_checksum(const void* sector, size_t size);
188 uint32_t exfat_vbr_add_checksum(const void* sector, size_t size, uint32_t sum);
189 le16_t exfat_calc_name_hash(const struct exfat* ef, const le16_t* name);
190 void exfat_humanize_bytes(uint64_t value, struct exfat_human_bytes* hb);
191 void exfat_print_info(const struct exfat_super_block* sb,
192                 uint32_t free_clusters);
193
194 int utf16_to_utf8(char* output, const le16_t* input, size_t outsize,
195                 size_t insize);
196 int utf8_to_utf16(le16_t* output, const char* input, size_t outsize,
197                 size_t insize);
198 size_t utf16_length(const le16_t* str);
199
200 struct exfat_node* exfat_get_node(struct exfat_node* node);
201 void exfat_put_node(struct exfat* ef, struct exfat_node* node);
202 int exfat_cache_directory(struct exfat* ef, struct exfat_node* dir);
203 void exfat_reset_cache(struct exfat* ef);
204 int exfat_flush_node(struct exfat* ef, struct exfat_node* node);
205 int exfat_unlink(struct exfat* ef, struct exfat_node* node);
206 int exfat_rmdir(struct exfat* ef, struct exfat_node* node);
207 int exfat_mknod(struct exfat* ef, const char* path);
208 int exfat_mkdir(struct exfat* ef, const char* path);
209 int exfat_rename(struct exfat* ef, const char* old_path, const char* new_path);
210 void exfat_utimes(struct exfat_node* node, const struct timespec tv[2]);
211 void exfat_update_atime(struct exfat_node* node);
212 void exfat_update_mtime(struct exfat_node* node);
213 const char* exfat_get_label(struct exfat* ef);
214 int exfat_set_label(struct exfat* ef, const char* label);
215
216 int exfat_mount(struct exfat* ef, const char* spec, const char* options);
217 void exfat_unmount(struct exfat* ef);
218
219 time_t exfat_exfat2unix(le16_t date, le16_t time, uint8_t centisec);
220 void exfat_unix2exfat(time_t unix_time, le16_t* date, le16_t* time,
221                 uint8_t* centisec);
222 void exfat_tzset(void);
223
224 #endif /* ifndef EXFAT_H_INCLUDED */