netlink.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * net/tipc/netlink.c: TIPC configuration handling
  3. *
  4. * Copyright (c) 2005-2006, 2014, Ericsson AB
  5. * Copyright (c) 2005-2007, Wind River Systems
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. * 3. Neither the names of the copyright holders nor the names of its
  17. * contributors may be used to endorse or promote products derived from
  18. * this software without specific prior written permission.
  19. *
  20. * Alternatively, this software may be distributed under the terms of the
  21. * GNU General Public License ("GPL") version 2 as published by the Free
  22. * Software Foundation.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  28. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  29. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  30. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  31. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  32. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  33. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  34. * POSSIBILITY OF SUCH DAMAGE.
  35. */
  36. #include "core.h"
  37. #include "socket.h"
  38. #include "name_table.h"
  39. #include "bearer.h"
  40. #include "link.h"
  41. #include "node.h"
  42. #include "net.h"
  43. #include <net/genetlink.h>
  44. static const struct nla_policy tipc_nl_policy[TIPC_NLA_MAX + 1] = {
  45. [TIPC_NLA_UNSPEC] = { .type = NLA_UNSPEC, },
  46. [TIPC_NLA_BEARER] = { .type = NLA_NESTED, },
  47. [TIPC_NLA_SOCK] = { .type = NLA_NESTED, },
  48. [TIPC_NLA_PUBL] = { .type = NLA_NESTED, },
  49. [TIPC_NLA_LINK] = { .type = NLA_NESTED, },
  50. [TIPC_NLA_MEDIA] = { .type = NLA_NESTED, },
  51. [TIPC_NLA_NODE] = { .type = NLA_NESTED, },
  52. [TIPC_NLA_NET] = { .type = NLA_NESTED, },
  53. [TIPC_NLA_NAME_TABLE] = { .type = NLA_NESTED, }
  54. };
  55. /* Users of the legacy API (tipc-config) can't handle that we add operations,
  56. * so we have a separate genl handling for the new API.
  57. */
  58. struct genl_family tipc_genl_family = {
  59. .id = GENL_ID_GENERATE,
  60. .name = TIPC_GENL_V2_NAME,
  61. .version = TIPC_GENL_V2_VERSION,
  62. .hdrsize = 0,
  63. .maxattr = TIPC_NLA_MAX,
  64. .netnsok = true,
  65. };
  66. static const struct genl_ops tipc_genl_v2_ops[] = {
  67. {
  68. .cmd = TIPC_NL_BEARER_DISABLE,
  69. .doit = tipc_nl_bearer_disable,
  70. .policy = tipc_nl_policy,
  71. },
  72. {
  73. .cmd = TIPC_NL_BEARER_ENABLE,
  74. .doit = tipc_nl_bearer_enable,
  75. .policy = tipc_nl_policy,
  76. },
  77. {
  78. .cmd = TIPC_NL_BEARER_GET,
  79. .doit = tipc_nl_bearer_get,
  80. .dumpit = tipc_nl_bearer_dump,
  81. .policy = tipc_nl_policy,
  82. },
  83. {
  84. .cmd = TIPC_NL_BEARER_SET,
  85. .doit = tipc_nl_bearer_set,
  86. .policy = tipc_nl_policy,
  87. },
  88. {
  89. .cmd = TIPC_NL_SOCK_GET,
  90. .dumpit = tipc_nl_sk_dump,
  91. .policy = tipc_nl_policy,
  92. },
  93. {
  94. .cmd = TIPC_NL_PUBL_GET,
  95. .dumpit = tipc_nl_publ_dump,
  96. .policy = tipc_nl_policy,
  97. },
  98. {
  99. .cmd = TIPC_NL_LINK_GET,
  100. .doit = tipc_nl_link_get,
  101. .dumpit = tipc_nl_link_dump,
  102. .policy = tipc_nl_policy,
  103. },
  104. {
  105. .cmd = TIPC_NL_LINK_SET,
  106. .doit = tipc_nl_link_set,
  107. .policy = tipc_nl_policy,
  108. },
  109. {
  110. .cmd = TIPC_NL_LINK_RESET_STATS,
  111. .doit = tipc_nl_link_reset_stats,
  112. .policy = tipc_nl_policy,
  113. },
  114. {
  115. .cmd = TIPC_NL_MEDIA_GET,
  116. .doit = tipc_nl_media_get,
  117. .dumpit = tipc_nl_media_dump,
  118. .policy = tipc_nl_policy,
  119. },
  120. {
  121. .cmd = TIPC_NL_MEDIA_SET,
  122. .doit = tipc_nl_media_set,
  123. .policy = tipc_nl_policy,
  124. },
  125. {
  126. .cmd = TIPC_NL_NODE_GET,
  127. .dumpit = tipc_nl_node_dump,
  128. .policy = tipc_nl_policy,
  129. },
  130. {
  131. .cmd = TIPC_NL_NET_GET,
  132. .dumpit = tipc_nl_net_dump,
  133. .policy = tipc_nl_policy,
  134. },
  135. {
  136. .cmd = TIPC_NL_NET_SET,
  137. .doit = tipc_nl_net_set,
  138. .policy = tipc_nl_policy,
  139. },
  140. {
  141. .cmd = TIPC_NL_NAME_TABLE_GET,
  142. .dumpit = tipc_nl_name_table_dump,
  143. .policy = tipc_nl_policy,
  144. }
  145. };
  146. int tipc_nlmsg_parse(const struct nlmsghdr *nlh, struct nlattr ***attr)
  147. {
  148. u32 maxattr = tipc_genl_family.maxattr;
  149. *attr = tipc_genl_family.attrbuf;
  150. if (!*attr)
  151. return -EOPNOTSUPP;
  152. return nlmsg_parse(nlh, GENL_HDRLEN, *attr, maxattr, tipc_nl_policy);
  153. }
  154. int tipc_netlink_start(void)
  155. {
  156. int res;
  157. res = genl_register_family_with_ops(&tipc_genl_family,
  158. tipc_genl_v2_ops);
  159. if (res) {
  160. pr_err("Failed to register netlink interface\n");
  161. return res;
  162. }
  163. return 0;
  164. }
  165. void tipc_netlink_stop(void)
  166. {
  167. genl_unregister_family(&tipc_genl_family);
  168. }