-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
key.c
334 lines (297 loc) · 8.61 KB
/
key.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2018 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
*/
#include <linux/crc32c.h>
#include "apfs.h"
#include "unicode.h"
/**
* apfs_filename_cmp - Normalize and compare two APFS filenames
* @sb: filesystem superblock
* @name1: first name to compare
* @len1: length of @name1
* @name2: second name to compare
* @len2: length of the @name2
*
* Returns 0 if @name1 and @name2 are equal, or non-zero otherwise.
*/
int apfs_filename_cmp(struct super_block *sb,
const char *name1, unsigned int len1,
const char *name2, unsigned int len2)
{
struct apfs_unicursor cursor1, cursor2;
bool case_fold = apfs_is_case_insensitive(sb);
if (!apfs_is_normalization_insensitive(sb)) {
if (len1 != len2)
return -1;
return memcmp(name1, name2, len1);
}
apfs_init_unicursor(&cursor1, name1, len1);
apfs_init_unicursor(&cursor2, name2, len2);
while (1) {
unicode_t uni1, uni2;
uni1 = apfs_normalize_next(&cursor1, case_fold);
uni2 = apfs_normalize_next(&cursor2, case_fold);
if (uni1 != uni2)
return uni1 < uni2 ? -1 : 1;
if (!uni1)
return 0;
}
}
/**
* apfs_keycmp - Compare two keys
* @k1: first key to compare
* @k2: second key to compare
*
* returns 0 if @k1 and @k2 are equal
* < 0 if @k1 comes before @k2 in the btree
* > 0 if @k1 comes after @k2 in the btree
*/
int apfs_keycmp(struct apfs_key *k1, struct apfs_key *k2)
{
if (k1->id != k2->id)
return k1->id < k2->id ? -1 : 1;
if (k1->type != k2->type)
return k1->type < k2->type ? -1 : 1;
if (k1->number != k2->number)
return k1->number < k2->number ? -1 : 1;
if (!k1->name || !k2->name)
return 0;
/* Normalization seems to be ignored here, even for directory records */
return strcmp(k1->name, k2->name);
}
/**
* apfs_read_cat_key - Parse an on-disk catalog key
* @raw: pointer to the raw key
* @size: size of the raw key
* @key: apfs_key structure to store the result
* @hashed: are the directory records hashed?
*
* Returns 0 on success, or a negative error code otherwise.
*/
int apfs_read_cat_key(void *raw, int size, struct apfs_key *key, bool hashed)
{
if (size < sizeof(struct apfs_key_header)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->id = apfs_cat_cnid((struct apfs_key_header *)raw);
key->type = apfs_cat_type((struct apfs_key_header *)raw);
switch (key->type) {
case APFS_TYPE_DIR_REC:
if (hashed) {
if (size < sizeof(struct apfs_drec_hashed_key) + 1 ||
*((char *)raw + size - 1) != 0) {
/* Filename must have NULL-termination */
apfs_err(NULL, "invalid drec key (%d)", size);
return -EFSCORRUPTED;
}
/* Name length is not used in key comparisons, only the hash */
key->number = le32_to_cpu(
((struct apfs_drec_hashed_key *)raw)->name_len_and_hash) &
APFS_DREC_HASH_MASK;
key->name = ((struct apfs_drec_hashed_key *)raw)->name;
} else {
if (size < sizeof(struct apfs_drec_key) + 1 ||
*((char *)raw + size - 1) != 0) {
/* Filename must have NULL-termination */
apfs_err(NULL, "invalid drec key (%d)", size);
return -EFSCORRUPTED;
}
/* There's no hash */
key->number = 0;
key->name = ((struct apfs_drec_key *)raw)->name;
}
break;
case APFS_TYPE_XATTR:
if (size < sizeof(struct apfs_xattr_key) + 1 ||
*((char *)raw + size - 1) != 0) {
/* xattr name must have NULL-termination */
apfs_err(NULL, "invalid xattr key (%d)", size);
return -EFSCORRUPTED;
}
key->number = 0;
key->name = ((struct apfs_xattr_key *)raw)->name;
break;
case APFS_TYPE_FILE_EXTENT:
if (size != sizeof(struct apfs_file_extent_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->number = le64_to_cpu(
((struct apfs_file_extent_key *)raw)->logical_addr);
key->name = NULL;
break;
case APFS_TYPE_SIBLING_LINK:
if (size != sizeof(struct apfs_sibling_link_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->number = le64_to_cpu(
((struct apfs_sibling_link_key *)raw)->sibling_id);
key->name = NULL;
break;
default:
key->number = 0;
key->name = NULL;
break;
}
return 0;
}
int apfs_read_fext_key(void *raw, int size, struct apfs_key *key)
{
struct apfs_fext_tree_key *raw_key;
if (size != sizeof(*raw_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
raw_key = raw;
key->id = le64_to_cpu(raw_key->private_id);
key->type = 0;
key->number = le64_to_cpu(raw_key->logical_addr);
key->name = NULL;
return 0;
}
/**
* apfs_read_free_queue_key - Parse an on-disk free queue key
* @raw: pointer to the raw key
* @size: size of the raw key
* @key: apfs_key structure to store the result
*
* Returns 0 on success, or a negative error code otherwise.
*/
int apfs_read_free_queue_key(void *raw, int size, struct apfs_key *key)
{
struct apfs_spaceman_free_queue_key *raw_key;
if (size < sizeof(struct apfs_spaceman_free_queue_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
raw_key = raw;
key->id = le64_to_cpu(raw_key->sfqk_xid);
key->type = 0;
key->number = le64_to_cpu(raw_key->sfqk_paddr);
key->name = NULL;
return 0;
}
/**
* apfs_read_omap_key - Parse an on-disk object map key
* @raw: pointer to the raw key
* @size: size of the raw key
* @key: apfs_key structure to store the result
*
* Returns 0 on success, or a negative error code otherwise.
*/
int apfs_read_omap_key(void *raw, int size, struct apfs_key *key)
{
if (size < sizeof(struct apfs_omap_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->id = le64_to_cpu(((struct apfs_omap_key *)raw)->ok_oid);
key->type = 0;
key->number = le64_to_cpu(((struct apfs_omap_key *)raw)->ok_xid);
key->name = NULL;
return 0;
}
/**
* apfs_read_extentref_key - Parse an on-disk extent reference tree key
* @raw: pointer to the raw key
* @size: size of the raw key
* @key: apfs_key structure to store the result
*
* Returns 0 on success, or a negative error code otherwise.
*/
int apfs_read_extentref_key(void *raw, int size, struct apfs_key *key)
{
if (size != sizeof(struct apfs_phys_ext_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->id = apfs_cat_cnid((struct apfs_key_header *)raw);
key->type = apfs_cat_type((struct apfs_key_header *)raw);
key->number = 0;
key->name = NULL;
return 0;
}
int apfs_read_snap_meta_key(void *raw, int size, struct apfs_key *key)
{
if (size < sizeof(struct apfs_key_header)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->id = apfs_cat_cnid((struct apfs_key_header *)raw);
key->type = apfs_cat_type((struct apfs_key_header *)raw);
key->number = 0;
switch (key->type) {
case APFS_TYPE_SNAP_METADATA:
if (size != sizeof(struct apfs_snap_metadata_key)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
key->name = NULL;
return 0;
case APFS_TYPE_SNAP_NAME:
if (size < sizeof(struct apfs_snap_name_key) + 1 || *((char *)raw + size - 1) != 0) {
/* snapshot name must have NULL-termination */
apfs_err(NULL, "invalid snap name key (%d)", size);
return -EFSCORRUPTED;
}
key->name = ((struct apfs_snap_name_key *)raw)->name;
return 0;
default:
return -EFSCORRUPTED;
}
}
int apfs_read_omap_snap_key(void *raw, int size, struct apfs_key *key)
{
__le64 *xid = NULL;
if (size != sizeof(*xid)) {
apfs_err(NULL, "bad key length (%d)", size);
return -EFSCORRUPTED;
}
xid = raw;
key->id = le64_to_cpup(xid);
key->number = 0;
key->name = NULL;
key->type = 0;
return 0;
}
/**
* apfs_init_drec_key - Initialize an in-memory key for a dentry query
* @sb: filesystem superblock
* @ino: inode number of the parent directory
* @name: filename (NULL for a multiple query)
* @name_len: filename length (0 if NULL)
* @key: apfs_key structure to initialize
*/
void apfs_init_drec_key(struct super_block *sb, u64 ino, const char *name,
unsigned int name_len, struct apfs_key *key)
{
struct apfs_unicursor cursor;
bool case_fold = apfs_is_case_insensitive(sb);
u32 hash = 0xFFFFFFFF;
key->id = ino;
key->type = APFS_TYPE_DIR_REC;
if (!apfs_is_normalization_insensitive(sb)) {
key->name = name;
key->number = 0;
return;
}
/* To respect normalization, queries can only consider the hash */
key->name = NULL;
if (!name) {
key->number = 0;
return;
}
apfs_init_unicursor(&cursor, name, name_len);
while (1) {
unicode_t utf32;
utf32 = apfs_normalize_next(&cursor, case_fold);
if (!utf32)
break;
hash = crc32c(hash, &utf32, sizeof(utf32));
}
/* The filename length doesn't matter, so it's left as zero */
key->number = hash << APFS_DREC_HASH_SHIFT;
}