netlink.c 10.2 KB
Newer Older
P
Per Liden 已提交
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
P
Per Liden 已提交
6 7
 * All rights reserved.
 *
P
Per Liden 已提交
8
 * Redistribution and use in source and binary forms, with or without
P
Per Liden 已提交
9 10
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the names of the copyright holders nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
P
Per Liden 已提交
19
 *
P
Per Liden 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
P
Per Liden 已提交
34 35 36 37
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
38
#include "socket.h"
39
#include "name_table.h"
40
#include "bearer.h"
41
#include "link.h"
42
#include "node.h"
43
#include "net.h"
44
#include "udp_media.h"
P
Per Liden 已提交
45 46
#include <net/genetlink.h>

47 48 49
static const struct nla_policy tipc_nl_policy[TIPC_NLA_MAX + 1] = {
	[TIPC_NLA_UNSPEC]	= { .type = NLA_UNSPEC, },
	[TIPC_NLA_BEARER]	= { .type = NLA_NESTED, },
50
	[TIPC_NLA_SOCK]		= { .type = NLA_NESTED, },
51 52
	[TIPC_NLA_PUBL]		= { .type = NLA_NESTED, },
	[TIPC_NLA_LINK]		= { .type = NLA_NESTED, },
53
	[TIPC_NLA_MEDIA]	= { .type = NLA_NESTED, },
54
	[TIPC_NLA_NODE]		= { .type = NLA_NESTED, },
55
	[TIPC_NLA_NET]		= { .type = NLA_NESTED, },
56 57
	[TIPC_NLA_NAME_TABLE]	= { .type = NLA_NESTED, },
	[TIPC_NLA_MON]		= { .type = NLA_NESTED, },
58 59
};

60 61 62 63 64 65
const struct nla_policy
tipc_nl_name_table_policy[TIPC_NLA_NAME_TABLE_MAX + 1] = {
	[TIPC_NLA_NAME_TABLE_UNSPEC]	= { .type = NLA_UNSPEC },
	[TIPC_NLA_NAME_TABLE_PUBL]	= { .type = NLA_NESTED }
};

66 67
const struct nla_policy tipc_nl_monitor_policy[TIPC_NLA_MON_MAX + 1] = {
	[TIPC_NLA_MON_UNSPEC]			= { .type = NLA_UNSPEC },
68
	[TIPC_NLA_MON_REF]			= { .type = NLA_U32 },
69 70 71
	[TIPC_NLA_MON_ACTIVATION_THRESHOLD]	= { .type = NLA_U32 },
};

72 73 74 75 76 77 78 79 80 81
const struct nla_policy tipc_nl_sock_policy[TIPC_NLA_SOCK_MAX + 1] = {
	[TIPC_NLA_SOCK_UNSPEC]		= { .type = NLA_UNSPEC },
	[TIPC_NLA_SOCK_ADDR]		= { .type = NLA_U32 },
	[TIPC_NLA_SOCK_REF]		= { .type = NLA_U32 },
	[TIPC_NLA_SOCK_CON]		= { .type = NLA_NESTED },
	[TIPC_NLA_SOCK_HAS_PUBL]	= { .type = NLA_FLAG }
};

const struct nla_policy tipc_nl_net_policy[TIPC_NLA_NET_MAX + 1] = {
	[TIPC_NLA_NET_UNSPEC]		= { .type = NLA_UNSPEC },
82 83
	[TIPC_NLA_NET_ID]		= { .type = NLA_U32 },
	[TIPC_NLA_NET_ADDR]		= { .type = NLA_U32 },
84 85
	[TIPC_NLA_NET_NODEID]		= { .type = NLA_U64 },
	[TIPC_NLA_NET_NODEID_W1]	= { .type = NLA_U64 },
86
	[TIPC_NLA_NET_ADDR_LEGACY]	= { .type = NLA_FLAG }
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
};

const struct nla_policy tipc_nl_link_policy[TIPC_NLA_LINK_MAX + 1] = {
	[TIPC_NLA_LINK_UNSPEC]		= { .type = NLA_UNSPEC },
	[TIPC_NLA_LINK_NAME]		= { .type = NLA_STRING,
					    .len = TIPC_MAX_LINK_NAME },
	[TIPC_NLA_LINK_MTU]		= { .type = NLA_U32 },
	[TIPC_NLA_LINK_BROADCAST]	= { .type = NLA_FLAG },
	[TIPC_NLA_LINK_UP]		= { .type = NLA_FLAG },
	[TIPC_NLA_LINK_ACTIVE]		= { .type = NLA_FLAG },
	[TIPC_NLA_LINK_PROP]		= { .type = NLA_NESTED },
	[TIPC_NLA_LINK_STATS]		= { .type = NLA_NESTED },
	[TIPC_NLA_LINK_RX]		= { .type = NLA_U32 },
	[TIPC_NLA_LINK_TX]		= { .type = NLA_U32 }
};

const struct nla_policy tipc_nl_node_policy[TIPC_NLA_NODE_MAX + 1] = {
	[TIPC_NLA_NODE_UNSPEC]		= { .type = NLA_UNSPEC },
	[TIPC_NLA_NODE_ADDR]		= { .type = NLA_U32 },
106 107 108 109 110
	[TIPC_NLA_NODE_UP]		= { .type = NLA_FLAG },
	[TIPC_NLA_NODE_ID]		= { .type = NLA_BINARY,
					    .len = TIPC_NODEID_LEN},
	[TIPC_NLA_NODE_KEY]		= { .type = NLA_BINARY,
					    .len = TIPC_AEAD_KEY_SIZE_MAX},
111
	[TIPC_NLA_NODE_KEY_MASTER]	= { .type = NLA_FLAG },
112
	[TIPC_NLA_NODE_REKEYING]	= { .type = NLA_U32 },
113 114 115 116 117 118 119
};

/* Properties valid for media, bearer and link */
const struct nla_policy tipc_nl_prop_policy[TIPC_NLA_PROP_MAX + 1] = {
	[TIPC_NLA_PROP_UNSPEC]		= { .type = NLA_UNSPEC },
	[TIPC_NLA_PROP_PRIO]		= { .type = NLA_U32 },
	[TIPC_NLA_PROP_TOL]		= { .type = NLA_U32 },
120
	[TIPC_NLA_PROP_WIN]		= { .type = NLA_U32 },
121
	[TIPC_NLA_PROP_MTU]		= { .type = NLA_U32 },
122 123
	[TIPC_NLA_PROP_BROADCAST]	= { .type = NLA_U32 },
	[TIPC_NLA_PROP_BROADCAST_RATIO]	= { .type = NLA_U32 }
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
};

const struct nla_policy tipc_nl_bearer_policy[TIPC_NLA_BEARER_MAX + 1]	= {
	[TIPC_NLA_BEARER_UNSPEC]	= { .type = NLA_UNSPEC },
	[TIPC_NLA_BEARER_NAME]		= { .type = NLA_STRING,
					    .len = TIPC_MAX_BEARER_NAME },
	[TIPC_NLA_BEARER_PROP]		= { .type = NLA_NESTED },
	[TIPC_NLA_BEARER_DOMAIN]	= { .type = NLA_U32 }
};

const struct nla_policy tipc_nl_media_policy[TIPC_NLA_MEDIA_MAX + 1] = {
	[TIPC_NLA_MEDIA_UNSPEC]		= { .type = NLA_UNSPEC },
	[TIPC_NLA_MEDIA_NAME]		= { .type = NLA_STRING },
	[TIPC_NLA_MEDIA_PROP]		= { .type = NLA_NESTED }
};

const struct nla_policy tipc_nl_udp_policy[TIPC_NLA_UDP_MAX + 1] = {
	[TIPC_NLA_UDP_UNSPEC]	= {.type = NLA_UNSPEC},
	[TIPC_NLA_UDP_LOCAL]	= {.type = NLA_BINARY,
				   .len = sizeof(struct sockaddr_storage)},
	[TIPC_NLA_UDP_REMOTE]	= {.type = NLA_BINARY,
				   .len = sizeof(struct sockaddr_storage)},
};

148 149 150 151 152 153
/* Users of the legacy API (tipc-config) can't handle that we add operations,
 * so we have a separate genl handling for the new API.
 */
static const struct genl_ops tipc_genl_v2_ops[] = {
	{
		.cmd	= TIPC_NL_BEARER_DISABLE,
154
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
155 156 157 158
		.doit	= tipc_nl_bearer_disable,
	},
	{
		.cmd	= TIPC_NL_BEARER_ENABLE,
159
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
160
		.doit	= tipc_nl_bearer_enable,
161 162 163
	},
	{
		.cmd	= TIPC_NL_BEARER_GET,
164
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
165 166
		.doit	= tipc_nl_bearer_get,
		.dumpit	= tipc_nl_bearer_dump,
167
	},
R
Richard Alpe 已提交
168 169
	{
		.cmd	= TIPC_NL_BEARER_ADD,
170
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
R
Richard Alpe 已提交
171 172
		.doit	= tipc_nl_bearer_add,
	},
173 174
	{
		.cmd	= TIPC_NL_BEARER_SET,
175
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
176
		.doit	= tipc_nl_bearer_set,
177 178 179
	},
	{
		.cmd	= TIPC_NL_SOCK_GET,
180
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
C
Cong Wang 已提交
181
		.start = tipc_dump_start,
182
		.dumpit	= tipc_nl_sk_dump,
C
Cong Wang 已提交
183
		.done	= tipc_dump_done,
184 185 186
	},
	{
		.cmd	= TIPC_NL_PUBL_GET,
187 188
		.validate = GENL_DONT_VALIDATE_STRICT |
			    GENL_DONT_VALIDATE_DUMP_STRICT,
189
		.dumpit	= tipc_nl_publ_dump,
190 191 192
	},
	{
		.cmd	= TIPC_NL_LINK_GET,
193
		.validate = GENL_DONT_VALIDATE_STRICT,
194
		.doit   = tipc_nl_node_get_link,
195
		.dumpit	= tipc_nl_node_dump_link,
196 197 198
	},
	{
		.cmd	= TIPC_NL_LINK_SET,
199
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
200
		.doit	= tipc_nl_node_set_link,
201 202 203
	},
	{
		.cmd	= TIPC_NL_LINK_RESET_STATS,
204
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
205
		.doit   = tipc_nl_node_reset_link_stats,
206 207 208
	},
	{
		.cmd	= TIPC_NL_MEDIA_GET,
209
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
210 211
		.doit	= tipc_nl_media_get,
		.dumpit	= tipc_nl_media_dump,
212 213 214
	},
	{
		.cmd	= TIPC_NL_MEDIA_SET,
215
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
216
		.doit	= tipc_nl_media_set,
217 218 219
	},
	{
		.cmd	= TIPC_NL_NODE_GET,
220
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
221
		.dumpit	= tipc_nl_node_dump,
222 223 224
	},
	{
		.cmd	= TIPC_NL_NET_GET,
225
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
226
		.dumpit	= tipc_nl_net_dump,
227 228 229
	},
	{
		.cmd	= TIPC_NL_NET_SET,
230
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
231
		.doit	= tipc_nl_net_set,
232 233 234
	},
	{
		.cmd	= TIPC_NL_NAME_TABLE_GET,
235
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
236
		.dumpit	= tipc_nl_name_table_dump,
237 238 239
	},
	{
		.cmd	= TIPC_NL_MON_SET,
240
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
241 242
		.doit	= tipc_nl_node_set_monitor,
	},
243 244
	{
		.cmd	= TIPC_NL_MON_GET,
245
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
246
		.doit	= tipc_nl_node_get_monitor,
247 248 249 250
		.dumpit	= tipc_nl_node_dump_monitor,
	},
	{
		.cmd	= TIPC_NL_MON_PEER_GET,
251 252
		.validate = GENL_DONT_VALIDATE_STRICT |
			    GENL_DONT_VALIDATE_DUMP_STRICT,
253
		.dumpit	= tipc_nl_node_dump_monitor_peer,
254
	},
255 256
	{
		.cmd	= TIPC_NL_PEER_REMOVE,
257
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
258
		.doit	= tipc_nl_peer_rm,
259 260 261 262
	},
#ifdef CONFIG_TIPC_MEDIA_UDP
	{
		.cmd	= TIPC_NL_UDP_GET_REMOTEIP,
263 264
		.validate = GENL_DONT_VALIDATE_STRICT |
			    GENL_DONT_VALIDATE_DUMP_STRICT,
265 266 267
		.dumpit	= tipc_udp_nl_dump_remoteip,
	},
#endif
268 269 270 271 272 273 274 275 276 277 278 279
#ifdef CONFIG_TIPC_CRYPTO
	{
		.cmd	= TIPC_NL_KEY_SET,
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
		.doit	= tipc_nl_node_set_key,
	},
	{
		.cmd	= TIPC_NL_KEY_FLUSH,
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
		.doit	= tipc_nl_node_flush_key,
	},
#endif
280 281 282 283 284
	{
		.cmd	= TIPC_NL_ADDR_LEGACY_GET,
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
		.doit	= tipc_nl_net_addr_legacy_get,
	},
285 286
};

287
struct genl_family tipc_genl_family __ro_after_init = {
288 289 290 291
	.name		= TIPC_GENL_V2_NAME,
	.version	= TIPC_GENL_V2_VERSION,
	.hdrsize	= 0,
	.maxattr	= TIPC_NLA_MAX,
292
	.policy		= tipc_nl_policy,
293 294 295 296
	.netnsok	= true,
	.module		= THIS_MODULE,
	.ops		= tipc_genl_v2_ops,
	.n_ops		= ARRAY_SIZE(tipc_genl_v2_ops),
297
	.resv_start_op	= TIPC_NL_ADDR_LEGACY_GET + 1,
298 299
};

300
int __init tipc_netlink_start(void)
P
Per Liden 已提交
301
{
302
	int res;
J
Jon Maloy 已提交
303

304
	res = genl_register_family(&tipc_genl_family);
305
	if (res) {
306
		pr_err("Failed to register netlink interface\n");
307 308
		return res;
	}
309
	return 0;
P
Per Liden 已提交
310 311
}

312
void tipc_netlink_stop(void)
P
Per Liden 已提交
313
{
314
	genl_unregister_family(&tipc_genl_family);
P
Per Liden 已提交
315
}