acl.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. /*
  2. * linux/fs/ext4/acl.c
  3. *
  4. * Copyright (C) 2001-2003 Andreas Gruenbacher, <agruen@suse.de>
  5. */
  6. #include <linux/init.h>
  7. #include <linux/sched.h>
  8. #include <linux/slab.h>
  9. #include <linux/capability.h>
  10. #include <linux/fs.h>
  11. #include "ext4_jbd2.h"
  12. #include "ext4.h"
  13. #include "xattr.h"
  14. #include "acl.h"
  15. /*
  16. * Convert from filesystem to in-memory representation.
  17. */
  18. static struct posix_acl *
  19. ext4_acl_from_disk(const void *value, size_t size)
  20. {
  21. const char *end = (char *)value + size;
  22. int n, count;
  23. struct posix_acl *acl;
  24. if (!value)
  25. return NULL;
  26. if (size < sizeof(ext4_acl_header))
  27. return ERR_PTR(-EINVAL);
  28. if (((ext4_acl_header *)value)->a_version !=
  29. cpu_to_le32(EXT4_ACL_VERSION))
  30. return ERR_PTR(-EINVAL);
  31. value = (char *)value + sizeof(ext4_acl_header);
  32. count = ext4_acl_count(size);
  33. if (count < 0)
  34. return ERR_PTR(-EINVAL);
  35. if (count == 0)
  36. return NULL;
  37. acl = posix_acl_alloc(count, GFP_NOFS);
  38. if (!acl)
  39. return ERR_PTR(-ENOMEM);
  40. for (n = 0; n < count; n++) {
  41. ext4_acl_entry *entry =
  42. (ext4_acl_entry *)value;
  43. if ((char *)value + sizeof(ext4_acl_entry_short) > end)
  44. goto fail;
  45. acl->a_entries[n].e_tag = le16_to_cpu(entry->e_tag);
  46. acl->a_entries[n].e_perm = le16_to_cpu(entry->e_perm);
  47. switch (acl->a_entries[n].e_tag) {
  48. case ACL_USER_OBJ:
  49. case ACL_GROUP_OBJ:
  50. case ACL_MASK:
  51. case ACL_OTHER:
  52. value = (char *)value +
  53. sizeof(ext4_acl_entry_short);
  54. acl->a_entries[n].e_id = ACL_UNDEFINED_ID;
  55. break;
  56. case ACL_USER:
  57. case ACL_GROUP:
  58. value = (char *)value + sizeof(ext4_acl_entry);
  59. if ((char *)value > end)
  60. goto fail;
  61. acl->a_entries[n].e_id =
  62. le32_to_cpu(entry->e_id);
  63. break;
  64. default:
  65. goto fail;
  66. }
  67. }
  68. if (value != end)
  69. goto fail;
  70. return acl;
  71. fail:
  72. posix_acl_release(acl);
  73. return ERR_PTR(-EINVAL);
  74. }
  75. /*
  76. * Convert from in-memory to filesystem representation.
  77. */
  78. static void *
  79. ext4_acl_to_disk(const struct posix_acl *acl, size_t *size)
  80. {
  81. ext4_acl_header *ext_acl;
  82. char *e;
  83. size_t n;
  84. *size = ext4_acl_size(acl->a_count);
  85. ext_acl = kmalloc(sizeof(ext4_acl_header) + acl->a_count *
  86. sizeof(ext4_acl_entry), GFP_NOFS);
  87. if (!ext_acl)
  88. return ERR_PTR(-ENOMEM);
  89. ext_acl->a_version = cpu_to_le32(EXT4_ACL_VERSION);
  90. e = (char *)ext_acl + sizeof(ext4_acl_header);
  91. for (n = 0; n < acl->a_count; n++) {
  92. ext4_acl_entry *entry = (ext4_acl_entry *)e;
  93. entry->e_tag = cpu_to_le16(acl->a_entries[n].e_tag);
  94. entry->e_perm = cpu_to_le16(acl->a_entries[n].e_perm);
  95. switch (acl->a_entries[n].e_tag) {
  96. case ACL_USER:
  97. case ACL_GROUP:
  98. entry->e_id = cpu_to_le32(acl->a_entries[n].e_id);
  99. e += sizeof(ext4_acl_entry);
  100. break;
  101. case ACL_USER_OBJ:
  102. case ACL_GROUP_OBJ:
  103. case ACL_MASK:
  104. case ACL_OTHER:
  105. e += sizeof(ext4_acl_entry_short);
  106. break;
  107. default:
  108. goto fail;
  109. }
  110. }
  111. return (char *)ext_acl;
  112. fail:
  113. kfree(ext_acl);
  114. return ERR_PTR(-EINVAL);
  115. }
  116. /*
  117. * Inode operation get_posix_acl().
  118. *
  119. * inode->i_mutex: don't care
  120. */
  121. static struct posix_acl *
  122. ext4_get_acl(struct inode *inode, int type)
  123. {
  124. int name_index;
  125. char *value = NULL;
  126. struct posix_acl *acl;
  127. int retval;
  128. if (!test_opt(inode->i_sb, POSIX_ACL))
  129. return NULL;
  130. acl = get_cached_acl(inode, type);
  131. if (acl != ACL_NOT_CACHED)
  132. return acl;
  133. switch (type) {
  134. case ACL_TYPE_ACCESS:
  135. name_index = EXT4_XATTR_INDEX_POSIX_ACL_ACCESS;
  136. break;
  137. case ACL_TYPE_DEFAULT:
  138. name_index = EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT;
  139. break;
  140. default:
  141. BUG();
  142. }
  143. retval = ext4_xattr_get(inode, name_index, "", NULL, 0);
  144. if (retval > 0) {
  145. value = kmalloc(retval, GFP_NOFS);
  146. if (!value)
  147. return ERR_PTR(-ENOMEM);
  148. retval = ext4_xattr_get(inode, name_index, "", value, retval);
  149. }
  150. if (retval > 0)
  151. acl = ext4_acl_from_disk(value, retval);
  152. else if (retval == -ENODATA || retval == -ENOSYS)
  153. acl = NULL;
  154. else
  155. acl = ERR_PTR(retval);
  156. kfree(value);
  157. if (!IS_ERR(acl))
  158. set_cached_acl(inode, type, acl);
  159. return acl;
  160. }
  161. /*
  162. * Set the access or default ACL of an inode.
  163. *
  164. * inode->i_mutex: down unless called from ext4_new_inode
  165. */
  166. static int
  167. ext4_set_acl(handle_t *handle, struct inode *inode, int type,
  168. struct posix_acl *acl)
  169. {
  170. int name_index;
  171. void *value = NULL;
  172. size_t size = 0;
  173. int error;
  174. if (S_ISLNK(inode->i_mode))
  175. return -EOPNOTSUPP;
  176. switch (type) {
  177. case ACL_TYPE_ACCESS:
  178. name_index = EXT4_XATTR_INDEX_POSIX_ACL_ACCESS;
  179. if (acl) {
  180. mode_t mode = inode->i_mode;
  181. error = posix_acl_equiv_mode(acl, &mode);
  182. if (error < 0)
  183. return error;
  184. else {
  185. inode->i_mode = mode;
  186. inode->i_ctime = ext4_current_time(inode);
  187. ext4_mark_inode_dirty(handle, inode);
  188. if (error == 0)
  189. acl = NULL;
  190. }
  191. }
  192. break;
  193. case ACL_TYPE_DEFAULT:
  194. name_index = EXT4_XATTR_INDEX_POSIX_ACL_DEFAULT;
  195. if (!S_ISDIR(inode->i_mode))
  196. return acl ? -EACCES : 0;
  197. break;
  198. default:
  199. return -EINVAL;
  200. }
  201. if (acl) {
  202. value = ext4_acl_to_disk(acl, &size);
  203. if (IS_ERR(value))
  204. return (int)PTR_ERR(value);
  205. }
  206. error = ext4_xattr_set_handle(handle, inode, name_index, "",
  207. value, size, 0);
  208. kfree(value);
  209. if (!error)
  210. set_cached_acl(inode, type, acl);
  211. return error;
  212. }
  213. int
  214. ext4_check_acl(struct inode *inode, int mask, unsigned int flags)
  215. {
  216. struct posix_acl *acl;
  217. if (flags & IPERM_FLAG_RCU) {
  218. if (!negative_cached_acl(inode, ACL_TYPE_ACCESS))
  219. return -ECHILD;
  220. return -EAGAIN;
  221. }
  222. acl = ext4_get_acl(inode, ACL_TYPE_ACCESS);
  223. if (IS_ERR(acl))
  224. return PTR_ERR(acl);
  225. if (acl) {
  226. int error = posix_acl_permission(inode, acl, mask);
  227. posix_acl_release(acl);
  228. return error;
  229. }
  230. return -EAGAIN;
  231. }
  232. /*
  233. * Initialize the ACLs of a new inode. Called from ext4_new_inode.
  234. *
  235. * dir->i_mutex: down
  236. * inode->i_mutex: up (access to inode is still exclusive)
  237. */
  238. int
  239. ext4_init_acl(handle_t *handle, struct inode *inode, struct inode *dir)
  240. {
  241. struct posix_acl *acl = NULL;
  242. int error = 0;
  243. if (!S_ISLNK(inode->i_mode)) {
  244. if (test_opt(dir->i_sb, POSIX_ACL)) {
  245. acl = ext4_get_acl(dir, ACL_TYPE_DEFAULT);
  246. if (IS_ERR(acl))
  247. return PTR_ERR(acl);
  248. }
  249. if (!acl)
  250. inode->i_mode &= ~current_umask();
  251. }
  252. if (test_opt(inode->i_sb, POSIX_ACL) && acl) {
  253. struct posix_acl *clone;
  254. mode_t mode;
  255. if (S_ISDIR(inode->i_mode)) {
  256. error = ext4_set_acl(handle, inode,
  257. ACL_TYPE_DEFAULT, acl);
  258. if (error)
  259. goto cleanup;
  260. }
  261. clone = posix_acl_clone(acl, GFP_NOFS);
  262. error = -ENOMEM;
  263. if (!clone)
  264. goto cleanup;
  265. mode = inode->i_mode;
  266. error = posix_acl_create_masq(clone, &mode);
  267. if (error >= 0) {
  268. inode->i_mode = mode;
  269. if (error > 0) {
  270. /* This is an extended ACL */
  271. error = ext4_set_acl(handle, inode,
  272. ACL_TYPE_ACCESS, clone);
  273. }
  274. }
  275. posix_acl_release(clone);
  276. }
  277. cleanup:
  278. posix_acl_release(acl);
  279. return error;
  280. }
  281. /*
  282. * Does chmod for an inode that may have an Access Control List. The
  283. * inode->i_mode field must be updated to the desired value by the caller
  284. * before calling this function.
  285. * Returns 0 on success, or a negative error number.
  286. *
  287. * We change the ACL rather than storing some ACL entries in the file
  288. * mode permission bits (which would be more efficient), because that
  289. * would break once additional permissions (like ACL_APPEND, ACL_DELETE
  290. * for directories) are added. There are no more bits available in the
  291. * file mode.
  292. *
  293. * inode->i_mutex: down
  294. */
  295. int
  296. ext4_acl_chmod(struct inode *inode)
  297. {
  298. struct posix_acl *acl, *clone;
  299. int error;
  300. if (S_ISLNK(inode->i_mode))
  301. return -EOPNOTSUPP;
  302. if (!test_opt(inode->i_sb, POSIX_ACL))
  303. return 0;
  304. acl = ext4_get_acl(inode, ACL_TYPE_ACCESS);
  305. if (IS_ERR(acl) || !acl)
  306. return PTR_ERR(acl);
  307. clone = posix_acl_clone(acl, GFP_KERNEL);
  308. posix_acl_release(acl);
  309. if (!clone)
  310. return -ENOMEM;
  311. error = posix_acl_chmod_masq(clone, inode->i_mode);
  312. if (!error) {
  313. handle_t *handle;
  314. int retries = 0;
  315. retry:
  316. handle = ext4_journal_start(inode,
  317. EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
  318. if (IS_ERR(handle)) {
  319. error = PTR_ERR(handle);
  320. ext4_std_error(inode->i_sb, error);
  321. goto out;
  322. }
  323. error = ext4_set_acl(handle, inode, ACL_TYPE_ACCESS, clone);
  324. ext4_journal_stop(handle);
  325. if (error == -ENOSPC &&
  326. ext4_should_retry_alloc(inode->i_sb, &retries))
  327. goto retry;
  328. }
  329. out:
  330. posix_acl_release(clone);
  331. return error;
  332. }
  333. /*
  334. * Extended attribute handlers
  335. */
  336. static size_t
  337. ext4_xattr_list_acl_access(struct dentry *dentry, char *list, size_t list_len,
  338. const char *name, size_t name_len, int type)
  339. {
  340. const size_t size = sizeof(POSIX_ACL_XATTR_ACCESS);
  341. if (!test_opt(dentry->d_sb, POSIX_ACL))
  342. return 0;
  343. if (list && size <= list_len)
  344. memcpy(list, POSIX_ACL_XATTR_ACCESS, size);
  345. return size;
  346. }
  347. static size_t
  348. ext4_xattr_list_acl_default(struct dentry *dentry, char *list, size_t list_len,
  349. const char *name, size_t name_len, int type)
  350. {
  351. const size_t size = sizeof(POSIX_ACL_XATTR_DEFAULT);
  352. if (!test_opt(dentry->d_sb, POSIX_ACL))
  353. return 0;
  354. if (list && size <= list_len)
  355. memcpy(list, POSIX_ACL_XATTR_DEFAULT, size);
  356. return size;
  357. }
  358. static int
  359. ext4_xattr_get_acl(struct dentry *dentry, const char *name, void *buffer,
  360. size_t size, int type)
  361. {
  362. struct posix_acl *acl;
  363. int error;
  364. if (strcmp(name, "") != 0)
  365. return -EINVAL;
  366. if (!test_opt(dentry->d_sb, POSIX_ACL))
  367. return -EOPNOTSUPP;
  368. acl = ext4_get_acl(dentry->d_inode, type);
  369. if (IS_ERR(acl))
  370. return PTR_ERR(acl);
  371. if (acl == NULL)
  372. return -ENODATA;
  373. error = posix_acl_to_xattr(acl, buffer, size);
  374. posix_acl_release(acl);
  375. return error;
  376. }
  377. static int
  378. ext4_xattr_set_acl(struct dentry *dentry, const char *name, const void *value,
  379. size_t size, int flags, int type)
  380. {
  381. struct inode *inode = dentry->d_inode;
  382. handle_t *handle;
  383. struct posix_acl *acl;
  384. int error, retries = 0;
  385. if (strcmp(name, "") != 0)
  386. return -EINVAL;
  387. if (!test_opt(inode->i_sb, POSIX_ACL))
  388. return -EOPNOTSUPP;
  389. if (!inode_owner_or_capable(inode))
  390. return -EPERM;
  391. if (value) {
  392. acl = posix_acl_from_xattr(value, size);
  393. if (IS_ERR(acl))
  394. return PTR_ERR(acl);
  395. else if (acl) {
  396. error = posix_acl_valid(acl);
  397. if (error)
  398. goto release_and_out;
  399. }
  400. } else
  401. acl = NULL;
  402. retry:
  403. handle = ext4_journal_start(inode, EXT4_DATA_TRANS_BLOCKS(inode->i_sb));
  404. if (IS_ERR(handle))
  405. return PTR_ERR(handle);
  406. error = ext4_set_acl(handle, inode, type, acl);
  407. ext4_journal_stop(handle);
  408. if (error == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
  409. goto retry;
  410. release_and_out:
  411. posix_acl_release(acl);
  412. return error;
  413. }
  414. const struct xattr_handler ext4_xattr_acl_access_handler = {
  415. .prefix = POSIX_ACL_XATTR_ACCESS,
  416. .flags = ACL_TYPE_ACCESS,
  417. .list = ext4_xattr_list_acl_access,
  418. .get = ext4_xattr_get_acl,
  419. .set = ext4_xattr_set_acl,
  420. };
  421. const struct xattr_handler ext4_xattr_acl_default_handler = {
  422. .prefix = POSIX_ACL_XATTR_DEFAULT,
  423. .flags = ACL_TYPE_DEFAULT,
  424. .list = ext4_xattr_list_acl_default,
  425. .get = ext4_xattr_get_acl,
  426. .set = ext4_xattr_set_acl,
  427. };