config.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. /*
  2. * net/tipc/config.c: TIPC configuration management code
  3. *
  4. * Copyright (c) 2002-2006, Ericsson AB
  5. * Copyright (c) 2004-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 "port.h"
  38. #include "link.h"
  39. #include "name_table.h"
  40. #include "user_reg.h"
  41. #include "config.h"
  42. struct manager {
  43. u32 user_ref;
  44. u32 port_ref;
  45. };
  46. static struct manager mng = { 0};
  47. static DEFINE_SPINLOCK(config_lock);
  48. static const void *req_tlv_area; /* request message TLV area */
  49. static int req_tlv_space; /* request message TLV area size */
  50. static int rep_headroom; /* reply message headroom to use */
  51. struct sk_buff *tipc_cfg_reply_alloc(int payload_size)
  52. {
  53. struct sk_buff *buf;
  54. buf = alloc_skb(rep_headroom + payload_size, GFP_ATOMIC);
  55. if (buf)
  56. skb_reserve(buf, rep_headroom);
  57. return buf;
  58. }
  59. int tipc_cfg_append_tlv(struct sk_buff *buf, int tlv_type,
  60. void *tlv_data, int tlv_data_size)
  61. {
  62. struct tlv_desc *tlv = (struct tlv_desc *)skb_tail_pointer(buf);
  63. int new_tlv_space = TLV_SPACE(tlv_data_size);
  64. if (skb_tailroom(buf) < new_tlv_space) {
  65. dbg("tipc_cfg_append_tlv unable to append TLV\n");
  66. return 0;
  67. }
  68. skb_put(buf, new_tlv_space);
  69. tlv->tlv_type = htons(tlv_type);
  70. tlv->tlv_len = htons(TLV_LENGTH(tlv_data_size));
  71. if (tlv_data_size && tlv_data)
  72. memcpy(TLV_DATA(tlv), tlv_data, tlv_data_size);
  73. return 1;
  74. }
  75. static struct sk_buff *tipc_cfg_reply_unsigned_type(u16 tlv_type, u32 value)
  76. {
  77. struct sk_buff *buf;
  78. __be32 value_net;
  79. buf = tipc_cfg_reply_alloc(TLV_SPACE(sizeof(value)));
  80. if (buf) {
  81. value_net = htonl(value);
  82. tipc_cfg_append_tlv(buf, tlv_type, &value_net,
  83. sizeof(value_net));
  84. }
  85. return buf;
  86. }
  87. static struct sk_buff *tipc_cfg_reply_unsigned(u32 value)
  88. {
  89. return tipc_cfg_reply_unsigned_type(TIPC_TLV_UNSIGNED, value);
  90. }
  91. struct sk_buff *tipc_cfg_reply_string_type(u16 tlv_type, char *string)
  92. {
  93. struct sk_buff *buf;
  94. int string_len = strlen(string) + 1;
  95. buf = tipc_cfg_reply_alloc(TLV_SPACE(string_len));
  96. if (buf)
  97. tipc_cfg_append_tlv(buf, tlv_type, string, string_len);
  98. return buf;
  99. }
  100. #define MAX_STATS_INFO 2000
  101. static struct sk_buff *tipc_show_stats(void)
  102. {
  103. struct sk_buff *buf;
  104. struct tlv_desc *rep_tlv;
  105. struct print_buf pb;
  106. int str_len;
  107. u32 value;
  108. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  109. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  110. value = ntohl(*(u32 *)TLV_DATA(req_tlv_area));
  111. if (value != 0)
  112. return tipc_cfg_reply_error_string("unsupported argument");
  113. buf = tipc_cfg_reply_alloc(TLV_SPACE(MAX_STATS_INFO));
  114. if (buf == NULL)
  115. return NULL;
  116. rep_tlv = (struct tlv_desc *)buf->data;
  117. tipc_printbuf_init(&pb, (char *)TLV_DATA(rep_tlv), MAX_STATS_INFO);
  118. tipc_printf(&pb, "TIPC version " TIPC_MOD_VER "\n");
  119. /* Use additional tipc_printf()'s to return more info ... */
  120. str_len = tipc_printbuf_validate(&pb);
  121. skb_put(buf, TLV_SPACE(str_len));
  122. TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
  123. return buf;
  124. }
  125. static struct sk_buff *cfg_enable_bearer(void)
  126. {
  127. struct tipc_bearer_config *args;
  128. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_BEARER_CONFIG))
  129. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  130. args = (struct tipc_bearer_config *)TLV_DATA(req_tlv_area);
  131. if (tipc_enable_bearer(args->name,
  132. ntohl(args->detect_scope),
  133. ntohl(args->priority)))
  134. return tipc_cfg_reply_error_string("unable to enable bearer");
  135. return tipc_cfg_reply_none();
  136. }
  137. static struct sk_buff *cfg_disable_bearer(void)
  138. {
  139. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_BEARER_NAME))
  140. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  141. if (tipc_disable_bearer((char *)TLV_DATA(req_tlv_area)))
  142. return tipc_cfg_reply_error_string("unable to disable bearer");
  143. return tipc_cfg_reply_none();
  144. }
  145. static struct sk_buff *cfg_set_own_addr(void)
  146. {
  147. u32 addr;
  148. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_NET_ADDR))
  149. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  150. addr = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  151. if (addr == tipc_own_addr)
  152. return tipc_cfg_reply_none();
  153. if (!tipc_addr_node_valid(addr))
  154. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  155. " (node address)");
  156. if (tipc_mode == TIPC_NET_MODE)
  157. return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  158. " (cannot change node address once assigned)");
  159. /*
  160. * Must release all spinlocks before calling start_net() because
  161. * Linux version of TIPC calls eth_media_start() which calls
  162. * register_netdevice_notifier() which may block!
  163. *
  164. * Temporarily releasing the lock should be harmless for non-Linux TIPC,
  165. * but Linux version of eth_media_start() should really be reworked
  166. * so that it can be called with spinlocks held.
  167. */
  168. spin_unlock_bh(&config_lock);
  169. tipc_core_start_net(addr);
  170. spin_lock_bh(&config_lock);
  171. return tipc_cfg_reply_none();
  172. }
  173. static struct sk_buff *cfg_set_remote_mng(void)
  174. {
  175. u32 value;
  176. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  177. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  178. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  179. tipc_remote_management = (value != 0);
  180. return tipc_cfg_reply_none();
  181. }
  182. static struct sk_buff *cfg_set_max_publications(void)
  183. {
  184. u32 value;
  185. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  186. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  187. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  188. if (value != delimit(value, 1, 65535))
  189. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  190. " (max publications must be 1-65535)");
  191. tipc_max_publications = value;
  192. return tipc_cfg_reply_none();
  193. }
  194. static struct sk_buff *cfg_set_max_subscriptions(void)
  195. {
  196. u32 value;
  197. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  198. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  199. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  200. if (value != delimit(value, 1, 65535))
  201. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  202. " (max subscriptions must be 1-65535");
  203. tipc_max_subscriptions = value;
  204. return tipc_cfg_reply_none();
  205. }
  206. static struct sk_buff *cfg_set_max_ports(void)
  207. {
  208. u32 value;
  209. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  210. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  211. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  212. if (value == tipc_max_ports)
  213. return tipc_cfg_reply_none();
  214. if (value != delimit(value, 127, 65535))
  215. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  216. " (max ports must be 127-65535)");
  217. if (tipc_mode != TIPC_NOT_RUNNING)
  218. return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  219. " (cannot change max ports while TIPC is active)");
  220. tipc_max_ports = value;
  221. return tipc_cfg_reply_none();
  222. }
  223. static struct sk_buff *cfg_set_max_nodes(void)
  224. {
  225. u32 value;
  226. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  227. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  228. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  229. if (value == tipc_max_nodes)
  230. return tipc_cfg_reply_none();
  231. if (value != delimit(value, 8, 2047))
  232. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  233. " (max nodes must be 8-2047)");
  234. if (tipc_mode == TIPC_NET_MODE)
  235. return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  236. " (cannot change max nodes once TIPC has joined a network)");
  237. tipc_max_nodes = value;
  238. return tipc_cfg_reply_none();
  239. }
  240. static struct sk_buff *cfg_set_netid(void)
  241. {
  242. u32 value;
  243. if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
  244. return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
  245. value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
  246. if (value == tipc_net_id)
  247. return tipc_cfg_reply_none();
  248. if (value != delimit(value, 1, 9999))
  249. return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
  250. " (network id must be 1-9999)");
  251. if (tipc_mode == TIPC_NET_MODE)
  252. return tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  253. " (cannot change network id once TIPC has joined a network)");
  254. tipc_net_id = value;
  255. return tipc_cfg_reply_none();
  256. }
  257. struct sk_buff *tipc_cfg_do_cmd(u32 orig_node, u16 cmd, const void *request_area,
  258. int request_space, int reply_headroom)
  259. {
  260. struct sk_buff *rep_tlv_buf;
  261. spin_lock_bh(&config_lock);
  262. /* Save request and reply details in a well-known location */
  263. req_tlv_area = request_area;
  264. req_tlv_space = request_space;
  265. rep_headroom = reply_headroom;
  266. /* Check command authorization */
  267. if (likely(orig_node == tipc_own_addr)) {
  268. /* command is permitted */
  269. } else if (cmd >= 0x8000) {
  270. rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  271. " (cannot be done remotely)");
  272. goto exit;
  273. } else if (!tipc_remote_management) {
  274. rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NO_REMOTE);
  275. goto exit;
  276. }
  277. else if (cmd >= 0x4000) {
  278. u32 domain = 0;
  279. if ((tipc_nametbl_translate(TIPC_ZM_SRV, 0, &domain) == 0) ||
  280. (domain != orig_node)) {
  281. rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_ZONE_MSTR);
  282. goto exit;
  283. }
  284. }
  285. /* Call appropriate processing routine */
  286. switch (cmd) {
  287. case TIPC_CMD_NOOP:
  288. rep_tlv_buf = tipc_cfg_reply_none();
  289. break;
  290. case TIPC_CMD_GET_NODES:
  291. rep_tlv_buf = tipc_node_get_nodes(req_tlv_area, req_tlv_space);
  292. break;
  293. case TIPC_CMD_GET_LINKS:
  294. rep_tlv_buf = tipc_node_get_links(req_tlv_area, req_tlv_space);
  295. break;
  296. case TIPC_CMD_SHOW_LINK_STATS:
  297. rep_tlv_buf = tipc_link_cmd_show_stats(req_tlv_area, req_tlv_space);
  298. break;
  299. case TIPC_CMD_RESET_LINK_STATS:
  300. rep_tlv_buf = tipc_link_cmd_reset_stats(req_tlv_area, req_tlv_space);
  301. break;
  302. case TIPC_CMD_SHOW_NAME_TABLE:
  303. rep_tlv_buf = tipc_nametbl_get(req_tlv_area, req_tlv_space);
  304. break;
  305. case TIPC_CMD_GET_BEARER_NAMES:
  306. rep_tlv_buf = tipc_bearer_get_names();
  307. break;
  308. case TIPC_CMD_GET_MEDIA_NAMES:
  309. rep_tlv_buf = tipc_media_get_names();
  310. break;
  311. case TIPC_CMD_SHOW_PORTS:
  312. rep_tlv_buf = tipc_port_get_ports();
  313. break;
  314. case TIPC_CMD_SET_LOG_SIZE:
  315. rep_tlv_buf = tipc_log_resize_cmd(req_tlv_area, req_tlv_space);
  316. break;
  317. case TIPC_CMD_DUMP_LOG:
  318. rep_tlv_buf = tipc_log_dump();
  319. break;
  320. case TIPC_CMD_SHOW_STATS:
  321. rep_tlv_buf = tipc_show_stats();
  322. break;
  323. case TIPC_CMD_SET_LINK_TOL:
  324. case TIPC_CMD_SET_LINK_PRI:
  325. case TIPC_CMD_SET_LINK_WINDOW:
  326. rep_tlv_buf = tipc_link_cmd_config(req_tlv_area, req_tlv_space, cmd);
  327. break;
  328. case TIPC_CMD_ENABLE_BEARER:
  329. rep_tlv_buf = cfg_enable_bearer();
  330. break;
  331. case TIPC_CMD_DISABLE_BEARER:
  332. rep_tlv_buf = cfg_disable_bearer();
  333. break;
  334. case TIPC_CMD_SET_NODE_ADDR:
  335. rep_tlv_buf = cfg_set_own_addr();
  336. break;
  337. case TIPC_CMD_SET_REMOTE_MNG:
  338. rep_tlv_buf = cfg_set_remote_mng();
  339. break;
  340. case TIPC_CMD_SET_MAX_PORTS:
  341. rep_tlv_buf = cfg_set_max_ports();
  342. break;
  343. case TIPC_CMD_SET_MAX_PUBL:
  344. rep_tlv_buf = cfg_set_max_publications();
  345. break;
  346. case TIPC_CMD_SET_MAX_SUBSCR:
  347. rep_tlv_buf = cfg_set_max_subscriptions();
  348. break;
  349. case TIPC_CMD_SET_MAX_NODES:
  350. rep_tlv_buf = cfg_set_max_nodes();
  351. break;
  352. case TIPC_CMD_SET_NETID:
  353. rep_tlv_buf = cfg_set_netid();
  354. break;
  355. case TIPC_CMD_GET_REMOTE_MNG:
  356. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_remote_management);
  357. break;
  358. case TIPC_CMD_GET_MAX_PORTS:
  359. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_max_ports);
  360. break;
  361. case TIPC_CMD_GET_MAX_PUBL:
  362. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_max_publications);
  363. break;
  364. case TIPC_CMD_GET_MAX_SUBSCR:
  365. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_max_subscriptions);
  366. break;
  367. case TIPC_CMD_GET_MAX_NODES:
  368. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_max_nodes);
  369. break;
  370. case TIPC_CMD_GET_NETID:
  371. rep_tlv_buf = tipc_cfg_reply_unsigned(tipc_net_id);
  372. break;
  373. case TIPC_CMD_NOT_NET_ADMIN:
  374. rep_tlv_buf =
  375. tipc_cfg_reply_error_string(TIPC_CFG_NOT_NET_ADMIN);
  376. break;
  377. case TIPC_CMD_SET_MAX_ZONES:
  378. case TIPC_CMD_GET_MAX_ZONES:
  379. case TIPC_CMD_SET_MAX_SLAVES:
  380. case TIPC_CMD_GET_MAX_SLAVES:
  381. case TIPC_CMD_SET_MAX_CLUSTERS:
  382. case TIPC_CMD_GET_MAX_CLUSTERS:
  383. rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  384. " (obsolete command)");
  385. break;
  386. default:
  387. rep_tlv_buf = tipc_cfg_reply_error_string(TIPC_CFG_NOT_SUPPORTED
  388. " (unknown command)");
  389. break;
  390. }
  391. /* Return reply buffer */
  392. exit:
  393. spin_unlock_bh(&config_lock);
  394. return rep_tlv_buf;
  395. }
  396. static void cfg_named_msg_event(void *userdata,
  397. u32 port_ref,
  398. struct sk_buff **buf,
  399. const unchar *msg,
  400. u32 size,
  401. u32 importance,
  402. struct tipc_portid const *orig,
  403. struct tipc_name_seq const *dest)
  404. {
  405. struct tipc_cfg_msg_hdr *req_hdr;
  406. struct tipc_cfg_msg_hdr *rep_hdr;
  407. struct sk_buff *rep_buf;
  408. /* Validate configuration message header (ignore invalid message) */
  409. req_hdr = (struct tipc_cfg_msg_hdr *)msg;
  410. if ((size < sizeof(*req_hdr)) ||
  411. (size != TCM_ALIGN(ntohl(req_hdr->tcm_len))) ||
  412. (ntohs(req_hdr->tcm_flags) != TCM_F_REQUEST)) {
  413. warn("Invalid configuration message discarded\n");
  414. return;
  415. }
  416. /* Generate reply for request (if can't, return request) */
  417. rep_buf = tipc_cfg_do_cmd(orig->node,
  418. ntohs(req_hdr->tcm_type),
  419. msg + sizeof(*req_hdr),
  420. size - sizeof(*req_hdr),
  421. BUF_HEADROOM + MAX_H_SIZE + sizeof(*rep_hdr));
  422. if (rep_buf) {
  423. skb_push(rep_buf, sizeof(*rep_hdr));
  424. rep_hdr = (struct tipc_cfg_msg_hdr *)rep_buf->data;
  425. memcpy(rep_hdr, req_hdr, sizeof(*rep_hdr));
  426. rep_hdr->tcm_len = htonl(rep_buf->len);
  427. rep_hdr->tcm_flags &= htons(~TCM_F_REQUEST);
  428. } else {
  429. rep_buf = *buf;
  430. *buf = NULL;
  431. }
  432. /* NEED TO ADD CODE TO HANDLE FAILED SEND (SUCH AS CONGESTION) */
  433. tipc_send_buf2port(port_ref, orig, rep_buf, rep_buf->len);
  434. }
  435. int tipc_cfg_init(void)
  436. {
  437. struct tipc_name_seq seq;
  438. int res;
  439. res = tipc_attach(&mng.user_ref);
  440. if (res)
  441. goto failed;
  442. res = tipc_createport(mng.user_ref, NULL, TIPC_CRITICAL_IMPORTANCE,
  443. NULL, NULL, NULL,
  444. NULL, cfg_named_msg_event, NULL,
  445. NULL, &mng.port_ref);
  446. if (res)
  447. goto failed;
  448. seq.type = TIPC_CFG_SRV;
  449. seq.lower = seq.upper = tipc_own_addr;
  450. res = tipc_nametbl_publish_rsv(mng.port_ref, TIPC_ZONE_SCOPE, &seq);
  451. if (res)
  452. goto failed;
  453. return 0;
  454. failed:
  455. err("Unable to create configuration service\n");
  456. tipc_detach(mng.user_ref);
  457. mng.user_ref = 0;
  458. return res;
  459. }
  460. void tipc_cfg_stop(void)
  461. {
  462. if (mng.user_ref) {
  463. tipc_detach(mng.user_ref);
  464. mng.user_ref = 0;
  465. }
  466. }