mdp.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. *
  3. * mdp - make dummy policy
  4. *
  5. * When pointed at a kernel tree, builds a dummy policy for that kernel
  6. * with exactly one type with full rights to itself.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. *
  22. * Copyright (C) IBM Corporation, 2006
  23. *
  24. * Authors: Serge E. Hallyn <serue@us.ibm.com>
  25. */
  26. /* NOTE: we really do want to use the kernel headers here */
  27. #define __EXPORTED_HEADERS__
  28. #include <stdio.h>
  29. #include <stdlib.h>
  30. #include <unistd.h>
  31. #include <string.h>
  32. #include <sys/socket.h>
  33. static void usage(char *name)
  34. {
  35. printf("usage: %s [-m] policy_file context_file\n", name);
  36. exit(1);
  37. }
  38. /* Class/perm mapping support */
  39. struct security_class_mapping {
  40. const char *name;
  41. const char *perms[sizeof(unsigned) * 8 + 1];
  42. };
  43. #include "classmap.h"
  44. #include "initial_sid_to_string.h"
  45. int main(int argc, char *argv[])
  46. {
  47. int i, j, mls = 0;
  48. int initial_sid_to_string_len;
  49. char **arg, *polout, *ctxout;
  50. FILE *fout;
  51. if (argc < 3)
  52. usage(argv[0]);
  53. arg = argv+1;
  54. if (argc==4 && strcmp(argv[1], "-m") == 0) {
  55. mls = 1;
  56. arg++;
  57. }
  58. polout = *arg++;
  59. ctxout = *arg;
  60. fout = fopen(polout, "w");
  61. if (!fout) {
  62. printf("Could not open %s for writing\n", polout);
  63. usage(argv[0]);
  64. }
  65. /* print out the classes */
  66. for (i = 0; secclass_map[i].name; i++)
  67. fprintf(fout, "class %s\n", secclass_map[i].name);
  68. fprintf(fout, "\n");
  69. initial_sid_to_string_len = sizeof(initial_sid_to_string) / sizeof (char *);
  70. /* print out the sids */
  71. for (i = 1; i < initial_sid_to_string_len; i++)
  72. fprintf(fout, "sid %s\n", initial_sid_to_string[i]);
  73. fprintf(fout, "\n");
  74. /* print out the class permissions */
  75. for (i = 0; secclass_map[i].name; i++) {
  76. struct security_class_mapping *map = &secclass_map[i];
  77. fprintf(fout, "class %s\n", map->name);
  78. fprintf(fout, "{\n");
  79. for (j = 0; map->perms[j]; j++)
  80. fprintf(fout, "\t%s\n", map->perms[j]);
  81. fprintf(fout, "}\n\n");
  82. }
  83. fprintf(fout, "\n");
  84. /* NOW PRINT OUT MLS STUFF */
  85. if (mls) {
  86. printf("MLS not yet implemented\n");
  87. exit(1);
  88. }
  89. /* types, roles, and allows */
  90. fprintf(fout, "type base_t;\n");
  91. fprintf(fout, "role base_r;\n");
  92. fprintf(fout, "role base_r types { base_t };\n");
  93. for (i = 0; secclass_map[i].name; i++)
  94. fprintf(fout, "allow base_t base_t:%s *;\n",
  95. secclass_map[i].name);
  96. fprintf(fout, "user user_u roles { base_r };\n");
  97. fprintf(fout, "\n");
  98. /* default sids */
  99. for (i = 1; i < initial_sid_to_string_len; i++)
  100. fprintf(fout, "sid %s user_u:base_r:base_t\n", initial_sid_to_string[i]);
  101. fprintf(fout, "\n");
  102. fprintf(fout, "fs_use_xattr ext2 user_u:base_r:base_t;\n");
  103. fprintf(fout, "fs_use_xattr ext3 user_u:base_r:base_t;\n");
  104. fprintf(fout, "fs_use_xattr ext4 user_u:base_r:base_t;\n");
  105. fprintf(fout, "fs_use_xattr jfs user_u:base_r:base_t;\n");
  106. fprintf(fout, "fs_use_xattr xfs user_u:base_r:base_t;\n");
  107. fprintf(fout, "fs_use_xattr reiserfs user_u:base_r:base_t;\n");
  108. fprintf(fout, "fs_use_xattr jffs2 user_u:base_r:base_t;\n");
  109. fprintf(fout, "fs_use_xattr gfs2 user_u:base_r:base_t;\n");
  110. fprintf(fout, "fs_use_xattr lustre user_u:base_r:base_t;\n");
  111. fprintf(fout, "fs_use_task eventpollfs user_u:base_r:base_t;\n");
  112. fprintf(fout, "fs_use_task pipefs user_u:base_r:base_t;\n");
  113. fprintf(fout, "fs_use_task sockfs user_u:base_r:base_t;\n");
  114. fprintf(fout, "fs_use_trans mqueue user_u:base_r:base_t;\n");
  115. fprintf(fout, "fs_use_trans devpts user_u:base_r:base_t;\n");
  116. fprintf(fout, "fs_use_trans hugetlbfs user_u:base_r:base_t;\n");
  117. fprintf(fout, "fs_use_trans tmpfs user_u:base_r:base_t;\n");
  118. fprintf(fout, "fs_use_trans shm user_u:base_r:base_t;\n");
  119. fprintf(fout, "genfscon proc / user_u:base_r:base_t\n");
  120. fclose(fout);
  121. fout = fopen(ctxout, "w");
  122. if (!fout) {
  123. printf("Wrote policy, but cannot open %s for writing\n", ctxout);
  124. usage(argv[0]);
  125. }
  126. fprintf(fout, "/ user_u:base_r:base_t\n");
  127. fprintf(fout, "/.* user_u:base_r:base_t\n");
  128. fclose(fout);
  129. return 0;
  130. }