xfs_attr.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * Copyright (c) 2000, 2002-2003 Silicon Graphics, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of version 2 of the GNU General Public License as
  6. * published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it would be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. *
  12. * Further, this software is distributed without any warranty that it is
  13. * free of the rightful claim of any third person regarding infringement
  14. * or the like. Any license provided herein, whether implied or
  15. * otherwise, applies only to this software file. Patent licenses, if
  16. * any, provided herein do not apply to combinations of this program with
  17. * other software, or any other product whatsoever.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write the Free Software Foundation, Inc., 59
  21. * Temple Place - Suite 330, Boston MA 02111-1307, USA.
  22. *
  23. * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  24. * Mountain View, CA 94043, or:
  25. *
  26. * http://www.sgi.com
  27. *
  28. * For further information regarding this notice, see:
  29. *
  30. * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
  31. */
  32. #ifndef __XFS_ATTR_H__
  33. #define __XFS_ATTR_H__
  34. /*
  35. * xfs_attr.h
  36. *
  37. * Large attribute lists are structured around Btrees where all the data
  38. * elements are in the leaf nodes. Attribute names are hashed into an int,
  39. * then that int is used as the index into the Btree. Since the hashval
  40. * of an attribute name may not be unique, we may have duplicate keys.
  41. * The internal links in the Btree are logical block offsets into the file.
  42. *
  43. * Small attribute lists use a different format and are packed as tightly
  44. * as possible so as to fit into the literal area of the inode.
  45. */
  46. /*========================================================================
  47. * External interfaces
  48. *========================================================================*/
  49. struct cred;
  50. struct vnode;
  51. typedef int (*attrset_t)(struct vnode *, char *, void *, size_t, int);
  52. typedef int (*attrget_t)(struct vnode *, char *, void *, size_t, int);
  53. typedef int (*attrremove_t)(struct vnode *, char *, int);
  54. typedef int (*attrexists_t)(struct vnode *);
  55. typedef int (*attrcapable_t)(struct vnode *, struct cred *);
  56. typedef struct attrnames {
  57. char * attr_name;
  58. unsigned int attr_namelen;
  59. unsigned int attr_flag;
  60. attrget_t attr_get;
  61. attrset_t attr_set;
  62. attrremove_t attr_remove;
  63. attrexists_t attr_exists;
  64. attrcapable_t attr_capable;
  65. } attrnames_t;
  66. #define ATTR_NAMECOUNT 4
  67. extern struct attrnames attr_user;
  68. extern struct attrnames attr_secure;
  69. extern struct attrnames attr_system;
  70. extern struct attrnames attr_trusted;
  71. extern struct attrnames *attr_namespaces[ATTR_NAMECOUNT];
  72. extern attrnames_t *attr_lookup_namespace(char *, attrnames_t **, int);
  73. extern int attr_generic_list(struct vnode *, void *, size_t, int, ssize_t *);
  74. #define ATTR_DONTFOLLOW 0x0001 /* -- unused, from IRIX -- */
  75. #define ATTR_ROOT 0x0002 /* use attrs in root (trusted) namespace */
  76. #define ATTR_TRUST 0x0004 /* -- unused, from IRIX -- */
  77. #define ATTR_SECURE 0x0008 /* use attrs in security namespace */
  78. #define ATTR_CREATE 0x0010 /* pure create: fail if attr already exists */
  79. #define ATTR_REPLACE 0x0020 /* pure set: fail if attr does not exist */
  80. #define ATTR_SYSTEM 0x0100 /* use attrs in system (pseudo) namespace */
  81. #define ATTR_KERNACCESS 0x0400 /* [kernel] iaccess, inode held io-locked */
  82. #define ATTR_KERNOTIME 0x1000 /* [kernel] don't update inode timestamps */
  83. #define ATTR_KERNOVAL 0x2000 /* [kernel] get attr size only, not value */
  84. #define ATTR_KERNAMELS 0x4000 /* [kernel] list attr names (simple list) */
  85. #define ATTR_KERNORMALS 0x0800 /* [kernel] normal attr list: user+secure */
  86. #define ATTR_KERNROOTLS 0x8000 /* [kernel] include root in the attr list */
  87. #define ATTR_KERNFULLS (ATTR_KERNORMALS|ATTR_KERNROOTLS)
  88. /*
  89. * The maximum size (into the kernel or returned from the kernel) of an
  90. * attribute value or the buffer used for an attr_list() call. Larger
  91. * sizes will result in an ERANGE return code.
  92. */
  93. #define ATTR_MAX_VALUELEN (64*1024) /* max length of a value */
  94. /*
  95. * Define how lists of attribute names are returned to the user from
  96. * the attr_list() call. A large, 32bit aligned, buffer is passed in
  97. * along with its size. We put an array of offsets at the top that each
  98. * reference an attrlist_ent_t and pack the attrlist_ent_t's at the bottom.
  99. */
  100. typedef struct attrlist {
  101. __s32 al_count; /* number of entries in attrlist */
  102. __s32 al_more; /* T/F: more attrs (do call again) */
  103. __s32 al_offset[1]; /* byte offsets of attrs [var-sized] */
  104. } attrlist_t;
  105. /*
  106. * Show the interesting info about one attribute. This is what the
  107. * al_offset[i] entry points to.
  108. */
  109. typedef struct attrlist_ent { /* data from attr_list() */
  110. __u32 a_valuelen; /* number bytes in value of attr */
  111. char a_name[1]; /* attr name (NULL terminated) */
  112. } attrlist_ent_t;
  113. /*
  114. * Given a pointer to the (char*) buffer containing the attr_list() result,
  115. * and an index, return a pointer to the indicated attribute in the buffer.
  116. */
  117. #define ATTR_ENTRY(buffer, index) \
  118. ((attrlist_ent_t *) \
  119. &((char *)buffer)[ ((attrlist_t *)(buffer))->al_offset[index] ])
  120. /*
  121. * Multi-attribute operation vector.
  122. */
  123. typedef struct attr_multiop {
  124. int am_opcode; /* operation to perform (ATTR_OP_GET, etc.) */
  125. int am_error; /* [out arg] result of this sub-op (an errno) */
  126. char *am_attrname; /* attribute name to work with */
  127. char *am_attrvalue; /* [in/out arg] attribute value (raw bytes) */
  128. int am_length; /* [in/out arg] length of value */
  129. int am_flags; /* bitwise OR of attr API flags defined above */
  130. } attr_multiop_t;
  131. #define ATTR_OP_GET 1 /* return the indicated attr's value */
  132. #define ATTR_OP_SET 2 /* set/create the indicated attr/value pair */
  133. #define ATTR_OP_REMOVE 3 /* remove the indicated attr */
  134. /*
  135. * Kernel-internal version of the attrlist cursor.
  136. */
  137. typedef struct attrlist_cursor_kern {
  138. __u32 hashval; /* hash value of next entry to add */
  139. __u32 blkno; /* block containing entry (suggestion) */
  140. __u32 offset; /* offset in list of equal-hashvals */
  141. __u16 pad1; /* padding to match user-level */
  142. __u8 pad2; /* padding to match user-level */
  143. __u8 initted; /* T/F: cursor has been initialized */
  144. } attrlist_cursor_kern_t;
  145. /*========================================================================
  146. * Function prototypes for the kernel.
  147. *========================================================================*/
  148. struct xfs_inode;
  149. struct attrlist_cursor_kern;
  150. struct xfs_da_args;
  151. /*
  152. * Overall external interface routines.
  153. */
  154. int xfs_attr_get(bhv_desc_t *, char *, char *, int *, int, struct cred *);
  155. int xfs_attr_set(bhv_desc_t *, char *, char *, int, int, struct cred *);
  156. int xfs_attr_remove(bhv_desc_t *, char *, int, struct cred *);
  157. int xfs_attr_list(bhv_desc_t *, char *, int, int,
  158. struct attrlist_cursor_kern *, struct cred *);
  159. int xfs_attr_inactive(struct xfs_inode *dp);
  160. int xfs_attr_shortform_getvalue(struct xfs_da_args *);
  161. int xfs_attr_fetch(struct xfs_inode *, char *, int,
  162. char *, int *, int, struct cred *);
  163. #endif /* __XFS_ATTR_H__ */