attributes.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. * Copyright (c) 2001-2002,2004 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software: you can redistribute it and/or modify it
  6. * under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation, either version 2.1 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef __ATTRIBUTES_H__
  19. #define __ATTRIBUTES_H__
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /*
  24. * An almost-IRIX-compatible extended attributes API
  25. * (the IRIX attribute "list" operation is missing, added ATTR_SECURE).
  26. */
  27. /*
  28. * The maximum size (into the kernel or returned from the kernel) of an
  29. * attribute value or the buffer used for an attr_list() call. Larger
  30. * sizes will result in an E2BIG return code.
  31. */
  32. #define ATTR_MAX_VALUELEN (64*1024) /* max length of a value */
  33. /*
  34. * Flags that can be used with any of the simple attribute calls.
  35. * All desired flags should be bit-wise OR'ed together.
  36. */
  37. #define ATTR_DONTFOLLOW 0x0001 /* do not follow symlinks for a pathname */
  38. #define ATTR_ROOT 0x0002 /* use root namespace attributes in op */
  39. #define ATTR_TRUST 0x0004 /* tell server we can be trusted to properly
  40. handle extended attributes */
  41. #define ATTR_SECURE 0x0008 /* use security namespace attributes in op */
  42. /*
  43. * Additional flags that can be used with the set() attribute call.
  44. * All desired flags (from both lists) should be bit-wise OR'ed together.
  45. */
  46. #define ATTR_CREATE 0x0010 /* pure create: fail if attr already exists */
  47. #define ATTR_REPLACE 0x0020 /* pure set: fail if attr does not exist */
  48. /*
  49. * Define how lists of attribute names are returned to the user from
  50. * the attr_list() call. A large, 32bit aligned, buffer is passed in
  51. * along with its size. We put an array of offsets at the top that each
  52. * reference an attrlist_ent_t and pack the attrlist_ent_t's at the bottom.
  53. */
  54. typedef struct attrlist {
  55. int32_t al_count; /* number of entries in attrlist */
  56. int32_t al_more; /* T/F: more attrs (do call again) */
  57. int32_t al_offset[1]; /* byte offsets of attrs [var-sized] */
  58. } attrlist_t;
  59. /*
  60. * Show the interesting info about one attribute. This is what the
  61. * al_offset[i] entry points to.
  62. */
  63. typedef struct attrlist_ent { /* data from attr_list() */
  64. u_int32_t a_valuelen; /* number bytes in value of attr */
  65. char a_name[1]; /* attr name (NULL terminated) */
  66. } attrlist_ent_t;
  67. /*
  68. * Given a pointer to the (char*) buffer containing the attr_list() result,
  69. * and an index, return a pointer to the indicated attribute in the buffer.
  70. */
  71. #define ATTR_ENTRY(buffer, index) \
  72. ((attrlist_ent_t *) \
  73. &((char *)buffer)[ ((attrlist_t *)(buffer))->al_offset[index] ])
  74. /*
  75. * Implement a "cursor" for use in successive attr_list() calls.
  76. * It provides a way to find the last attribute that was returned in the
  77. * last attr_list() call so that we can get the next one without missing
  78. * any. This should be bzero()ed before use and whenever it is desired to
  79. * start over from the beginning of the attribute list. The only valid
  80. * operation on a cursor is to bzero() it.
  81. */
  82. typedef struct attrlist_cursor {
  83. u_int32_t opaque[4]; /* an opaque cookie */
  84. } attrlist_cursor_t;
  85. /*
  86. * Multi-attribute operation vector.
  87. */
  88. typedef struct attr_multiop {
  89. int32_t am_opcode; /* operation to perform (ATTR_OP_GET, etc.) */
  90. int32_t am_error; /* [out arg] result of this sub-op (an errno) */
  91. char *am_attrname; /* attribute name to work with */
  92. char *am_attrvalue; /* [in/out arg] attribute value (raw bytes) */
  93. int32_t am_length; /* [in/out arg] length of value */
  94. int32_t am_flags; /* flags (bit-wise OR of #defines above) */
  95. } attr_multiop_t;
  96. #define ATTR_MAX_MULTIOPS 128 /* max number ops in an oplist array */
  97. /*
  98. * Valid values of am_opcode.
  99. */
  100. #define ATTR_OP_GET 1 /* return the indicated attr's value */
  101. #define ATTR_OP_SET 2 /* set/create the indicated attr/value pair */
  102. #define ATTR_OP_REMOVE 3 /* remove the indicated attr */
  103. /*
  104. * Get the value of an attribute.
  105. * Valuelength must be set to the maximum size of the value buffer, it will
  106. * be set to the actual number of bytes used in the value buffer upon return.
  107. * The return value is -1 on error (w/errno set appropriately), 0 on success.
  108. */
  109. extern int attr_get (const char *__path, const char *__attrname,
  110. char *__attrvalue, int *__valuelength, int __flags);
  111. extern int attr_getf (int __fd, const char *__attrname, char *__attrvalue,
  112. int *__valuelength, int __flags);
  113. /*
  114. * Set the value of an attribute, creating the attribute if necessary.
  115. * The return value is -1 on error (w/errno set appropriately), 0 on success.
  116. */
  117. extern int attr_set (const char *__path, const char *__attrname,
  118. const char *__attrvalue, const int __valuelength,
  119. int __flags);
  120. extern int attr_setf (int __fd, const char *__attrname,
  121. const char *__attrvalue, const int __valuelength,
  122. int __flags);
  123. /*
  124. * Remove an attribute.
  125. * The return value is -1 on error (w/errno set appropriately), 0 on success.
  126. */
  127. extern int attr_remove (const char *__path, const char *__attrname,
  128. int __flags);
  129. extern int attr_removef (int __fd, const char *__attrname, int __flags);
  130. /*
  131. * List the names and sizes of the values of all the attributes of an object.
  132. * "Cursor" must be allocated and zeroed before the first call, it is used
  133. * to maintain context between system calls if all the attribute names won't
  134. * fit into the buffer on the first system call.
  135. * The return value is -1 on error (w/errno set appropriately), 0 on success.
  136. */
  137. int attr_list(const char *__path, char *__buffer, const int __buffersize,
  138. int __flags, attrlist_cursor_t *__cursor);
  139. int attr_listf(int __fd, char *__buffer, const int __buffersize,
  140. int __flags, attrlist_cursor_t *__cursor);
  141. /*
  142. * Operate on multiple attributes of the same object simultaneously.
  143. *
  144. * This call will save on system call overhead when many attributes are
  145. * going to be operated on.
  146. *
  147. * The return value is -1 on error (w/errno set appropriately), 0 on success.
  148. * Note that this call will not return -1 as a result of failure of any
  149. * of the sub-operations, their return value is stored in each element
  150. * of the operation array. This call will return -1 for a failure of the
  151. * call as a whole, eg: if the pathname doesn't exist, or the fd is bad.
  152. *
  153. * The semantics and allowable values for the fields in a attr_multiop_t
  154. * are the same as the semantics and allowable values for the arguments to
  155. * the corresponding "simple" attribute interface. For example: the args
  156. * to a ATTR_OP_GET are the same as the args to an attr_get() call.
  157. */
  158. extern int attr_multi (const char *__path, attr_multiop_t *__oplist,
  159. int __count, int __flags);
  160. extern int attr_multif (int __fd, attr_multiop_t *__oplist,
  161. int __count, int __flags);
  162. #ifdef __cplusplus
  163. }
  164. #endif
  165. #endif /* __ATTRIBUTES_H__ */