Blame view

fs/hfsplus/xattr.c 23.3 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
2
3
4
5
6
7
8
9
10
  /*
   * linux/fs/hfsplus/xattr.c
   *
   * Vyacheslav Dubeyko <slava@dubeyko.com>
   *
   * Logic of processing extended attributes
   */
  
  #include "hfsplus_fs.h"
017f8da43   Hin-Tak Leung   hfsplus: fix wors...
11
  #include <linux/nls.h>
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
12
  #include "xattr.h"
b168fff72   Christoph Hellwig   hfsplus: use xatt...
13
  static int hfsplus_removexattr(struct inode *inode, const char *name);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
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
  const struct xattr_handler *hfsplus_xattr_handlers[] = {
  	&hfsplus_xattr_osx_handler,
  	&hfsplus_xattr_user_handler,
  	&hfsplus_xattr_trusted_handler,
  	&hfsplus_xattr_security_handler,
  	NULL
  };
  
  static int strcmp_xattr_finder_info(const char *name)
  {
  	if (name) {
  		return strncmp(name, HFSPLUS_XATTR_FINDER_INFO_NAME,
  				sizeof(HFSPLUS_XATTR_FINDER_INFO_NAME));
  	}
  	return -1;
  }
  
  static int strcmp_xattr_acl(const char *name)
  {
  	if (name) {
  		return strncmp(name, HFSPLUS_XATTR_ACL_NAME,
  				sizeof(HFSPLUS_XATTR_ACL_NAME));
  	}
  	return -1;
  }
1ad8d63d6   Fabian Frederick   fs/hfsplus: use b...
39
  static bool is_known_namespace(const char *name)
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
40
41
42
43
44
45
46
47
48
  {
  	if (strncmp(name, XATTR_SYSTEM_PREFIX, XATTR_SYSTEM_PREFIX_LEN) &&
  	    strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN) &&
  	    strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN) &&
  	    strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN))
  		return false;
  
  	return true;
  }
099e9245e   Vyacheslav Dubeyko   hfsplus: implemen...
49
50
  static void hfsplus_init_header_node(struct inode *attr_file,
  					u32 clump_size,
a99b7069a   Geert Uytterhoeven   hfsplus: Fix unde...
51
  					char *buf, u16 node_size)
099e9245e   Vyacheslav Dubeyko   hfsplus: implemen...
52
53
54
55
56
57
58
59
60
  {
  	struct hfs_bnode_desc *desc;
  	struct hfs_btree_header_rec *head;
  	u16 offset;
  	__be16 *rec_offsets;
  	u32 hdr_node_map_rec_bits;
  	char *bmp;
  	u32 used_nodes;
  	u32 used_bmp_bytes;
df3d4e7a2   Christian Kujau   hfsplus: fix comp...
61
  	u64 tmp;
099e9245e   Vyacheslav Dubeyko   hfsplus: implemen...
62

a99b7069a   Geert Uytterhoeven   hfsplus: Fix unde...
63
64
  	hfs_dbg(ATTR_MOD, "init_hdr_attr_file: clump %u, node_size %u
  ",
b73f3d0e7   Fabian Frederick   fs/hfsplus: fix p...
65
  		clump_size, node_size);
099e9245e   Vyacheslav Dubeyko   hfsplus: implemen...
66
67
68
69
70
71
72
73
74
75
76
77
  
  	/* The end of the node contains list of record offsets */
  	rec_offsets = (__be16 *)(buf + node_size);
  
  	desc = (struct hfs_bnode_desc *)buf;
  	desc->type = HFS_NODE_HEADER;
  	desc->num_recs = cpu_to_be16(HFSPLUS_BTREE_HDR_NODE_RECS_COUNT);
  	offset = sizeof(struct hfs_bnode_desc);
  	*--rec_offsets = cpu_to_be16(offset);
  
  	head = (struct hfs_btree_header_rec *)(buf + offset);
  	head->node_size = cpu_to_be16(node_size);
a99b7069a   Geert Uytterhoeven   hfsplus: Fix unde...
78
79
80
  	tmp = i_size_read(attr_file);
  	do_div(tmp, node_size);
  	head->node_count = cpu_to_be32(tmp);
099e9245e   Vyacheslav Dubeyko   hfsplus: implemen...
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
  	head->free_nodes = cpu_to_be32(be32_to_cpu(head->node_count) - 1);
  	head->clump_size = cpu_to_be32(clump_size);
  	head->attributes |= cpu_to_be32(HFS_TREE_BIGKEYS | HFS_TREE_VARIDXKEYS);
  	head->max_key_len = cpu_to_be16(HFSPLUS_ATTR_KEYLEN - sizeof(u16));
  	offset += sizeof(struct hfs_btree_header_rec);
  	*--rec_offsets = cpu_to_be16(offset);
  	offset += HFSPLUS_BTREE_HDR_USER_BYTES;
  	*--rec_offsets = cpu_to_be16(offset);
  
  	hdr_node_map_rec_bits = 8 * (node_size - offset - (4 * sizeof(u16)));
  	if (be32_to_cpu(head->node_count) > hdr_node_map_rec_bits) {
  		u32 map_node_bits;
  		u32 map_nodes;
  
  		desc->next = cpu_to_be32(be32_to_cpu(head->leaf_tail) + 1);
  		map_node_bits = 8 * (node_size - sizeof(struct hfs_bnode_desc) -
  					(2 * sizeof(u16)) - 2);
  		map_nodes = (be32_to_cpu(head->node_count) -
  				hdr_node_map_rec_bits +
  				(map_node_bits - 1)) / map_node_bits;
  		be32_add_cpu(&head->free_nodes, 0 - map_nodes);
  	}
  
  	bmp = buf + offset;
  	used_nodes =
  		be32_to_cpu(head->node_count) - be32_to_cpu(head->free_nodes);
  	used_bmp_bytes = used_nodes / 8;
  	if (used_bmp_bytes) {
  		memset(bmp, 0xFF, used_bmp_bytes);
  		bmp += used_bmp_bytes;
  		used_nodes %= 8;
  	}
  	*bmp = ~(0xFF >> used_nodes);
  	offset += hdr_node_map_rec_bits / 8;
  	*--rec_offsets = cpu_to_be16(offset);
  }
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
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
  static int hfsplus_create_attributes_file(struct super_block *sb)
  {
  	int err = 0;
  	struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb);
  	struct inode *attr_file;
  	struct hfsplus_inode_info *hip;
  	u32 clump_size;
  	u16 node_size = HFSPLUS_ATTR_TREE_NODE_SIZE;
  	char *buf;
  	int index, written;
  	struct address_space *mapping;
  	struct page *page;
  	int old_state = HFSPLUS_EMPTY_ATTR_TREE;
  
  	hfs_dbg(ATTR_MOD, "create_attr_file: ino %d
  ", HFSPLUS_ATTR_CNID);
  
  check_attr_tree_state_again:
  	switch (atomic_read(&sbi->attr_tree_state)) {
  	case HFSPLUS_EMPTY_ATTR_TREE:
  		if (old_state != atomic_cmpxchg(&sbi->attr_tree_state,
  						old_state,
  						HFSPLUS_CREATING_ATTR_TREE))
  			goto check_attr_tree_state_again;
  		break;
  	case HFSPLUS_CREATING_ATTR_TREE:
  		/*
  		 * This state means that another thread is in process
  		 * of AttributesFile creation. Theoretically, it is
  		 * possible to be here. But really __setxattr() method
  		 * first of all calls hfs_find_init() for lookup in
  		 * B-tree of CatalogFile. This method locks mutex of
  		 * CatalogFile's B-tree. As a result, if some thread
  		 * is inside AttributedFile creation operation then
  		 * another threads will be waiting unlocking of
  		 * CatalogFile's B-tree's mutex. However, if code will
  		 * change then we will return error code (-EAGAIN) from
  		 * here. Really, it means that first try to set of xattr
  		 * fails with error but second attempt will have success.
  		 */
  		return -EAGAIN;
  	case HFSPLUS_VALID_ATTR_TREE:
  		return 0;
  	case HFSPLUS_FAILED_ATTR_TREE:
  		return -EOPNOTSUPP;
  	default:
  		BUG();
  	}
  
  	attr_file = hfsplus_iget(sb, HFSPLUS_ATTR_CNID);
  	if (IS_ERR(attr_file)) {
  		pr_err("failed to load attributes file
  ");
  		return PTR_ERR(attr_file);
  	}
  
  	BUG_ON(i_size_read(attr_file) != 0);
  
  	hip = HFSPLUS_I(attr_file);
  
  	clump_size = hfsplus_calc_btree_clump_size(sb->s_blocksize,
  						    node_size,
  						    sbi->sect_count,
  						    HFSPLUS_ATTR_CNID);
  
  	mutex_lock(&hip->extents_lock);
  	hip->clump_blocks = clump_size >> sbi->alloc_blksz_shift;
  	mutex_unlock(&hip->extents_lock);
  
  	if (sbi->free_blocks <= (hip->clump_blocks << 1)) {
  		err = -ENOSPC;
  		goto end_attr_file_creation;
  	}
  
  	while (hip->alloc_blocks < hip->clump_blocks) {
2cd282a1b   Sergei Antonov   hfsplus: fix "unu...
192
  		err = hfsplus_file_extend(attr_file, false);
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
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
  		if (unlikely(err)) {
  			pr_err("failed to extend attributes file
  ");
  			goto end_attr_file_creation;
  		}
  		hip->phys_size = attr_file->i_size =
  			(loff_t)hip->alloc_blocks << sbi->alloc_blksz_shift;
  		hip->fs_blocks = hip->alloc_blocks << sbi->fs_shift;
  		inode_set_bytes(attr_file, attr_file->i_size);
  	}
  
  	buf = kzalloc(node_size, GFP_NOFS);
  	if (!buf) {
  		pr_err("failed to allocate memory for header node
  ");
  		err = -ENOMEM;
  		goto end_attr_file_creation;
  	}
  
  	hfsplus_init_header_node(attr_file, clump_size, buf, node_size);
  
  	mapping = attr_file->i_mapping;
  
  	index = 0;
  	written = 0;
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
218
  	for (; written < node_size; index++, written += PAGE_SIZE) {
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
219
220
221
222
223
224
225
226
227
228
  		void *kaddr;
  
  		page = read_mapping_page(mapping, index, NULL);
  		if (IS_ERR(page)) {
  			err = PTR_ERR(page);
  			goto failed_header_node_init;
  		}
  
  		kaddr = kmap_atomic(page);
  		memcpy(kaddr, buf + written,
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
229
  			min_t(size_t, PAGE_SIZE, node_size - written));
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
230
231
232
  		kunmap_atomic(kaddr);
  
  		set_page_dirty(page);
09cbfeaf1   Kirill A. Shutemov   mm, fs: get rid o...
233
  		put_page(page);
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
  	}
  
  	hfsplus_mark_inode_dirty(attr_file, HFSPLUS_I_ATTR_DIRTY);
  
  	sbi->attr_tree = hfs_btree_open(sb, HFSPLUS_ATTR_CNID);
  	if (!sbi->attr_tree)
  		pr_err("failed to load attributes file
  ");
  
  failed_header_node_init:
  	kfree(buf);
  
  end_attr_file_creation:
  	iput(attr_file);
  
  	if (!err)
  		atomic_set(&sbi->attr_tree_state, HFSPLUS_VALID_ATTR_TREE);
  	else if (err == -ENOSPC)
  		atomic_set(&sbi->attr_tree_state, HFSPLUS_EMPTY_ATTR_TREE);
  	else
  		atomic_set(&sbi->attr_tree_state, HFSPLUS_FAILED_ATTR_TREE);
  
  	return err;
  }
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
  int __hfsplus_setxattr(struct inode *inode, const char *name,
  			const void *value, size_t size, int flags)
  {
  	int err = 0;
  	struct hfs_find_data cat_fd;
  	hfsplus_cat_entry entry;
  	u16 cat_entry_flags, cat_entry_type;
  	u16 folder_finderinfo_len = sizeof(struct DInfo) +
  					sizeof(struct DXInfo);
  	u16 file_finderinfo_len = sizeof(struct FInfo) +
  					sizeof(struct FXInfo);
  
  	if ((!S_ISREG(inode->i_mode) &&
  			!S_ISDIR(inode->i_mode)) ||
  				HFSPLUS_IS_RSRC(inode))
  		return -EOPNOTSUPP;
b168fff72   Christoph Hellwig   hfsplus: use xatt...
274
275
  	if (value == NULL)
  		return hfsplus_removexattr(inode, name);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
276
277
278
  
  	err = hfs_find_init(HFSPLUS_SB(inode->i_sb)->cat_tree, &cat_fd);
  	if (err) {
d61426732   Joe Perches   hfs/hfsplus: conv...
279
280
  		pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
281
282
283
284
285
  		return err;
  	}
  
  	err = hfsplus_find_cat(inode->i_sb, inode->i_ino, &cat_fd);
  	if (err) {
d61426732   Joe Perches   hfs/hfsplus: conv...
286
287
  		pr_err("catalog searching failed
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
288
289
290
291
292
  		goto end_setxattr;
  	}
  
  	if (!strcmp_xattr_finder_info(name)) {
  		if (flags & XATTR_CREATE) {
d61426732   Joe Perches   hfs/hfsplus: conv...
293
294
  			pr_err("xattr exists yet
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
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
  			err = -EOPNOTSUPP;
  			goto end_setxattr;
  		}
  		hfs_bnode_read(cat_fd.bnode, &entry, cat_fd.entryoffset,
  					sizeof(hfsplus_cat_entry));
  		if (be16_to_cpu(entry.type) == HFSPLUS_FOLDER) {
  			if (size == folder_finderinfo_len) {
  				memcpy(&entry.folder.user_info, value,
  						folder_finderinfo_len);
  				hfs_bnode_write(cat_fd.bnode, &entry,
  					cat_fd.entryoffset,
  					sizeof(struct hfsplus_cat_folder));
  				hfsplus_mark_inode_dirty(inode,
  						HFSPLUS_I_CAT_DIRTY);
  			} else {
  				err = -ERANGE;
  				goto end_setxattr;
  			}
  		} else if (be16_to_cpu(entry.type) == HFSPLUS_FILE) {
  			if (size == file_finderinfo_len) {
  				memcpy(&entry.file.user_info, value,
  						file_finderinfo_len);
  				hfs_bnode_write(cat_fd.bnode, &entry,
  					cat_fd.entryoffset,
  					sizeof(struct hfsplus_cat_file));
  				hfsplus_mark_inode_dirty(inode,
  						HFSPLUS_I_CAT_DIRTY);
  			} else {
  				err = -ERANGE;
  				goto end_setxattr;
  			}
  		} else {
  			err = -EOPNOTSUPP;
  			goto end_setxattr;
  		}
  		goto end_setxattr;
  	}
  
  	if (!HFSPLUS_SB(inode->i_sb)->attr_tree) {
95e0d7dbb   Vyacheslav Dubeyko   hfsplus: implemen...
334
335
336
  		err = hfsplus_create_attributes_file(inode->i_sb);
  		if (unlikely(err))
  			goto end_setxattr;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
337
338
339
340
  	}
  
  	if (hfsplus_attr_exists(inode, name)) {
  		if (flags & XATTR_CREATE) {
d61426732   Joe Perches   hfs/hfsplus: conv...
341
342
  			pr_err("xattr exists yet
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
343
344
345
346
347
348
349
350
351
352
353
  			err = -EOPNOTSUPP;
  			goto end_setxattr;
  		}
  		err = hfsplus_delete_attr(inode, name);
  		if (err)
  			goto end_setxattr;
  		err = hfsplus_create_attr(inode, name, value, size);
  		if (err)
  			goto end_setxattr;
  	} else {
  		if (flags & XATTR_REPLACE) {
d61426732   Joe Perches   hfs/hfsplus: conv...
354
355
  			pr_err("cannot replace xattr
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
  			err = -EOPNOTSUPP;
  			goto end_setxattr;
  		}
  		err = hfsplus_create_attr(inode, name, value, size);
  		if (err)
  			goto end_setxattr;
  	}
  
  	cat_entry_type = hfs_bnode_read_u16(cat_fd.bnode, cat_fd.entryoffset);
  	if (cat_entry_type == HFSPLUS_FOLDER) {
  		cat_entry_flags = hfs_bnode_read_u16(cat_fd.bnode,
  				    cat_fd.entryoffset +
  				    offsetof(struct hfsplus_cat_folder, flags));
  		cat_entry_flags |= HFSPLUS_XATTR_EXISTS;
  		if (!strcmp_xattr_acl(name))
  			cat_entry_flags |= HFSPLUS_ACL_EXISTS;
  		hfs_bnode_write_u16(cat_fd.bnode, cat_fd.entryoffset +
  				offsetof(struct hfsplus_cat_folder, flags),
  				cat_entry_flags);
  		hfsplus_mark_inode_dirty(inode, HFSPLUS_I_CAT_DIRTY);
  	} else if (cat_entry_type == HFSPLUS_FILE) {
  		cat_entry_flags = hfs_bnode_read_u16(cat_fd.bnode,
  				    cat_fd.entryoffset +
  				    offsetof(struct hfsplus_cat_file, flags));
  		cat_entry_flags |= HFSPLUS_XATTR_EXISTS;
  		if (!strcmp_xattr_acl(name))
  			cat_entry_flags |= HFSPLUS_ACL_EXISTS;
  		hfs_bnode_write_u16(cat_fd.bnode, cat_fd.entryoffset +
  				    offsetof(struct hfsplus_cat_file, flags),
  				    cat_entry_flags);
  		hfsplus_mark_inode_dirty(inode, HFSPLUS_I_CAT_DIRTY);
  	} else {
d61426732   Joe Perches   hfs/hfsplus: conv...
388
389
  		pr_err("invalid catalog entry type
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
390
391
392
393
394
395
396
397
  		err = -EIO;
  		goto end_setxattr;
  	}
  
  end_setxattr:
  	hfs_find_exit(&cat_fd);
  	return err;
  }
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
398
399
400
  static int name_len(const char *xattr_name, int xattr_name_len)
  {
  	int len = xattr_name_len + 1;
b168fff72   Christoph Hellwig   hfsplus: use xatt...
401
  	if (!is_known_namespace(xattr_name))
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
402
403
404
405
406
407
408
409
410
  		len += XATTR_MAC_OSX_PREFIX_LEN;
  
  	return len;
  }
  
  static int copy_name(char *buffer, const char *xattr_name, int name_len)
  {
  	int len = name_len;
  	int offset = 0;
b168fff72   Christoph Hellwig   hfsplus: use xatt...
411
  	if (!is_known_namespace(xattr_name)) {
29774f3f4   Mathieu Malaterre   fs/hfsplus/xattr....
412
  		memcpy(buffer, XATTR_MAC_OSX_PREFIX, XATTR_MAC_OSX_PREFIX_LEN);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
413
414
415
416
417
418
419
420
421
422
  		offset += XATTR_MAC_OSX_PREFIX_LEN;
  		len += XATTR_MAC_OSX_PREFIX_LEN;
  	}
  
  	strncpy(buffer + offset, xattr_name, name_len);
  	memset(buffer + offset + name_len, 0, 1);
  	len += 1;
  
  	return len;
  }
593012268   Al Viro   switch xattr_hand...
423
  int hfsplus_setxattr(struct inode *inode, const char *name,
5e61473ea   Fabian Frederick   fs/hfsplus: move ...
424
425
426
427
428
  		     const void *value, size_t size, int flags,
  		     const char *prefix, size_t prefixlen)
  {
  	char *xattr_name;
  	int res;
5e61473ea   Fabian Frederick   fs/hfsplus: move ...
429
430
431
432
433
434
  	xattr_name = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_ATTR_MAX_STRLEN + 1,
  		GFP_KERNEL);
  	if (!xattr_name)
  		return -ENOMEM;
  	strcpy(xattr_name, prefix);
  	strcpy(xattr_name + prefixlen, name);
593012268   Al Viro   switch xattr_hand...
435
  	res = __hfsplus_setxattr(inode, xattr_name, value, size, flags);
5e61473ea   Fabian Frederick   fs/hfsplus: move ...
436
437
438
  	kfree(xattr_name);
  	return res;
  }
b4c1107cc   Vyacheslav Dubeyko   hfsplus: integrat...
439
  static ssize_t hfsplus_getxattr_finder_info(struct inode *inode,
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
440
441
442
  						void *value, size_t size)
  {
  	ssize_t res = 0;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
443
444
445
446
447
448
449
450
451
452
453
  	struct hfs_find_data fd;
  	u16 entry_type;
  	u16 folder_rec_len = sizeof(struct DInfo) + sizeof(struct DXInfo);
  	u16 file_rec_len = sizeof(struct FInfo) + sizeof(struct FXInfo);
  	u16 record_len = max(folder_rec_len, file_rec_len);
  	u8 folder_finder_info[sizeof(struct DInfo) + sizeof(struct DXInfo)];
  	u8 file_finder_info[sizeof(struct FInfo) + sizeof(struct FXInfo)];
  
  	if (size >= record_len) {
  		res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->cat_tree, &fd);
  		if (res) {
d61426732   Joe Perches   hfs/hfsplus: conv...
454
455
  			pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
  			return res;
  		}
  		res = hfsplus_find_cat(inode->i_sb, inode->i_ino, &fd);
  		if (res)
  			goto end_getxattr_finder_info;
  		entry_type = hfs_bnode_read_u16(fd.bnode, fd.entryoffset);
  
  		if (entry_type == HFSPLUS_FOLDER) {
  			hfs_bnode_read(fd.bnode, folder_finder_info,
  				fd.entryoffset +
  				offsetof(struct hfsplus_cat_folder, user_info),
  				folder_rec_len);
  			memcpy(value, folder_finder_info, folder_rec_len);
  			res = folder_rec_len;
  		} else if (entry_type == HFSPLUS_FILE) {
  			hfs_bnode_read(fd.bnode, file_finder_info,
  				fd.entryoffset +
  				offsetof(struct hfsplus_cat_file, user_info),
  				file_rec_len);
  			memcpy(value, file_finder_info, file_rec_len);
  			res = file_rec_len;
  		} else {
  			res = -EOPNOTSUPP;
  			goto end_getxattr_finder_info;
  		}
  	} else
  		res = size ? -ERANGE : record_len;
  
  end_getxattr_finder_info:
  	if (size >= record_len)
  		hfs_find_exit(&fd);
  	return res;
  }
b4c1107cc   Vyacheslav Dubeyko   hfsplus: integrat...
489
  ssize_t __hfsplus_getxattr(struct inode *inode, const char *name,
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
490
491
  			 void *value, size_t size)
  {
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
492
493
494
495
496
497
498
499
500
501
502
  	struct hfs_find_data fd;
  	hfsplus_attr_entry *entry;
  	__be32 xattr_record_type;
  	u32 record_type;
  	u16 record_length = 0;
  	ssize_t res = 0;
  
  	if ((!S_ISREG(inode->i_mode) &&
  			!S_ISDIR(inode->i_mode)) ||
  				HFSPLUS_IS_RSRC(inode))
  		return -EOPNOTSUPP;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
503
  	if (!strcmp_xattr_finder_info(name))
b4c1107cc   Vyacheslav Dubeyko   hfsplus: integrat...
504
  		return hfsplus_getxattr_finder_info(inode, value, size);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
505
506
507
508
509
510
  
  	if (!HFSPLUS_SB(inode->i_sb)->attr_tree)
  		return -EOPNOTSUPP;
  
  	entry = hfsplus_alloc_attr_entry();
  	if (!entry) {
d61426732   Joe Perches   hfs/hfsplus: conv...
511
512
  		pr_err("can't allocate xattr entry
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
513
514
515
516
517
  		return -ENOMEM;
  	}
  
  	res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->attr_tree, &fd);
  	if (res) {
d61426732   Joe Perches   hfs/hfsplus: conv...
518
519
  		pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
520
521
522
523
524
525
526
527
  		goto failed_getxattr_init;
  	}
  
  	res = hfsplus_find_attr(inode->i_sb, inode->i_ino, name, &fd);
  	if (res) {
  		if (res == -ENOENT)
  			res = -ENODATA;
  		else
d61426732   Joe Perches   hfs/hfsplus: conv...
528
529
  			pr_err("xattr searching failed
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
530
531
532
533
534
535
536
537
538
539
540
541
  		goto out;
  	}
  
  	hfs_bnode_read(fd.bnode, &xattr_record_type,
  			fd.entryoffset, sizeof(xattr_record_type));
  	record_type = be32_to_cpu(xattr_record_type);
  	if (record_type == HFSPLUS_ATTR_INLINE_DATA) {
  		record_length = hfs_bnode_read_u16(fd.bnode,
  				fd.entryoffset +
  				offsetof(struct hfsplus_attr_inline_data,
  				length));
  		if (record_length > HFSPLUS_MAX_INLINE_DATA_SIZE) {
d61426732   Joe Perches   hfs/hfsplus: conv...
542
543
  			pr_err("invalid xattr record size
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
544
545
546
547
548
  			res = -EIO;
  			goto out;
  		}
  	} else if (record_type == HFSPLUS_ATTR_FORK_DATA ||
  			record_type == HFSPLUS_ATTR_EXTENTS) {
d61426732   Joe Perches   hfs/hfsplus: conv...
549
550
  		pr_err("only inline data xattr are supported
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
551
552
553
  		res = -EOPNOTSUPP;
  		goto out;
  	} else {
d61426732   Joe Perches   hfs/hfsplus: conv...
554
555
  		pr_err("invalid xattr record
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
  		res = -EIO;
  		goto out;
  	}
  
  	if (size) {
  		hfs_bnode_read(fd.bnode, entry, fd.entryoffset,
  				offsetof(struct hfsplus_attr_inline_data,
  					raw_bytes) + record_length);
  	}
  
  	if (size >= record_length) {
  		memcpy(value, entry->inline_data.raw_bytes, record_length);
  		res = record_length;
  	} else
  		res = size ? -ERANGE : record_length;
  
  out:
  	hfs_find_exit(&fd);
  
  failed_getxattr_init:
  	hfsplus_destroy_attr_entry(entry);
  	return res;
  }
b296821a7   Al Viro   xattr_handler: pa...
579
  ssize_t hfsplus_getxattr(struct inode *inode, const char *name,
a3cef4cd6   Fabian Frederick   fs/hfsplus: move ...
580
581
582
583
584
  			 void *value, size_t size,
  			 const char *prefix, size_t prefixlen)
  {
  	int res;
  	char *xattr_name;
a3cef4cd6   Fabian Frederick   fs/hfsplus: move ...
585
586
587
588
589
590
591
  	xattr_name = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_ATTR_MAX_STRLEN + 1,
  			     GFP_KERNEL);
  	if (!xattr_name)
  		return -ENOMEM;
  
  	strcpy(xattr_name, prefix);
  	strcpy(xattr_name + prefixlen, name);
b296821a7   Al Viro   xattr_handler: pa...
592
  	res = __hfsplus_getxattr(inode, xattr_name, value, size);
a3cef4cd6   Fabian Frederick   fs/hfsplus: move ...
593
594
595
596
  	kfree(xattr_name);
  	return res;
  
  }
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
597
598
599
600
601
602
603
604
605
606
607
608
609
610
  static inline int can_list(const char *xattr_name)
  {
  	if (!xattr_name)
  		return 0;
  
  	return strncmp(xattr_name, XATTR_TRUSTED_PREFIX,
  			XATTR_TRUSTED_PREFIX_LEN) ||
  				capable(CAP_SYS_ADMIN);
  }
  
  static ssize_t hfsplus_listxattr_finder_info(struct dentry *dentry,
  						char *buffer, size_t size)
  {
  	ssize_t res = 0;
2b0143b5c   David Howells   VFS: normal files...
611
  	struct inode *inode = d_inode(dentry);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
612
613
614
615
616
617
618
619
620
  	struct hfs_find_data fd;
  	u16 entry_type;
  	u8 folder_finder_info[sizeof(struct DInfo) + sizeof(struct DXInfo)];
  	u8 file_finder_info[sizeof(struct FInfo) + sizeof(struct FXInfo)];
  	unsigned long len, found_bit;
  	int xattr_name_len, symbols_count;
  
  	res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->cat_tree, &fd);
  	if (res) {
d61426732   Joe Perches   hfs/hfsplus: conv...
621
622
  		pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
  		return res;
  	}
  
  	res = hfsplus_find_cat(inode->i_sb, inode->i_ino, &fd);
  	if (res)
  		goto end_listxattr_finder_info;
  
  	entry_type = hfs_bnode_read_u16(fd.bnode, fd.entryoffset);
  	if (entry_type == HFSPLUS_FOLDER) {
  		len = sizeof(struct DInfo) + sizeof(struct DXInfo);
  		hfs_bnode_read(fd.bnode, folder_finder_info,
  				fd.entryoffset +
  				offsetof(struct hfsplus_cat_folder, user_info),
  				len);
  		found_bit = find_first_bit((void *)folder_finder_info, len*8);
  	} else if (entry_type == HFSPLUS_FILE) {
  		len = sizeof(struct FInfo) + sizeof(struct FXInfo);
  		hfs_bnode_read(fd.bnode, file_finder_info,
  				fd.entryoffset +
  				offsetof(struct hfsplus_cat_file, user_info),
  				len);
  		found_bit = find_first_bit((void *)file_finder_info, len*8);
  	} else {
  		res = -EOPNOTSUPP;
  		goto end_listxattr_finder_info;
  	}
  
  	if (found_bit >= (len*8))
  		res = 0;
  	else {
  		symbols_count = sizeof(HFSPLUS_XATTR_FINDER_INFO_NAME) - 1;
  		xattr_name_len =
  			name_len(HFSPLUS_XATTR_FINDER_INFO_NAME, symbols_count);
  		if (!buffer || !size) {
  			if (can_list(HFSPLUS_XATTR_FINDER_INFO_NAME))
  				res = xattr_name_len;
  		} else if (can_list(HFSPLUS_XATTR_FINDER_INFO_NAME)) {
  			if (size < xattr_name_len)
  				res = -ERANGE;
  			else {
  				res = copy_name(buffer,
  						HFSPLUS_XATTR_FINDER_INFO_NAME,
  						symbols_count);
  			}
  		}
  	}
  
  end_listxattr_finder_info:
  	hfs_find_exit(&fd);
  
  	return res;
  }
  
  ssize_t hfsplus_listxattr(struct dentry *dentry, char *buffer, size_t size)
  {
  	ssize_t err;
  	ssize_t res = 0;
2b0143b5c   David Howells   VFS: normal files...
680
  	struct inode *inode = d_inode(dentry);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
681
682
683
  	struct hfs_find_data fd;
  	u16 key_len = 0;
  	struct hfsplus_attr_key attr_key;
017f8da43   Hin-Tak Leung   hfsplus: fix wors...
684
  	char *strbuf;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
  	int xattr_name_len;
  
  	if ((!S_ISREG(inode->i_mode) &&
  			!S_ISDIR(inode->i_mode)) ||
  				HFSPLUS_IS_RSRC(inode))
  		return -EOPNOTSUPP;
  
  	res = hfsplus_listxattr_finder_info(dentry, buffer, size);
  	if (res < 0)
  		return res;
  	else if (!HFSPLUS_SB(inode->i_sb)->attr_tree)
  		return (res == 0) ? -EOPNOTSUPP : res;
  
  	err = hfs_find_init(HFSPLUS_SB(inode->i_sb)->attr_tree, &fd);
  	if (err) {
d61426732   Joe Perches   hfs/hfsplus: conv...
700
701
  		pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
702
703
  		return err;
  	}
017f8da43   Hin-Tak Leung   hfsplus: fix wors...
704
705
706
707
708
709
  	strbuf = kmalloc(NLS_MAX_CHARSET_SIZE * HFSPLUS_ATTR_MAX_STRLEN +
  			XATTR_MAC_OSX_PREFIX_LEN + 1, GFP_KERNEL);
  	if (!strbuf) {
  		res = -ENOMEM;
  		goto out;
  	}
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
  	err = hfsplus_find_attr(inode->i_sb, inode->i_ino, NULL, &fd);
  	if (err) {
  		if (err == -ENOENT) {
  			if (res == 0)
  				res = -ENODATA;
  			goto end_listxattr;
  		} else {
  			res = err;
  			goto end_listxattr;
  		}
  	}
  
  	for (;;) {
  		key_len = hfs_bnode_read_u16(fd.bnode, fd.keyoffset);
  		if (key_len == 0 || key_len > fd.tree->max_key_len) {
d61426732   Joe Perches   hfs/hfsplus: conv...
725
726
  			pr_err("invalid xattr key length: %d
  ", key_len);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
727
728
729
730
731
732
733
734
735
  			res = -EIO;
  			goto end_listxattr;
  		}
  
  		hfs_bnode_read(fd.bnode, &attr_key,
  				fd.keyoffset, key_len + sizeof(key_len));
  
  		if (be32_to_cpu(attr_key.cnid) != inode->i_ino)
  			goto end_listxattr;
017f8da43   Hin-Tak Leung   hfsplus: fix wors...
736
  		xattr_name_len = NLS_MAX_CHARSET_SIZE * HFSPLUS_ATTR_MAX_STRLEN;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
737
738
739
  		if (hfsplus_uni2asc(inode->i_sb,
  			(const struct hfsplus_unistr *)&fd.key->attr.key_name,
  					strbuf, &xattr_name_len)) {
d61426732   Joe Perches   hfs/hfsplus: conv...
740
741
  			pr_err("unicode conversion failed
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
  			res = -EIO;
  			goto end_listxattr;
  		}
  
  		if (!buffer || !size) {
  			if (can_list(strbuf))
  				res += name_len(strbuf, xattr_name_len);
  		} else if (can_list(strbuf)) {
  			if (size < (res + name_len(strbuf, xattr_name_len))) {
  				res = -ERANGE;
  				goto end_listxattr;
  			} else
  				res += copy_name(buffer + res,
  						strbuf, xattr_name_len);
  		}
  
  		if (hfs_brec_goto(&fd, 1))
  			goto end_listxattr;
  	}
  
  end_listxattr:
017f8da43   Hin-Tak Leung   hfsplus: fix wors...
763
764
  	kfree(strbuf);
  out:
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
765
766
767
  	hfs_find_exit(&fd);
  	return res;
  }
b168fff72   Christoph Hellwig   hfsplus: use xatt...
768
  static int hfsplus_removexattr(struct inode *inode, const char *name)
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
769
770
  {
  	int err = 0;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
771
772
773
774
775
  	struct hfs_find_data cat_fd;
  	u16 flags;
  	u16 cat_entry_type;
  	int is_xattr_acl_deleted = 0;
  	int is_all_xattrs_deleted = 0;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
776
777
  	if (!HFSPLUS_SB(inode->i_sb)->attr_tree)
  		return -EOPNOTSUPP;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
778
779
780
781
782
  	if (!strcmp_xattr_finder_info(name))
  		return -EOPNOTSUPP;
  
  	err = hfs_find_init(HFSPLUS_SB(inode->i_sb)->cat_tree, &cat_fd);
  	if (err) {
d61426732   Joe Perches   hfs/hfsplus: conv...
783
784
  		pr_err("can't init xattr find struct
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
785
786
787
788
789
  		return err;
  	}
  
  	err = hfsplus_find_cat(inode->i_sb, inode->i_ino, &cat_fd);
  	if (err) {
d61426732   Joe Perches   hfs/hfsplus: conv...
790
791
  		pr_err("catalog searching failed
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
  		goto end_removexattr;
  	}
  
  	err = hfsplus_delete_attr(inode, name);
  	if (err)
  		goto end_removexattr;
  
  	is_xattr_acl_deleted = !strcmp_xattr_acl(name);
  	is_all_xattrs_deleted = !hfsplus_attr_exists(inode, NULL);
  
  	if (!is_xattr_acl_deleted && !is_all_xattrs_deleted)
  		goto end_removexattr;
  
  	cat_entry_type = hfs_bnode_read_u16(cat_fd.bnode, cat_fd.entryoffset);
  
  	if (cat_entry_type == HFSPLUS_FOLDER) {
  		flags = hfs_bnode_read_u16(cat_fd.bnode, cat_fd.entryoffset +
  				offsetof(struct hfsplus_cat_folder, flags));
  		if (is_xattr_acl_deleted)
  			flags &= ~HFSPLUS_ACL_EXISTS;
  		if (is_all_xattrs_deleted)
  			flags &= ~HFSPLUS_XATTR_EXISTS;
  		hfs_bnode_write_u16(cat_fd.bnode, cat_fd.entryoffset +
  				offsetof(struct hfsplus_cat_folder, flags),
  				flags);
  		hfsplus_mark_inode_dirty(inode, HFSPLUS_I_CAT_DIRTY);
  	} else if (cat_entry_type == HFSPLUS_FILE) {
  		flags = hfs_bnode_read_u16(cat_fd.bnode, cat_fd.entryoffset +
  				offsetof(struct hfsplus_cat_file, flags));
  		if (is_xattr_acl_deleted)
  			flags &= ~HFSPLUS_ACL_EXISTS;
  		if (is_all_xattrs_deleted)
  			flags &= ~HFSPLUS_XATTR_EXISTS;
  		hfs_bnode_write_u16(cat_fd.bnode, cat_fd.entryoffset +
  				offsetof(struct hfsplus_cat_file, flags),
  				flags);
  		hfsplus_mark_inode_dirty(inode, HFSPLUS_I_CAT_DIRTY);
  	} else {
d61426732   Joe Perches   hfs/hfsplus: conv...
830
831
  		pr_err("invalid catalog entry type
  ");
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
832
833
834
835
836
837
838
839
  		err = -EIO;
  		goto end_removexattr;
  	}
  
  end_removexattr:
  	hfs_find_exit(&cat_fd);
  	return err;
  }
d9a82a040   Andreas Gruenbacher   xattr handlers: P...
840
  static int hfsplus_osx_getxattr(const struct xattr_handler *handler,
b296821a7   Al Viro   xattr_handler: pa...
841
842
  				struct dentry *unused, struct inode *inode,
  				const char *name, void *buffer, size_t size)
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
843
  {
b168fff72   Christoph Hellwig   hfsplus: use xatt...
844
845
846
847
848
849
  	/*
  	 * Don't allow retrieving properly prefixed attributes
  	 * by prepending them with "osx."
  	 */
  	if (is_known_namespace(name))
  		return -EOPNOTSUPP;
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
850

db579e76f   Thomas Hebb   hfsplus: don't st...
851
852
853
854
855
856
  	/*
  	 * osx is the namespace we use to indicate an unprefixed
  	 * attribute on the filesystem (like the ones that OS X
  	 * creates), so we pass the name through unmodified (after
  	 * ensuring it doesn't conflict with another namespace).
  	 */
b296821a7   Al Viro   xattr_handler: pa...
857
  	return __hfsplus_getxattr(inode, name, buffer, size);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
858
  }
d9a82a040   Andreas Gruenbacher   xattr handlers: P...
859
  static int hfsplus_osx_setxattr(const struct xattr_handler *handler,
593012268   Al Viro   switch xattr_hand...
860
861
862
  				struct dentry *unused, struct inode *inode,
  				const char *name, const void *buffer,
  				size_t size, int flags)
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
863
  {
b168fff72   Christoph Hellwig   hfsplus: use xatt...
864
865
866
867
  	/*
  	 * Don't allow setting properly prefixed attributes
  	 * by prepending them with "osx."
  	 */
2796e4cec   Christoph Hellwig   hfsplus: remove c...
868
869
  	if (is_known_namespace(name))
  		return -EOPNOTSUPP;
db579e76f   Thomas Hebb   hfsplus: don't st...
870
871
872
873
874
875
  	/*
  	 * osx is the namespace we use to indicate an unprefixed
  	 * attribute on the filesystem (like the ones that OS X
  	 * creates), so we pass the name through unmodified (after
  	 * ensuring it doesn't conflict with another namespace).
  	 */
593012268   Al Viro   switch xattr_hand...
876
  	return __hfsplus_setxattr(inode, name, buffer, size, flags);
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
877
  }
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
878
879
  const struct xattr_handler hfsplus_xattr_osx_handler = {
  	.prefix	= XATTR_MAC_OSX_PREFIX,
127e5f5ae   Vyacheslav Dubeyko   hfsplus: rework f...
880
881
882
  	.get	= hfsplus_osx_getxattr,
  	.set	= hfsplus_osx_setxattr,
  };