archive_acl_private.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*-
  2. * Copyright (c) 2003-2010 Tim Kientzle
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
  15. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  16. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  17. * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
  18. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  20. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  21. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. *
  25. * $FreeBSD$
  26. */
  27. #ifndef __LIBARCHIVE_BUILD
  28. #error This header is only to be used internally to libarchive.
  29. #endif
  30. #ifndef ARCHIVE_ACL_PRIVATE_H_INCLUDED
  31. #define ARCHIVE_ACL_PRIVATE_H_INCLUDED
  32. #include "archive_string.h"
  33. struct archive_acl_entry {
  34. struct archive_acl_entry *next;
  35. int type; /* E.g., access or default */
  36. int tag; /* E.g., user/group/other/mask */
  37. int permset; /* r/w/x bits */
  38. int id; /* uid/gid for user/group */
  39. struct archive_mstring name; /* uname/gname */
  40. };
  41. struct archive_acl {
  42. mode_t mode;
  43. struct archive_acl_entry *acl_head;
  44. struct archive_acl_entry *acl_p;
  45. int acl_state; /* See acl_next for details. */
  46. wchar_t *acl_text_w;
  47. char *acl_text;
  48. int acl_types;
  49. };
  50. void archive_acl_clear(struct archive_acl *);
  51. void archive_acl_copy(struct archive_acl *, struct archive_acl *);
  52. int archive_acl_count(struct archive_acl *, int);
  53. int archive_acl_reset(struct archive_acl *, int);
  54. int archive_acl_next(struct archive *, struct archive_acl *, int,
  55. int *, int *, int *, int *, const char **);
  56. int archive_acl_add_entry(struct archive_acl *, int, int, int, int, const char *);
  57. int archive_acl_add_entry_w_len(struct archive_acl *,
  58. int, int, int, int, const wchar_t *, size_t);
  59. int archive_acl_add_entry_len(struct archive_acl *,
  60. int, int, int, int, const char *, size_t);
  61. const wchar_t *archive_acl_text_w(struct archive *, struct archive_acl *, int);
  62. int archive_acl_text_l(struct archive_acl *, int, const char **, size_t *,
  63. struct archive_string_conv *);
  64. /*
  65. * Private ACL parser. This is private because it handles some
  66. * very weird formats that clients should not be messing with.
  67. * Clients should only deal with their platform-native formats.
  68. * Because of the need to support many formats cleanly, new arguments
  69. * are likely to get added on a regular basis. Clients who try to use
  70. * this interface are likely to be surprised when it changes.
  71. */
  72. int archive_acl_parse_w(struct archive_acl *,
  73. const wchar_t *, int /* type */);
  74. int archive_acl_parse_l(struct archive_acl *,
  75. const char *, int /* type */,
  76. struct archive_string_conv *);
  77. #endif /* ARCHIVE_ENTRY_PRIVATE_H_INCLUDED */