tipc: name tipc name table support net namespace
[deliverable/linux.git] / net / tipc / config.c
CommitLineData
b97bf3fd
PL
1/*
2 * net/tipc/config.c: TIPC configuration management code
c4307285 3 *
593a5f22 4 * Copyright (c) 2002-2006, Ericsson AB
7d0ab17b 5 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
b97bf3fd
PL
6 * All rights reserved.
7 *
9ea1fd3c 8 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
9 * modification, are permitted provided that the following conditions are met:
10 *
9ea1fd3c
PL
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.
b97bf3fd 19 *
9ea1fd3c
PL
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
b97bf3fd
PL
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
5a9ee0be 38#include "socket.h"
b97bf3fd 39#include "name_table.h"
b97bf3fd 40#include "config.h"
7d0ab17b 41#include "server.h"
b97bf3fd 42
dc1aed37
EH
43#define REPLY_TRUNCATED "<truncated>\n"
44
b97bf3fd
PL
45static const void *req_tlv_area; /* request message TLV area */
46static int req_tlv_space; /* request message TLV area size */
47static int rep_headroom; /* reply message headroom to use */
48
4323add6 49struct sk_buff *tipc_cfg_reply_alloc(int payload_size)
b97bf3fd
PL
50{
51 struct sk_buff *buf;
52
53 buf = alloc_skb(rep_headroom + payload_size, GFP_ATOMIC);
54 if (buf)
55 skb_reserve(buf, rep_headroom);
56 return buf;
57}
58
c4307285 59int tipc_cfg_append_tlv(struct sk_buff *buf, int tlv_type,
4323add6 60 void *tlv_data, int tlv_data_size)
b97bf3fd 61{
27a884dc 62 struct tlv_desc *tlv = (struct tlv_desc *)skb_tail_pointer(buf);
b97bf3fd
PL
63 int new_tlv_space = TLV_SPACE(tlv_data_size);
64
b29f1428 65 if (skb_tailroom(buf) < new_tlv_space)
b97bf3fd 66 return 0;
b97bf3fd
PL
67 skb_put(buf, new_tlv_space);
68 tlv->tlv_type = htons(tlv_type);
69 tlv->tlv_len = htons(TLV_LENGTH(tlv_data_size));
70 if (tlv_data_size && tlv_data)
71 memcpy(TLV_DATA(tlv), tlv_data, tlv_data_size);
72 return 1;
73}
74
31e3c3f6 75static struct sk_buff *tipc_cfg_reply_unsigned_type(u16 tlv_type, u32 value)
b97bf3fd
PL
76{
77 struct sk_buff *buf;
3e6c8cd5 78 __be32 value_net;
b97bf3fd 79
4323add6 80 buf = tipc_cfg_reply_alloc(TLV_SPACE(sizeof(value)));
b97bf3fd
PL
81 if (buf) {
82 value_net = htonl(value);
c4307285 83 tipc_cfg_append_tlv(buf, tlv_type, &value_net,
4323add6 84 sizeof(value_net));
b97bf3fd
PL
85 }
86 return buf;
87}
88
31e3c3f6 89static struct sk_buff *tipc_cfg_reply_unsigned(u32 value)
90{
91 return tipc_cfg_reply_unsigned_type(TIPC_TLV_UNSIGNED, value);
92}
93
4323add6 94struct sk_buff *tipc_cfg_reply_string_type(u16 tlv_type, char *string)
b97bf3fd
PL
95{
96 struct sk_buff *buf;
97 int string_len = strlen(string) + 1;
98
4323add6 99 buf = tipc_cfg_reply_alloc(TLV_SPACE(string_len));
b97bf3fd 100 if (buf)
4323add6 101 tipc_cfg_append_tlv(buf, tlv_type, string, string_len);
b97bf3fd
PL
102 return buf;
103}
104
107e7be6
AS
105static struct sk_buff *tipc_show_stats(void)
106{
107 struct sk_buff *buf;
108 struct tlv_desc *rep_tlv;
dc1aed37
EH
109 char *pb;
110 int pb_len;
107e7be6
AS
111 int str_len;
112 u32 value;
113
114 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
115 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
116
117 value = ntohl(*(u32 *)TLV_DATA(req_tlv_area));
118 if (value != 0)
119 return tipc_cfg_reply_error_string("unsupported argument");
120
dc1aed37 121 buf = tipc_cfg_reply_alloc(TLV_SPACE(ULTRA_STRING_MAX_LEN));
107e7be6
AS
122 if (buf == NULL)
123 return NULL;
124
125 rep_tlv = (struct tlv_desc *)buf->data;
dc1aed37
EH
126 pb = TLV_DATA(rep_tlv);
127 pb_len = ULTRA_STRING_MAX_LEN;
107e7be6 128
dc1aed37
EH
129 str_len = tipc_snprintf(pb, pb_len, "TIPC version " TIPC_MOD_VER "\n");
130 str_len += 1; /* for "\0" */
107e7be6
AS
131 skb_put(buf, TLV_SPACE(str_len));
132 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
133
134 return buf;
135}
136
c93d3baa 137static struct sk_buff *cfg_enable_bearer(struct net *net)
b97bf3fd
PL
138{
139 struct tipc_bearer_config *args;
140
141 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_BEARER_CONFIG))
4323add6 142 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd
PL
143
144 args = (struct tipc_bearer_config *)TLV_DATA(req_tlv_area);
c93d3baa 145 if (tipc_enable_bearer(net, args->name,
50d3e639 146 ntohl(args->disc_domain),
b97bf3fd 147 ntohl(args->priority)))
4323add6 148 return tipc_cfg_reply_error_string("unable to enable bearer");
b97bf3fd 149
4323add6 150 return tipc_cfg_reply_none();
b97bf3fd
PL
151}
152
f2f9800d 153static struct sk_buff *cfg_disable_bearer(struct net *net)
b97bf3fd
PL
154{
155 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_BEARER_NAME))
4323add6 156 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 157
f2f9800d 158 if (tipc_disable_bearer(net, (char *)TLV_DATA(req_tlv_area)))
4323add6 159 return tipc_cfg_reply_error_string("unable to disable bearer");
b97bf3fd 160
4323add6 161 return tipc_cfg_reply_none();
b97bf3fd
PL
162}
163
c93d3baa 164static struct sk_buff *cfg_set_own_addr(struct net *net)
b97bf3fd
PL
165{
166 u32 addr;
167
168 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
4323add6 169 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
b97bf3fd 170
3e6c8cd5 171 addr = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
b97bf3fd 172 if (addr == tipc_own_addr)
4323add6
PL
173 return tipc_cfg_reply_none();
174 if (!tipc_addr_node_valid(addr))
175 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
176 " (node address)");
b58343f9 177 if (tipc_own_addr)
4323add6
PL
178 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
179 " (cannot change node address once assigned)");
c93d3baa 180 if (!tipc_net_start(net, addr))
eb8b00f5
YX
181 return tipc_cfg_reply_none();
182
183 return tipc_cfg_reply_error_string("cannot change to network mode");
b97bf3fd
PL
184}
185
c93d3baa 186static struct sk_buff *cfg_set_netid(struct net *net)
b97bf3fd 187{
c93d3baa 188 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd
PL
189 u32 value;
190
191 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
4323add6 192 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
3e6c8cd5 193 value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
c93d3baa 194 if (value == tn->net_id)
e100ae92 195 return tipc_cfg_reply_none();
732efba4 196 if (value < 1 || value > 9999)
4323add6
PL
197 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
198 " (network id must be 1-9999)");
b58343f9 199 if (tipc_own_addr)
4323add6 200 return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
e100ae92 201 " (cannot change network id once TIPC has joined a network)");
c93d3baa 202 tn->net_id = value;
e100ae92 203 return tipc_cfg_reply_none();
b97bf3fd
PL
204}
205
c93d3baa
YX
206struct sk_buff *tipc_cfg_do_cmd(struct net *net, u32 orig_node, u16 cmd,
207 const void *request_area, int request_space,
208 int reply_headroom)
b97bf3fd
PL
209{
210 struct sk_buff *rep_tlv_buf;
c93d3baa 211 struct tipc_net *tn = net_generic(net, tipc_net_id);
b97bf3fd 212
ef13a262 213 rtnl_lock();
b97bf3fd
PL
214
215 /* Save request and reply details in a well-known location */
b97bf3fd
PL
216 req_tlv_area = request_area;
217 req_tlv_space = request_space;
218 rep_headroom = reply_headroom;
219
220 /* Check command authorization */
9d52ce4b 221 if (likely(in_own_node(orig_node))) {
b97bf3fd 222 /* command is permitted */
5902385a 223 } else {
4323add6
PL
224 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
225 " (cannot be done remotely)");
b97bf3fd 226 goto exit;
b97bf3fd
PL
227 }
228
229 /* Call appropriate processing routine */
b97bf3fd
PL
230 switch (cmd) {
231 case TIPC_CMD_NOOP:
4323add6 232 rep_tlv_buf = tipc_cfg_reply_none();
b97bf3fd
PL
233 break;
234 case TIPC_CMD_GET_NODES:
f2f9800d
YX
235 rep_tlv_buf = tipc_node_get_nodes(net, req_tlv_area,
236 req_tlv_space);
b97bf3fd
PL
237 break;
238 case TIPC_CMD_GET_LINKS:
f2f9800d
YX
239 rep_tlv_buf = tipc_node_get_links(net, req_tlv_area,
240 req_tlv_space);
b97bf3fd
PL
241 break;
242 case TIPC_CMD_SHOW_LINK_STATS:
f2f9800d
YX
243 rep_tlv_buf = tipc_link_cmd_show_stats(net, req_tlv_area,
244 req_tlv_space);
b97bf3fd
PL
245 break;
246 case TIPC_CMD_RESET_LINK_STATS:
f2f9800d
YX
247 rep_tlv_buf = tipc_link_cmd_reset_stats(net, req_tlv_area,
248 req_tlv_space);
b97bf3fd
PL
249 break;
250 case TIPC_CMD_SHOW_NAME_TABLE:
4ac1c8d0
YX
251 rep_tlv_buf = tipc_nametbl_get(net, req_tlv_area,
252 req_tlv_space);
b97bf3fd
PL
253 break;
254 case TIPC_CMD_GET_BEARER_NAMES:
7f9f95d9 255 rep_tlv_buf = tipc_bearer_get_names(net);
b97bf3fd
PL
256 break;
257 case TIPC_CMD_GET_MEDIA_NAMES:
4323add6 258 rep_tlv_buf = tipc_media_get_names();
b97bf3fd
PL
259 break;
260 case TIPC_CMD_SHOW_PORTS:
e05b31f4 261 rep_tlv_buf = tipc_sk_socks_show(net);
b97bf3fd 262 break;
107e7be6
AS
263 case TIPC_CMD_SHOW_STATS:
264 rep_tlv_buf = tipc_show_stats();
265 break;
b97bf3fd
PL
266 case TIPC_CMD_SET_LINK_TOL:
267 case TIPC_CMD_SET_LINK_PRI:
268 case TIPC_CMD_SET_LINK_WINDOW:
f2f9800d
YX
269 rep_tlv_buf = tipc_link_cmd_config(net, req_tlv_area,
270 req_tlv_space, cmd);
b97bf3fd
PL
271 break;
272 case TIPC_CMD_ENABLE_BEARER:
c93d3baa 273 rep_tlv_buf = cfg_enable_bearer(net);
b97bf3fd
PL
274 break;
275 case TIPC_CMD_DISABLE_BEARER:
f2f9800d 276 rep_tlv_buf = cfg_disable_bearer(net);
b97bf3fd
PL
277 break;
278 case TIPC_CMD_SET_NODE_ADDR:
c93d3baa 279 rep_tlv_buf = cfg_set_own_addr(net);
b97bf3fd 280 break;
b97bf3fd 281 case TIPC_CMD_SET_NETID:
c93d3baa 282 rep_tlv_buf = cfg_set_netid(net);
b97bf3fd 283 break;
b97bf3fd 284 case TIPC_CMD_GET_NETID:
c93d3baa 285 rep_tlv_buf = tipc_cfg_reply_unsigned(tn->net_id);
b97bf3fd 286 break;
59f0c452
AS
287 case TIPC_CMD_NOT_NET_ADMIN:
288 rep_tlv_buf =
289 tipc_cfg_reply_error_string(TIPC_CFG_NOT_NET_ADMIN);
290 break;
51f98a8d
AS
291 case TIPC_CMD_SET_MAX_ZONES:
292 case TIPC_CMD_GET_MAX_ZONES:
08c80e9a
AS
293 case TIPC_CMD_SET_MAX_SLAVES:
294 case TIPC_CMD_GET_MAX_SLAVES:
8f92df6a
AS
295 case TIPC_CMD_SET_MAX_CLUSTERS:
296 case TIPC_CMD_GET_MAX_CLUSTERS:
f831c963
AS
297 case TIPC_CMD_SET_MAX_NODES:
298 case TIPC_CMD_GET_MAX_NODES:
34f256cc
YX
299 case TIPC_CMD_SET_MAX_SUBSCR:
300 case TIPC_CMD_GET_MAX_SUBSCR:
e6a04b1d
YX
301 case TIPC_CMD_SET_MAX_PUBL:
302 case TIPC_CMD_GET_MAX_PUBL:
869dd466 303 case TIPC_CMD_SET_LOG_SIZE:
5902385a
YX
304 case TIPC_CMD_SET_REMOTE_MNG:
305 case TIPC_CMD_GET_REMOTE_MNG:
869dd466 306 case TIPC_CMD_DUMP_LOG:
07f6c4bc
YX
307 case TIPC_CMD_SET_MAX_PORTS:
308 case TIPC_CMD_GET_MAX_PORTS:
51f98a8d
AS
309 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
310 " (obsolete command)");
311 break;
b97bf3fd 312 default:
53cfd1e1
AS
313 rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
314 " (unknown command)");
b97bf3fd
PL
315 break;
316 }
317
dc1aed37
EH
318 WARN_ON(rep_tlv_buf->len > TLV_SPACE(ULTRA_STRING_MAX_LEN));
319
320 /* Append an error message if we cannot return all requested data */
321 if (rep_tlv_buf->len == TLV_SPACE(ULTRA_STRING_MAX_LEN)) {
322 if (*(rep_tlv_buf->data + ULTRA_STRING_MAX_LEN) != '\0')
323 sprintf(rep_tlv_buf->data + rep_tlv_buf->len -
324 sizeof(REPLY_TRUNCATED) - 1, REPLY_TRUNCATED);
325 }
326
b97bf3fd
PL
327 /* Return reply buffer */
328exit:
ef13a262 329 rtnl_unlock();
b97bf3fd
PL
330 return rep_tlv_buf;
331}
This page took 0.713979 seconds and 5 git commands to generate.