blob: 69fb45d45f0bd3aad7505a2139569170ac578368 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 exfat.h (29.08.09)
3 Definitions of structures and constants used in exFAT file system
4 implementation.
5
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04006 Free exFAT implementation.
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -04007 Copyright (C) 2010-2014 Andrew Nayenko
bigbiff bigbiff9c754052013-01-09 09:09:08 -05008
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04009 This program is free software; you can redistribute it and/or modify
bigbiff bigbiff9c754052013-01-09 09:09:08 -050010 it under the terms of the GNU General Public License as published by
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040011 the Free Software Foundation, either version 2 of the License, or
bigbiff bigbiff9c754052013-01-09 09:09:08 -050012 (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
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040019 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.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050022*/
23
24#ifndef EXFAT_H_INCLUDED
25#define EXFAT_H_INCLUDED
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <time.h>
30#include <stdbool.h>
31#include <sys/stat.h>
32#include <sys/types.h>
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040033#include "compiler.h"
bigbiff bigbiff9c754052013-01-09 09:09:08 -050034#include "exfatfs.h"
35#include "version.h"
36
37#define EXFAT_NAME_MAX 256
38#define EXFAT_ATTRIB_CONTIGUOUS 0x10000
39#define EXFAT_ATTRIB_CACHED 0x20000
40#define EXFAT_ATTRIB_DIRTY 0x40000
41#define EXFAT_ATTRIB_UNLINKED 0x80000
42#define IS_CONTIGUOUS(node) (((node).flags & EXFAT_ATTRIB_CONTIGUOUS) != 0)
43#define SECTOR_SIZE(sb) (1 << (sb).sector_bits)
44#define CLUSTER_SIZE(sb) (SECTOR_SIZE(sb) << (sb).spc_bits)
45#define CLUSTER_INVALID(c) \
46 ((c) < EXFAT_FIRST_DATA_CLUSTER || (c) > EXFAT_LAST_DATA_CLUSTER)
47
48#define MIN(a, b) ((a) < (b) ? (a) : (b))
49#define MAX(a, b) ((a) > (b) ? (a) : (b))
50#define DIV_ROUND_UP(x, d) (((x) + (d) - 1) / (d))
51#define ROUND_UP(x, d) (DIV_ROUND_UP(x, d) * (d))
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040052#define UTF8_BYTES(c) ((c) * 6) /* UTF-8 character can occupy up to 6 bytes */
bigbiff bigbiff9c754052013-01-09 09:09:08 -050053
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040054#define BMAP_SIZE(count) (ROUND_UP(count, sizeof(bitmap_t) * 8) / 8)
55#define BMAP_BLOCK(index) ((index) / sizeof(bitmap_t) / 8)
56#define BMAP_MASK(index) ((bitmap_t) 1 << ((index) % (sizeof(bitmap_t) * 8)))
bigbiff bigbiff9c754052013-01-09 09:09:08 -050057#define BMAP_GET(bitmap, index) \
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040058 ((bitmap)[BMAP_BLOCK(index)] & BMAP_MASK(index))
bigbiff bigbiff9c754052013-01-09 09:09:08 -050059#define BMAP_SET(bitmap, index) \
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040060 ((bitmap)[BMAP_BLOCK(index)] |= BMAP_MASK(index))
bigbiff bigbiff9c754052013-01-09 09:09:08 -050061#define BMAP_CLR(bitmap, index) \
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040062 ((bitmap)[BMAP_BLOCK(index)] &= ~BMAP_MASK(index))
bigbiff bigbiff9c754052013-01-09 09:09:08 -050063
64struct exfat_node
65{
66 struct exfat_node* parent;
67 struct exfat_node* child;
68 struct exfat_node* next;
69 struct exfat_node* prev;
70
71 int references;
72 uint32_t fptr_index;
73 cluster_t fptr_cluster;
74 cluster_t entry_cluster;
75 off64_t entry_offset;
76 cluster_t start_cluster;
77 int flags;
78 uint64_t size;
79 time_t mtime, atime;
80 le16_t name[EXFAT_NAME_MAX + 1];
81};
82
83enum exfat_mode
84{
85 EXFAT_MODE_RO,
86 EXFAT_MODE_RW,
87 EXFAT_MODE_ANY,
88};
89
90struct exfat_dev;
91
92struct exfat
93{
94 struct exfat_dev* dev;
95 struct exfat_super_block* sb;
96 le16_t* upcase;
97 size_t upcase_chars;
98 struct exfat_node* root;
99 struct
100 {
101 cluster_t start_cluster;
102 uint32_t size; /* in bits */
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400103 bitmap_t* chunk;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500104 uint32_t chunk_size; /* in bits */
105 bool dirty;
106 }
107 cmap;
bigbiff bigbiff004e2df2013-07-03 14:52:12 -0400108 char label[UTF8_BYTES(EXFAT_ENAME_MAX) + 1];
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500109 void* zero_cluster;
110 int dmask, fmask;
111 uid_t uid;
112 gid_t gid;
113 int ro;
114 bool noatime;
115};
116
117/* in-core nodes iterator */
118struct exfat_iterator
119{
120 struct exfat_node* parent;
121 struct exfat_node* current;
122};
123
124struct exfat_human_bytes
125{
126 uint64_t value;
127 const char* unit;
128};
129
130extern int exfat_errors;
131
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400132void exfat_bug(const char* format, ...) PRINTF NORETURN;
133void exfat_error(const char* format, ...) PRINTF;
134void exfat_warn(const char* format, ...) PRINTF;
135void exfat_debug(const char* format, ...) PRINTF;
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500136
137struct exfat_dev* exfat_open(const char* spec, enum exfat_mode mode);
138int exfat_close(struct exfat_dev* dev);
139int exfat_fsync(struct exfat_dev* dev);
140enum exfat_mode exfat_get_mode(const struct exfat_dev* dev);
141off64_t exfat_get_size(const struct exfat_dev* dev);
142off64_t exfat_seek(struct exfat_dev* dev, off64_t offset, int whence);
143ssize_t exfat_read(struct exfat_dev* dev, void* buffer, size_t size);
144ssize_t exfat_write(struct exfat_dev* dev, const void* buffer, size_t size);
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400145ssize_t exfat_pread(struct exfat_dev* dev, void* buffer, size_t size,
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500146 off64_t offset);
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400147ssize_t exfat_pwrite(struct exfat_dev* dev, const void* buffer, size_t size,
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500148 off64_t offset);
149ssize_t exfat_generic_pread(const struct exfat* ef, struct exfat_node* node,
150 void* buffer, size_t size, off64_t offset);
151ssize_t exfat_generic_pwrite(struct exfat* ef, struct exfat_node* node,
152 const void* buffer, size_t size, off64_t offset);
153
154int exfat_opendir(struct exfat* ef, struct exfat_node* dir,
155 struct exfat_iterator* it);
156void exfat_closedir(struct exfat* ef, struct exfat_iterator* it);
157struct exfat_node* exfat_readdir(struct exfat* ef, struct exfat_iterator* it);
158int exfat_lookup(struct exfat* ef, struct exfat_node** node,
159 const char* path);
160int exfat_split(struct exfat* ef, struct exfat_node** parent,
161 struct exfat_node** node, le16_t* name, const char* path);
162
163off64_t exfat_c2o(const struct exfat* ef, cluster_t cluster);
164cluster_t exfat_next_cluster(const struct exfat* ef,
165 const struct exfat_node* node, cluster_t cluster);
166cluster_t exfat_advance_cluster(const struct exfat* ef,
167 struct exfat_node* node, uint32_t count);
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400168int exfat_flush(struct exfat* ef);
bigbiff bigbiff998716f2013-03-07 09:59:37 -0500169int exfat_truncate(struct exfat* ef, struct exfat_node* node, uint64_t size,
170 bool erase);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500171uint32_t exfat_count_free_clusters(const struct exfat* ef);
172int exfat_find_used_sectors(const struct exfat* ef, off64_t* a, off64_t* b);
173
174void exfat_stat(const struct exfat* ef, const struct exfat_node* node,
175 struct stat* stbuf);
176void exfat_get_name(const struct exfat_node* node, char* buffer, size_t n);
177uint16_t exfat_start_checksum(const struct exfat_entry_meta1* entry);
178uint16_t exfat_add_checksum(const void* entry, uint16_t sum);
179le16_t exfat_calc_checksum(const struct exfat_entry_meta1* meta1,
180 const struct exfat_entry_meta2* meta2, const le16_t* name);
181uint32_t exfat_vbr_start_checksum(const void* sector, size_t size);
182uint32_t exfat_vbr_add_checksum(const void* sector, size_t size, uint32_t sum);
183le16_t exfat_calc_name_hash(const struct exfat* ef, const le16_t* name);
184void exfat_humanize_bytes(uint64_t value, struct exfat_human_bytes* hb);
185void exfat_print_info(const struct exfat_super_block* sb,
186 uint32_t free_clusters);
187
188int utf16_to_utf8(char* output, const le16_t* input, size_t outsize,
189 size_t insize);
190int utf8_to_utf16(le16_t* output, const char* input, size_t outsize,
191 size_t insize);
192size_t utf16_length(const le16_t* str);
193
194struct exfat_node* exfat_get_node(struct exfat_node* node);
195void exfat_put_node(struct exfat* ef, struct exfat_node* node);
bigbiff bigbiff2e33c5e2014-09-04 20:58:41 -0400196int exfat_cleanup_node(struct exfat* ef, struct exfat_node* node);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500197int exfat_cache_directory(struct exfat* ef, struct exfat_node* dir);
198void exfat_reset_cache(struct exfat* ef);
bigbiff bigbiff61cdc022013-08-08 08:35:06 -0400199int exfat_flush_node(struct exfat* ef, struct exfat_node* node);
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500200int exfat_unlink(struct exfat* ef, struct exfat_node* node);
201int exfat_rmdir(struct exfat* ef, struct exfat_node* node);
202int exfat_mknod(struct exfat* ef, const char* path);
203int exfat_mkdir(struct exfat* ef, const char* path);
204int exfat_rename(struct exfat* ef, const char* old_path, const char* new_path);
205void exfat_utimes(struct exfat_node* node, const struct timespec tv[2]);
206void exfat_update_atime(struct exfat_node* node);
207void exfat_update_mtime(struct exfat_node* node);
208const char* exfat_get_label(struct exfat* ef);
209int exfat_set_label(struct exfat* ef, const char* label);
210
211int exfat_mount(struct exfat* ef, const char* spec, const char* options);
212void exfat_unmount(struct exfat* ef);
213
214time_t exfat_exfat2unix(le16_t date, le16_t time, uint8_t centisec);
215void exfat_unix2exfat(time_t unix_time, le16_t* date, le16_t* time,
216 uint8_t* centisec);
217void exfat_tzset(void);
218
219#endif /* ifndef EXFAT_H_INCLUDED */