xref: /openbmc/linux/fs/ntfs3/xattr.c (revision 87e21c99bad763524c953ff4d1a61ee19038ddc2)
1be71b5cbSKonstantin Komarov // SPDX-License-Identifier: GPL-2.0
2be71b5cbSKonstantin Komarov /*
3be71b5cbSKonstantin Komarov  *
4be71b5cbSKonstantin Komarov  * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5be71b5cbSKonstantin Komarov  *
6be71b5cbSKonstantin Komarov  */
7be71b5cbSKonstantin Komarov 
8be71b5cbSKonstantin Komarov #include <linux/fs.h>
9be71b5cbSKonstantin Komarov #include <linux/posix_acl.h>
10be71b5cbSKonstantin Komarov #include <linux/posix_acl_xattr.h>
11be71b5cbSKonstantin Komarov #include <linux/xattr.h>
12be71b5cbSKonstantin Komarov 
13be71b5cbSKonstantin Komarov #include "debug.h"
14be71b5cbSKonstantin Komarov #include "ntfs.h"
15be71b5cbSKonstantin Komarov #include "ntfs_fs.h"
16be71b5cbSKonstantin Komarov 
17be71b5cbSKonstantin Komarov // clang-format off
18be71b5cbSKonstantin Komarov #define SYSTEM_DOS_ATTRIB    "system.dos_attrib"
19be71b5cbSKonstantin Komarov #define SYSTEM_NTFS_ATTRIB   "system.ntfs_attrib"
20be71b5cbSKonstantin Komarov #define SYSTEM_NTFS_SECURITY "system.ntfs_security"
21be71b5cbSKonstantin Komarov // clang-format on
22be71b5cbSKonstantin Komarov 
23be71b5cbSKonstantin Komarov static inline size_t unpacked_ea_size(const struct EA_FULL *ea)
24be71b5cbSKonstantin Komarov {
25be71b5cbSKonstantin Komarov 	return ea->size ? le32_to_cpu(ea->size)
26d3624466SKonstantin Komarov 			: ALIGN(struct_size(ea, name,
27d3624466SKonstantin Komarov 					    1 + ea->name_len +
28d3624466SKonstantin Komarov 						    le16_to_cpu(ea->elength)),
29d3624466SKonstantin Komarov 				4);
30be71b5cbSKonstantin Komarov }
31be71b5cbSKonstantin Komarov 
32be71b5cbSKonstantin Komarov static inline size_t packed_ea_size(const struct EA_FULL *ea)
33be71b5cbSKonstantin Komarov {
34be71b5cbSKonstantin Komarov 	return struct_size(ea, name,
35be71b5cbSKonstantin Komarov 			   1 + ea->name_len + le16_to_cpu(ea->elength)) -
36be71b5cbSKonstantin Komarov 	       offsetof(struct EA_FULL, flags);
37be71b5cbSKonstantin Komarov }
38be71b5cbSKonstantin Komarov 
39be71b5cbSKonstantin Komarov /*
40be71b5cbSKonstantin Komarov  * find_ea
41be71b5cbSKonstantin Komarov  *
42e8b8e97fSKari Argillander  * Assume there is at least one xattr in the list.
43be71b5cbSKonstantin Komarov  */
44be71b5cbSKonstantin Komarov static inline bool find_ea(const struct EA_FULL *ea_all, u32 bytes,
45be71b5cbSKonstantin Komarov 			   const char *name, u8 name_len, u32 *off)
46be71b5cbSKonstantin Komarov {
47be71b5cbSKonstantin Komarov 	*off = 0;
48be71b5cbSKonstantin Komarov 
49be71b5cbSKonstantin Komarov 	if (!ea_all || !bytes)
50be71b5cbSKonstantin Komarov 		return false;
51be71b5cbSKonstantin Komarov 
52be71b5cbSKonstantin Komarov 	for (;;) {
53be71b5cbSKonstantin Komarov 		const struct EA_FULL *ea = Add2Ptr(ea_all, *off);
54be71b5cbSKonstantin Komarov 		u32 next_off = *off + unpacked_ea_size(ea);
55be71b5cbSKonstantin Komarov 
56be71b5cbSKonstantin Komarov 		if (next_off > bytes)
57be71b5cbSKonstantin Komarov 			return false;
58be71b5cbSKonstantin Komarov 
59be71b5cbSKonstantin Komarov 		if (ea->name_len == name_len &&
60be71b5cbSKonstantin Komarov 		    !memcmp(ea->name, name, name_len))
61be71b5cbSKonstantin Komarov 			return true;
62be71b5cbSKonstantin Komarov 
63be71b5cbSKonstantin Komarov 		*off = next_off;
64be71b5cbSKonstantin Komarov 		if (next_off >= bytes)
65be71b5cbSKonstantin Komarov 			return false;
66be71b5cbSKonstantin Komarov 	}
67be71b5cbSKonstantin Komarov }
68be71b5cbSKonstantin Komarov 
69be71b5cbSKonstantin Komarov /*
70e8b8e97fSKari Argillander  * ntfs_read_ea - Read all extended attributes.
71e8b8e97fSKari Argillander  * @ea:		New allocated memory.
72e8b8e97fSKari Argillander  * @info:	Pointer into resident data.
73be71b5cbSKonstantin Komarov  */
74be71b5cbSKonstantin Komarov static int ntfs_read_ea(struct ntfs_inode *ni, struct EA_FULL **ea,
75be71b5cbSKonstantin Komarov 			size_t add_bytes, const struct EA_INFO **info)
76be71b5cbSKonstantin Komarov {
77be71b5cbSKonstantin Komarov 	int err;
78cff32466SKonstantin Komarov 	struct ntfs_sb_info *sbi = ni->mi.sbi;
79be71b5cbSKonstantin Komarov 	struct ATTR_LIST_ENTRY *le = NULL;
80be71b5cbSKonstantin Komarov 	struct ATTRIB *attr_info, *attr_ea;
81be71b5cbSKonstantin Komarov 	void *ea_p;
82be71b5cbSKonstantin Komarov 	u32 size;
83be71b5cbSKonstantin Komarov 
84be71b5cbSKonstantin Komarov 	static_assert(le32_to_cpu(ATTR_EA_INFO) < le32_to_cpu(ATTR_EA));
85be71b5cbSKonstantin Komarov 
86be71b5cbSKonstantin Komarov 	*ea = NULL;
87be71b5cbSKonstantin Komarov 	*info = NULL;
88be71b5cbSKonstantin Komarov 
89be71b5cbSKonstantin Komarov 	attr_info =
90be71b5cbSKonstantin Komarov 		ni_find_attr(ni, NULL, &le, ATTR_EA_INFO, NULL, 0, NULL, NULL);
91be71b5cbSKonstantin Komarov 	attr_ea =
92be71b5cbSKonstantin Komarov 		ni_find_attr(ni, attr_info, &le, ATTR_EA, NULL, 0, NULL, NULL);
93be71b5cbSKonstantin Komarov 
94be71b5cbSKonstantin Komarov 	if (!attr_ea || !attr_info)
95be71b5cbSKonstantin Komarov 		return 0;
96be71b5cbSKonstantin Komarov 
97be71b5cbSKonstantin Komarov 	*info = resident_data_ex(attr_info, sizeof(struct EA_INFO));
98be71b5cbSKonstantin Komarov 	if (!*info)
99be71b5cbSKonstantin Komarov 		return -EINVAL;
100be71b5cbSKonstantin Komarov 
101e8b8e97fSKari Argillander 	/* Check Ea limit. */
102be71b5cbSKonstantin Komarov 	size = le32_to_cpu((*info)->size);
103cff32466SKonstantin Komarov 	if (size > sbi->ea_max_size)
104be71b5cbSKonstantin Komarov 		return -EFBIG;
105be71b5cbSKonstantin Komarov 
106cff32466SKonstantin Komarov 	if (attr_size(attr_ea) > sbi->ea_max_size)
107be71b5cbSKonstantin Komarov 		return -EFBIG;
108be71b5cbSKonstantin Komarov 
109e8b8e97fSKari Argillander 	/* Allocate memory for packed Ea. */
110195c52bdSKari Argillander 	ea_p = kmalloc(size + add_bytes, GFP_NOFS);
111be71b5cbSKonstantin Komarov 	if (!ea_p)
112be71b5cbSKonstantin Komarov 		return -ENOMEM;
113be71b5cbSKonstantin Komarov 
114cff32466SKonstantin Komarov 	if (!size) {
115*87e21c99SKonstantin Komarov 		/* EA info persists, but xattr is empty. Looks like EA problem. */
116cff32466SKonstantin Komarov 	} else if (attr_ea->non_res) {
117be71b5cbSKonstantin Komarov 		struct runs_tree run;
118be71b5cbSKonstantin Komarov 
119be71b5cbSKonstantin Komarov 		run_init(&run);
120be71b5cbSKonstantin Komarov 
121be71b5cbSKonstantin Komarov 		err = attr_load_runs(attr_ea, ni, &run, NULL);
122be71b5cbSKonstantin Komarov 		if (!err)
123cff32466SKonstantin Komarov 			err = ntfs_read_run_nb(sbi, &run, 0, ea_p, size, NULL);
124be71b5cbSKonstantin Komarov 		run_close(&run);
125be71b5cbSKonstantin Komarov 
126be71b5cbSKonstantin Komarov 		if (err)
127be71b5cbSKonstantin Komarov 			goto out;
128be71b5cbSKonstantin Komarov 	} else {
129be71b5cbSKonstantin Komarov 		void *p = resident_data_ex(attr_ea, size);
130be71b5cbSKonstantin Komarov 
131be71b5cbSKonstantin Komarov 		if (!p) {
132be71b5cbSKonstantin Komarov 			err = -EINVAL;
133be71b5cbSKonstantin Komarov 			goto out;
134be71b5cbSKonstantin Komarov 		}
135be71b5cbSKonstantin Komarov 		memcpy(ea_p, p, size);
136be71b5cbSKonstantin Komarov 	}
137be71b5cbSKonstantin Komarov 
138be71b5cbSKonstantin Komarov 	memset(Add2Ptr(ea_p, size), 0, add_bytes);
139be71b5cbSKonstantin Komarov 	*ea = ea_p;
140be71b5cbSKonstantin Komarov 	return 0;
141be71b5cbSKonstantin Komarov 
142be71b5cbSKonstantin Komarov out:
143195c52bdSKari Argillander 	kfree(ea_p);
144be71b5cbSKonstantin Komarov 	*ea = NULL;
145be71b5cbSKonstantin Komarov 	return err;
146be71b5cbSKonstantin Komarov }
147be71b5cbSKonstantin Komarov 
148be71b5cbSKonstantin Komarov /*
149be71b5cbSKonstantin Komarov  * ntfs_list_ea
150be71b5cbSKonstantin Komarov  *
151e8b8e97fSKari Argillander  * Copy a list of xattrs names into the buffer
152e8b8e97fSKari Argillander  * provided, or compute the buffer size required.
153be71b5cbSKonstantin Komarov  *
154e8b8e97fSKari Argillander  * Return:
155e8b8e97fSKari Argillander  * * Number of bytes used / required on
156e8b8e97fSKari Argillander  * * -ERRNO - on failure
157be71b5cbSKonstantin Komarov  */
158be71b5cbSKonstantin Komarov static ssize_t ntfs_list_ea(struct ntfs_inode *ni, char *buffer,
159be71b5cbSKonstantin Komarov 			    size_t bytes_per_buffer)
160be71b5cbSKonstantin Komarov {
161be71b5cbSKonstantin Komarov 	const struct EA_INFO *info;
162be71b5cbSKonstantin Komarov 	struct EA_FULL *ea_all = NULL;
163be71b5cbSKonstantin Komarov 	const struct EA_FULL *ea;
164be71b5cbSKonstantin Komarov 	u32 off, size;
165be71b5cbSKonstantin Komarov 	int err;
166be71b5cbSKonstantin Komarov 	size_t ret;
167be71b5cbSKonstantin Komarov 
168be71b5cbSKonstantin Komarov 	err = ntfs_read_ea(ni, &ea_all, 0, &info);
169be71b5cbSKonstantin Komarov 	if (err)
170be71b5cbSKonstantin Komarov 		return err;
171be71b5cbSKonstantin Komarov 
172be71b5cbSKonstantin Komarov 	if (!info || !ea_all)
173be71b5cbSKonstantin Komarov 		return 0;
174be71b5cbSKonstantin Komarov 
175be71b5cbSKonstantin Komarov 	size = le32_to_cpu(info->size);
176be71b5cbSKonstantin Komarov 
177e8b8e97fSKari Argillander 	/* Enumerate all xattrs. */
178be71b5cbSKonstantin Komarov 	for (ret = 0, off = 0; off < size; off += unpacked_ea_size(ea)) {
179be71b5cbSKonstantin Komarov 		ea = Add2Ptr(ea_all, off);
180be71b5cbSKonstantin Komarov 
181be71b5cbSKonstantin Komarov 		if (buffer) {
182be71b5cbSKonstantin Komarov 			if (ret + ea->name_len + 1 > bytes_per_buffer) {
183be71b5cbSKonstantin Komarov 				err = -ERANGE;
184be71b5cbSKonstantin Komarov 				goto out;
185be71b5cbSKonstantin Komarov 			}
186be71b5cbSKonstantin Komarov 
187be71b5cbSKonstantin Komarov 			memcpy(buffer + ret, ea->name, ea->name_len);
188be71b5cbSKonstantin Komarov 			buffer[ret + ea->name_len] = 0;
189be71b5cbSKonstantin Komarov 		}
190be71b5cbSKonstantin Komarov 
191be71b5cbSKonstantin Komarov 		ret += ea->name_len + 1;
192be71b5cbSKonstantin Komarov 	}
193be71b5cbSKonstantin Komarov 
194be71b5cbSKonstantin Komarov out:
195195c52bdSKari Argillander 	kfree(ea_all);
196be71b5cbSKonstantin Komarov 	return err ? err : ret;
197be71b5cbSKonstantin Komarov }
198be71b5cbSKonstantin Komarov 
199be71b5cbSKonstantin Komarov static int ntfs_get_ea(struct inode *inode, const char *name, size_t name_len,
200be71b5cbSKonstantin Komarov 		       void *buffer, size_t size, size_t *required)
201be71b5cbSKonstantin Komarov {
202be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
203be71b5cbSKonstantin Komarov 	const struct EA_INFO *info;
204be71b5cbSKonstantin Komarov 	struct EA_FULL *ea_all = NULL;
205be71b5cbSKonstantin Komarov 	const struct EA_FULL *ea;
206be71b5cbSKonstantin Komarov 	u32 off, len;
207be71b5cbSKonstantin Komarov 	int err;
208be71b5cbSKonstantin Komarov 
209be71b5cbSKonstantin Komarov 	if (!(ni->ni_flags & NI_FLAG_EA))
210be71b5cbSKonstantin Komarov 		return -ENODATA;
211be71b5cbSKonstantin Komarov 
212be71b5cbSKonstantin Komarov 	if (!required)
213be71b5cbSKonstantin Komarov 		ni_lock(ni);
214be71b5cbSKonstantin Komarov 
215be71b5cbSKonstantin Komarov 	len = 0;
216be71b5cbSKonstantin Komarov 
217be71b5cbSKonstantin Komarov 	if (name_len > 255) {
218be71b5cbSKonstantin Komarov 		err = -ENAMETOOLONG;
219be71b5cbSKonstantin Komarov 		goto out;
220be71b5cbSKonstantin Komarov 	}
221be71b5cbSKonstantin Komarov 
222be71b5cbSKonstantin Komarov 	err = ntfs_read_ea(ni, &ea_all, 0, &info);
223be71b5cbSKonstantin Komarov 	if (err)
224be71b5cbSKonstantin Komarov 		goto out;
225be71b5cbSKonstantin Komarov 
226be71b5cbSKonstantin Komarov 	if (!info)
227be71b5cbSKonstantin Komarov 		goto out;
228be71b5cbSKonstantin Komarov 
229e8b8e97fSKari Argillander 	/* Enumerate all xattrs. */
230be71b5cbSKonstantin Komarov 	if (!find_ea(ea_all, le32_to_cpu(info->size), name, name_len, &off)) {
231be71b5cbSKonstantin Komarov 		err = -ENODATA;
232be71b5cbSKonstantin Komarov 		goto out;
233be71b5cbSKonstantin Komarov 	}
234be71b5cbSKonstantin Komarov 	ea = Add2Ptr(ea_all, off);
235be71b5cbSKonstantin Komarov 
236be71b5cbSKonstantin Komarov 	len = le16_to_cpu(ea->elength);
237be71b5cbSKonstantin Komarov 	if (!buffer) {
238be71b5cbSKonstantin Komarov 		err = 0;
239be71b5cbSKonstantin Komarov 		goto out;
240be71b5cbSKonstantin Komarov 	}
241be71b5cbSKonstantin Komarov 
242be71b5cbSKonstantin Komarov 	if (len > size) {
243be71b5cbSKonstantin Komarov 		err = -ERANGE;
244be71b5cbSKonstantin Komarov 		if (required)
245be71b5cbSKonstantin Komarov 			*required = len;
246be71b5cbSKonstantin Komarov 		goto out;
247be71b5cbSKonstantin Komarov 	}
248be71b5cbSKonstantin Komarov 
249be71b5cbSKonstantin Komarov 	memcpy(buffer, ea->name + ea->name_len + 1, len);
250be71b5cbSKonstantin Komarov 	err = 0;
251be71b5cbSKonstantin Komarov 
252be71b5cbSKonstantin Komarov out:
253195c52bdSKari Argillander 	kfree(ea_all);
254be71b5cbSKonstantin Komarov 	if (!required)
255be71b5cbSKonstantin Komarov 		ni_unlock(ni);
256be71b5cbSKonstantin Komarov 
257be71b5cbSKonstantin Komarov 	return err ? err : len;
258be71b5cbSKonstantin Komarov }
259be71b5cbSKonstantin Komarov 
260be71b5cbSKonstantin Komarov static noinline int ntfs_set_ea(struct inode *inode, const char *name,
261be71b5cbSKonstantin Komarov 				size_t name_len, const void *value,
262d81e06beSKonstantin Komarov 				size_t val_size, int flags)
263be71b5cbSKonstantin Komarov {
264be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
265be71b5cbSKonstantin Komarov 	struct ntfs_sb_info *sbi = ni->mi.sbi;
266be71b5cbSKonstantin Komarov 	int err;
267be71b5cbSKonstantin Komarov 	struct EA_INFO ea_info;
268be71b5cbSKonstantin Komarov 	const struct EA_INFO *info;
269be71b5cbSKonstantin Komarov 	struct EA_FULL *new_ea;
270be71b5cbSKonstantin Komarov 	struct EA_FULL *ea_all = NULL;
271be71b5cbSKonstantin Komarov 	size_t add, new_pack;
272be71b5cbSKonstantin Komarov 	u32 off, size;
273be71b5cbSKonstantin Komarov 	__le16 size_pack;
274be71b5cbSKonstantin Komarov 	struct ATTRIB *attr;
275be71b5cbSKonstantin Komarov 	struct ATTR_LIST_ENTRY *le;
276be71b5cbSKonstantin Komarov 	struct mft_inode *mi;
277be71b5cbSKonstantin Komarov 	struct runs_tree ea_run;
278be71b5cbSKonstantin Komarov 	u64 new_sz;
279be71b5cbSKonstantin Komarov 	void *p;
280be71b5cbSKonstantin Komarov 
281be71b5cbSKonstantin Komarov 	ni_lock(ni);
282be71b5cbSKonstantin Komarov 
283be71b5cbSKonstantin Komarov 	run_init(&ea_run);
284be71b5cbSKonstantin Komarov 
285be71b5cbSKonstantin Komarov 	if (name_len > 255) {
286be71b5cbSKonstantin Komarov 		err = -ENAMETOOLONG;
287be71b5cbSKonstantin Komarov 		goto out;
288be71b5cbSKonstantin Komarov 	}
289be71b5cbSKonstantin Komarov 
290fa3cacf5SKari Argillander 	add = ALIGN(struct_size(ea_all, name, 1 + name_len + val_size), 4);
291be71b5cbSKonstantin Komarov 
292be71b5cbSKonstantin Komarov 	err = ntfs_read_ea(ni, &ea_all, add, &info);
293be71b5cbSKonstantin Komarov 	if (err)
294be71b5cbSKonstantin Komarov 		goto out;
295be71b5cbSKonstantin Komarov 
296be71b5cbSKonstantin Komarov 	if (!info) {
297be71b5cbSKonstantin Komarov 		memset(&ea_info, 0, sizeof(ea_info));
298be71b5cbSKonstantin Komarov 		size = 0;
299be71b5cbSKonstantin Komarov 		size_pack = 0;
300be71b5cbSKonstantin Komarov 	} else {
301be71b5cbSKonstantin Komarov 		memcpy(&ea_info, info, sizeof(ea_info));
302be71b5cbSKonstantin Komarov 		size = le32_to_cpu(ea_info.size);
303be71b5cbSKonstantin Komarov 		size_pack = ea_info.size_pack;
304be71b5cbSKonstantin Komarov 	}
305be71b5cbSKonstantin Komarov 
306be71b5cbSKonstantin Komarov 	if (info && find_ea(ea_all, size, name, name_len, &off)) {
307be71b5cbSKonstantin Komarov 		struct EA_FULL *ea;
308be71b5cbSKonstantin Komarov 		size_t ea_sz;
309be71b5cbSKonstantin Komarov 
310be71b5cbSKonstantin Komarov 		if (flags & XATTR_CREATE) {
311be71b5cbSKonstantin Komarov 			err = -EEXIST;
312be71b5cbSKonstantin Komarov 			goto out;
313be71b5cbSKonstantin Komarov 		}
314be71b5cbSKonstantin Komarov 
315be71b5cbSKonstantin Komarov 		ea = Add2Ptr(ea_all, off);
316be71b5cbSKonstantin Komarov 
317be71b5cbSKonstantin Komarov 		/*
318be71b5cbSKonstantin Komarov 		 * Check simple case when we try to insert xattr with the same value
319be71b5cbSKonstantin Komarov 		 * e.g. ntfs_save_wsl_perm
320be71b5cbSKonstantin Komarov 		 */
321be71b5cbSKonstantin Komarov 		if (val_size && le16_to_cpu(ea->elength) == val_size &&
322be71b5cbSKonstantin Komarov 		    !memcmp(ea->name + ea->name_len + 1, value, val_size)) {
323e8b8e97fSKari Argillander 			/* xattr already contains the required value. */
324be71b5cbSKonstantin Komarov 			goto out;
325be71b5cbSKonstantin Komarov 		}
326be71b5cbSKonstantin Komarov 
327e8b8e97fSKari Argillander 		/* Remove current xattr. */
328be71b5cbSKonstantin Komarov 		if (ea->flags & FILE_NEED_EA)
329be71b5cbSKonstantin Komarov 			le16_add_cpu(&ea_info.count, -1);
330be71b5cbSKonstantin Komarov 
331be71b5cbSKonstantin Komarov 		ea_sz = unpacked_ea_size(ea);
332be71b5cbSKonstantin Komarov 
333be71b5cbSKonstantin Komarov 		le16_add_cpu(&ea_info.size_pack, 0 - packed_ea_size(ea));
334be71b5cbSKonstantin Komarov 
335be71b5cbSKonstantin Komarov 		memmove(ea, Add2Ptr(ea, ea_sz), size - off - ea_sz);
336be71b5cbSKonstantin Komarov 
337be71b5cbSKonstantin Komarov 		size -= ea_sz;
338be71b5cbSKonstantin Komarov 		memset(Add2Ptr(ea_all, size), 0, ea_sz);
339be71b5cbSKonstantin Komarov 
340be71b5cbSKonstantin Komarov 		ea_info.size = cpu_to_le32(size);
341be71b5cbSKonstantin Komarov 
342be71b5cbSKonstantin Komarov 		if ((flags & XATTR_REPLACE) && !val_size) {
343e8b8e97fSKari Argillander 			/* Remove xattr. */
344be71b5cbSKonstantin Komarov 			goto update_ea;
345be71b5cbSKonstantin Komarov 		}
346be71b5cbSKonstantin Komarov 	} else {
347be71b5cbSKonstantin Komarov 		if (flags & XATTR_REPLACE) {
348be71b5cbSKonstantin Komarov 			err = -ENODATA;
349be71b5cbSKonstantin Komarov 			goto out;
350be71b5cbSKonstantin Komarov 		}
351be71b5cbSKonstantin Komarov 
352be71b5cbSKonstantin Komarov 		if (!ea_all) {
353195c52bdSKari Argillander 			ea_all = kzalloc(add, GFP_NOFS);
354be71b5cbSKonstantin Komarov 			if (!ea_all) {
355be71b5cbSKonstantin Komarov 				err = -ENOMEM;
356be71b5cbSKonstantin Komarov 				goto out;
357be71b5cbSKonstantin Komarov 			}
358be71b5cbSKonstantin Komarov 		}
359be71b5cbSKonstantin Komarov 	}
360be71b5cbSKonstantin Komarov 
361e8b8e97fSKari Argillander 	/* Append new xattr. */
362be71b5cbSKonstantin Komarov 	new_ea = Add2Ptr(ea_all, size);
363be71b5cbSKonstantin Komarov 	new_ea->size = cpu_to_le32(add);
364be71b5cbSKonstantin Komarov 	new_ea->flags = 0;
365be71b5cbSKonstantin Komarov 	new_ea->name_len = name_len;
366be71b5cbSKonstantin Komarov 	new_ea->elength = cpu_to_le16(val_size);
367be71b5cbSKonstantin Komarov 	memcpy(new_ea->name, name, name_len);
368be71b5cbSKonstantin Komarov 	new_ea->name[name_len] = 0;
369be71b5cbSKonstantin Komarov 	memcpy(new_ea->name + name_len + 1, value, val_size);
370be71b5cbSKonstantin Komarov 	new_pack = le16_to_cpu(ea_info.size_pack) + packed_ea_size(new_ea);
371be71b5cbSKonstantin Komarov 	ea_info.size_pack = cpu_to_le16(new_pack);
372e8b8e97fSKari Argillander 	/* New size of ATTR_EA. */
373be71b5cbSKonstantin Komarov 	size += add;
374cff32466SKonstantin Komarov 	ea_info.size = cpu_to_le32(size);
375cff32466SKonstantin Komarov 
376cff32466SKonstantin Komarov 	/*
377cff32466SKonstantin Komarov 	 * 1. Check ea_info.size_pack for overflow.
378cff32466SKonstantin Komarov 	 * 2. New attibute size must fit value from $AttrDef
379cff32466SKonstantin Komarov 	 */
380cff32466SKonstantin Komarov 	if (new_pack > 0xffff || size > sbi->ea_max_size) {
381cff32466SKonstantin Komarov 		ntfs_inode_warn(
382cff32466SKonstantin Komarov 			inode,
383cff32466SKonstantin Komarov 			"The size of extended attributes must not exceed 64KiB");
384be71b5cbSKonstantin Komarov 		err = -EFBIG; // -EINVAL?
385be71b5cbSKonstantin Komarov 		goto out;
386be71b5cbSKonstantin Komarov 	}
387be71b5cbSKonstantin Komarov 
388be71b5cbSKonstantin Komarov update_ea:
389be71b5cbSKonstantin Komarov 
390be71b5cbSKonstantin Komarov 	if (!info) {
391e8b8e97fSKari Argillander 		/* Create xattr. */
392be71b5cbSKonstantin Komarov 		if (!size) {
393be71b5cbSKonstantin Komarov 			err = 0;
394be71b5cbSKonstantin Komarov 			goto out;
395be71b5cbSKonstantin Komarov 		}
396be71b5cbSKonstantin Komarov 
397be71b5cbSKonstantin Komarov 		err = ni_insert_resident(ni, sizeof(struct EA_INFO),
39878ab59feSKonstantin Komarov 					 ATTR_EA_INFO, NULL, 0, NULL, NULL,
39978ab59feSKonstantin Komarov 					 NULL);
400be71b5cbSKonstantin Komarov 		if (err)
401be71b5cbSKonstantin Komarov 			goto out;
402be71b5cbSKonstantin Komarov 
40378ab59feSKonstantin Komarov 		err = ni_insert_resident(ni, 0, ATTR_EA, NULL, 0, NULL, NULL,
40478ab59feSKonstantin Komarov 					 NULL);
405be71b5cbSKonstantin Komarov 		if (err)
406be71b5cbSKonstantin Komarov 			goto out;
407be71b5cbSKonstantin Komarov 	}
408be71b5cbSKonstantin Komarov 
409be71b5cbSKonstantin Komarov 	new_sz = size;
410be71b5cbSKonstantin Komarov 	err = attr_set_size(ni, ATTR_EA, NULL, 0, &ea_run, new_sz, &new_sz,
411be71b5cbSKonstantin Komarov 			    false, NULL);
412be71b5cbSKonstantin Komarov 	if (err)
413be71b5cbSKonstantin Komarov 		goto out;
414be71b5cbSKonstantin Komarov 
415be71b5cbSKonstantin Komarov 	le = NULL;
416be71b5cbSKonstantin Komarov 	attr = ni_find_attr(ni, NULL, &le, ATTR_EA_INFO, NULL, 0, NULL, &mi);
417be71b5cbSKonstantin Komarov 	if (!attr) {
418be71b5cbSKonstantin Komarov 		err = -EINVAL;
419be71b5cbSKonstantin Komarov 		goto out;
420be71b5cbSKonstantin Komarov 	}
421be71b5cbSKonstantin Komarov 
422be71b5cbSKonstantin Komarov 	if (!size) {
423e8b8e97fSKari Argillander 		/* Delete xattr, ATTR_EA_INFO */
42478ab59feSKonstantin Komarov 		ni_remove_attr_le(ni, attr, mi, le);
425be71b5cbSKonstantin Komarov 	} else {
426be71b5cbSKonstantin Komarov 		p = resident_data_ex(attr, sizeof(struct EA_INFO));
427be71b5cbSKonstantin Komarov 		if (!p) {
428be71b5cbSKonstantin Komarov 			err = -EINVAL;
429be71b5cbSKonstantin Komarov 			goto out;
430be71b5cbSKonstantin Komarov 		}
431be71b5cbSKonstantin Komarov 		memcpy(p, &ea_info, sizeof(struct EA_INFO));
432be71b5cbSKonstantin Komarov 		mi->dirty = true;
433be71b5cbSKonstantin Komarov 	}
434be71b5cbSKonstantin Komarov 
435be71b5cbSKonstantin Komarov 	le = NULL;
436be71b5cbSKonstantin Komarov 	attr = ni_find_attr(ni, NULL, &le, ATTR_EA, NULL, 0, NULL, &mi);
437be71b5cbSKonstantin Komarov 	if (!attr) {
438be71b5cbSKonstantin Komarov 		err = -EINVAL;
439be71b5cbSKonstantin Komarov 		goto out;
440be71b5cbSKonstantin Komarov 	}
441be71b5cbSKonstantin Komarov 
442be71b5cbSKonstantin Komarov 	if (!size) {
443e8b8e97fSKari Argillander 		/* Delete xattr, ATTR_EA */
44478ab59feSKonstantin Komarov 		ni_remove_attr_le(ni, attr, mi, le);
445be71b5cbSKonstantin Komarov 	} else if (attr->non_res) {
44663544672SKonstantin Komarov 		err = ntfs_sb_write_run(sbi, &ea_run, 0, ea_all, size, 0);
447be71b5cbSKonstantin Komarov 		if (err)
448be71b5cbSKonstantin Komarov 			goto out;
449be71b5cbSKonstantin Komarov 	} else {
450be71b5cbSKonstantin Komarov 		p = resident_data_ex(attr, size);
451be71b5cbSKonstantin Komarov 		if (!p) {
452be71b5cbSKonstantin Komarov 			err = -EINVAL;
453be71b5cbSKonstantin Komarov 			goto out;
454be71b5cbSKonstantin Komarov 		}
455be71b5cbSKonstantin Komarov 		memcpy(p, ea_all, size);
456be71b5cbSKonstantin Komarov 		mi->dirty = true;
457be71b5cbSKonstantin Komarov 	}
458be71b5cbSKonstantin Komarov 
459e8b8e97fSKari Argillander 	/* Check if we delete the last xattr. */
460be71b5cbSKonstantin Komarov 	if (size)
461be71b5cbSKonstantin Komarov 		ni->ni_flags |= NI_FLAG_EA;
462be71b5cbSKonstantin Komarov 	else
463be71b5cbSKonstantin Komarov 		ni->ni_flags &= ~NI_FLAG_EA;
464be71b5cbSKonstantin Komarov 
465be71b5cbSKonstantin Komarov 	if (ea_info.size_pack != size_pack)
466be71b5cbSKonstantin Komarov 		ni->ni_flags |= NI_FLAG_UPDATE_PARENT;
467be71b5cbSKonstantin Komarov 	mark_inode_dirty(&ni->vfs_inode);
468be71b5cbSKonstantin Komarov 
469be71b5cbSKonstantin Komarov out:
470be71b5cbSKonstantin Komarov 	ni_unlock(ni);
471be71b5cbSKonstantin Komarov 
472be71b5cbSKonstantin Komarov 	run_close(&ea_run);
473195c52bdSKari Argillander 	kfree(ea_all);
474be71b5cbSKonstantin Komarov 
475be71b5cbSKonstantin Komarov 	return err;
476be71b5cbSKonstantin Komarov }
477be71b5cbSKonstantin Komarov 
478be71b5cbSKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL
479be71b5cbSKonstantin Komarov static struct posix_acl *ntfs_get_acl_ex(struct user_namespace *mnt_userns,
480be71b5cbSKonstantin Komarov 					 struct inode *inode, int type,
481be71b5cbSKonstantin Komarov 					 int locked)
482be71b5cbSKonstantin Komarov {
483be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
484be71b5cbSKonstantin Komarov 	const char *name;
485be71b5cbSKonstantin Komarov 	size_t name_len;
486be71b5cbSKonstantin Komarov 	struct posix_acl *acl;
487be71b5cbSKonstantin Komarov 	size_t req;
488be71b5cbSKonstantin Komarov 	int err;
489be71b5cbSKonstantin Komarov 	void *buf;
490be71b5cbSKonstantin Komarov 
491e8b8e97fSKari Argillander 	/* Allocate PATH_MAX bytes. */
492be71b5cbSKonstantin Komarov 	buf = __getname();
493be71b5cbSKonstantin Komarov 	if (!buf)
494be71b5cbSKonstantin Komarov 		return ERR_PTR(-ENOMEM);
495be71b5cbSKonstantin Komarov 
496e8b8e97fSKari Argillander 	/* Possible values of 'type' was already checked above. */
497be71b5cbSKonstantin Komarov 	if (type == ACL_TYPE_ACCESS) {
498be71b5cbSKonstantin Komarov 		name = XATTR_NAME_POSIX_ACL_ACCESS;
499be71b5cbSKonstantin Komarov 		name_len = sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1;
500be71b5cbSKonstantin Komarov 	} else {
501be71b5cbSKonstantin Komarov 		name = XATTR_NAME_POSIX_ACL_DEFAULT;
502be71b5cbSKonstantin Komarov 		name_len = sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1;
503be71b5cbSKonstantin Komarov 	}
504be71b5cbSKonstantin Komarov 
505be71b5cbSKonstantin Komarov 	if (!locked)
506be71b5cbSKonstantin Komarov 		ni_lock(ni);
507be71b5cbSKonstantin Komarov 
508be71b5cbSKonstantin Komarov 	err = ntfs_get_ea(inode, name, name_len, buf, PATH_MAX, &req);
509be71b5cbSKonstantin Komarov 
510be71b5cbSKonstantin Komarov 	if (!locked)
511be71b5cbSKonstantin Komarov 		ni_unlock(ni);
512be71b5cbSKonstantin Komarov 
513e8b8e97fSKari Argillander 	/* Translate extended attribute to acl. */
5142926e429SDan Carpenter 	if (err >= 0) {
515be71b5cbSKonstantin Komarov 		acl = posix_acl_from_xattr(mnt_userns, buf, err);
5160bd5fdb8SKonstantin Komarov 	} else if (err == -ENODATA) {
5170bd5fdb8SKonstantin Komarov 		acl = NULL;
5180bd5fdb8SKonstantin Komarov 	} else {
5190bd5fdb8SKonstantin Komarov 		acl = ERR_PTR(err);
5200bd5fdb8SKonstantin Komarov 	}
5210bd5fdb8SKonstantin Komarov 
522be71b5cbSKonstantin Komarov 	if (!IS_ERR(acl))
523be71b5cbSKonstantin Komarov 		set_cached_acl(inode, type, acl);
524be71b5cbSKonstantin Komarov 
525be71b5cbSKonstantin Komarov 	__putname(buf);
526be71b5cbSKonstantin Komarov 
527be71b5cbSKonstantin Komarov 	return acl;
528be71b5cbSKonstantin Komarov }
529be71b5cbSKonstantin Komarov 
530be71b5cbSKonstantin Komarov /*
531e8b8e97fSKari Argillander  * ntfs_get_acl - inode_operations::get_acl
532be71b5cbSKonstantin Komarov  */
533f7464060SLinus Torvalds struct posix_acl *ntfs_get_acl(struct inode *inode, int type, bool rcu)
534be71b5cbSKonstantin Komarov {
535f7464060SLinus Torvalds 	if (rcu)
536f7464060SLinus Torvalds 		return ERR_PTR(-ECHILD);
537f7464060SLinus Torvalds 
538be71b5cbSKonstantin Komarov 	/* TODO: init_user_ns? */
539be71b5cbSKonstantin Komarov 	return ntfs_get_acl_ex(&init_user_ns, inode, type, 0);
540be71b5cbSKonstantin Komarov }
541be71b5cbSKonstantin Komarov 
542be71b5cbSKonstantin Komarov static noinline int ntfs_set_acl_ex(struct user_namespace *mnt_userns,
543be71b5cbSKonstantin Komarov 				    struct inode *inode, struct posix_acl *acl,
544d81e06beSKonstantin Komarov 				    int type)
545be71b5cbSKonstantin Komarov {
546be71b5cbSKonstantin Komarov 	const char *name;
547be71b5cbSKonstantin Komarov 	size_t size, name_len;
548be71b5cbSKonstantin Komarov 	void *value = NULL;
549be71b5cbSKonstantin Komarov 	int err = 0;
550398c35f4SKonstantin Komarov 	int flags;
551be71b5cbSKonstantin Komarov 
552be71b5cbSKonstantin Komarov 	if (S_ISLNK(inode->i_mode))
553be71b5cbSKonstantin Komarov 		return -EOPNOTSUPP;
554be71b5cbSKonstantin Komarov 
555be71b5cbSKonstantin Komarov 	switch (type) {
556be71b5cbSKonstantin Komarov 	case ACL_TYPE_ACCESS:
557be71b5cbSKonstantin Komarov 		if (acl) {
558be71b5cbSKonstantin Komarov 			umode_t mode = inode->i_mode;
559be71b5cbSKonstantin Komarov 
560ba77237eSKonstantin Komarov 			err = posix_acl_update_mode(mnt_userns, inode, &mode,
561ba77237eSKonstantin Komarov 						    &acl);
562ba77237eSKonstantin Komarov 			if (err)
563ba77237eSKonstantin Komarov 				goto out;
564be71b5cbSKonstantin Komarov 
565be71b5cbSKonstantin Komarov 			if (inode->i_mode != mode) {
566be71b5cbSKonstantin Komarov 				inode->i_mode = mode;
567be71b5cbSKonstantin Komarov 				mark_inode_dirty(inode);
568be71b5cbSKonstantin Komarov 			}
569be71b5cbSKonstantin Komarov 		}
570be71b5cbSKonstantin Komarov 		name = XATTR_NAME_POSIX_ACL_ACCESS;
571be71b5cbSKonstantin Komarov 		name_len = sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1;
572be71b5cbSKonstantin Komarov 		break;
573be71b5cbSKonstantin Komarov 
574be71b5cbSKonstantin Komarov 	case ACL_TYPE_DEFAULT:
575be71b5cbSKonstantin Komarov 		if (!S_ISDIR(inode->i_mode))
576be71b5cbSKonstantin Komarov 			return acl ? -EACCES : 0;
577be71b5cbSKonstantin Komarov 		name = XATTR_NAME_POSIX_ACL_DEFAULT;
578be71b5cbSKonstantin Komarov 		name_len = sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1;
579be71b5cbSKonstantin Komarov 		break;
580be71b5cbSKonstantin Komarov 
581be71b5cbSKonstantin Komarov 	default:
582be71b5cbSKonstantin Komarov 		return -EINVAL;
583be71b5cbSKonstantin Komarov 	}
584be71b5cbSKonstantin Komarov 
585be71b5cbSKonstantin Komarov 	if (!acl) {
586398c35f4SKonstantin Komarov 		/* Remove xattr if it can be presented via mode. */
587be71b5cbSKonstantin Komarov 		size = 0;
588be71b5cbSKonstantin Komarov 		value = NULL;
589398c35f4SKonstantin Komarov 		flags = XATTR_REPLACE;
590be71b5cbSKonstantin Komarov 	} else {
591be71b5cbSKonstantin Komarov 		size = posix_acl_xattr_size(acl->a_count);
592195c52bdSKari Argillander 		value = kmalloc(size, GFP_NOFS);
593be71b5cbSKonstantin Komarov 		if (!value)
594be71b5cbSKonstantin Komarov 			return -ENOMEM;
595be71b5cbSKonstantin Komarov 		err = posix_acl_to_xattr(mnt_userns, acl, value, size);
596be71b5cbSKonstantin Komarov 		if (err < 0)
597be71b5cbSKonstantin Komarov 			goto out;
598398c35f4SKonstantin Komarov 		flags = 0;
599be71b5cbSKonstantin Komarov 	}
600be71b5cbSKonstantin Komarov 
601d81e06beSKonstantin Komarov 	err = ntfs_set_ea(inode, name, name_len, value, size, flags);
602398c35f4SKonstantin Komarov 	if (err == -ENODATA && !size)
603398c35f4SKonstantin Komarov 		err = 0; /* Removing non existed xattr. */
604be71b5cbSKonstantin Komarov 	if (!err)
605be71b5cbSKonstantin Komarov 		set_cached_acl(inode, type, acl);
606be71b5cbSKonstantin Komarov 
607be71b5cbSKonstantin Komarov out:
608195c52bdSKari Argillander 	kfree(value);
609be71b5cbSKonstantin Komarov 
610be71b5cbSKonstantin Komarov 	return err;
611be71b5cbSKonstantin Komarov }
612be71b5cbSKonstantin Komarov 
613be71b5cbSKonstantin Komarov /*
614e8b8e97fSKari Argillander  * ntfs_set_acl - inode_operations::set_acl
615be71b5cbSKonstantin Komarov  */
616be71b5cbSKonstantin Komarov int ntfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
617be71b5cbSKonstantin Komarov 		 struct posix_acl *acl, int type)
618be71b5cbSKonstantin Komarov {
619d81e06beSKonstantin Komarov 	return ntfs_set_acl_ex(mnt_userns, inode, acl, type);
620be71b5cbSKonstantin Komarov }
621be71b5cbSKonstantin Komarov 
622*87e21c99SKonstantin Komarov static int ntfs_xattr_get_acl(struct user_namespace *mnt_userns,
623*87e21c99SKonstantin Komarov 			      struct inode *inode, int type, void *buffer,
624*87e21c99SKonstantin Komarov 			      size_t size)
625*87e21c99SKonstantin Komarov {
626*87e21c99SKonstantin Komarov 	struct posix_acl *acl;
627*87e21c99SKonstantin Komarov 	int err;
628*87e21c99SKonstantin Komarov 
629*87e21c99SKonstantin Komarov 	if (!(inode->i_sb->s_flags & SB_POSIXACL)) {
630*87e21c99SKonstantin Komarov 		ntfs_inode_warn(inode, "add mount option \"acl\" to use acl");
631*87e21c99SKonstantin Komarov 		return -EOPNOTSUPP;
632*87e21c99SKonstantin Komarov 	}
633*87e21c99SKonstantin Komarov 
634*87e21c99SKonstantin Komarov 	acl = ntfs_get_acl(inode, type, false);
635*87e21c99SKonstantin Komarov 	if (IS_ERR(acl))
636*87e21c99SKonstantin Komarov 		return PTR_ERR(acl);
637*87e21c99SKonstantin Komarov 
638*87e21c99SKonstantin Komarov 	if (!acl)
639*87e21c99SKonstantin Komarov 		return -ENODATA;
640*87e21c99SKonstantin Komarov 
641*87e21c99SKonstantin Komarov 	err = posix_acl_to_xattr(mnt_userns, acl, buffer, size);
642*87e21c99SKonstantin Komarov 	posix_acl_release(acl);
643*87e21c99SKonstantin Komarov 
644*87e21c99SKonstantin Komarov 	return err;
645*87e21c99SKonstantin Komarov }
646*87e21c99SKonstantin Komarov 
647*87e21c99SKonstantin Komarov static int ntfs_xattr_set_acl(struct user_namespace *mnt_userns,
648*87e21c99SKonstantin Komarov 			      struct inode *inode, int type, const void *value,
649*87e21c99SKonstantin Komarov 			      size_t size)
650*87e21c99SKonstantin Komarov {
651*87e21c99SKonstantin Komarov 	struct posix_acl *acl;
652*87e21c99SKonstantin Komarov 	int err;
653*87e21c99SKonstantin Komarov 
654*87e21c99SKonstantin Komarov 	if (!(inode->i_sb->s_flags & SB_POSIXACL)) {
655*87e21c99SKonstantin Komarov 		ntfs_inode_warn(inode, "add mount option \"acl\" to use acl");
656*87e21c99SKonstantin Komarov 		return -EOPNOTSUPP;
657*87e21c99SKonstantin Komarov 	}
658*87e21c99SKonstantin Komarov 
659*87e21c99SKonstantin Komarov 	if (!inode_owner_or_capable(mnt_userns, inode))
660*87e21c99SKonstantin Komarov 		return -EPERM;
661*87e21c99SKonstantin Komarov 
662*87e21c99SKonstantin Komarov 	if (!value) {
663*87e21c99SKonstantin Komarov 		acl = NULL;
664*87e21c99SKonstantin Komarov 	} else {
665*87e21c99SKonstantin Komarov 		acl = posix_acl_from_xattr(mnt_userns, value, size);
666*87e21c99SKonstantin Komarov 		if (IS_ERR(acl))
667*87e21c99SKonstantin Komarov 			return PTR_ERR(acl);
668*87e21c99SKonstantin Komarov 
669*87e21c99SKonstantin Komarov 		if (acl) {
670*87e21c99SKonstantin Komarov 			err = posix_acl_valid(mnt_userns, acl);
671*87e21c99SKonstantin Komarov 			if (err)
672*87e21c99SKonstantin Komarov 				goto release_and_out;
673*87e21c99SKonstantin Komarov 		}
674*87e21c99SKonstantin Komarov 	}
675*87e21c99SKonstantin Komarov 
676*87e21c99SKonstantin Komarov 	err = ntfs_set_acl(mnt_userns, inode, acl, type);
677*87e21c99SKonstantin Komarov 
678*87e21c99SKonstantin Komarov release_and_out:
679*87e21c99SKonstantin Komarov 	posix_acl_release(acl);
680*87e21c99SKonstantin Komarov 	return err;
681*87e21c99SKonstantin Komarov }
682*87e21c99SKonstantin Komarov 
683be71b5cbSKonstantin Komarov /*
684e8b8e97fSKari Argillander  * ntfs_init_acl - Initialize the ACLs of a new inode.
685e8b8e97fSKari Argillander  *
686e8b8e97fSKari Argillander  * Called from ntfs_create_inode().
687be71b5cbSKonstantin Komarov  */
688be71b5cbSKonstantin Komarov int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode,
689be71b5cbSKonstantin Komarov 		  struct inode *dir)
690be71b5cbSKonstantin Komarov {
691be71b5cbSKonstantin Komarov 	struct posix_acl *default_acl, *acl;
692be71b5cbSKonstantin Komarov 	int err;
693be71b5cbSKonstantin Komarov 
69466019837SKonstantin Komarov 	err = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl);
69566019837SKonstantin Komarov 	if (err)
69666019837SKonstantin Komarov 		return err;
697be71b5cbSKonstantin Komarov 
69866019837SKonstantin Komarov 	if (default_acl) {
699be71b5cbSKonstantin Komarov 		err = ntfs_set_acl_ex(mnt_userns, inode, default_acl,
700d81e06beSKonstantin Komarov 				      ACL_TYPE_DEFAULT);
70166019837SKonstantin Komarov 		posix_acl_release(default_acl);
70266019837SKonstantin Komarov 	} else {
70366019837SKonstantin Komarov 		inode->i_default_acl = NULL;
70466019837SKonstantin Komarov 	}
705be71b5cbSKonstantin Komarov 
706be71b5cbSKonstantin Komarov 	if (!acl)
707be71b5cbSKonstantin Komarov 		inode->i_acl = NULL;
70866019837SKonstantin Komarov 	else {
70966019837SKonstantin Komarov 		if (!err)
71066019837SKonstantin Komarov 			err = ntfs_set_acl_ex(mnt_userns, inode, acl,
711d81e06beSKonstantin Komarov 					      ACL_TYPE_ACCESS);
712be71b5cbSKonstantin Komarov 		posix_acl_release(acl);
71366019837SKonstantin Komarov 	}
714be71b5cbSKonstantin Komarov 
715be71b5cbSKonstantin Komarov 	return err;
716be71b5cbSKonstantin Komarov }
717be71b5cbSKonstantin Komarov #endif
718be71b5cbSKonstantin Komarov 
719be71b5cbSKonstantin Komarov /*
720e8b8e97fSKari Argillander  * ntfs_acl_chmod - Helper for ntfs3_setattr().
721be71b5cbSKonstantin Komarov  */
722be71b5cbSKonstantin Komarov int ntfs_acl_chmod(struct user_namespace *mnt_userns, struct inode *inode)
723be71b5cbSKonstantin Komarov {
724be71b5cbSKonstantin Komarov 	struct super_block *sb = inode->i_sb;
725be71b5cbSKonstantin Komarov 
726be71b5cbSKonstantin Komarov 	if (!(sb->s_flags & SB_POSIXACL))
727be71b5cbSKonstantin Komarov 		return 0;
728be71b5cbSKonstantin Komarov 
729be71b5cbSKonstantin Komarov 	if (S_ISLNK(inode->i_mode))
730be71b5cbSKonstantin Komarov 		return -EOPNOTSUPP;
731be71b5cbSKonstantin Komarov 
732be71b5cbSKonstantin Komarov 	return posix_acl_chmod(mnt_userns, inode, inode->i_mode);
733be71b5cbSKonstantin Komarov }
734be71b5cbSKonstantin Komarov 
735be71b5cbSKonstantin Komarov /*
736e8b8e97fSKari Argillander  * ntfs_permission - inode_operations::permission
737be71b5cbSKonstantin Komarov  */
738be71b5cbSKonstantin Komarov int ntfs_permission(struct user_namespace *mnt_userns, struct inode *inode,
739be71b5cbSKonstantin Komarov 		    int mask)
740be71b5cbSKonstantin Komarov {
74128a941ffSKari Argillander 	if (ntfs_sb(inode->i_sb)->options->noacsrules) {
742e8b8e97fSKari Argillander 		/* "No access rules" mode - Allow all changes. */
743be71b5cbSKonstantin Komarov 		return 0;
744be71b5cbSKonstantin Komarov 	}
745be71b5cbSKonstantin Komarov 
746be71b5cbSKonstantin Komarov 	return generic_permission(mnt_userns, inode, mask);
747be71b5cbSKonstantin Komarov }
748be71b5cbSKonstantin Komarov 
749be71b5cbSKonstantin Komarov /*
750e8b8e97fSKari Argillander  * ntfs_listxattr - inode_operations::listxattr
751be71b5cbSKonstantin Komarov  */
752be71b5cbSKonstantin Komarov ssize_t ntfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
753be71b5cbSKonstantin Komarov {
754be71b5cbSKonstantin Komarov 	struct inode *inode = d_inode(dentry);
755be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
756be71b5cbSKonstantin Komarov 	ssize_t ret;
757be71b5cbSKonstantin Komarov 
758be71b5cbSKonstantin Komarov 	if (!(ni->ni_flags & NI_FLAG_EA)) {
759be71b5cbSKonstantin Komarov 		/* no xattr in file */
760be71b5cbSKonstantin Komarov 		return 0;
761be71b5cbSKonstantin Komarov 	}
762be71b5cbSKonstantin Komarov 
763be71b5cbSKonstantin Komarov 	ni_lock(ni);
764be71b5cbSKonstantin Komarov 
765be71b5cbSKonstantin Komarov 	ret = ntfs_list_ea(ni, buffer, size);
766be71b5cbSKonstantin Komarov 
767be71b5cbSKonstantin Komarov 	ni_unlock(ni);
768be71b5cbSKonstantin Komarov 
769be71b5cbSKonstantin Komarov 	return ret;
770be71b5cbSKonstantin Komarov }
771be71b5cbSKonstantin Komarov 
772be71b5cbSKonstantin Komarov static int ntfs_getxattr(const struct xattr_handler *handler, struct dentry *de,
773be71b5cbSKonstantin Komarov 			 struct inode *inode, const char *name, void *buffer,
774be71b5cbSKonstantin Komarov 			 size_t size)
775be71b5cbSKonstantin Komarov {
776be71b5cbSKonstantin Komarov 	int err;
777be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
778be71b5cbSKonstantin Komarov 	size_t name_len = strlen(name);
779be71b5cbSKonstantin Komarov 
780e8b8e97fSKari Argillander 	/* Dispatch request. */
781be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_DOS_ATTRIB) - 1 &&
782be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_DOS_ATTRIB, sizeof(SYSTEM_DOS_ATTRIB))) {
783be71b5cbSKonstantin Komarov 		/* system.dos_attrib */
784be71b5cbSKonstantin Komarov 		if (!buffer) {
785be71b5cbSKonstantin Komarov 			err = sizeof(u8);
786be71b5cbSKonstantin Komarov 		} else if (size < sizeof(u8)) {
787be71b5cbSKonstantin Komarov 			err = -ENODATA;
788be71b5cbSKonstantin Komarov 		} else {
789be71b5cbSKonstantin Komarov 			err = sizeof(u8);
790be71b5cbSKonstantin Komarov 			*(u8 *)buffer = le32_to_cpu(ni->std_fa);
791be71b5cbSKonstantin Komarov 		}
792be71b5cbSKonstantin Komarov 		goto out;
793be71b5cbSKonstantin Komarov 	}
794be71b5cbSKonstantin Komarov 
795be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_NTFS_ATTRIB) - 1 &&
796be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_NTFS_ATTRIB, sizeof(SYSTEM_NTFS_ATTRIB))) {
797be71b5cbSKonstantin Komarov 		/* system.ntfs_attrib */
798be71b5cbSKonstantin Komarov 		if (!buffer) {
799be71b5cbSKonstantin Komarov 			err = sizeof(u32);
800be71b5cbSKonstantin Komarov 		} else if (size < sizeof(u32)) {
801be71b5cbSKonstantin Komarov 			err = -ENODATA;
802be71b5cbSKonstantin Komarov 		} else {
803be71b5cbSKonstantin Komarov 			err = sizeof(u32);
804be71b5cbSKonstantin Komarov 			*(u32 *)buffer = le32_to_cpu(ni->std_fa);
805be71b5cbSKonstantin Komarov 		}
806be71b5cbSKonstantin Komarov 		goto out;
807be71b5cbSKonstantin Komarov 	}
808be71b5cbSKonstantin Komarov 
809be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_NTFS_SECURITY) - 1 &&
810be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_NTFS_SECURITY, sizeof(SYSTEM_NTFS_SECURITY))) {
811be71b5cbSKonstantin Komarov 		/* system.ntfs_security*/
812be71b5cbSKonstantin Komarov 		struct SECURITY_DESCRIPTOR_RELATIVE *sd = NULL;
813be71b5cbSKonstantin Komarov 		size_t sd_size = 0;
814be71b5cbSKonstantin Komarov 
815be71b5cbSKonstantin Komarov 		if (!is_ntfs3(ni->mi.sbi)) {
816e8b8e97fSKari Argillander 			/* We should get nt4 security. */
817be71b5cbSKonstantin Komarov 			err = -EINVAL;
818be71b5cbSKonstantin Komarov 			goto out;
819be71b5cbSKonstantin Komarov 		} else if (le32_to_cpu(ni->std_security_id) <
820be71b5cbSKonstantin Komarov 			   SECURITY_ID_FIRST) {
821be71b5cbSKonstantin Komarov 			err = -ENOENT;
822be71b5cbSKonstantin Komarov 			goto out;
823be71b5cbSKonstantin Komarov 		}
824be71b5cbSKonstantin Komarov 
825be71b5cbSKonstantin Komarov 		err = ntfs_get_security_by_id(ni->mi.sbi, ni->std_security_id,
826be71b5cbSKonstantin Komarov 					      &sd, &sd_size);
827be71b5cbSKonstantin Komarov 		if (err)
828be71b5cbSKonstantin Komarov 			goto out;
829be71b5cbSKonstantin Komarov 
830be71b5cbSKonstantin Komarov 		if (!is_sd_valid(sd, sd_size)) {
831be71b5cbSKonstantin Komarov 			ntfs_inode_warn(
832be71b5cbSKonstantin Komarov 				inode,
833be71b5cbSKonstantin Komarov 				"looks like you get incorrect security descriptor id=%u",
834be71b5cbSKonstantin Komarov 				ni->std_security_id);
835be71b5cbSKonstantin Komarov 		}
836be71b5cbSKonstantin Komarov 
837be71b5cbSKonstantin Komarov 		if (!buffer) {
838be71b5cbSKonstantin Komarov 			err = sd_size;
839be71b5cbSKonstantin Komarov 		} else if (size < sd_size) {
840be71b5cbSKonstantin Komarov 			err = -ENODATA;
841be71b5cbSKonstantin Komarov 		} else {
842be71b5cbSKonstantin Komarov 			err = sd_size;
843be71b5cbSKonstantin Komarov 			memcpy(buffer, sd, sd_size);
844be71b5cbSKonstantin Komarov 		}
845195c52bdSKari Argillander 		kfree(sd);
846be71b5cbSKonstantin Komarov 		goto out;
847be71b5cbSKonstantin Komarov 	}
848be71b5cbSKonstantin Komarov 
849*87e21c99SKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL
850*87e21c99SKonstantin Komarov 	if ((name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 &&
851*87e21c99SKonstantin Komarov 	     !memcmp(name, XATTR_NAME_POSIX_ACL_ACCESS,
852*87e21c99SKonstantin Komarov 		     sizeof(XATTR_NAME_POSIX_ACL_ACCESS))) ||
853*87e21c99SKonstantin Komarov 	    (name_len == sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1 &&
854*87e21c99SKonstantin Komarov 	     !memcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT,
855*87e21c99SKonstantin Komarov 		     sizeof(XATTR_NAME_POSIX_ACL_DEFAULT)))) {
856*87e21c99SKonstantin Komarov 		/* TODO: init_user_ns? */
857*87e21c99SKonstantin Komarov 		err = ntfs_xattr_get_acl(
858*87e21c99SKonstantin Komarov 			&init_user_ns, inode,
859*87e21c99SKonstantin Komarov 			name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1
860*87e21c99SKonstantin Komarov 				? ACL_TYPE_ACCESS
861*87e21c99SKonstantin Komarov 				: ACL_TYPE_DEFAULT,
862*87e21c99SKonstantin Komarov 			buffer, size);
863*87e21c99SKonstantin Komarov 		goto out;
864*87e21c99SKonstantin Komarov 	}
865*87e21c99SKonstantin Komarov #endif
866e8b8e97fSKari Argillander 	/* Deal with NTFS extended attribute. */
867be71b5cbSKonstantin Komarov 	err = ntfs_get_ea(inode, name, name_len, buffer, size, NULL);
868be71b5cbSKonstantin Komarov 
869be71b5cbSKonstantin Komarov out:
870be71b5cbSKonstantin Komarov 	return err;
871be71b5cbSKonstantin Komarov }
872be71b5cbSKonstantin Komarov 
873be71b5cbSKonstantin Komarov /*
874e8b8e97fSKari Argillander  * ntfs_setxattr - inode_operations::setxattr
875be71b5cbSKonstantin Komarov  */
876be71b5cbSKonstantin Komarov static noinline int ntfs_setxattr(const struct xattr_handler *handler,
877be71b5cbSKonstantin Komarov 				  struct user_namespace *mnt_userns,
878be71b5cbSKonstantin Komarov 				  struct dentry *de, struct inode *inode,
879be71b5cbSKonstantin Komarov 				  const char *name, const void *value,
880be71b5cbSKonstantin Komarov 				  size_t size, int flags)
881be71b5cbSKonstantin Komarov {
882be71b5cbSKonstantin Komarov 	int err = -EINVAL;
883be71b5cbSKonstantin Komarov 	struct ntfs_inode *ni = ntfs_i(inode);
884be71b5cbSKonstantin Komarov 	size_t name_len = strlen(name);
885be71b5cbSKonstantin Komarov 	enum FILE_ATTRIBUTE new_fa;
886be71b5cbSKonstantin Komarov 
887e8b8e97fSKari Argillander 	/* Dispatch request. */
888be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_DOS_ATTRIB) - 1 &&
889be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_DOS_ATTRIB, sizeof(SYSTEM_DOS_ATTRIB))) {
890be71b5cbSKonstantin Komarov 		if (sizeof(u8) != size)
891be71b5cbSKonstantin Komarov 			goto out;
892be71b5cbSKonstantin Komarov 		new_fa = cpu_to_le32(*(u8 *)value);
893be71b5cbSKonstantin Komarov 		goto set_new_fa;
894be71b5cbSKonstantin Komarov 	}
895be71b5cbSKonstantin Komarov 
896be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_NTFS_ATTRIB) - 1 &&
897be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_NTFS_ATTRIB, sizeof(SYSTEM_NTFS_ATTRIB))) {
898be71b5cbSKonstantin Komarov 		if (size != sizeof(u32))
899be71b5cbSKonstantin Komarov 			goto out;
900be71b5cbSKonstantin Komarov 		new_fa = cpu_to_le32(*(u32 *)value);
901be71b5cbSKonstantin Komarov 
902be71b5cbSKonstantin Komarov 		if (S_ISREG(inode->i_mode)) {
903e8b8e97fSKari Argillander 			/* Process compressed/sparsed in special way. */
904be71b5cbSKonstantin Komarov 			ni_lock(ni);
905be71b5cbSKonstantin Komarov 			err = ni_new_attr_flags(ni, new_fa);
906be71b5cbSKonstantin Komarov 			ni_unlock(ni);
907be71b5cbSKonstantin Komarov 			if (err)
908be71b5cbSKonstantin Komarov 				goto out;
909be71b5cbSKonstantin Komarov 		}
910be71b5cbSKonstantin Komarov set_new_fa:
911be71b5cbSKonstantin Komarov 		/*
912be71b5cbSKonstantin Komarov 		 * Thanks Mark Harmstone:
913e8b8e97fSKari Argillander 		 * Keep directory bit consistency.
914be71b5cbSKonstantin Komarov 		 */
915be71b5cbSKonstantin Komarov 		if (S_ISDIR(inode->i_mode))
916be71b5cbSKonstantin Komarov 			new_fa |= FILE_ATTRIBUTE_DIRECTORY;
917be71b5cbSKonstantin Komarov 		else
918be71b5cbSKonstantin Komarov 			new_fa &= ~FILE_ATTRIBUTE_DIRECTORY;
919be71b5cbSKonstantin Komarov 
920be71b5cbSKonstantin Komarov 		if (ni->std_fa != new_fa) {
921be71b5cbSKonstantin Komarov 			ni->std_fa = new_fa;
922be71b5cbSKonstantin Komarov 			if (new_fa & FILE_ATTRIBUTE_READONLY)
923be71b5cbSKonstantin Komarov 				inode->i_mode &= ~0222;
924be71b5cbSKonstantin Komarov 			else
925be71b5cbSKonstantin Komarov 				inode->i_mode |= 0222;
926e8b8e97fSKari Argillander 			/* Std attribute always in primary record. */
927be71b5cbSKonstantin Komarov 			ni->mi.dirty = true;
928be71b5cbSKonstantin Komarov 			mark_inode_dirty(inode);
929be71b5cbSKonstantin Komarov 		}
930be71b5cbSKonstantin Komarov 		err = 0;
931be71b5cbSKonstantin Komarov 
932be71b5cbSKonstantin Komarov 		goto out;
933be71b5cbSKonstantin Komarov 	}
934be71b5cbSKonstantin Komarov 
935be71b5cbSKonstantin Komarov 	if (name_len == sizeof(SYSTEM_NTFS_SECURITY) - 1 &&
936be71b5cbSKonstantin Komarov 	    !memcmp(name, SYSTEM_NTFS_SECURITY, sizeof(SYSTEM_NTFS_SECURITY))) {
937be71b5cbSKonstantin Komarov 		/* system.ntfs_security*/
938be71b5cbSKonstantin Komarov 		__le32 security_id;
939be71b5cbSKonstantin Komarov 		bool inserted;
940be71b5cbSKonstantin Komarov 		struct ATTR_STD_INFO5 *std;
941be71b5cbSKonstantin Komarov 
942be71b5cbSKonstantin Komarov 		if (!is_ntfs3(ni->mi.sbi)) {
943be71b5cbSKonstantin Komarov 			/*
944e8b8e97fSKari Argillander 			 * We should replace ATTR_SECURE.
945e8b8e97fSKari Argillander 			 * Skip this way cause it is nt4 feature.
946be71b5cbSKonstantin Komarov 			 */
947be71b5cbSKonstantin Komarov 			err = -EINVAL;
948be71b5cbSKonstantin Komarov 			goto out;
949be71b5cbSKonstantin Komarov 		}
950be71b5cbSKonstantin Komarov 
951be71b5cbSKonstantin Komarov 		if (!is_sd_valid(value, size)) {
952be71b5cbSKonstantin Komarov 			err = -EINVAL;
953be71b5cbSKonstantin Komarov 			ntfs_inode_warn(
954be71b5cbSKonstantin Komarov 				inode,
955be71b5cbSKonstantin Komarov 				"you try to set invalid security descriptor");
956be71b5cbSKonstantin Komarov 			goto out;
957be71b5cbSKonstantin Komarov 		}
958be71b5cbSKonstantin Komarov 
959be71b5cbSKonstantin Komarov 		err = ntfs_insert_security(ni->mi.sbi, value, size,
960be71b5cbSKonstantin Komarov 					   &security_id, &inserted);
961be71b5cbSKonstantin Komarov 		if (err)
962be71b5cbSKonstantin Komarov 			goto out;
963be71b5cbSKonstantin Komarov 
964be71b5cbSKonstantin Komarov 		ni_lock(ni);
965be71b5cbSKonstantin Komarov 		std = ni_std5(ni);
966be71b5cbSKonstantin Komarov 		if (!std) {
967be71b5cbSKonstantin Komarov 			err = -EINVAL;
968be71b5cbSKonstantin Komarov 		} else if (std->security_id != security_id) {
969be71b5cbSKonstantin Komarov 			std->security_id = ni->std_security_id = security_id;
970e8b8e97fSKari Argillander 			/* Std attribute always in primary record. */
971be71b5cbSKonstantin Komarov 			ni->mi.dirty = true;
972be71b5cbSKonstantin Komarov 			mark_inode_dirty(&ni->vfs_inode);
973be71b5cbSKonstantin Komarov 		}
974be71b5cbSKonstantin Komarov 		ni_unlock(ni);
975be71b5cbSKonstantin Komarov 		goto out;
976be71b5cbSKonstantin Komarov 	}
977be71b5cbSKonstantin Komarov 
978*87e21c99SKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL
979*87e21c99SKonstantin Komarov 	if ((name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 &&
980*87e21c99SKonstantin Komarov 	     !memcmp(name, XATTR_NAME_POSIX_ACL_ACCESS,
981*87e21c99SKonstantin Komarov 		     sizeof(XATTR_NAME_POSIX_ACL_ACCESS))) ||
982*87e21c99SKonstantin Komarov 	    (name_len == sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1 &&
983*87e21c99SKonstantin Komarov 	     !memcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT,
984*87e21c99SKonstantin Komarov 		     sizeof(XATTR_NAME_POSIX_ACL_DEFAULT)))) {
985*87e21c99SKonstantin Komarov 		err = ntfs_xattr_set_acl(
986*87e21c99SKonstantin Komarov 			mnt_userns, inode,
987*87e21c99SKonstantin Komarov 			name_len == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1
988*87e21c99SKonstantin Komarov 				? ACL_TYPE_ACCESS
989*87e21c99SKonstantin Komarov 				: ACL_TYPE_DEFAULT,
990*87e21c99SKonstantin Komarov 			value, size);
991*87e21c99SKonstantin Komarov 		goto out;
992*87e21c99SKonstantin Komarov 	}
993*87e21c99SKonstantin Komarov #endif
994e8b8e97fSKari Argillander 	/* Deal with NTFS extended attribute. */
995d81e06beSKonstantin Komarov 	err = ntfs_set_ea(inode, name, name_len, value, size, flags);
996be71b5cbSKonstantin Komarov 
997be71b5cbSKonstantin Komarov out:
998be71b5cbSKonstantin Komarov 	return err;
999be71b5cbSKonstantin Komarov }
1000be71b5cbSKonstantin Komarov 
1001be71b5cbSKonstantin Komarov /*
1002be71b5cbSKonstantin Komarov  * ntfs_save_wsl_perm
1003be71b5cbSKonstantin Komarov  *
1004be71b5cbSKonstantin Komarov  * save uid/gid/mode in xattr
1005be71b5cbSKonstantin Komarov  */
1006be71b5cbSKonstantin Komarov int ntfs_save_wsl_perm(struct inode *inode)
1007be71b5cbSKonstantin Komarov {
1008be71b5cbSKonstantin Komarov 	int err;
1009be71b5cbSKonstantin Komarov 	__le32 value;
1010be71b5cbSKonstantin Komarov 
1011d81e06beSKonstantin Komarov 	/* TODO: refactor this, so we don't lock 4 times in ntfs_set_ea */
1012be71b5cbSKonstantin Komarov 	value = cpu_to_le32(i_uid_read(inode));
1013be71b5cbSKonstantin Komarov 	err = ntfs_set_ea(inode, "$LXUID", sizeof("$LXUID") - 1, &value,
1014d81e06beSKonstantin Komarov 			  sizeof(value), 0);
1015be71b5cbSKonstantin Komarov 	if (err)
1016be71b5cbSKonstantin Komarov 		goto out;
1017be71b5cbSKonstantin Komarov 
1018be71b5cbSKonstantin Komarov 	value = cpu_to_le32(i_gid_read(inode));
1019be71b5cbSKonstantin Komarov 	err = ntfs_set_ea(inode, "$LXGID", sizeof("$LXGID") - 1, &value,
1020d81e06beSKonstantin Komarov 			  sizeof(value), 0);
1021be71b5cbSKonstantin Komarov 	if (err)
1022be71b5cbSKonstantin Komarov 		goto out;
1023be71b5cbSKonstantin Komarov 
1024be71b5cbSKonstantin Komarov 	value = cpu_to_le32(inode->i_mode);
1025be71b5cbSKonstantin Komarov 	err = ntfs_set_ea(inode, "$LXMOD", sizeof("$LXMOD") - 1, &value,
1026d81e06beSKonstantin Komarov 			  sizeof(value), 0);
1027be71b5cbSKonstantin Komarov 	if (err)
1028be71b5cbSKonstantin Komarov 		goto out;
1029be71b5cbSKonstantin Komarov 
1030be71b5cbSKonstantin Komarov 	if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) {
1031be71b5cbSKonstantin Komarov 		value = cpu_to_le32(inode->i_rdev);
1032be71b5cbSKonstantin Komarov 		err = ntfs_set_ea(inode, "$LXDEV", sizeof("$LXDEV") - 1, &value,
1033d81e06beSKonstantin Komarov 				  sizeof(value), 0);
1034be71b5cbSKonstantin Komarov 		if (err)
1035be71b5cbSKonstantin Komarov 			goto out;
1036be71b5cbSKonstantin Komarov 	}
1037be71b5cbSKonstantin Komarov 
1038be71b5cbSKonstantin Komarov out:
1039be71b5cbSKonstantin Komarov 	/* In case of error should we delete all WSL xattr? */
1040be71b5cbSKonstantin Komarov 	return err;
1041be71b5cbSKonstantin Komarov }
1042be71b5cbSKonstantin Komarov 
1043be71b5cbSKonstantin Komarov /*
1044be71b5cbSKonstantin Komarov  * ntfs_get_wsl_perm
1045be71b5cbSKonstantin Komarov  *
1046be71b5cbSKonstantin Komarov  * get uid/gid/mode from xattr
1047be71b5cbSKonstantin Komarov  * it is called from ntfs_iget5->ntfs_read_mft
1048be71b5cbSKonstantin Komarov  */
1049be71b5cbSKonstantin Komarov void ntfs_get_wsl_perm(struct inode *inode)
1050be71b5cbSKonstantin Komarov {
1051be71b5cbSKonstantin Komarov 	size_t sz;
1052be71b5cbSKonstantin Komarov 	__le32 value[3];
1053be71b5cbSKonstantin Komarov 
1054be71b5cbSKonstantin Komarov 	if (ntfs_get_ea(inode, "$LXUID", sizeof("$LXUID") - 1, &value[0],
1055be71b5cbSKonstantin Komarov 			sizeof(value[0]), &sz) == sizeof(value[0]) &&
1056be71b5cbSKonstantin Komarov 	    ntfs_get_ea(inode, "$LXGID", sizeof("$LXGID") - 1, &value[1],
1057be71b5cbSKonstantin Komarov 			sizeof(value[1]), &sz) == sizeof(value[1]) &&
1058be71b5cbSKonstantin Komarov 	    ntfs_get_ea(inode, "$LXMOD", sizeof("$LXMOD") - 1, &value[2],
1059be71b5cbSKonstantin Komarov 			sizeof(value[2]), &sz) == sizeof(value[2])) {
1060be71b5cbSKonstantin Komarov 		i_uid_write(inode, (uid_t)le32_to_cpu(value[0]));
1061be71b5cbSKonstantin Komarov 		i_gid_write(inode, (gid_t)le32_to_cpu(value[1]));
1062be71b5cbSKonstantin Komarov 		inode->i_mode = le32_to_cpu(value[2]);
1063be71b5cbSKonstantin Komarov 
1064be71b5cbSKonstantin Komarov 		if (ntfs_get_ea(inode, "$LXDEV", sizeof("$$LXDEV") - 1,
1065be71b5cbSKonstantin Komarov 				&value[0], sizeof(value),
1066be71b5cbSKonstantin Komarov 				&sz) == sizeof(value[0])) {
1067be71b5cbSKonstantin Komarov 			inode->i_rdev = le32_to_cpu(value[0]);
1068be71b5cbSKonstantin Komarov 		}
1069be71b5cbSKonstantin Komarov 	}
1070be71b5cbSKonstantin Komarov }
1071be71b5cbSKonstantin Komarov 
1072be71b5cbSKonstantin Komarov static bool ntfs_xattr_user_list(struct dentry *dentry)
1073be71b5cbSKonstantin Komarov {
1074be71b5cbSKonstantin Komarov 	return true;
1075be71b5cbSKonstantin Komarov }
1076be71b5cbSKonstantin Komarov 
1077be71b5cbSKonstantin Komarov // clang-format off
1078be71b5cbSKonstantin Komarov static const struct xattr_handler ntfs_xattr_handler = {
1079be71b5cbSKonstantin Komarov 	.prefix	= "",
1080be71b5cbSKonstantin Komarov 	.get	= ntfs_getxattr,
1081be71b5cbSKonstantin Komarov 	.set	= ntfs_setxattr,
1082be71b5cbSKonstantin Komarov 	.list	= ntfs_xattr_user_list,
1083be71b5cbSKonstantin Komarov };
1084be71b5cbSKonstantin Komarov 
1085be71b5cbSKonstantin Komarov const struct xattr_handler *ntfs_xattr_handlers[] = {
1086be71b5cbSKonstantin Komarov 	&ntfs_xattr_handler,
1087be71b5cbSKonstantin Komarov 	NULL,
1088be71b5cbSKonstantin Komarov };
1089be71b5cbSKonstantin Komarov // clang-format on
1090