netlabel_unlabeled.c 5.9 KB

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