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" 200d19f3d7SDaniel Pinto #define SYSTEM_NTFS_ATTRIB_BE "system.ntfs_attrib_be" 21be71b5cbSKonstantin Komarov #define SYSTEM_NTFS_SECURITY "system.ntfs_security" 22be71b5cbSKonstantin Komarov // clang-format on 23be71b5cbSKonstantin Komarov 24be71b5cbSKonstantin Komarov static inline size_t unpacked_ea_size(const struct EA_FULL *ea) 25be71b5cbSKonstantin Komarov { 26be71b5cbSKonstantin Komarov return ea->size ? le32_to_cpu(ea->size) 27d3624466SKonstantin Komarov : ALIGN(struct_size(ea, name, 28d3624466SKonstantin Komarov 1 + ea->name_len + 29d3624466SKonstantin Komarov le16_to_cpu(ea->elength)), 30d3624466SKonstantin Komarov 4); 31be71b5cbSKonstantin Komarov } 32be71b5cbSKonstantin Komarov 33be71b5cbSKonstantin Komarov static inline size_t packed_ea_size(const struct EA_FULL *ea) 34be71b5cbSKonstantin Komarov { 35be71b5cbSKonstantin Komarov return struct_size(ea, name, 36be71b5cbSKonstantin Komarov 1 + ea->name_len + le16_to_cpu(ea->elength)) - 37be71b5cbSKonstantin Komarov offsetof(struct EA_FULL, flags); 38be71b5cbSKonstantin Komarov } 39be71b5cbSKonstantin Komarov 40be71b5cbSKonstantin Komarov /* 41be71b5cbSKonstantin Komarov * find_ea 42be71b5cbSKonstantin Komarov * 43e8b8e97fSKari Argillander * Assume there is at least one xattr in the list. 44be71b5cbSKonstantin Komarov */ 45be71b5cbSKonstantin Komarov static inline bool find_ea(const struct EA_FULL *ea_all, u32 bytes, 460e8235d2SKonstantin Komarov const char *name, u8 name_len, u32 *off, u32 *ea_sz) 47be71b5cbSKonstantin Komarov { 480e8235d2SKonstantin Komarov u32 ea_size; 490e8235d2SKonstantin Komarov 50be71b5cbSKonstantin Komarov *off = 0; 510e8235d2SKonstantin Komarov if (!ea_all) 52be71b5cbSKonstantin Komarov return false; 53be71b5cbSKonstantin Komarov 540e8235d2SKonstantin Komarov for (; *off < bytes; *off += ea_size) { 55be71b5cbSKonstantin Komarov const struct EA_FULL *ea = Add2Ptr(ea_all, *off); 560e8235d2SKonstantin Komarov ea_size = unpacked_ea_size(ea); 57be71b5cbSKonstantin Komarov if (ea->name_len == name_len && 580e8235d2SKonstantin Komarov !memcmp(ea->name, name, name_len)) { 590e8235d2SKonstantin Komarov if (ea_sz) 600e8235d2SKonstantin Komarov *ea_sz = ea_size; 61be71b5cbSKonstantin Komarov return true; 62be71b5cbSKonstantin Komarov } 63be71b5cbSKonstantin Komarov } 64be71b5cbSKonstantin Komarov 650e8235d2SKonstantin Komarov return false; 660e8235d2SKonstantin Komarov } 670e8235d2SKonstantin Komarov 68be71b5cbSKonstantin Komarov /* 69e8b8e97fSKari Argillander * ntfs_read_ea - Read all extended attributes. 70e8b8e97fSKari Argillander * @ea: New allocated memory. 71e8b8e97fSKari Argillander * @info: Pointer into resident data. 72be71b5cbSKonstantin Komarov */ 73be71b5cbSKonstantin Komarov static int ntfs_read_ea(struct ntfs_inode *ni, struct EA_FULL **ea, 74be71b5cbSKonstantin Komarov size_t add_bytes, const struct EA_INFO **info) 75be71b5cbSKonstantin Komarov { 760e8235d2SKonstantin Komarov int err = -EINVAL; 77cff32466SKonstantin Komarov struct ntfs_sb_info *sbi = ni->mi.sbi; 78be71b5cbSKonstantin Komarov struct ATTR_LIST_ENTRY *le = NULL; 79be71b5cbSKonstantin Komarov struct ATTRIB *attr_info, *attr_ea; 80be71b5cbSKonstantin Komarov void *ea_p; 810e8235d2SKonstantin Komarov u32 size, off, ea_size; 82be71b5cbSKonstantin Komarov 83be71b5cbSKonstantin Komarov static_assert(le32_to_cpu(ATTR_EA_INFO) < le32_to_cpu(ATTR_EA)); 84be71b5cbSKonstantin Komarov 85be71b5cbSKonstantin Komarov *ea = NULL; 86be71b5cbSKonstantin Komarov *info = NULL; 87be71b5cbSKonstantin Komarov 88be71b5cbSKonstantin Komarov attr_info = 89be71b5cbSKonstantin Komarov ni_find_attr(ni, NULL, &le, ATTR_EA_INFO, NULL, 0, NULL, NULL); 90be71b5cbSKonstantin Komarov attr_ea = 91be71b5cbSKonstantin Komarov ni_find_attr(ni, attr_info, &le, ATTR_EA, NULL, 0, NULL, NULL); 92be71b5cbSKonstantin Komarov 93be71b5cbSKonstantin Komarov if (!attr_ea || !attr_info) 94be71b5cbSKonstantin Komarov return 0; 95be71b5cbSKonstantin Komarov 96be71b5cbSKonstantin Komarov *info = resident_data_ex(attr_info, sizeof(struct EA_INFO)); 97be71b5cbSKonstantin Komarov if (!*info) 980e8235d2SKonstantin Komarov goto out; 99be71b5cbSKonstantin Komarov 100e8b8e97fSKari Argillander /* Check Ea limit. */ 101be71b5cbSKonstantin Komarov size = le32_to_cpu((*info)->size); 1020e8235d2SKonstantin Komarov if (size > sbi->ea_max_size) { 1030e8235d2SKonstantin Komarov err = -EFBIG; 1040e8235d2SKonstantin Komarov goto out; 1050e8235d2SKonstantin Komarov } 106be71b5cbSKonstantin Komarov 1070e8235d2SKonstantin Komarov if (attr_size(attr_ea) > sbi->ea_max_size) { 1080e8235d2SKonstantin Komarov err = -EFBIG; 1090e8235d2SKonstantin Komarov goto out; 1100e8235d2SKonstantin Komarov } 1110e8235d2SKonstantin Komarov 1120e8235d2SKonstantin Komarov if (!size) { 1130e8235d2SKonstantin Komarov /* EA info persists, but xattr is empty. Looks like EA problem. */ 1140e8235d2SKonstantin Komarov goto out; 1150e8235d2SKonstantin Komarov } 116be71b5cbSKonstantin Komarov 117e8b8e97fSKari Argillander /* Allocate memory for packed Ea. */ 118e001e608SDan Carpenter ea_p = kmalloc(size_add(size, add_bytes), GFP_NOFS); 119be71b5cbSKonstantin Komarov if (!ea_p) 120be71b5cbSKonstantin Komarov return -ENOMEM; 121be71b5cbSKonstantin Komarov 1220e8235d2SKonstantin Komarov if (attr_ea->non_res) { 123be71b5cbSKonstantin Komarov struct runs_tree run; 124be71b5cbSKonstantin Komarov 125be71b5cbSKonstantin Komarov run_init(&run); 126be71b5cbSKonstantin Komarov 12742f86b12SKonstantin Komarov err = attr_load_runs_range(ni, ATTR_EA, NULL, 0, &run, 0, size); 128be71b5cbSKonstantin Komarov if (!err) 129cff32466SKonstantin Komarov err = ntfs_read_run_nb(sbi, &run, 0, ea_p, size, NULL); 130be71b5cbSKonstantin Komarov run_close(&run); 131be71b5cbSKonstantin Komarov 132be71b5cbSKonstantin Komarov if (err) 1330e8235d2SKonstantin Komarov goto out1; 134be71b5cbSKonstantin Komarov } else { 135be71b5cbSKonstantin Komarov void *p = resident_data_ex(attr_ea, size); 136be71b5cbSKonstantin Komarov 1370e8235d2SKonstantin Komarov if (!p) 1380e8235d2SKonstantin Komarov goto out1; 139be71b5cbSKonstantin Komarov memcpy(ea_p, p, size); 140be71b5cbSKonstantin Komarov } 141be71b5cbSKonstantin Komarov 142be71b5cbSKonstantin Komarov memset(Add2Ptr(ea_p, size), 0, add_bytes); 1430e8235d2SKonstantin Komarov 1440e8235d2SKonstantin Komarov /* Check all attributes for consistency. */ 1450e8235d2SKonstantin Komarov for (off = 0; off < size; off += ea_size) { 1460e8235d2SKonstantin Komarov const struct EA_FULL *ef = Add2Ptr(ea_p, off); 1470e8235d2SKonstantin Komarov u32 bytes = size - off; 1480e8235d2SKonstantin Komarov 1490e8235d2SKonstantin Komarov /* Check if we can use field ea->size. */ 1500e8235d2SKonstantin Komarov if (bytes < sizeof(ef->size)) 1510e8235d2SKonstantin Komarov goto out1; 1520e8235d2SKonstantin Komarov 1530e8235d2SKonstantin Komarov if (ef->size) { 1540e8235d2SKonstantin Komarov ea_size = le32_to_cpu(ef->size); 1550e8235d2SKonstantin Komarov if (ea_size > bytes) 1560e8235d2SKonstantin Komarov goto out1; 1570e8235d2SKonstantin Komarov continue; 1580e8235d2SKonstantin Komarov } 1590e8235d2SKonstantin Komarov 1600e8235d2SKonstantin Komarov /* Check if we can use fields ef->name_len and ef->elength. */ 1610e8235d2SKonstantin Komarov if (bytes < offsetof(struct EA_FULL, name)) 1620e8235d2SKonstantin Komarov goto out1; 1630e8235d2SKonstantin Komarov 1640e8235d2SKonstantin Komarov ea_size = ALIGN(struct_size(ef, name, 1650e8235d2SKonstantin Komarov 1 + ef->name_len + 1660e8235d2SKonstantin Komarov le16_to_cpu(ef->elength)), 1670e8235d2SKonstantin Komarov 4); 1680e8235d2SKonstantin Komarov if (ea_size > bytes) 1690e8235d2SKonstantin Komarov goto out1; 1700e8235d2SKonstantin Komarov } 1710e8235d2SKonstantin Komarov 172be71b5cbSKonstantin Komarov *ea = ea_p; 173be71b5cbSKonstantin Komarov return 0; 174be71b5cbSKonstantin Komarov 1750e8235d2SKonstantin Komarov out1: 176195c52bdSKari Argillander kfree(ea_p); 1770e8235d2SKonstantin Komarov out: 1780e8235d2SKonstantin Komarov ntfs_set_state(sbi, NTFS_DIRTY_DIRTY); 179be71b5cbSKonstantin Komarov return err; 180be71b5cbSKonstantin Komarov } 181be71b5cbSKonstantin Komarov 182be71b5cbSKonstantin Komarov /* 183be71b5cbSKonstantin Komarov * ntfs_list_ea 184be71b5cbSKonstantin Komarov * 185e8b8e97fSKari Argillander * Copy a list of xattrs names into the buffer 186e8b8e97fSKari Argillander * provided, or compute the buffer size required. 187be71b5cbSKonstantin Komarov * 188e8b8e97fSKari Argillander * Return: 189e8b8e97fSKari Argillander * * Number of bytes used / required on 190e8b8e97fSKari Argillander * * -ERRNO - on failure 191be71b5cbSKonstantin Komarov */ 192be71b5cbSKonstantin Komarov static ssize_t ntfs_list_ea(struct ntfs_inode *ni, char *buffer, 193be71b5cbSKonstantin Komarov size_t bytes_per_buffer) 194be71b5cbSKonstantin Komarov { 195be71b5cbSKonstantin Komarov const struct EA_INFO *info; 196be71b5cbSKonstantin Komarov struct EA_FULL *ea_all = NULL; 197be71b5cbSKonstantin Komarov const struct EA_FULL *ea; 198be71b5cbSKonstantin Komarov u32 off, size; 199be71b5cbSKonstantin Komarov int err; 2000e8235d2SKonstantin Komarov int ea_size; 201be71b5cbSKonstantin Komarov size_t ret; 202be71b5cbSKonstantin Komarov 203be71b5cbSKonstantin Komarov err = ntfs_read_ea(ni, &ea_all, 0, &info); 204be71b5cbSKonstantin Komarov if (err) 205be71b5cbSKonstantin Komarov return err; 206be71b5cbSKonstantin Komarov 207be71b5cbSKonstantin Komarov if (!info || !ea_all) 208be71b5cbSKonstantin Komarov return 0; 209be71b5cbSKonstantin Komarov 210be71b5cbSKonstantin Komarov size = le32_to_cpu(info->size); 211be71b5cbSKonstantin Komarov 212e8b8e97fSKari Argillander /* Enumerate all xattrs. */ 2130e8235d2SKonstantin Komarov for (ret = 0, off = 0; off < size; off += ea_size) { 214be71b5cbSKonstantin Komarov ea = Add2Ptr(ea_all, off); 2150e8235d2SKonstantin Komarov ea_size = unpacked_ea_size(ea); 216be71b5cbSKonstantin Komarov 217be71b5cbSKonstantin Komarov if (buffer) { 218be71b5cbSKonstantin Komarov if (ret + ea->name_len + 1 > bytes_per_buffer) { 219be71b5cbSKonstantin Komarov err = -ERANGE; 220be71b5cbSKonstantin Komarov goto out; 221be71b5cbSKonstantin Komarov } 222be71b5cbSKonstantin Komarov 223be71b5cbSKonstantin Komarov memcpy(buffer + ret, ea->name, ea->name_len); 224be71b5cbSKonstantin Komarov buffer[ret + ea->name_len] = 0; 225be71b5cbSKonstantin Komarov } 226be71b5cbSKonstantin Komarov 227be71b5cbSKonstantin Komarov ret += ea->name_len + 1; 228be71b5cbSKonstantin Komarov } 229be71b5cbSKonstantin Komarov 230be71b5cbSKonstantin Komarov out: 231195c52bdSKari Argillander kfree(ea_all); 232be71b5cbSKonstantin Komarov return err ? err : ret; 233be71b5cbSKonstantin Komarov } 234be71b5cbSKonstantin Komarov 235be71b5cbSKonstantin Komarov static int ntfs_get_ea(struct inode *inode, const char *name, size_t name_len, 236be71b5cbSKonstantin Komarov void *buffer, size_t size, size_t *required) 237be71b5cbSKonstantin Komarov { 238be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 239be71b5cbSKonstantin Komarov const struct EA_INFO *info; 240be71b5cbSKonstantin Komarov struct EA_FULL *ea_all = NULL; 241be71b5cbSKonstantin Komarov const struct EA_FULL *ea; 242be71b5cbSKonstantin Komarov u32 off, len; 243be71b5cbSKonstantin Komarov int err; 244be71b5cbSKonstantin Komarov 245be71b5cbSKonstantin Komarov if (!(ni->ni_flags & NI_FLAG_EA)) 246be71b5cbSKonstantin Komarov return -ENODATA; 247be71b5cbSKonstantin Komarov 248be71b5cbSKonstantin Komarov if (!required) 249be71b5cbSKonstantin Komarov ni_lock(ni); 250be71b5cbSKonstantin Komarov 251be71b5cbSKonstantin Komarov len = 0; 252be71b5cbSKonstantin Komarov 253be71b5cbSKonstantin Komarov if (name_len > 255) { 254be71b5cbSKonstantin Komarov err = -ENAMETOOLONG; 255be71b5cbSKonstantin Komarov goto out; 256be71b5cbSKonstantin Komarov } 257be71b5cbSKonstantin Komarov 258be71b5cbSKonstantin Komarov err = ntfs_read_ea(ni, &ea_all, 0, &info); 259be71b5cbSKonstantin Komarov if (err) 260be71b5cbSKonstantin Komarov goto out; 261be71b5cbSKonstantin Komarov 262be71b5cbSKonstantin Komarov if (!info) 263be71b5cbSKonstantin Komarov goto out; 264be71b5cbSKonstantin Komarov 265e8b8e97fSKari Argillander /* Enumerate all xattrs. */ 2660e8235d2SKonstantin Komarov if (!find_ea(ea_all, le32_to_cpu(info->size), name, name_len, &off, 2670e8235d2SKonstantin Komarov NULL)) { 268be71b5cbSKonstantin Komarov err = -ENODATA; 269be71b5cbSKonstantin Komarov goto out; 270be71b5cbSKonstantin Komarov } 271be71b5cbSKonstantin Komarov ea = Add2Ptr(ea_all, off); 272be71b5cbSKonstantin Komarov 273be71b5cbSKonstantin Komarov len = le16_to_cpu(ea->elength); 274be71b5cbSKonstantin Komarov if (!buffer) { 275be71b5cbSKonstantin Komarov err = 0; 276be71b5cbSKonstantin Komarov goto out; 277be71b5cbSKonstantin Komarov } 278be71b5cbSKonstantin Komarov 279be71b5cbSKonstantin Komarov if (len > size) { 280be71b5cbSKonstantin Komarov err = -ERANGE; 281be71b5cbSKonstantin Komarov if (required) 282be71b5cbSKonstantin Komarov *required = len; 283be71b5cbSKonstantin Komarov goto out; 284be71b5cbSKonstantin Komarov } 285be71b5cbSKonstantin Komarov 286be71b5cbSKonstantin Komarov memcpy(buffer, ea->name + ea->name_len + 1, len); 287be71b5cbSKonstantin Komarov err = 0; 288be71b5cbSKonstantin Komarov 289be71b5cbSKonstantin Komarov out: 290195c52bdSKari Argillander kfree(ea_all); 291be71b5cbSKonstantin Komarov if (!required) 292be71b5cbSKonstantin Komarov ni_unlock(ni); 293be71b5cbSKonstantin Komarov 294be71b5cbSKonstantin Komarov return err ? err : len; 295be71b5cbSKonstantin Komarov } 296be71b5cbSKonstantin Komarov 297be71b5cbSKonstantin Komarov static noinline int ntfs_set_ea(struct inode *inode, const char *name, 298be71b5cbSKonstantin Komarov size_t name_len, const void *value, 2993a2154b2SKonstantin Komarov size_t val_size, int flags, bool locked) 300be71b5cbSKonstantin Komarov { 301be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 302be71b5cbSKonstantin Komarov struct ntfs_sb_info *sbi = ni->mi.sbi; 303be71b5cbSKonstantin Komarov int err; 304be71b5cbSKonstantin Komarov struct EA_INFO ea_info; 305be71b5cbSKonstantin Komarov const struct EA_INFO *info; 306be71b5cbSKonstantin Komarov struct EA_FULL *new_ea; 307be71b5cbSKonstantin Komarov struct EA_FULL *ea_all = NULL; 308be71b5cbSKonstantin Komarov size_t add, new_pack; 3090e8235d2SKonstantin Komarov u32 off, size, ea_sz; 310be71b5cbSKonstantin Komarov __le16 size_pack; 311be71b5cbSKonstantin Komarov struct ATTRIB *attr; 312be71b5cbSKonstantin Komarov struct ATTR_LIST_ENTRY *le; 313be71b5cbSKonstantin Komarov struct mft_inode *mi; 314be71b5cbSKonstantin Komarov struct runs_tree ea_run; 315be71b5cbSKonstantin Komarov u64 new_sz; 316be71b5cbSKonstantin Komarov void *p; 317be71b5cbSKonstantin Komarov 3183a2154b2SKonstantin Komarov if (!locked) 319be71b5cbSKonstantin Komarov ni_lock(ni); 320be71b5cbSKonstantin Komarov 321be71b5cbSKonstantin Komarov run_init(&ea_run); 322be71b5cbSKonstantin Komarov 323be71b5cbSKonstantin Komarov if (name_len > 255) { 324be71b5cbSKonstantin Komarov err = -ENAMETOOLONG; 325be71b5cbSKonstantin Komarov goto out; 326be71b5cbSKonstantin Komarov } 327be71b5cbSKonstantin Komarov 328fa3cacf5SKari Argillander add = ALIGN(struct_size(ea_all, name, 1 + name_len + val_size), 4); 329be71b5cbSKonstantin Komarov 330be71b5cbSKonstantin Komarov err = ntfs_read_ea(ni, &ea_all, add, &info); 331be71b5cbSKonstantin Komarov if (err) 332be71b5cbSKonstantin Komarov goto out; 333be71b5cbSKonstantin Komarov 334be71b5cbSKonstantin Komarov if (!info) { 335be71b5cbSKonstantin Komarov memset(&ea_info, 0, sizeof(ea_info)); 336be71b5cbSKonstantin Komarov size = 0; 337be71b5cbSKonstantin Komarov size_pack = 0; 338be71b5cbSKonstantin Komarov } else { 339be71b5cbSKonstantin Komarov memcpy(&ea_info, info, sizeof(ea_info)); 340be71b5cbSKonstantin Komarov size = le32_to_cpu(ea_info.size); 341be71b5cbSKonstantin Komarov size_pack = ea_info.size_pack; 342be71b5cbSKonstantin Komarov } 343be71b5cbSKonstantin Komarov 3440e8235d2SKonstantin Komarov if (info && find_ea(ea_all, size, name, name_len, &off, &ea_sz)) { 345be71b5cbSKonstantin Komarov struct EA_FULL *ea; 346be71b5cbSKonstantin Komarov 347be71b5cbSKonstantin Komarov if (flags & XATTR_CREATE) { 348be71b5cbSKonstantin Komarov err = -EEXIST; 349be71b5cbSKonstantin Komarov goto out; 350be71b5cbSKonstantin Komarov } 351be71b5cbSKonstantin Komarov 352be71b5cbSKonstantin Komarov ea = Add2Ptr(ea_all, off); 353be71b5cbSKonstantin Komarov 354be71b5cbSKonstantin Komarov /* 355be71b5cbSKonstantin Komarov * Check simple case when we try to insert xattr with the same value 356be71b5cbSKonstantin Komarov * e.g. ntfs_save_wsl_perm 357be71b5cbSKonstantin Komarov */ 358be71b5cbSKonstantin Komarov if (val_size && le16_to_cpu(ea->elength) == val_size && 359be71b5cbSKonstantin Komarov !memcmp(ea->name + ea->name_len + 1, value, val_size)) { 360e8b8e97fSKari Argillander /* xattr already contains the required value. */ 361be71b5cbSKonstantin Komarov goto out; 362be71b5cbSKonstantin Komarov } 363be71b5cbSKonstantin Komarov 364e8b8e97fSKari Argillander /* Remove current xattr. */ 365be71b5cbSKonstantin Komarov if (ea->flags & FILE_NEED_EA) 366be71b5cbSKonstantin Komarov le16_add_cpu(&ea_info.count, -1); 367be71b5cbSKonstantin Komarov 368be71b5cbSKonstantin Komarov le16_add_cpu(&ea_info.size_pack, 0 - packed_ea_size(ea)); 369be71b5cbSKonstantin Komarov 370be71b5cbSKonstantin Komarov memmove(ea, Add2Ptr(ea, ea_sz), size - off - ea_sz); 371be71b5cbSKonstantin Komarov 372be71b5cbSKonstantin Komarov size -= ea_sz; 373be71b5cbSKonstantin Komarov memset(Add2Ptr(ea_all, size), 0, ea_sz); 374be71b5cbSKonstantin Komarov 375be71b5cbSKonstantin Komarov ea_info.size = cpu_to_le32(size); 376be71b5cbSKonstantin Komarov 377be71b5cbSKonstantin Komarov if ((flags & XATTR_REPLACE) && !val_size) { 378e8b8e97fSKari Argillander /* Remove xattr. */ 379be71b5cbSKonstantin Komarov goto update_ea; 380be71b5cbSKonstantin Komarov } 381be71b5cbSKonstantin Komarov } else { 382be71b5cbSKonstantin Komarov if (flags & XATTR_REPLACE) { 383be71b5cbSKonstantin Komarov err = -ENODATA; 384be71b5cbSKonstantin Komarov goto out; 385be71b5cbSKonstantin Komarov } 386be71b5cbSKonstantin Komarov 387be71b5cbSKonstantin Komarov if (!ea_all) { 388195c52bdSKari Argillander ea_all = kzalloc(add, GFP_NOFS); 389be71b5cbSKonstantin Komarov if (!ea_all) { 390be71b5cbSKonstantin Komarov err = -ENOMEM; 391be71b5cbSKonstantin Komarov goto out; 392be71b5cbSKonstantin Komarov } 393be71b5cbSKonstantin Komarov } 394be71b5cbSKonstantin Komarov } 395be71b5cbSKonstantin Komarov 396e8b8e97fSKari Argillander /* Append new xattr. */ 397be71b5cbSKonstantin Komarov new_ea = Add2Ptr(ea_all, size); 398be71b5cbSKonstantin Komarov new_ea->size = cpu_to_le32(add); 399be71b5cbSKonstantin Komarov new_ea->flags = 0; 400be71b5cbSKonstantin Komarov new_ea->name_len = name_len; 401be71b5cbSKonstantin Komarov new_ea->elength = cpu_to_le16(val_size); 402be71b5cbSKonstantin Komarov memcpy(new_ea->name, name, name_len); 403be71b5cbSKonstantin Komarov new_ea->name[name_len] = 0; 404be71b5cbSKonstantin Komarov memcpy(new_ea->name + name_len + 1, value, val_size); 405be71b5cbSKonstantin Komarov new_pack = le16_to_cpu(ea_info.size_pack) + packed_ea_size(new_ea); 406be71b5cbSKonstantin Komarov ea_info.size_pack = cpu_to_le16(new_pack); 407e8b8e97fSKari Argillander /* New size of ATTR_EA. */ 408be71b5cbSKonstantin Komarov size += add; 409cff32466SKonstantin Komarov ea_info.size = cpu_to_le32(size); 410cff32466SKonstantin Komarov 411cff32466SKonstantin Komarov /* 412cff32466SKonstantin Komarov * 1. Check ea_info.size_pack for overflow. 413cff32466SKonstantin Komarov * 2. New attibute size must fit value from $AttrDef 414cff32466SKonstantin Komarov */ 415cff32466SKonstantin Komarov if (new_pack > 0xffff || size > sbi->ea_max_size) { 416cff32466SKonstantin Komarov ntfs_inode_warn( 417cff32466SKonstantin Komarov inode, 418cff32466SKonstantin Komarov "The size of extended attributes must not exceed 64KiB"); 419be71b5cbSKonstantin Komarov err = -EFBIG; // -EINVAL? 420be71b5cbSKonstantin Komarov goto out; 421be71b5cbSKonstantin Komarov } 422be71b5cbSKonstantin Komarov 423be71b5cbSKonstantin Komarov update_ea: 424be71b5cbSKonstantin Komarov 425be71b5cbSKonstantin Komarov if (!info) { 426e8b8e97fSKari Argillander /* Create xattr. */ 427be71b5cbSKonstantin Komarov if (!size) { 428be71b5cbSKonstantin Komarov err = 0; 429be71b5cbSKonstantin Komarov goto out; 430be71b5cbSKonstantin Komarov } 431be71b5cbSKonstantin Komarov 432be71b5cbSKonstantin Komarov err = ni_insert_resident(ni, sizeof(struct EA_INFO), 43378ab59feSKonstantin Komarov ATTR_EA_INFO, NULL, 0, NULL, NULL, 43478ab59feSKonstantin Komarov NULL); 435be71b5cbSKonstantin Komarov if (err) 436be71b5cbSKonstantin Komarov goto out; 437be71b5cbSKonstantin Komarov 43878ab59feSKonstantin Komarov err = ni_insert_resident(ni, 0, ATTR_EA, NULL, 0, NULL, NULL, 43978ab59feSKonstantin Komarov NULL); 440be71b5cbSKonstantin Komarov if (err) 441be71b5cbSKonstantin Komarov goto out; 442be71b5cbSKonstantin Komarov } 443be71b5cbSKonstantin Komarov 444be71b5cbSKonstantin Komarov new_sz = size; 445be71b5cbSKonstantin Komarov err = attr_set_size(ni, ATTR_EA, NULL, 0, &ea_run, new_sz, &new_sz, 446be71b5cbSKonstantin Komarov false, NULL); 447be71b5cbSKonstantin Komarov if (err) 448be71b5cbSKonstantin Komarov goto out; 449be71b5cbSKonstantin Komarov 450be71b5cbSKonstantin Komarov le = NULL; 451be71b5cbSKonstantin Komarov attr = ni_find_attr(ni, NULL, &le, ATTR_EA_INFO, NULL, 0, NULL, &mi); 452be71b5cbSKonstantin Komarov if (!attr) { 453be71b5cbSKonstantin Komarov err = -EINVAL; 454be71b5cbSKonstantin Komarov goto out; 455be71b5cbSKonstantin Komarov } 456be71b5cbSKonstantin Komarov 457be71b5cbSKonstantin Komarov if (!size) { 458e8b8e97fSKari Argillander /* Delete xattr, ATTR_EA_INFO */ 45978ab59feSKonstantin Komarov ni_remove_attr_le(ni, attr, mi, le); 460be71b5cbSKonstantin Komarov } else { 461be71b5cbSKonstantin Komarov p = resident_data_ex(attr, sizeof(struct EA_INFO)); 462be71b5cbSKonstantin Komarov if (!p) { 463be71b5cbSKonstantin Komarov err = -EINVAL; 464be71b5cbSKonstantin Komarov goto out; 465be71b5cbSKonstantin Komarov } 466be71b5cbSKonstantin Komarov memcpy(p, &ea_info, sizeof(struct EA_INFO)); 467be71b5cbSKonstantin Komarov mi->dirty = true; 468be71b5cbSKonstantin Komarov } 469be71b5cbSKonstantin Komarov 470be71b5cbSKonstantin Komarov le = NULL; 471be71b5cbSKonstantin Komarov attr = ni_find_attr(ni, NULL, &le, ATTR_EA, NULL, 0, NULL, &mi); 472be71b5cbSKonstantin Komarov if (!attr) { 473be71b5cbSKonstantin Komarov err = -EINVAL; 474be71b5cbSKonstantin Komarov goto out; 475be71b5cbSKonstantin Komarov } 476be71b5cbSKonstantin Komarov 477be71b5cbSKonstantin Komarov if (!size) { 478e8b8e97fSKari Argillander /* Delete xattr, ATTR_EA */ 47978ab59feSKonstantin Komarov ni_remove_attr_le(ni, attr, mi, le); 480be71b5cbSKonstantin Komarov } else if (attr->non_res) { 48142f86b12SKonstantin Komarov err = attr_load_runs_range(ni, ATTR_EA, NULL, 0, &ea_run, 0, 48242f86b12SKonstantin Komarov size); 48342f86b12SKonstantin Komarov if (err) 48442f86b12SKonstantin Komarov goto out; 48542f86b12SKonstantin Komarov 48663544672SKonstantin Komarov err = ntfs_sb_write_run(sbi, &ea_run, 0, ea_all, size, 0); 487be71b5cbSKonstantin Komarov if (err) 488be71b5cbSKonstantin Komarov goto out; 489be71b5cbSKonstantin Komarov } else { 490be71b5cbSKonstantin Komarov p = resident_data_ex(attr, size); 491be71b5cbSKonstantin Komarov if (!p) { 492be71b5cbSKonstantin Komarov err = -EINVAL; 493be71b5cbSKonstantin Komarov goto out; 494be71b5cbSKonstantin Komarov } 495be71b5cbSKonstantin Komarov memcpy(p, ea_all, size); 496be71b5cbSKonstantin Komarov mi->dirty = true; 497be71b5cbSKonstantin Komarov } 498be71b5cbSKonstantin Komarov 499e8b8e97fSKari Argillander /* Check if we delete the last xattr. */ 500be71b5cbSKonstantin Komarov if (size) 501be71b5cbSKonstantin Komarov ni->ni_flags |= NI_FLAG_EA; 502be71b5cbSKonstantin Komarov else 503be71b5cbSKonstantin Komarov ni->ni_flags &= ~NI_FLAG_EA; 504be71b5cbSKonstantin Komarov 505be71b5cbSKonstantin Komarov if (ea_info.size_pack != size_pack) 506be71b5cbSKonstantin Komarov ni->ni_flags |= NI_FLAG_UPDATE_PARENT; 507be71b5cbSKonstantin Komarov mark_inode_dirty(&ni->vfs_inode); 508be71b5cbSKonstantin Komarov 509be71b5cbSKonstantin Komarov out: 5103a2154b2SKonstantin Komarov if (!locked) 511be71b5cbSKonstantin Komarov ni_unlock(ni); 512be71b5cbSKonstantin Komarov 513be71b5cbSKonstantin Komarov run_close(&ea_run); 514195c52bdSKari Argillander kfree(ea_all); 515be71b5cbSKonstantin Komarov 516be71b5cbSKonstantin Komarov return err; 517be71b5cbSKonstantin Komarov } 518be71b5cbSKonstantin Komarov 519be71b5cbSKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL 5200c3bc789SChristian Brauner static struct posix_acl *ntfs_get_acl_ex(struct inode *inode, int type, 521be71b5cbSKonstantin Komarov int locked) 522be71b5cbSKonstantin Komarov { 523be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 524be71b5cbSKonstantin Komarov const char *name; 525be71b5cbSKonstantin Komarov size_t name_len; 526be71b5cbSKonstantin Komarov struct posix_acl *acl; 527be71b5cbSKonstantin Komarov size_t req; 528be71b5cbSKonstantin Komarov int err; 529be71b5cbSKonstantin Komarov void *buf; 530be71b5cbSKonstantin Komarov 531e8b8e97fSKari Argillander /* Allocate PATH_MAX bytes. */ 532be71b5cbSKonstantin Komarov buf = __getname(); 533be71b5cbSKonstantin Komarov if (!buf) 534be71b5cbSKonstantin Komarov return ERR_PTR(-ENOMEM); 535be71b5cbSKonstantin Komarov 536e8b8e97fSKari Argillander /* Possible values of 'type' was already checked above. */ 537be71b5cbSKonstantin Komarov if (type == ACL_TYPE_ACCESS) { 538be71b5cbSKonstantin Komarov name = XATTR_NAME_POSIX_ACL_ACCESS; 539be71b5cbSKonstantin Komarov name_len = sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1; 540be71b5cbSKonstantin Komarov } else { 541be71b5cbSKonstantin Komarov name = XATTR_NAME_POSIX_ACL_DEFAULT; 542be71b5cbSKonstantin Komarov name_len = sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1; 543be71b5cbSKonstantin Komarov } 544be71b5cbSKonstantin Komarov 545be71b5cbSKonstantin Komarov if (!locked) 546be71b5cbSKonstantin Komarov ni_lock(ni); 547be71b5cbSKonstantin Komarov 548be71b5cbSKonstantin Komarov err = ntfs_get_ea(inode, name, name_len, buf, PATH_MAX, &req); 549be71b5cbSKonstantin Komarov 550be71b5cbSKonstantin Komarov if (!locked) 551be71b5cbSKonstantin Komarov ni_unlock(ni); 552be71b5cbSKonstantin Komarov 553e8b8e97fSKari Argillander /* Translate extended attribute to acl. */ 5542926e429SDan Carpenter if (err >= 0) { 5550c3bc789SChristian Brauner acl = posix_acl_from_xattr(&init_user_ns, buf, err); 5560bd5fdb8SKonstantin Komarov } else if (err == -ENODATA) { 5570bd5fdb8SKonstantin Komarov acl = NULL; 5580bd5fdb8SKonstantin Komarov } else { 5590bd5fdb8SKonstantin Komarov acl = ERR_PTR(err); 5600bd5fdb8SKonstantin Komarov } 5610bd5fdb8SKonstantin Komarov 562be71b5cbSKonstantin Komarov if (!IS_ERR(acl)) 563be71b5cbSKonstantin Komarov set_cached_acl(inode, type, acl); 564be71b5cbSKonstantin Komarov 565be71b5cbSKonstantin Komarov __putname(buf); 566be71b5cbSKonstantin Komarov 567be71b5cbSKonstantin Komarov return acl; 568be71b5cbSKonstantin Komarov } 569be71b5cbSKonstantin Komarov 570be71b5cbSKonstantin Komarov /* 571e8b8e97fSKari Argillander * ntfs_get_acl - inode_operations::get_acl 572be71b5cbSKonstantin Komarov */ 573f7464060SLinus Torvalds struct posix_acl *ntfs_get_acl(struct inode *inode, int type, bool rcu) 574be71b5cbSKonstantin Komarov { 575f7464060SLinus Torvalds if (rcu) 576f7464060SLinus Torvalds return ERR_PTR(-ECHILD); 577f7464060SLinus Torvalds 5780c3bc789SChristian Brauner return ntfs_get_acl_ex(inode, type, 0); 579be71b5cbSKonstantin Komarov } 580be71b5cbSKonstantin Komarov 581be71b5cbSKonstantin Komarov static noinline int ntfs_set_acl_ex(struct user_namespace *mnt_userns, 582be71b5cbSKonstantin Komarov struct inode *inode, struct posix_acl *acl, 5839186d472SKonstantin Komarov int type, bool init_acl) 584be71b5cbSKonstantin Komarov { 585be71b5cbSKonstantin Komarov const char *name; 586be71b5cbSKonstantin Komarov size_t size, name_len; 587460bbf29SKonstantin Komarov void *value; 588460bbf29SKonstantin Komarov int err; 589398c35f4SKonstantin Komarov int flags; 590460bbf29SKonstantin Komarov umode_t mode; 591be71b5cbSKonstantin Komarov 592be71b5cbSKonstantin Komarov if (S_ISLNK(inode->i_mode)) 593be71b5cbSKonstantin Komarov return -EOPNOTSUPP; 594be71b5cbSKonstantin Komarov 595460bbf29SKonstantin Komarov mode = inode->i_mode; 596be71b5cbSKonstantin Komarov switch (type) { 597be71b5cbSKonstantin Komarov case ACL_TYPE_ACCESS: 5989186d472SKonstantin Komarov /* Do not change i_mode if we are in init_acl */ 5999186d472SKonstantin Komarov if (acl && !init_acl) { 600ba77237eSKonstantin Komarov err = posix_acl_update_mode(mnt_userns, inode, &mode, 601ba77237eSKonstantin Komarov &acl); 602ba77237eSKonstantin Komarov if (err) 603d4073595SDan Carpenter return err; 604be71b5cbSKonstantin Komarov } 605be71b5cbSKonstantin Komarov name = XATTR_NAME_POSIX_ACL_ACCESS; 606be71b5cbSKonstantin Komarov name_len = sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1; 607be71b5cbSKonstantin Komarov break; 608be71b5cbSKonstantin Komarov 609be71b5cbSKonstantin Komarov case ACL_TYPE_DEFAULT: 610be71b5cbSKonstantin Komarov if (!S_ISDIR(inode->i_mode)) 611be71b5cbSKonstantin Komarov return acl ? -EACCES : 0; 612be71b5cbSKonstantin Komarov name = XATTR_NAME_POSIX_ACL_DEFAULT; 613be71b5cbSKonstantin Komarov name_len = sizeof(XATTR_NAME_POSIX_ACL_DEFAULT) - 1; 614be71b5cbSKonstantin Komarov break; 615be71b5cbSKonstantin Komarov 616be71b5cbSKonstantin Komarov default: 617be71b5cbSKonstantin Komarov return -EINVAL; 618be71b5cbSKonstantin Komarov } 619be71b5cbSKonstantin Komarov 620be71b5cbSKonstantin Komarov if (!acl) { 621398c35f4SKonstantin Komarov /* Remove xattr if it can be presented via mode. */ 622be71b5cbSKonstantin Komarov size = 0; 623be71b5cbSKonstantin Komarov value = NULL; 624398c35f4SKonstantin Komarov flags = XATTR_REPLACE; 625be71b5cbSKonstantin Komarov } else { 626be71b5cbSKonstantin Komarov size = posix_acl_xattr_size(acl->a_count); 627195c52bdSKari Argillander value = kmalloc(size, GFP_NOFS); 628be71b5cbSKonstantin Komarov if (!value) 629be71b5cbSKonstantin Komarov return -ENOMEM; 6300c3bc789SChristian Brauner err = posix_acl_to_xattr(&init_user_ns, acl, value, size); 631be71b5cbSKonstantin Komarov if (err < 0) 632be71b5cbSKonstantin Komarov goto out; 633398c35f4SKonstantin Komarov flags = 0; 634be71b5cbSKonstantin Komarov } 635be71b5cbSKonstantin Komarov 6363a2154b2SKonstantin Komarov err = ntfs_set_ea(inode, name, name_len, value, size, flags, 0); 637398c35f4SKonstantin Komarov if (err == -ENODATA && !size) 638398c35f4SKonstantin Komarov err = 0; /* Removing non existed xattr. */ 639460bbf29SKonstantin Komarov if (!err) { 640be71b5cbSKonstantin Komarov set_cached_acl(inode, type, acl); 641460bbf29SKonstantin Komarov inode->i_mode = mode; 642*e31195a3SKonstantin Komarov inode->i_ctime = current_time(inode); 643460bbf29SKonstantin Komarov mark_inode_dirty(inode); 644460bbf29SKonstantin Komarov } 645be71b5cbSKonstantin Komarov 646be71b5cbSKonstantin Komarov out: 647195c52bdSKari Argillander kfree(value); 648be71b5cbSKonstantin Komarov 649be71b5cbSKonstantin Komarov return err; 650be71b5cbSKonstantin Komarov } 651be71b5cbSKonstantin Komarov 652be71b5cbSKonstantin Komarov /* 653e8b8e97fSKari Argillander * ntfs_set_acl - inode_operations::set_acl 654be71b5cbSKonstantin Komarov */ 655be71b5cbSKonstantin Komarov int ntfs_set_acl(struct user_namespace *mnt_userns, struct inode *inode, 656be71b5cbSKonstantin Komarov struct posix_acl *acl, int type) 657be71b5cbSKonstantin Komarov { 6589186d472SKonstantin Komarov return ntfs_set_acl_ex(mnt_userns, inode, acl, type, false); 659be71b5cbSKonstantin Komarov } 660be71b5cbSKonstantin Komarov 66187e21c99SKonstantin Komarov static int ntfs_xattr_get_acl(struct user_namespace *mnt_userns, 66287e21c99SKonstantin Komarov struct inode *inode, int type, void *buffer, 66387e21c99SKonstantin Komarov size_t size) 66487e21c99SKonstantin Komarov { 66587e21c99SKonstantin Komarov struct posix_acl *acl; 66687e21c99SKonstantin Komarov int err; 66787e21c99SKonstantin Komarov 66887e21c99SKonstantin Komarov if (!(inode->i_sb->s_flags & SB_POSIXACL)) { 66987e21c99SKonstantin Komarov ntfs_inode_warn(inode, "add mount option \"acl\" to use acl"); 67087e21c99SKonstantin Komarov return -EOPNOTSUPP; 67187e21c99SKonstantin Komarov } 67287e21c99SKonstantin Komarov 67387e21c99SKonstantin Komarov acl = ntfs_get_acl(inode, type, false); 67487e21c99SKonstantin Komarov if (IS_ERR(acl)) 67587e21c99SKonstantin Komarov return PTR_ERR(acl); 67687e21c99SKonstantin Komarov 67787e21c99SKonstantin Komarov if (!acl) 67887e21c99SKonstantin Komarov return -ENODATA; 67987e21c99SKonstantin Komarov 6800c3bc789SChristian Brauner err = posix_acl_to_xattr(&init_user_ns, acl, buffer, size); 68187e21c99SKonstantin Komarov posix_acl_release(acl); 68287e21c99SKonstantin Komarov 68387e21c99SKonstantin Komarov return err; 68487e21c99SKonstantin Komarov } 68587e21c99SKonstantin Komarov 68687e21c99SKonstantin Komarov static int ntfs_xattr_set_acl(struct user_namespace *mnt_userns, 68787e21c99SKonstantin Komarov struct inode *inode, int type, const void *value, 68887e21c99SKonstantin Komarov size_t size) 68987e21c99SKonstantin Komarov { 69087e21c99SKonstantin Komarov struct posix_acl *acl; 69187e21c99SKonstantin Komarov int err; 69287e21c99SKonstantin Komarov 69387e21c99SKonstantin Komarov if (!(inode->i_sb->s_flags & SB_POSIXACL)) { 69487e21c99SKonstantin Komarov ntfs_inode_warn(inode, "add mount option \"acl\" to use acl"); 69587e21c99SKonstantin Komarov return -EOPNOTSUPP; 69687e21c99SKonstantin Komarov } 69787e21c99SKonstantin Komarov 69887e21c99SKonstantin Komarov if (!inode_owner_or_capable(mnt_userns, inode)) 69987e21c99SKonstantin Komarov return -EPERM; 70087e21c99SKonstantin Komarov 70187e21c99SKonstantin Komarov if (!value) { 70287e21c99SKonstantin Komarov acl = NULL; 70387e21c99SKonstantin Komarov } else { 7040c3bc789SChristian Brauner acl = posix_acl_from_xattr(&init_user_ns, value, size); 70587e21c99SKonstantin Komarov if (IS_ERR(acl)) 70687e21c99SKonstantin Komarov return PTR_ERR(acl); 70787e21c99SKonstantin Komarov 70887e21c99SKonstantin Komarov if (acl) { 7090c3bc789SChristian Brauner err = posix_acl_valid(&init_user_ns, acl); 71087e21c99SKonstantin Komarov if (err) 71187e21c99SKonstantin Komarov goto release_and_out; 71287e21c99SKonstantin Komarov } 71387e21c99SKonstantin Komarov } 71487e21c99SKonstantin Komarov 71587e21c99SKonstantin Komarov err = ntfs_set_acl(mnt_userns, inode, acl, type); 71687e21c99SKonstantin Komarov 71787e21c99SKonstantin Komarov release_and_out: 71887e21c99SKonstantin Komarov posix_acl_release(acl); 71987e21c99SKonstantin Komarov return err; 72087e21c99SKonstantin Komarov } 72187e21c99SKonstantin Komarov 722be71b5cbSKonstantin Komarov /* 723e8b8e97fSKari Argillander * ntfs_init_acl - Initialize the ACLs of a new inode. 724e8b8e97fSKari Argillander * 725e8b8e97fSKari Argillander * Called from ntfs_create_inode(). 726be71b5cbSKonstantin Komarov */ 727be71b5cbSKonstantin Komarov int ntfs_init_acl(struct user_namespace *mnt_userns, struct inode *inode, 728be71b5cbSKonstantin Komarov struct inode *dir) 729be71b5cbSKonstantin Komarov { 730be71b5cbSKonstantin Komarov struct posix_acl *default_acl, *acl; 731be71b5cbSKonstantin Komarov int err; 732be71b5cbSKonstantin Komarov 73366019837SKonstantin Komarov err = posix_acl_create(dir, &inode->i_mode, &default_acl, &acl); 73466019837SKonstantin Komarov if (err) 73566019837SKonstantin Komarov return err; 736be71b5cbSKonstantin Komarov 73766019837SKonstantin Komarov if (default_acl) { 738be71b5cbSKonstantin Komarov err = ntfs_set_acl_ex(mnt_userns, inode, default_acl, 7399186d472SKonstantin Komarov ACL_TYPE_DEFAULT, true); 74066019837SKonstantin Komarov posix_acl_release(default_acl); 74166019837SKonstantin Komarov } else { 74266019837SKonstantin Komarov inode->i_default_acl = NULL; 74366019837SKonstantin Komarov } 744be71b5cbSKonstantin Komarov 74519e890ffSYang Xu if (acl) { 74666019837SKonstantin Komarov if (!err) 74766019837SKonstantin Komarov err = ntfs_set_acl_ex(mnt_userns, inode, acl, 7489186d472SKonstantin Komarov ACL_TYPE_ACCESS, true); 749be71b5cbSKonstantin Komarov posix_acl_release(acl); 75019e890ffSYang Xu } else { 75119e890ffSYang Xu inode->i_acl = NULL; 75266019837SKonstantin Komarov } 753be71b5cbSKonstantin Komarov 754be71b5cbSKonstantin Komarov return err; 755be71b5cbSKonstantin Komarov } 756be71b5cbSKonstantin Komarov #endif 757be71b5cbSKonstantin Komarov 758be71b5cbSKonstantin Komarov /* 759e8b8e97fSKari Argillander * ntfs_acl_chmod - Helper for ntfs3_setattr(). 760be71b5cbSKonstantin Komarov */ 761be71b5cbSKonstantin Komarov int ntfs_acl_chmod(struct user_namespace *mnt_userns, struct inode *inode) 762be71b5cbSKonstantin Komarov { 763be71b5cbSKonstantin Komarov struct super_block *sb = inode->i_sb; 764be71b5cbSKonstantin Komarov 765be71b5cbSKonstantin Komarov if (!(sb->s_flags & SB_POSIXACL)) 766be71b5cbSKonstantin Komarov return 0; 767be71b5cbSKonstantin Komarov 768be71b5cbSKonstantin Komarov if (S_ISLNK(inode->i_mode)) 769be71b5cbSKonstantin Komarov return -EOPNOTSUPP; 770be71b5cbSKonstantin Komarov 771be71b5cbSKonstantin Komarov return posix_acl_chmod(mnt_userns, inode, inode->i_mode); 772be71b5cbSKonstantin Komarov } 773be71b5cbSKonstantin Komarov 774be71b5cbSKonstantin Komarov /* 775e8b8e97fSKari Argillander * ntfs_permission - inode_operations::permission 776be71b5cbSKonstantin Komarov */ 777be71b5cbSKonstantin Komarov int ntfs_permission(struct user_namespace *mnt_userns, struct inode *inode, 778be71b5cbSKonstantin Komarov int mask) 779be71b5cbSKonstantin Komarov { 78028a941ffSKari Argillander if (ntfs_sb(inode->i_sb)->options->noacsrules) { 781e8b8e97fSKari Argillander /* "No access rules" mode - Allow all changes. */ 782be71b5cbSKonstantin Komarov return 0; 783be71b5cbSKonstantin Komarov } 784be71b5cbSKonstantin Komarov 785be71b5cbSKonstantin Komarov return generic_permission(mnt_userns, inode, mask); 786be71b5cbSKonstantin Komarov } 787be71b5cbSKonstantin Komarov 788be71b5cbSKonstantin Komarov /* 789e8b8e97fSKari Argillander * ntfs_listxattr - inode_operations::listxattr 790be71b5cbSKonstantin Komarov */ 791be71b5cbSKonstantin Komarov ssize_t ntfs_listxattr(struct dentry *dentry, char *buffer, size_t size) 792be71b5cbSKonstantin Komarov { 793be71b5cbSKonstantin Komarov struct inode *inode = d_inode(dentry); 794be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 795be71b5cbSKonstantin Komarov ssize_t ret; 796be71b5cbSKonstantin Komarov 797be71b5cbSKonstantin Komarov if (!(ni->ni_flags & NI_FLAG_EA)) { 798be71b5cbSKonstantin Komarov /* no xattr in file */ 799be71b5cbSKonstantin Komarov return 0; 800be71b5cbSKonstantin Komarov } 801be71b5cbSKonstantin Komarov 802be71b5cbSKonstantin Komarov ni_lock(ni); 803be71b5cbSKonstantin Komarov 804be71b5cbSKonstantin Komarov ret = ntfs_list_ea(ni, buffer, size); 805be71b5cbSKonstantin Komarov 806be71b5cbSKonstantin Komarov ni_unlock(ni); 807be71b5cbSKonstantin Komarov 808be71b5cbSKonstantin Komarov return ret; 809be71b5cbSKonstantin Komarov } 810be71b5cbSKonstantin Komarov 811be71b5cbSKonstantin Komarov static int ntfs_getxattr(const struct xattr_handler *handler, struct dentry *de, 812be71b5cbSKonstantin Komarov struct inode *inode, const char *name, void *buffer, 813be71b5cbSKonstantin Komarov size_t size) 814be71b5cbSKonstantin Komarov { 815be71b5cbSKonstantin Komarov int err; 816be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 817be71b5cbSKonstantin Komarov 818e8b8e97fSKari Argillander /* Dispatch request. */ 819d45da67cSYuan Can if (!strcmp(name, SYSTEM_DOS_ATTRIB)) { 820be71b5cbSKonstantin Komarov /* system.dos_attrib */ 821be71b5cbSKonstantin Komarov if (!buffer) { 822be71b5cbSKonstantin Komarov err = sizeof(u8); 823be71b5cbSKonstantin Komarov } else if (size < sizeof(u8)) { 824be71b5cbSKonstantin Komarov err = -ENODATA; 825be71b5cbSKonstantin Komarov } else { 826be71b5cbSKonstantin Komarov err = sizeof(u8); 827be71b5cbSKonstantin Komarov *(u8 *)buffer = le32_to_cpu(ni->std_fa); 828be71b5cbSKonstantin Komarov } 829be71b5cbSKonstantin Komarov goto out; 830be71b5cbSKonstantin Komarov } 831be71b5cbSKonstantin Komarov 8320d19f3d7SDaniel Pinto if (!strcmp(name, SYSTEM_NTFS_ATTRIB) || 8330d19f3d7SDaniel Pinto !strcmp(name, SYSTEM_NTFS_ATTRIB_BE)) { 834be71b5cbSKonstantin Komarov /* system.ntfs_attrib */ 835be71b5cbSKonstantin Komarov if (!buffer) { 836be71b5cbSKonstantin Komarov err = sizeof(u32); 837be71b5cbSKonstantin Komarov } else if (size < sizeof(u32)) { 838be71b5cbSKonstantin Komarov err = -ENODATA; 839be71b5cbSKonstantin Komarov } else { 840be71b5cbSKonstantin Komarov err = sizeof(u32); 841be71b5cbSKonstantin Komarov *(u32 *)buffer = le32_to_cpu(ni->std_fa); 8420d19f3d7SDaniel Pinto if (!strcmp(name, SYSTEM_NTFS_ATTRIB_BE)) 8430d19f3d7SDaniel Pinto *(u32 *)buffer = cpu_to_be32(*(u32 *)buffer); 844be71b5cbSKonstantin Komarov } 845be71b5cbSKonstantin Komarov goto out; 846be71b5cbSKonstantin Komarov } 847be71b5cbSKonstantin Komarov 848d45da67cSYuan Can if (!strcmp(name, SYSTEM_NTFS_SECURITY)) { 849be71b5cbSKonstantin Komarov /* system.ntfs_security*/ 850be71b5cbSKonstantin Komarov struct SECURITY_DESCRIPTOR_RELATIVE *sd = NULL; 851be71b5cbSKonstantin Komarov size_t sd_size = 0; 852be71b5cbSKonstantin Komarov 853be71b5cbSKonstantin Komarov if (!is_ntfs3(ni->mi.sbi)) { 854e8b8e97fSKari Argillander /* We should get nt4 security. */ 855be71b5cbSKonstantin Komarov err = -EINVAL; 856be71b5cbSKonstantin Komarov goto out; 857be71b5cbSKonstantin Komarov } else if (le32_to_cpu(ni->std_security_id) < 858be71b5cbSKonstantin Komarov SECURITY_ID_FIRST) { 859be71b5cbSKonstantin Komarov err = -ENOENT; 860be71b5cbSKonstantin Komarov goto out; 861be71b5cbSKonstantin Komarov } 862be71b5cbSKonstantin Komarov 863be71b5cbSKonstantin Komarov err = ntfs_get_security_by_id(ni->mi.sbi, ni->std_security_id, 864be71b5cbSKonstantin Komarov &sd, &sd_size); 865be71b5cbSKonstantin Komarov if (err) 866be71b5cbSKonstantin Komarov goto out; 867be71b5cbSKonstantin Komarov 868be71b5cbSKonstantin Komarov if (!is_sd_valid(sd, sd_size)) { 869be71b5cbSKonstantin Komarov ntfs_inode_warn( 870be71b5cbSKonstantin Komarov inode, 871be71b5cbSKonstantin Komarov "looks like you get incorrect security descriptor id=%u", 872be71b5cbSKonstantin Komarov ni->std_security_id); 873be71b5cbSKonstantin Komarov } 874be71b5cbSKonstantin Komarov 875be71b5cbSKonstantin Komarov if (!buffer) { 876be71b5cbSKonstantin Komarov err = sd_size; 877be71b5cbSKonstantin Komarov } else if (size < sd_size) { 878be71b5cbSKonstantin Komarov err = -ENODATA; 879be71b5cbSKonstantin Komarov } else { 880be71b5cbSKonstantin Komarov err = sd_size; 881be71b5cbSKonstantin Komarov memcpy(buffer, sd, sd_size); 882be71b5cbSKonstantin Komarov } 883195c52bdSKari Argillander kfree(sd); 884be71b5cbSKonstantin Komarov goto out; 885be71b5cbSKonstantin Komarov } 886be71b5cbSKonstantin Komarov 88787e21c99SKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL 888d45da67cSYuan Can if (!strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) || 889d45da67cSYuan Can !strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT)) { 89087e21c99SKonstantin Komarov /* TODO: init_user_ns? */ 89187e21c99SKonstantin Komarov err = ntfs_xattr_get_acl( 89287e21c99SKonstantin Komarov &init_user_ns, inode, 893d45da67cSYuan Can strlen(name) == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 89487e21c99SKonstantin Komarov ? ACL_TYPE_ACCESS 89587e21c99SKonstantin Komarov : ACL_TYPE_DEFAULT, 89687e21c99SKonstantin Komarov buffer, size); 89787e21c99SKonstantin Komarov goto out; 89887e21c99SKonstantin Komarov } 89987e21c99SKonstantin Komarov #endif 900e8b8e97fSKari Argillander /* Deal with NTFS extended attribute. */ 901d45da67cSYuan Can err = ntfs_get_ea(inode, name, strlen(name), buffer, size, NULL); 902be71b5cbSKonstantin Komarov 903be71b5cbSKonstantin Komarov out: 904be71b5cbSKonstantin Komarov return err; 905be71b5cbSKonstantin Komarov } 906be71b5cbSKonstantin Komarov 907be71b5cbSKonstantin Komarov /* 908e8b8e97fSKari Argillander * ntfs_setxattr - inode_operations::setxattr 909be71b5cbSKonstantin Komarov */ 910be71b5cbSKonstantin Komarov static noinline int ntfs_setxattr(const struct xattr_handler *handler, 911be71b5cbSKonstantin Komarov struct user_namespace *mnt_userns, 912be71b5cbSKonstantin Komarov struct dentry *de, struct inode *inode, 913be71b5cbSKonstantin Komarov const char *name, const void *value, 914be71b5cbSKonstantin Komarov size_t size, int flags) 915be71b5cbSKonstantin Komarov { 916be71b5cbSKonstantin Komarov int err = -EINVAL; 917be71b5cbSKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 918be71b5cbSKonstantin Komarov enum FILE_ATTRIBUTE new_fa; 919be71b5cbSKonstantin Komarov 920e8b8e97fSKari Argillander /* Dispatch request. */ 921d45da67cSYuan Can if (!strcmp(name, SYSTEM_DOS_ATTRIB)) { 922be71b5cbSKonstantin Komarov if (sizeof(u8) != size) 923be71b5cbSKonstantin Komarov goto out; 924be71b5cbSKonstantin Komarov new_fa = cpu_to_le32(*(u8 *)value); 925be71b5cbSKonstantin Komarov goto set_new_fa; 926be71b5cbSKonstantin Komarov } 927be71b5cbSKonstantin Komarov 9280d19f3d7SDaniel Pinto if (!strcmp(name, SYSTEM_NTFS_ATTRIB) || 9290d19f3d7SDaniel Pinto !strcmp(name, SYSTEM_NTFS_ATTRIB_BE)) { 930be71b5cbSKonstantin Komarov if (size != sizeof(u32)) 931be71b5cbSKonstantin Komarov goto out; 9320d19f3d7SDaniel Pinto if (!strcmp(name, SYSTEM_NTFS_ATTRIB_BE)) 9330d19f3d7SDaniel Pinto new_fa = cpu_to_le32(be32_to_cpu(*(u32 *)value)); 9340d19f3d7SDaniel Pinto else 935be71b5cbSKonstantin Komarov new_fa = cpu_to_le32(*(u32 *)value); 936be71b5cbSKonstantin Komarov 937be71b5cbSKonstantin Komarov if (S_ISREG(inode->i_mode)) { 938e8b8e97fSKari Argillander /* Process compressed/sparsed in special way. */ 939be71b5cbSKonstantin Komarov ni_lock(ni); 940be71b5cbSKonstantin Komarov err = ni_new_attr_flags(ni, new_fa); 941be71b5cbSKonstantin Komarov ni_unlock(ni); 942be71b5cbSKonstantin Komarov if (err) 943be71b5cbSKonstantin Komarov goto out; 944be71b5cbSKonstantin Komarov } 945be71b5cbSKonstantin Komarov set_new_fa: 946be71b5cbSKonstantin Komarov /* 947be71b5cbSKonstantin Komarov * Thanks Mark Harmstone: 948e8b8e97fSKari Argillander * Keep directory bit consistency. 949be71b5cbSKonstantin Komarov */ 950be71b5cbSKonstantin Komarov if (S_ISDIR(inode->i_mode)) 951be71b5cbSKonstantin Komarov new_fa |= FILE_ATTRIBUTE_DIRECTORY; 952be71b5cbSKonstantin Komarov else 953be71b5cbSKonstantin Komarov new_fa &= ~FILE_ATTRIBUTE_DIRECTORY; 954be71b5cbSKonstantin Komarov 955be71b5cbSKonstantin Komarov if (ni->std_fa != new_fa) { 956be71b5cbSKonstantin Komarov ni->std_fa = new_fa; 957be71b5cbSKonstantin Komarov if (new_fa & FILE_ATTRIBUTE_READONLY) 958be71b5cbSKonstantin Komarov inode->i_mode &= ~0222; 959be71b5cbSKonstantin Komarov else 960be71b5cbSKonstantin Komarov inode->i_mode |= 0222; 961e8b8e97fSKari Argillander /* Std attribute always in primary record. */ 962be71b5cbSKonstantin Komarov ni->mi.dirty = true; 963be71b5cbSKonstantin Komarov mark_inode_dirty(inode); 964be71b5cbSKonstantin Komarov } 965be71b5cbSKonstantin Komarov err = 0; 966be71b5cbSKonstantin Komarov 967be71b5cbSKonstantin Komarov goto out; 968be71b5cbSKonstantin Komarov } 969be71b5cbSKonstantin Komarov 970d45da67cSYuan Can if (!strcmp(name, SYSTEM_NTFS_SECURITY)) { 971be71b5cbSKonstantin Komarov /* system.ntfs_security*/ 972be71b5cbSKonstantin Komarov __le32 security_id; 973be71b5cbSKonstantin Komarov bool inserted; 974be71b5cbSKonstantin Komarov struct ATTR_STD_INFO5 *std; 975be71b5cbSKonstantin Komarov 976be71b5cbSKonstantin Komarov if (!is_ntfs3(ni->mi.sbi)) { 977be71b5cbSKonstantin Komarov /* 978e8b8e97fSKari Argillander * We should replace ATTR_SECURE. 979e8b8e97fSKari Argillander * Skip this way cause it is nt4 feature. 980be71b5cbSKonstantin Komarov */ 981be71b5cbSKonstantin Komarov err = -EINVAL; 982be71b5cbSKonstantin Komarov goto out; 983be71b5cbSKonstantin Komarov } 984be71b5cbSKonstantin Komarov 985be71b5cbSKonstantin Komarov if (!is_sd_valid(value, size)) { 986be71b5cbSKonstantin Komarov err = -EINVAL; 987be71b5cbSKonstantin Komarov ntfs_inode_warn( 988be71b5cbSKonstantin Komarov inode, 989be71b5cbSKonstantin Komarov "you try to set invalid security descriptor"); 990be71b5cbSKonstantin Komarov goto out; 991be71b5cbSKonstantin Komarov } 992be71b5cbSKonstantin Komarov 993be71b5cbSKonstantin Komarov err = ntfs_insert_security(ni->mi.sbi, value, size, 994be71b5cbSKonstantin Komarov &security_id, &inserted); 995be71b5cbSKonstantin Komarov if (err) 996be71b5cbSKonstantin Komarov goto out; 997be71b5cbSKonstantin Komarov 998be71b5cbSKonstantin Komarov ni_lock(ni); 999be71b5cbSKonstantin Komarov std = ni_std5(ni); 1000be71b5cbSKonstantin Komarov if (!std) { 1001be71b5cbSKonstantin Komarov err = -EINVAL; 1002be71b5cbSKonstantin Komarov } else if (std->security_id != security_id) { 1003be71b5cbSKonstantin Komarov std->security_id = ni->std_security_id = security_id; 1004e8b8e97fSKari Argillander /* Std attribute always in primary record. */ 1005be71b5cbSKonstantin Komarov ni->mi.dirty = true; 1006be71b5cbSKonstantin Komarov mark_inode_dirty(&ni->vfs_inode); 1007be71b5cbSKonstantin Komarov } 1008be71b5cbSKonstantin Komarov ni_unlock(ni); 1009be71b5cbSKonstantin Komarov goto out; 1010be71b5cbSKonstantin Komarov } 1011be71b5cbSKonstantin Komarov 101287e21c99SKonstantin Komarov #ifdef CONFIG_NTFS3_FS_POSIX_ACL 1013d45da67cSYuan Can if (!strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) || 1014d45da67cSYuan Can !strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT)) { 101587e21c99SKonstantin Komarov err = ntfs_xattr_set_acl( 101687e21c99SKonstantin Komarov mnt_userns, inode, 1017d45da67cSYuan Can strlen(name) == sizeof(XATTR_NAME_POSIX_ACL_ACCESS) - 1 101887e21c99SKonstantin Komarov ? ACL_TYPE_ACCESS 101987e21c99SKonstantin Komarov : ACL_TYPE_DEFAULT, 102087e21c99SKonstantin Komarov value, size); 102187e21c99SKonstantin Komarov goto out; 102287e21c99SKonstantin Komarov } 102387e21c99SKonstantin Komarov #endif 1024e8b8e97fSKari Argillander /* Deal with NTFS extended attribute. */ 1025d45da67cSYuan Can err = ntfs_set_ea(inode, name, strlen(name), value, size, flags, 0); 1026be71b5cbSKonstantin Komarov 1027be71b5cbSKonstantin Komarov out: 10282d44667cSKonstantin Komarov inode->i_ctime = current_time(inode); 10292d44667cSKonstantin Komarov mark_inode_dirty(inode); 10302d44667cSKonstantin Komarov 1031be71b5cbSKonstantin Komarov return err; 1032be71b5cbSKonstantin Komarov } 1033be71b5cbSKonstantin Komarov 1034be71b5cbSKonstantin Komarov /* 1035be71b5cbSKonstantin Komarov * ntfs_save_wsl_perm 1036be71b5cbSKonstantin Komarov * 1037be71b5cbSKonstantin Komarov * save uid/gid/mode in xattr 1038be71b5cbSKonstantin Komarov */ 1039be71b5cbSKonstantin Komarov int ntfs_save_wsl_perm(struct inode *inode) 1040be71b5cbSKonstantin Komarov { 1041be71b5cbSKonstantin Komarov int err; 1042be71b5cbSKonstantin Komarov __le32 value; 10433a2154b2SKonstantin Komarov struct ntfs_inode *ni = ntfs_i(inode); 1044be71b5cbSKonstantin Komarov 10453a2154b2SKonstantin Komarov ni_lock(ni); 1046be71b5cbSKonstantin Komarov value = cpu_to_le32(i_uid_read(inode)); 1047be71b5cbSKonstantin Komarov err = ntfs_set_ea(inode, "$LXUID", sizeof("$LXUID") - 1, &value, 10483a2154b2SKonstantin Komarov sizeof(value), 0, true); /* true == already locked. */ 1049be71b5cbSKonstantin Komarov if (err) 1050be71b5cbSKonstantin Komarov goto out; 1051be71b5cbSKonstantin Komarov 1052be71b5cbSKonstantin Komarov value = cpu_to_le32(i_gid_read(inode)); 1053be71b5cbSKonstantin Komarov err = ntfs_set_ea(inode, "$LXGID", sizeof("$LXGID") - 1, &value, 10543a2154b2SKonstantin Komarov sizeof(value), 0, true); 1055be71b5cbSKonstantin Komarov if (err) 1056be71b5cbSKonstantin Komarov goto out; 1057be71b5cbSKonstantin Komarov 1058be71b5cbSKonstantin Komarov value = cpu_to_le32(inode->i_mode); 1059be71b5cbSKonstantin Komarov err = ntfs_set_ea(inode, "$LXMOD", sizeof("$LXMOD") - 1, &value, 10603a2154b2SKonstantin Komarov sizeof(value), 0, true); 1061be71b5cbSKonstantin Komarov if (err) 1062be71b5cbSKonstantin Komarov goto out; 1063be71b5cbSKonstantin Komarov 1064be71b5cbSKonstantin Komarov if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) { 1065be71b5cbSKonstantin Komarov value = cpu_to_le32(inode->i_rdev); 1066be71b5cbSKonstantin Komarov err = ntfs_set_ea(inode, "$LXDEV", sizeof("$LXDEV") - 1, &value, 10673a2154b2SKonstantin Komarov sizeof(value), 0, true); 1068be71b5cbSKonstantin Komarov if (err) 1069be71b5cbSKonstantin Komarov goto out; 1070be71b5cbSKonstantin Komarov } 1071be71b5cbSKonstantin Komarov 1072be71b5cbSKonstantin Komarov out: 10733a2154b2SKonstantin Komarov ni_unlock(ni); 1074be71b5cbSKonstantin Komarov /* In case of error should we delete all WSL xattr? */ 1075be71b5cbSKonstantin Komarov return err; 1076be71b5cbSKonstantin Komarov } 1077be71b5cbSKonstantin Komarov 1078be71b5cbSKonstantin Komarov /* 1079be71b5cbSKonstantin Komarov * ntfs_get_wsl_perm 1080be71b5cbSKonstantin Komarov * 1081be71b5cbSKonstantin Komarov * get uid/gid/mode from xattr 1082be71b5cbSKonstantin Komarov * it is called from ntfs_iget5->ntfs_read_mft 1083be71b5cbSKonstantin Komarov */ 1084be71b5cbSKonstantin Komarov void ntfs_get_wsl_perm(struct inode *inode) 1085be71b5cbSKonstantin Komarov { 1086be71b5cbSKonstantin Komarov size_t sz; 1087be71b5cbSKonstantin Komarov __le32 value[3]; 1088be71b5cbSKonstantin Komarov 1089be71b5cbSKonstantin Komarov if (ntfs_get_ea(inode, "$LXUID", sizeof("$LXUID") - 1, &value[0], 1090be71b5cbSKonstantin Komarov sizeof(value[0]), &sz) == sizeof(value[0]) && 1091be71b5cbSKonstantin Komarov ntfs_get_ea(inode, "$LXGID", sizeof("$LXGID") - 1, &value[1], 1092be71b5cbSKonstantin Komarov sizeof(value[1]), &sz) == sizeof(value[1]) && 1093be71b5cbSKonstantin Komarov ntfs_get_ea(inode, "$LXMOD", sizeof("$LXMOD") - 1, &value[2], 1094be71b5cbSKonstantin Komarov sizeof(value[2]), &sz) == sizeof(value[2])) { 1095be71b5cbSKonstantin Komarov i_uid_write(inode, (uid_t)le32_to_cpu(value[0])); 1096be71b5cbSKonstantin Komarov i_gid_write(inode, (gid_t)le32_to_cpu(value[1])); 1097be71b5cbSKonstantin Komarov inode->i_mode = le32_to_cpu(value[2]); 1098be71b5cbSKonstantin Komarov 1099be71b5cbSKonstantin Komarov if (ntfs_get_ea(inode, "$LXDEV", sizeof("$$LXDEV") - 1, 1100be71b5cbSKonstantin Komarov &value[0], sizeof(value), 1101be71b5cbSKonstantin Komarov &sz) == sizeof(value[0])) { 1102be71b5cbSKonstantin Komarov inode->i_rdev = le32_to_cpu(value[0]); 1103be71b5cbSKonstantin Komarov } 1104be71b5cbSKonstantin Komarov } 1105be71b5cbSKonstantin Komarov } 1106be71b5cbSKonstantin Komarov 1107be71b5cbSKonstantin Komarov static bool ntfs_xattr_user_list(struct dentry *dentry) 1108be71b5cbSKonstantin Komarov { 1109be71b5cbSKonstantin Komarov return true; 1110be71b5cbSKonstantin Komarov } 1111be71b5cbSKonstantin Komarov 1112be71b5cbSKonstantin Komarov // clang-format off 1113be71b5cbSKonstantin Komarov static const struct xattr_handler ntfs_xattr_handler = { 1114be71b5cbSKonstantin Komarov .prefix = "", 1115be71b5cbSKonstantin Komarov .get = ntfs_getxattr, 1116be71b5cbSKonstantin Komarov .set = ntfs_setxattr, 1117be71b5cbSKonstantin Komarov .list = ntfs_xattr_user_list, 1118be71b5cbSKonstantin Komarov }; 1119be71b5cbSKonstantin Komarov 1120be71b5cbSKonstantin Komarov const struct xattr_handler *ntfs_xattr_handlers[] = { 1121be71b5cbSKonstantin Komarov &ntfs_xattr_handler, 1122be71b5cbSKonstantin Komarov NULL, 1123be71b5cbSKonstantin Komarov }; 1124be71b5cbSKonstantin Komarov // clang-format on 1125