xfs_mac.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Copyright (c) 2001-2002,2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef __XFS_MAC_H__
  19. #define __XFS_MAC_H__
  20. /*
  21. * Mandatory Access Control
  22. *
  23. * Layout of a composite MAC label:
  24. * ml_list contains the list of categories (MSEN) followed by the list of
  25. * divisions (MINT). This is actually a header for the data structure which
  26. * will have an ml_list with more than one element.
  27. *
  28. * -------------------------------
  29. * | ml_msen_type | ml_mint_type |
  30. * -------------------------------
  31. * | ml_level | ml_grade |
  32. * -------------------------------
  33. * | ml_catcount |
  34. * -------------------------------
  35. * | ml_divcount |
  36. * -------------------------------
  37. * | category 1 |
  38. * | . . . |
  39. * | category N | (where N = ml_catcount)
  40. * -------------------------------
  41. * | division 1 |
  42. * | . . . |
  43. * | division M | (where M = ml_divcount)
  44. * -------------------------------
  45. */
  46. #define XFS_MAC_MAX_SETS 250
  47. typedef struct xfs_mac_label {
  48. __uint8_t ml_msen_type; /* MSEN label type */
  49. __uint8_t ml_mint_type; /* MINT label type */
  50. __uint8_t ml_level; /* Hierarchical level */
  51. __uint8_t ml_grade; /* Hierarchical grade */
  52. __uint16_t ml_catcount; /* Category count */
  53. __uint16_t ml_divcount; /* Division count */
  54. /* Category set, then Division set */
  55. __uint16_t ml_list[XFS_MAC_MAX_SETS];
  56. } xfs_mac_label_t;
  57. /* MSEN label type names. Choose an upper case ASCII character. */
  58. #define XFS_MSEN_ADMIN_LABEL 'A' /* Admin: low<admin != tcsec<high */
  59. #define XFS_MSEN_EQUAL_LABEL 'E' /* Wildcard - always equal */
  60. #define XFS_MSEN_HIGH_LABEL 'H' /* System High - always dominates */
  61. #define XFS_MSEN_MLD_HIGH_LABEL 'I' /* System High, multi-level dir */
  62. #define XFS_MSEN_LOW_LABEL 'L' /* System Low - always dominated */
  63. #define XFS_MSEN_MLD_LABEL 'M' /* TCSEC label on a multi-level dir */
  64. #define XFS_MSEN_MLD_LOW_LABEL 'N' /* System Low, multi-level dir */
  65. #define XFS_MSEN_TCSEC_LABEL 'T' /* TCSEC label */
  66. #define XFS_MSEN_UNKNOWN_LABEL 'U' /* unknown label */
  67. /* MINT label type names. Choose a lower case ASCII character. */
  68. #define XFS_MINT_BIBA_LABEL 'b' /* Dual of a TCSEC label */
  69. #define XFS_MINT_EQUAL_LABEL 'e' /* Wildcard - always equal */
  70. #define XFS_MINT_HIGH_LABEL 'h' /* High Grade - always dominates */
  71. #define XFS_MINT_LOW_LABEL 'l' /* Low Grade - always dominated */
  72. /* On-disk XFS extended attribute names */
  73. #define SGI_MAC_FILE "SGI_MAC_FILE"
  74. #define SGI_MAC_FILE_SIZE (sizeof(SGI_MAC_FILE)-1)
  75. #ifdef __KERNEL__
  76. #ifdef CONFIG_FS_POSIX_MAC
  77. /* NOT YET IMPLEMENTED */
  78. #define MACEXEC 00100
  79. #define MACWRITE 00200
  80. #define MACREAD 00400
  81. struct xfs_inode;
  82. extern int xfs_mac_iaccess(struct xfs_inode *, mode_t, cred_t *);
  83. #define _MAC_XFS_IACCESS(i,m,c) (xfs_mac_iaccess(i,m,c))
  84. #define _MAC_VACCESS(v,c,m) (xfs_mac_vaccess(v,c,m))
  85. #define _MAC_EXISTS xfs_mac_vhaslabel
  86. #else
  87. #define _MAC_XFS_IACCESS(i,m,c) (0)
  88. #define _MAC_VACCESS(v,c,m) (0)
  89. #define _MAC_EXISTS (NULL)
  90. #endif
  91. #endif /* __KERNEL__ */
  92. #endif /* __XFS_MAC_H__ */