xfs_acl.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2008, Christoph Hellwig
  4. * All Rights Reserved.
  5. */
  6. #include "xfs.h"
  7. #include "xfs_format.h"
  8. #include "xfs_log_format.h"
  9. #include "xfs_trans_resv.h"
  10. #include "xfs_mount.h"
  11. #include "xfs_inode.h"
  12. #include "xfs_acl.h"
  13. #include "xfs_attr.h"
  14. #include "xfs_trace.h"
  15. #include <linux/slab.h>
  16. #include <linux/xattr.h>
  17. #include <linux/posix_acl_xattr.h>
  18. /*
  19. * Locking scheme:
  20. * - all ACL updates are protected by inode->i_mutex, which is taken before
  21. * calling into this file.
  22. */
  23. STATIC struct posix_acl *
  24. xfs_acl_from_disk(
  25. const struct xfs_acl *aclp,
  26. int len,
  27. int max_entries)
  28. {
  29. struct posix_acl_entry *acl_e;
  30. struct posix_acl *acl;
  31. const struct xfs_acl_entry *ace;
  32. unsigned int count, i;
  33. if (len < sizeof(*aclp))
  34. return ERR_PTR(-EFSCORRUPTED);
  35. count = be32_to_cpu(aclp->acl_cnt);
  36. if (count > max_entries || XFS_ACL_SIZE(count) != len)
  37. return ERR_PTR(-EFSCORRUPTED);
  38. acl = posix_acl_alloc(count, GFP_KERNEL);
  39. if (!acl)
  40. return ERR_PTR(-ENOMEM);
  41. for (i = 0; i < count; i++) {
  42. acl_e = &acl->a_entries[i];
  43. ace = &aclp->acl_entry[i];
  44. /*
  45. * The tag is 32 bits on disk and 16 bits in core.
  46. *
  47. * Because every access to it goes through the core
  48. * format first this is not a problem.
  49. */
  50. acl_e->e_tag = be32_to_cpu(ace->ae_tag);
  51. acl_e->e_perm = be16_to_cpu(ace->ae_perm);
  52. switch (acl_e->e_tag) {
  53. case ACL_USER:
  54. acl_e->e_uid = xfs_uid_to_kuid(be32_to_cpu(ace->ae_id));
  55. break;
  56. case ACL_GROUP:
  57. acl_e->e_gid = xfs_gid_to_kgid(be32_to_cpu(ace->ae_id));
  58. break;
  59. case ACL_USER_OBJ:
  60. case ACL_GROUP_OBJ:
  61. case ACL_MASK:
  62. case ACL_OTHER:
  63. break;
  64. default:
  65. goto fail;
  66. }
  67. }
  68. return acl;
  69. fail:
  70. posix_acl_release(acl);
  71. return ERR_PTR(-EINVAL);
  72. }
  73. STATIC void
  74. xfs_acl_to_disk(struct xfs_acl *aclp, const struct posix_acl *acl)
  75. {
  76. const struct posix_acl_entry *acl_e;
  77. struct xfs_acl_entry *ace;
  78. int i;
  79. aclp->acl_cnt = cpu_to_be32(acl->a_count);
  80. for (i = 0; i < acl->a_count; i++) {
  81. ace = &aclp->acl_entry[i];
  82. acl_e = &acl->a_entries[i];
  83. ace->ae_tag = cpu_to_be32(acl_e->e_tag);
  84. switch (acl_e->e_tag) {
  85. case ACL_USER:
  86. ace->ae_id = cpu_to_be32(xfs_kuid_to_uid(acl_e->e_uid));
  87. break;
  88. case ACL_GROUP:
  89. ace->ae_id = cpu_to_be32(xfs_kgid_to_gid(acl_e->e_gid));
  90. break;
  91. default:
  92. ace->ae_id = cpu_to_be32(ACL_UNDEFINED_ID);
  93. break;
  94. }
  95. ace->ae_perm = cpu_to_be16(acl_e->e_perm);
  96. }
  97. }
  98. struct posix_acl *
  99. xfs_get_acl(struct inode *inode, int type)
  100. {
  101. struct xfs_inode *ip = XFS_I(inode);
  102. struct posix_acl *acl = NULL;
  103. struct xfs_acl *xfs_acl;
  104. unsigned char *ea_name;
  105. int error;
  106. int len;
  107. trace_xfs_get_acl(ip);
  108. switch (type) {
  109. case ACL_TYPE_ACCESS:
  110. ea_name = SGI_ACL_FILE;
  111. break;
  112. case ACL_TYPE_DEFAULT:
  113. ea_name = SGI_ACL_DEFAULT;
  114. break;
  115. default:
  116. BUG();
  117. }
  118. /*
  119. * If we have a cached ACLs value just return it, not need to
  120. * go out to the disk.
  121. */
  122. len = XFS_ACL_MAX_SIZE(ip->i_mount);
  123. xfs_acl = kmem_zalloc_large(len, KM_SLEEP);
  124. if (!xfs_acl)
  125. return ERR_PTR(-ENOMEM);
  126. error = xfs_attr_get(ip, ea_name, (unsigned char *)xfs_acl,
  127. &len, ATTR_ROOT);
  128. if (error) {
  129. /*
  130. * If the attribute doesn't exist make sure we have a negative
  131. * cache entry, for any other error assume it is transient.
  132. */
  133. if (error != -ENOATTR)
  134. acl = ERR_PTR(error);
  135. } else {
  136. acl = xfs_acl_from_disk(xfs_acl, len,
  137. XFS_ACL_MAX_ENTRIES(ip->i_mount));
  138. }
  139. kmem_free(xfs_acl);
  140. return acl;
  141. }
  142. int
  143. __xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
  144. {
  145. struct xfs_inode *ip = XFS_I(inode);
  146. unsigned char *ea_name;
  147. int error;
  148. switch (type) {
  149. case ACL_TYPE_ACCESS:
  150. ea_name = SGI_ACL_FILE;
  151. break;
  152. case ACL_TYPE_DEFAULT:
  153. if (!S_ISDIR(inode->i_mode))
  154. return acl ? -EACCES : 0;
  155. ea_name = SGI_ACL_DEFAULT;
  156. break;
  157. default:
  158. return -EINVAL;
  159. }
  160. if (acl) {
  161. struct xfs_acl *xfs_acl;
  162. int len = XFS_ACL_MAX_SIZE(ip->i_mount);
  163. xfs_acl = kmem_zalloc_large(len, KM_SLEEP);
  164. if (!xfs_acl)
  165. return -ENOMEM;
  166. xfs_acl_to_disk(xfs_acl, acl);
  167. /* subtract away the unused acl entries */
  168. len -= sizeof(struct xfs_acl_entry) *
  169. (XFS_ACL_MAX_ENTRIES(ip->i_mount) - acl->a_count);
  170. error = xfs_attr_set(ip, ea_name, (unsigned char *)xfs_acl,
  171. len, ATTR_ROOT);
  172. kmem_free(xfs_acl);
  173. } else {
  174. /*
  175. * A NULL ACL argument means we want to remove the ACL.
  176. */
  177. error = xfs_attr_remove(ip, ea_name, ATTR_ROOT);
  178. /*
  179. * If the attribute didn't exist to start with that's fine.
  180. */
  181. if (error == -ENOATTR)
  182. error = 0;
  183. }
  184. if (!error)
  185. set_cached_acl(inode, type, acl);
  186. return error;
  187. }
  188. static int
  189. xfs_set_mode(struct inode *inode, umode_t mode)
  190. {
  191. int error = 0;
  192. if (mode != inode->i_mode) {
  193. struct iattr iattr;
  194. iattr.ia_valid = ATTR_MODE | ATTR_CTIME;
  195. iattr.ia_mode = mode;
  196. iattr.ia_ctime = current_time(inode);
  197. error = xfs_setattr_nonsize(XFS_I(inode), &iattr, XFS_ATTR_NOACL);
  198. }
  199. return error;
  200. }
  201. int
  202. xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type)
  203. {
  204. umode_t mode;
  205. bool set_mode = false;
  206. int error = 0;
  207. if (!acl)
  208. goto set_acl;
  209. error = -E2BIG;
  210. if (acl->a_count > XFS_ACL_MAX_ENTRIES(XFS_M(inode->i_sb)))
  211. return error;
  212. if (type == ACL_TYPE_ACCESS) {
  213. error = posix_acl_update_mode(inode, &mode, &acl);
  214. if (error)
  215. return error;
  216. set_mode = true;
  217. }
  218. set_acl:
  219. error = __xfs_set_acl(inode, acl, type);
  220. if (error)
  221. return error;
  222. /*
  223. * We set the mode after successfully updating the ACL xattr because the
  224. * xattr update can fail at ENOSPC and we don't want to change the mode
  225. * if the ACL update hasn't been applied.
  226. */
  227. if (set_mode)
  228. error = xfs_set_mode(inode, mode);
  229. return error;
  230. }