netlabel_unlabeled.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*
  2. * NetLabel Unlabeled Support
  3. *
  4. * This file defines functions for dealing with unlabeled packets for the
  5. * NetLabel system. The NetLabel system manages static and dynamic label
  6. * mappings for network protocols such as CIPSO and RIPSO.
  7. *
  8. * Author: Paul Moore <paul.moore@hp.com>
  9. *
  10. */
  11. /*
  12. * (c) Copyright Hewlett-Packard Development Company, L.P., 2006
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  22. * the GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  27. *
  28. */
  29. #include <linux/types.h>
  30. #include <linux/rcupdate.h>
  31. #include <linux/list.h>
  32. #include <linux/spinlock.h>
  33. #include <linux/socket.h>
  34. #include <linux/string.h>
  35. #include <linux/skbuff.h>
  36. #include <net/sock.h>
  37. #include <net/netlink.h>
  38. #include <net/genetlink.h>
  39. #include <net/netlabel.h>
  40. #include <asm/bug.h>
  41. #include "netlabel_user.h"
  42. #include "netlabel_domainhash.h"
  43. #include "netlabel_unlabeled.h"
  44. /* Accept unlabeled packets flag */
  45. static atomic_t netlabel_unlabel_accept_flg = ATOMIC_INIT(0);
  46. /* NetLabel Generic NETLINK CIPSOv4 family */
  47. static struct genl_family netlbl_unlabel_gnl_family = {
  48. .id = GENL_ID_GENERATE,
  49. .hdrsize = 0,
  50. .name = NETLBL_NLTYPE_UNLABELED_NAME,
  51. .version = NETLBL_PROTO_VERSION,
  52. .maxattr = NLBL_UNLABEL_A_MAX,
  53. };
  54. /* NetLabel Netlink attribute policy */
  55. static struct nla_policy netlbl_unlabel_genl_policy[NLBL_UNLABEL_A_MAX + 1] = {
  56. [NLBL_UNLABEL_A_ACPTFLG] = { .type = NLA_U8 },
  57. };
  58. /*
  59. * Helper Functions
  60. */
  61. /**
  62. * netlbl_unlabel_acceptflg_set - Set the unlabeled accept flag
  63. * @value: desired value
  64. * @audit_info: NetLabel audit information
  65. *
  66. * Description:
  67. * Set the value of the unlabeled accept flag to @value.
  68. *
  69. */
  70. static void netlbl_unlabel_acceptflg_set(u8 value,
  71. struct netlbl_audit *audit_info)
  72. {
  73. struct audit_buffer *audit_buf;
  74. u8 old_val;
  75. old_val = atomic_read(&netlabel_unlabel_accept_flg);
  76. atomic_set(&netlabel_unlabel_accept_flg, value);
  77. audit_buf = netlbl_audit_start_common(AUDIT_MAC_UNLBL_ALLOW,
  78. audit_info);
  79. audit_log_format(audit_buf, " unlbl_accept=%u old=%u", value, old_val);
  80. audit_log_end(audit_buf);
  81. }
  82. /*
  83. * NetLabel Command Handlers
  84. */
  85. /**
  86. * netlbl_unlabel_accept - Handle an ACCEPT message
  87. * @skb: the NETLINK buffer
  88. * @info: the Generic NETLINK info block
  89. *
  90. * Description:
  91. * Process a user generated ACCEPT message and set the accept flag accordingly.
  92. * Returns zero on success, negative values on failure.
  93. *
  94. */
  95. static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
  96. {
  97. u8 value;
  98. struct netlbl_audit audit_info;
  99. if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
  100. value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
  101. if (value == 1 || value == 0) {
  102. netlbl_netlink_auditinfo(skb, &audit_info);
  103. netlbl_unlabel_acceptflg_set(value, &audit_info);
  104. return 0;
  105. }
  106. }
  107. return -EINVAL;
  108. }
  109. /**
  110. * netlbl_unlabel_list - Handle a LIST message
  111. * @skb: the NETLINK buffer
  112. * @info: the Generic NETLINK info block
  113. *
  114. * Description:
  115. * Process a user generated LIST message and respond with the current status.
  116. * Returns zero on success, negative values on failure.
  117. *
  118. */
  119. static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
  120. {
  121. int ret_val = -EINVAL;
  122. struct sk_buff *ans_skb;
  123. void *data;
  124. ans_skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
  125. if (ans_skb == NULL)
  126. goto list_failure;
  127. data = netlbl_netlink_hdr_put(ans_skb,
  128. info->snd_pid,
  129. info->snd_seq,
  130. netlbl_unlabel_gnl_family.id,
  131. 0,
  132. NLBL_UNLABEL_C_LIST);
  133. if (data == NULL) {
  134. ret_val = -ENOMEM;
  135. goto list_failure;
  136. }
  137. ret_val = nla_put_u8(ans_skb,
  138. NLBL_UNLABEL_A_ACPTFLG,
  139. atomic_read(&netlabel_unlabel_accept_flg));
  140. if (ret_val != 0)
  141. goto list_failure;
  142. genlmsg_end(ans_skb, data);
  143. ret_val = genlmsg_unicast(ans_skb, info->snd_pid);
  144. if (ret_val != 0)
  145. goto list_failure;
  146. return 0;
  147. list_failure:
  148. kfree(ans_skb);
  149. return ret_val;
  150. }
  151. /*
  152. * NetLabel Generic NETLINK Command Definitions
  153. */
  154. static struct genl_ops netlbl_unlabel_genl_c_accept = {
  155. .cmd = NLBL_UNLABEL_C_ACCEPT,
  156. .flags = GENL_ADMIN_PERM,
  157. .policy = netlbl_unlabel_genl_policy,
  158. .doit = netlbl_unlabel_accept,
  159. .dumpit = NULL,
  160. };
  161. static struct genl_ops netlbl_unlabel_genl_c_list = {
  162. .cmd = NLBL_UNLABEL_C_LIST,
  163. .flags = 0,
  164. .policy = netlbl_unlabel_genl_policy,
  165. .doit = netlbl_unlabel_list,
  166. .dumpit = NULL,
  167. };
  168. /*
  169. * NetLabel Generic NETLINK Protocol Functions
  170. */
  171. /**
  172. * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
  173. *
  174. * Description:
  175. * Register the unlabeled packet NetLabel component with the Generic NETLINK
  176. * mechanism. Returns zero on success, negative values on failure.
  177. *
  178. */
  179. int netlbl_unlabel_genl_init(void)
  180. {
  181. int ret_val;
  182. ret_val = genl_register_family(&netlbl_unlabel_gnl_family);
  183. if (ret_val != 0)
  184. return ret_val;
  185. ret_val = genl_register_ops(&netlbl_unlabel_gnl_family,
  186. &netlbl_unlabel_genl_c_accept);
  187. if (ret_val != 0)
  188. return ret_val;
  189. ret_val = genl_register_ops(&netlbl_unlabel_gnl_family,
  190. &netlbl_unlabel_genl_c_list);
  191. if (ret_val != 0)
  192. return ret_val;
  193. return 0;
  194. }
  195. /*
  196. * NetLabel KAPI Hooks
  197. */
  198. /**
  199. * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
  200. * @secattr: the security attributes
  201. *
  202. * Description:
  203. * Determine the security attributes, if any, for an unlabled packet and return
  204. * them in @secattr. Returns zero on success and negative values on failure.
  205. *
  206. */
  207. int netlbl_unlabel_getattr(struct netlbl_lsm_secattr *secattr)
  208. {
  209. if (atomic_read(&netlabel_unlabel_accept_flg) == 1)
  210. return netlbl_secattr_init(secattr);
  211. return -ENOMSG;
  212. }
  213. /**
  214. * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
  215. *
  216. * Description:
  217. * Set the default NetLabel configuration to allow incoming unlabeled packets
  218. * and to send unlabeled network traffic by default.
  219. *
  220. */
  221. int netlbl_unlabel_defconf(void)
  222. {
  223. int ret_val;
  224. struct netlbl_dom_map *entry;
  225. struct netlbl_audit audit_info;
  226. /* Only the kernel is allowed to call this function and the only time
  227. * it is called is at bootup before the audit subsystem is reporting
  228. * messages so don't worry to much about these values. */
  229. security_task_getsecid(current, &audit_info.secid);
  230. audit_info.loginuid = 0;
  231. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  232. if (entry == NULL)
  233. return -ENOMEM;
  234. entry->type = NETLBL_NLTYPE_UNLABELED;
  235. ret_val = netlbl_domhsh_add_default(entry, &audit_info);
  236. if (ret_val != 0)
  237. return ret_val;
  238. netlbl_unlabel_acceptflg_set(1, &audit_info);
  239. return 0;
  240. }