netlabel_unlabeled.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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_secid: the LSM secid to use in the audit message
  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, u32 audit_secid)
  71. {
  72. atomic_set(&netlabel_unlabel_accept_flg, value);
  73. netlbl_audit_nomsg((value ?
  74. AUDIT_MAC_UNLBL_ACCEPT : AUDIT_MAC_UNLBL_DENY),
  75. audit_secid);
  76. }
  77. /*
  78. * NetLabel Command Handlers
  79. */
  80. /**
  81. * netlbl_unlabel_accept - Handle an ACCEPT message
  82. * @skb: the NETLINK buffer
  83. * @info: the Generic NETLINK info block
  84. *
  85. * Description:
  86. * Process a user generated ACCEPT message and set the accept flag accordingly.
  87. * Returns zero on success, negative values on failure.
  88. *
  89. */
  90. static int netlbl_unlabel_accept(struct sk_buff *skb, struct genl_info *info)
  91. {
  92. u8 value;
  93. if (info->attrs[NLBL_UNLABEL_A_ACPTFLG]) {
  94. value = nla_get_u8(info->attrs[NLBL_UNLABEL_A_ACPTFLG]);
  95. if (value == 1 || value == 0) {
  96. netlbl_unlabel_acceptflg_set(value,
  97. NETLINK_CB(skb).sid);
  98. return 0;
  99. }
  100. }
  101. return -EINVAL;
  102. }
  103. /**
  104. * netlbl_unlabel_list - Handle a LIST message
  105. * @skb: the NETLINK buffer
  106. * @info: the Generic NETLINK info block
  107. *
  108. * Description:
  109. * Process a user generated LIST message and respond with the current status.
  110. * Returns zero on success, negative values on failure.
  111. *
  112. */
  113. static int netlbl_unlabel_list(struct sk_buff *skb, struct genl_info *info)
  114. {
  115. int ret_val = -EINVAL;
  116. struct sk_buff *ans_skb;
  117. void *data;
  118. ans_skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
  119. if (ans_skb == NULL)
  120. goto list_failure;
  121. data = netlbl_netlink_hdr_put(ans_skb,
  122. info->snd_pid,
  123. info->snd_seq,
  124. netlbl_unlabel_gnl_family.id,
  125. 0,
  126. NLBL_UNLABEL_C_LIST);
  127. if (data == NULL) {
  128. ret_val = -ENOMEM;
  129. goto list_failure;
  130. }
  131. ret_val = nla_put_u8(ans_skb,
  132. NLBL_UNLABEL_A_ACPTFLG,
  133. atomic_read(&netlabel_unlabel_accept_flg));
  134. if (ret_val != 0)
  135. goto list_failure;
  136. genlmsg_end(ans_skb, data);
  137. ret_val = genlmsg_unicast(ans_skb, info->snd_pid);
  138. if (ret_val != 0)
  139. goto list_failure;
  140. return 0;
  141. list_failure:
  142. kfree(ans_skb);
  143. return ret_val;
  144. }
  145. /*
  146. * NetLabel Generic NETLINK Command Definitions
  147. */
  148. static struct genl_ops netlbl_unlabel_genl_c_accept = {
  149. .cmd = NLBL_UNLABEL_C_ACCEPT,
  150. .flags = GENL_ADMIN_PERM,
  151. .policy = netlbl_unlabel_genl_policy,
  152. .doit = netlbl_unlabel_accept,
  153. .dumpit = NULL,
  154. };
  155. static struct genl_ops netlbl_unlabel_genl_c_list = {
  156. .cmd = NLBL_UNLABEL_C_LIST,
  157. .flags = 0,
  158. .policy = netlbl_unlabel_genl_policy,
  159. .doit = netlbl_unlabel_list,
  160. .dumpit = NULL,
  161. };
  162. /*
  163. * NetLabel Generic NETLINK Protocol Functions
  164. */
  165. /**
  166. * netlbl_unlabel_genl_init - Register the Unlabeled NetLabel component
  167. *
  168. * Description:
  169. * Register the unlabeled packet NetLabel component with the Generic NETLINK
  170. * mechanism. Returns zero on success, negative values on failure.
  171. *
  172. */
  173. int netlbl_unlabel_genl_init(void)
  174. {
  175. int ret_val;
  176. ret_val = genl_register_family(&netlbl_unlabel_gnl_family);
  177. if (ret_val != 0)
  178. return ret_val;
  179. ret_val = genl_register_ops(&netlbl_unlabel_gnl_family,
  180. &netlbl_unlabel_genl_c_accept);
  181. if (ret_val != 0)
  182. return ret_val;
  183. ret_val = genl_register_ops(&netlbl_unlabel_gnl_family,
  184. &netlbl_unlabel_genl_c_list);
  185. if (ret_val != 0)
  186. return ret_val;
  187. return 0;
  188. }
  189. /*
  190. * NetLabel KAPI Hooks
  191. */
  192. /**
  193. * netlbl_unlabel_getattr - Get the security attributes for an unlabled packet
  194. * @secattr: the security attributes
  195. *
  196. * Description:
  197. * Determine the security attributes, if any, for an unlabled packet and return
  198. * them in @secattr. Returns zero on success and negative values on failure.
  199. *
  200. */
  201. int netlbl_unlabel_getattr(struct netlbl_lsm_secattr *secattr)
  202. {
  203. if (atomic_read(&netlabel_unlabel_accept_flg) == 1)
  204. return netlbl_secattr_init(secattr);
  205. return -ENOMSG;
  206. }
  207. /**
  208. * netlbl_unlabel_defconf - Set the default config to allow unlabeled packets
  209. *
  210. * Description:
  211. * Set the default NetLabel configuration to allow incoming unlabeled packets
  212. * and to send unlabeled network traffic by default.
  213. *
  214. */
  215. int netlbl_unlabel_defconf(void)
  216. {
  217. int ret_val;
  218. struct netlbl_dom_map *entry;
  219. u32 secid;
  220. security_task_getsecid(current, &secid);
  221. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  222. if (entry == NULL)
  223. return -ENOMEM;
  224. entry->type = NETLBL_NLTYPE_UNLABELED;
  225. ret_val = netlbl_domhsh_add_default(entry, secid);
  226. if (ret_val != 0)
  227. return ret_val;
  228. netlbl_unlabel_acceptflg_set(1, secid);
  229. return 0;
  230. }