xattr_trusted.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*-------------------------------------------------------------------------*
  2. * File: fs/jffs2/xattr_trusted.c
  3. * XATTR support on JFFS2 FileSystem
  4. *
  5. * Implemented by KaiGai Kohei <kaigai@ak.jp.nec.com>
  6. * Copyright (C) 2006 NEC Corporation
  7. *
  8. * For licensing information, see the file 'LICENCE' in the jffs2 directory.
  9. *-------------------------------------------------------------------------*/
  10. #include <linux/kernel.h>
  11. #include <linux/fs.h>
  12. #include <linux/jffs2.h>
  13. #include <linux/xattr.h>
  14. #include <linux/mtd/mtd.h>
  15. #include "nodelist.h"
  16. static int jffs2_trusted_getxattr(struct inode *inode, const char *name,
  17. void *buffer, size_t size)
  18. {
  19. if (!strcmp(name, ""))
  20. return -EINVAL;
  21. return do_jffs2_getxattr(inode, JFFS2_XPREFIX_TRUSTED, name, buffer, size);
  22. }
  23. static int jffs2_trusted_setxattr(struct inode *inode, const char *name, const void *buffer,
  24. size_t size, int flags)
  25. {
  26. if (!strcmp(name, ""))
  27. return -EINVAL;
  28. return do_jffs2_setxattr(inode, JFFS2_XPREFIX_TRUSTED, name, buffer, size, flags);
  29. }
  30. static size_t jffs2_trusted_listxattr(struct inode *inode, char *list, size_t list_size,
  31. const char *name, size_t name_len)
  32. {
  33. size_t retlen = XATTR_TRUSTED_PREFIX_LEN + name_len + 1;
  34. if (list && retlen<=list_size) {
  35. strcpy(list, XATTR_TRUSTED_PREFIX);
  36. strcpy(list + XATTR_TRUSTED_PREFIX_LEN, name);
  37. }
  38. return retlen;
  39. }
  40. struct xattr_handler jffs2_trusted_xattr_handler = {
  41. .prefix = XATTR_TRUSTED_PREFIX,
  42. .list = jffs2_trusted_listxattr,
  43. .set = jffs2_trusted_setxattr,
  44. .get = jffs2_trusted_getxattr
  45. };