tipc.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. /*
  2. * include/linux/tipc.h: Include file for TIPC users
  3. *
  4. * Copyright (c) 2003-2005, Ericsson Research Canada
  5. * Copyright (c) 2005, Wind River Systems
  6. * Copyright (c) 2005-2006, Ericsson AB
  7. * All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions are met:
  11. *
  12. * Redistributions of source code must retain the above copyright notice, this
  13. * list of conditions and the following disclaimer.
  14. * Redistributions in binary form must reproduce the above copyright notice,
  15. * this list of conditions and the following disclaimer in the documentation
  16. * and/or other materials provided with the distribution.
  17. * Neither the names of the copyright holders nor the names of its
  18. * contributors may be used to endorse or promote products derived from this
  19. * software without specific prior written permission.
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  22. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  25. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  26. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  27. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  28. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  29. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  30. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  31. * POSSIBILITY OF SUCH DAMAGE.
  32. */
  33. #ifndef _LINUX_TIPC_H_
  34. #define _LINUX_TIPC_H_
  35. #include <linux/types.h>
  36. #include <linux/string.h>
  37. #include <asm/byteorder.h>
  38. /*
  39. * TIPC addressing primitives
  40. */
  41. struct tipc_portid {
  42. __u32 ref;
  43. __u32 node;
  44. };
  45. struct tipc_name {
  46. __u32 type;
  47. __u32 instance;
  48. };
  49. struct tipc_name_seq {
  50. __u32 type;
  51. __u32 lower;
  52. __u32 upper;
  53. };
  54. static inline __u32 tipc_addr(unsigned int zone,
  55. unsigned int cluster,
  56. unsigned int node)
  57. {
  58. return(zone << 24) | (cluster << 12) | node;
  59. }
  60. static inline unsigned int tipc_zone(__u32 addr)
  61. {
  62. return addr >> 24;
  63. }
  64. static inline unsigned int tipc_cluster(__u32 addr)
  65. {
  66. return(addr >> 12) & 0xfff;
  67. }
  68. static inline unsigned int tipc_node(__u32 addr)
  69. {
  70. return addr & 0xfff;
  71. }
  72. /*
  73. * Application-accessible port name types
  74. */
  75. #define TIPC_NET_EVENTS 0 /* network event subscription name type */
  76. #define TIPC_TOP_SRV 1 /* topology service name type */
  77. #define TIPC_RESERVED_TYPES 64 /* lowest user-publishable name type */
  78. /*
  79. * Publication scopes when binding port names and port name sequences
  80. */
  81. #define TIPC_ZONE_SCOPE 1
  82. #define TIPC_CLUSTER_SCOPE 2
  83. #define TIPC_NODE_SCOPE 3
  84. /*
  85. * Limiting values for messages
  86. */
  87. #define TIPC_MAX_USER_MSG_SIZE 66000
  88. /*
  89. * Message importance levels
  90. */
  91. #define TIPC_LOW_IMPORTANCE 0 /* default */
  92. #define TIPC_MEDIUM_IMPORTANCE 1
  93. #define TIPC_HIGH_IMPORTANCE 2
  94. #define TIPC_CRITICAL_IMPORTANCE 3
  95. /*
  96. * Msg rejection/connection shutdown reasons
  97. */
  98. #define TIPC_OK 0
  99. #define TIPC_ERR_NO_NAME 1
  100. #define TIPC_ERR_NO_PORT 2
  101. #define TIPC_ERR_NO_NODE 3
  102. #define TIPC_ERR_OVERLOAD 4
  103. #define TIPC_CONN_SHUTDOWN 5
  104. /*
  105. * TIPC topology subscription service definitions
  106. */
  107. #define TIPC_SUB_PORTS 0x01 /* filter for port availability */
  108. #define TIPC_SUB_SERVICE 0x02 /* filter for service availability */
  109. #if 0
  110. /* The following filter options are not currently implemented */
  111. #define TIPC_SUB_NO_BIND_EVTS 0x04 /* filter out "publish" events */
  112. #define TIPC_SUB_NO_UNBIND_EVTS 0x08 /* filter out "withdraw" events */
  113. #define TIPC_SUB_SINGLE_EVT 0x10 /* expire after first event */
  114. #endif
  115. #define TIPC_WAIT_FOREVER ~0 /* timeout for permanent subscription */
  116. struct tipc_subscr {
  117. struct tipc_name_seq seq; /* name sequence of interest */
  118. __u32 timeout; /* subscription duration (in ms) */
  119. __u32 filter; /* bitmask of filter options */
  120. char usr_handle[8]; /* available for subscriber use */
  121. };
  122. #define TIPC_PUBLISHED 1 /* publication event */
  123. #define TIPC_WITHDRAWN 2 /* withdraw event */
  124. #define TIPC_SUBSCR_TIMEOUT 3 /* subscription timeout event */
  125. struct tipc_event {
  126. __u32 event; /* event type */
  127. __u32 found_lower; /* matching name seq instances */
  128. __u32 found_upper; /* " " " " */
  129. struct tipc_portid port; /* associated port */
  130. struct tipc_subscr s; /* associated subscription */
  131. };
  132. /*
  133. * Socket API
  134. */
  135. #ifndef AF_TIPC
  136. #define AF_TIPC 30
  137. #endif
  138. #ifndef PF_TIPC
  139. #define PF_TIPC AF_TIPC
  140. #endif
  141. #ifndef SOL_TIPC
  142. #define SOL_TIPC 271
  143. #endif
  144. #define TIPC_ADDR_NAMESEQ 1
  145. #define TIPC_ADDR_MCAST 1
  146. #define TIPC_ADDR_NAME 2
  147. #define TIPC_ADDR_ID 3
  148. struct sockaddr_tipc {
  149. unsigned short family;
  150. unsigned char addrtype;
  151. signed char scope;
  152. union {
  153. struct tipc_portid id;
  154. struct tipc_name_seq nameseq;
  155. struct {
  156. struct tipc_name name;
  157. __u32 domain; /* 0: own zone */
  158. } name;
  159. } addr;
  160. };
  161. /*
  162. * Ancillary data objects supported by recvmsg()
  163. */
  164. #define TIPC_ERRINFO 1 /* error info */
  165. #define TIPC_RETDATA 2 /* returned data */
  166. #define TIPC_DESTNAME 3 /* destination name */
  167. /*
  168. * TIPC-specific socket option values
  169. */
  170. #define TIPC_IMPORTANCE 127 /* Default: TIPC_LOW_IMPORTANCE */
  171. #define TIPC_SRC_DROPPABLE 128 /* Default: 0 (resend congested msg) */
  172. #define TIPC_DEST_DROPPABLE 129 /* Default: based on socket type */
  173. #define TIPC_CONN_TIMEOUT 130 /* Default: 8000 (ms) */
  174. /*
  175. * Bearer
  176. */
  177. /* Identifiers of supported TIPC media types */
  178. #define TIPC_MEDIA_TYPE_ETH 1
  179. /* Maximum sizes of TIPC bearer-related names (including terminating NUL) */
  180. #define TIPC_MAX_MEDIA_NAME 16 /* format = media */
  181. #define TIPC_MAX_IF_NAME 16 /* format = interface */
  182. #define TIPC_MAX_BEARER_NAME 32 /* format = media:interface */
  183. #define TIPC_MAX_LINK_NAME 60 /* format = Z.C.N:interface-Z.C.N:interface */
  184. struct tipc_media_addr {
  185. __u32 type;
  186. union {
  187. __u8 eth_addr[6]; /* Ethernet bearer */
  188. #if 0
  189. /* Prototypes for other possible bearer types */
  190. struct {
  191. __u16 sin_family;
  192. __u16 sin_port;
  193. struct {
  194. __u32 s_addr;
  195. } sin_addr;
  196. char pad[4];
  197. } addr_in; /* IP-based bearer */
  198. __u16 sock_descr; /* generic socket bearer */
  199. #endif
  200. } dev_addr;
  201. };
  202. /* Link priority limits (range from 0 to # priorities - 1) */
  203. #define TIPC_NUM_LINK_PRI 32
  204. /* Link tolerance limits (min, default, max), in ms */
  205. #define TIPC_MIN_LINK_TOL 50
  206. #define TIPC_DEF_LINK_TOL 1500
  207. #define TIPC_MAX_LINK_TOL 30000
  208. /* Link window limits (min, default, max), in packets */
  209. #define TIPC_MIN_LINK_WIN 16
  210. #define TIPC_DEF_LINK_WIN 50
  211. #define TIPC_MAX_LINK_WIN 150
  212. /*
  213. * Configuration
  214. *
  215. * All configuration management messaging involves sending a request message
  216. * to the TIPC configuration service on a node, which sends a reply message
  217. * back. (In the future multi-message replies may be supported.)
  218. *
  219. * Both request and reply messages consist of a transport header and payload.
  220. * The transport header contains info about the desired operation;
  221. * the payload consists of zero or more type/length/value (TLV) items
  222. * which specify parameters or results for the operation.
  223. *
  224. * For many operations, the request and reply messages have a fixed number
  225. * of TLVs (usually zero or one); however, some reply messages may return
  226. * a variable number of TLVs. A failed request is denoted by the presence
  227. * of an "error string" TLV in the reply message instead of the TLV(s) the
  228. * reply should contain if the request succeeds.
  229. */
  230. #define TIPC_CFG_SRV 0 /* configuration service name type */
  231. /*
  232. * Public commands:
  233. * May be issued by any process.
  234. * Accepted by own node, or by remote node only if remote management enabled.
  235. */
  236. #define TIPC_CMD_NOOP 0x0000 /* tx none, rx none */
  237. #define TIPC_CMD_GET_NODES 0x0001 /* tx net_addr, rx node_info(s) */
  238. #define TIPC_CMD_GET_MEDIA_NAMES 0x0002 /* tx none, rx media_name(s) */
  239. #define TIPC_CMD_GET_BEARER_NAMES 0x0003 /* tx none, rx bearer_name(s) */
  240. #define TIPC_CMD_GET_LINKS 0x0004 /* tx net_addr, rx link_info(s) */
  241. #define TIPC_CMD_SHOW_NAME_TABLE 0x0005 /* tx name_tbl_query, rx ultra_string */
  242. #define TIPC_CMD_SHOW_PORTS 0x0006 /* tx none, rx ultra_string */
  243. #define TIPC_CMD_SHOW_LINK_STATS 0x000B /* tx link_name, rx ultra_string */
  244. #if 0
  245. #define TIPC_CMD_SHOW_PORT_STATS 0x0008 /* tx port_ref, rx ultra_string */
  246. #define TIPC_CMD_RESET_PORT_STATS 0x0009 /* tx port_ref, rx none */
  247. #define TIPC_CMD_GET_ROUTES 0x000A /* tx ?, rx ? */
  248. #define TIPC_CMD_GET_LINK_PEER 0x000D /* tx link_name, rx ? */
  249. #endif
  250. /*
  251. * Protected commands:
  252. * May only be issued by "network administration capable" process.
  253. * Accepted by own node, or by remote node only if remote management enabled
  254. * and this node is zone manager.
  255. */
  256. #define TIPC_CMD_GET_REMOTE_MNG 0x4003 /* tx none, rx unsigned */
  257. #define TIPC_CMD_GET_MAX_PORTS 0x4004 /* tx none, rx unsigned */
  258. #define TIPC_CMD_GET_MAX_PUBL 0x4005 /* tx none, rx unsigned */
  259. #define TIPC_CMD_GET_MAX_SUBSCR 0x4006 /* tx none, rx unsigned */
  260. #define TIPC_CMD_GET_MAX_ZONES 0x4007 /* tx none, rx unsigned */
  261. #define TIPC_CMD_GET_MAX_CLUSTERS 0x4008 /* tx none, rx unsigned */
  262. #define TIPC_CMD_GET_MAX_NODES 0x4009 /* tx none, rx unsigned */
  263. #define TIPC_CMD_GET_MAX_SLAVES 0x400A /* tx none, rx unsigned */
  264. #define TIPC_CMD_GET_NETID 0x400B /* tx none, rx unsigned */
  265. #define TIPC_CMD_ENABLE_BEARER 0x4101 /* tx bearer_config, rx none */
  266. #define TIPC_CMD_DISABLE_BEARER 0x4102 /* tx bearer_name, rx none */
  267. #define TIPC_CMD_SET_LINK_TOL 0x4107 /* tx link_config, rx none */
  268. #define TIPC_CMD_SET_LINK_PRI 0x4108 /* tx link_config, rx none */
  269. #define TIPC_CMD_SET_LINK_WINDOW 0x4109 /* tx link_config, rx none */
  270. #define TIPC_CMD_SET_LOG_SIZE 0x410A /* tx unsigned, rx none */
  271. #define TIPC_CMD_DUMP_LOG 0x410B /* tx none, rx ultra_string */
  272. #define TIPC_CMD_RESET_LINK_STATS 0x410C /* tx link_name, rx none */
  273. #if 0
  274. #define TIPC_CMD_CREATE_LINK 0x4103 /* tx link_create, rx none */
  275. #define TIPC_CMD_REMOVE_LINK 0x4104 /* tx link_name, rx none */
  276. #define TIPC_CMD_BLOCK_LINK 0x4105 /* tx link_name, rx none */
  277. #define TIPC_CMD_UNBLOCK_LINK 0x4106 /* tx link_name, rx none */
  278. #endif
  279. /*
  280. * Private commands:
  281. * May only be issued by "network administration capable" process.
  282. * Accepted by own node only; cannot be used on a remote node.
  283. */
  284. #define TIPC_CMD_SET_NODE_ADDR 0x8001 /* tx net_addr, rx none */
  285. #if 0
  286. #define TIPC_CMD_SET_ZONE_MASTER 0x8002 /* tx none, rx none */
  287. #endif
  288. #define TIPC_CMD_SET_REMOTE_MNG 0x8003 /* tx unsigned, rx none */
  289. #define TIPC_CMD_SET_MAX_PORTS 0x8004 /* tx unsigned, rx none */
  290. #define TIPC_CMD_SET_MAX_PUBL 0x8005 /* tx unsigned, rx none */
  291. #define TIPC_CMD_SET_MAX_SUBSCR 0x8006 /* tx unsigned, rx none */
  292. #define TIPC_CMD_SET_MAX_ZONES 0x8007 /* tx unsigned, rx none */
  293. #define TIPC_CMD_SET_MAX_CLUSTERS 0x8008 /* tx unsigned, rx none */
  294. #define TIPC_CMD_SET_MAX_NODES 0x8009 /* tx unsigned, rx none */
  295. #define TIPC_CMD_SET_MAX_SLAVES 0x800A /* tx unsigned, rx none */
  296. #define TIPC_CMD_SET_NETID 0x800B /* tx unsigned, rx none */
  297. /*
  298. * TLV types defined for TIPC
  299. */
  300. #define TIPC_TLV_NONE 0 /* no TLV present */
  301. #define TIPC_TLV_VOID 1 /* empty TLV (0 data bytes)*/
  302. #define TIPC_TLV_UNSIGNED 2 /* 32-bit integer */
  303. #define TIPC_TLV_STRING 3 /* char[128] (max) */
  304. #define TIPC_TLV_LARGE_STRING 4 /* char[2048] (max) */
  305. #define TIPC_TLV_ULTRA_STRING 5 /* char[32768] (max) */
  306. #define TIPC_TLV_ERROR_STRING 16 /* char[128] containing "error code" */
  307. #define TIPC_TLV_NET_ADDR 17 /* 32-bit integer denoting <Z.C.N> */
  308. #define TIPC_TLV_MEDIA_NAME 18 /* char[MAX_MEDIA_NAME] */
  309. #define TIPC_TLV_BEARER_NAME 19 /* char[MAX_BEARER_NAME] */
  310. #define TIPC_TLV_LINK_NAME 20 /* char[MAX_LINK_NAME] */
  311. #define TIPC_TLV_NODE_INFO 21 /* struct tipc_node_info */
  312. #define TIPC_TLV_LINK_INFO 22 /* struct tipc_link_info */
  313. #define TIPC_TLV_BEARER_CONFIG 23 /* struct tipc_bearer_config */
  314. #define TIPC_TLV_LINK_CONFIG 24 /* struct tipc_link_config */
  315. #define TIPC_TLV_NAME_TBL_QUERY 25 /* struct tipc_name_table_query */
  316. #define TIPC_TLV_PORT_REF 26 /* 32-bit port reference */
  317. struct tipc_node_info {
  318. __u32 addr; /* network address of node */
  319. __u32 up; /* 0=down, 1= up */
  320. };
  321. struct tipc_link_info {
  322. __u32 dest; /* network address of peer node */
  323. __u32 up; /* 0=down, 1=up */
  324. char str[TIPC_MAX_LINK_NAME]; /* link name */
  325. };
  326. struct tipc_bearer_config {
  327. __u32 priority; /* Range [1,31]. Override per link */
  328. __u32 detect_scope;
  329. char name[TIPC_MAX_BEARER_NAME];
  330. };
  331. struct tipc_link_config {
  332. __u32 value;
  333. char name[TIPC_MAX_LINK_NAME];
  334. };
  335. #define TIPC_NTQ_ALLTYPES 0x80000000
  336. struct tipc_name_table_query {
  337. __u32 depth; /* 1:type, 2:+name info, 3:+port info, 4+:+debug info */
  338. __u32 type; /* {t,l,u} info ignored if high bit of "depth" is set */
  339. __u32 lowbound; /* (i.e. displays all entries of name table) */
  340. __u32 upbound;
  341. };
  342. /*
  343. * The error string TLV is a null-terminated string describing the cause
  344. * of the request failure. To simplify error processing (and to save space)
  345. * the first character of the string can be a special error code character
  346. * (lying by the range 0x80 to 0xFF) which represents a pre-defined reason.
  347. */
  348. #define TIPC_CFG_TLV_ERROR "\x80" /* request contains incorrect TLV(s) */
  349. #define TIPC_CFG_NOT_NET_ADMIN "\x81" /* must be network administrator */
  350. #define TIPC_CFG_NOT_ZONE_MSTR "\x82" /* must be zone master */
  351. #define TIPC_CFG_NO_REMOTE "\x83" /* remote management not enabled */
  352. #define TIPC_CFG_NOT_SUPPORTED "\x84" /* request is not supported by TIPC */
  353. #define TIPC_CFG_INVALID_VALUE "\x85" /* request has invalid argument value */
  354. #if 0
  355. /* prototypes TLV structures for proposed commands */
  356. struct tipc_link_create {
  357. __u32 domain;
  358. struct tipc_media_addr peer_addr;
  359. char bearer_name[MAX_BEARER_NAME];
  360. };
  361. struct tipc_route_info {
  362. __u32 dest;
  363. __u32 router;
  364. };
  365. #endif
  366. /*
  367. * A TLV consists of a descriptor, followed by the TLV value.
  368. * TLV descriptor fields are stored in network byte order;
  369. * TLV values must also be stored in network byte order (where applicable).
  370. * TLV descriptors must be aligned to addresses which are multiple of 4,
  371. * so up to 3 bytes of padding may exist at the end of the TLV value area.
  372. * There must not be any padding between the TLV descriptor and its value.
  373. */
  374. struct tlv_desc {
  375. __u16 tlv_len; /* TLV length (descriptor + value) */
  376. __u16 tlv_type; /* TLV identifier */
  377. };
  378. #define TLV_ALIGNTO 4
  379. #define TLV_ALIGN(datalen) (((datalen)+(TLV_ALIGNTO-1)) & ~(TLV_ALIGNTO-1))
  380. #define TLV_LENGTH(datalen) (sizeof(struct tlv_desc) + (datalen))
  381. #define TLV_SPACE(datalen) (TLV_ALIGN(TLV_LENGTH(datalen)))
  382. #define TLV_DATA(tlv) ((void *)((char *)(tlv) + TLV_LENGTH(0)))
  383. static inline int TLV_OK(const void *tlv, __u16 space)
  384. {
  385. /*
  386. * Would also like to check that "tlv" is a multiple of 4,
  387. * but don't know how to do this in a portable way.
  388. * - Tried doing (!(tlv & (TLV_ALIGNTO-1))), but GCC compiler
  389. * won't allow binary "&" with a pointer.
  390. * - Tried casting "tlv" to integer type, but causes warning about size
  391. * mismatch when pointer is bigger than chosen type (int, long, ...).
  392. */
  393. return (space >= TLV_SPACE(0)) &&
  394. (ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space);
  395. }
  396. static inline int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type)
  397. {
  398. return TLV_OK(tlv, space) &&
  399. (ntohs(((struct tlv_desc *)tlv)->tlv_type) == exp_type);
  400. }
  401. static inline int TLV_SET(void *tlv, __u16 type, void *data, __u16 len)
  402. {
  403. struct tlv_desc *tlv_ptr;
  404. int tlv_len;
  405. tlv_len = TLV_LENGTH(len);
  406. tlv_ptr = (struct tlv_desc *)tlv;
  407. tlv_ptr->tlv_type = htons(type);
  408. tlv_ptr->tlv_len = htons(tlv_len);
  409. if (len && data)
  410. memcpy(TLV_DATA(tlv_ptr), data, tlv_len);
  411. return TLV_SPACE(len);
  412. }
  413. /*
  414. * A TLV list descriptor simplifies processing of messages
  415. * containing multiple TLVs.
  416. */
  417. struct tlv_list_desc {
  418. struct tlv_desc *tlv_ptr; /* ptr to current TLV */
  419. __u32 tlv_space; /* # bytes from curr TLV to list end */
  420. };
  421. static inline void TLV_LIST_INIT(struct tlv_list_desc *list,
  422. void *data, __u32 space)
  423. {
  424. list->tlv_ptr = (struct tlv_desc *)data;
  425. list->tlv_space = space;
  426. }
  427. static inline int TLV_LIST_EMPTY(struct tlv_list_desc *list)
  428. {
  429. return (list->tlv_space == 0);
  430. }
  431. static inline int TLV_LIST_CHECK(struct tlv_list_desc *list, __u16 exp_type)
  432. {
  433. return TLV_CHECK(list->tlv_ptr, list->tlv_space, exp_type);
  434. }
  435. static inline void *TLV_LIST_DATA(struct tlv_list_desc *list)
  436. {
  437. return TLV_DATA(list->tlv_ptr);
  438. }
  439. static inline void TLV_LIST_STEP(struct tlv_list_desc *list)
  440. {
  441. __u16 tlv_space = TLV_ALIGN(ntohs(list->tlv_ptr->tlv_len));
  442. list->tlv_ptr = (struct tlv_desc *)((char *)list->tlv_ptr + tlv_space);
  443. list->tlv_space -= tlv_space;
  444. }
  445. /*
  446. * Configuration messages exchanged via NETLINK_GENERIC use the following
  447. * family id, name, version and command.
  448. */
  449. #define TIPC_GENL_NAME "TIPC"
  450. #define TIPC_GENL_VERSION 0x1
  451. #define TIPC_GENL_CMD 0x1
  452. /*
  453. * TIPC specific header used in NETLINK_GENERIC requests.
  454. */
  455. struct tipc_genlmsghdr {
  456. __u32 dest; /* Destination address */
  457. __u16 cmd; /* Command */
  458. __u16 reserved; /* Unused */
  459. };
  460. #define TIPC_GENL_HDRLEN NLMSG_ALIGN(sizeof(struct tipc_genlmsghdr))
  461. /*
  462. * Configuration messages exchanged via TIPC sockets use the TIPC configuration
  463. * message header, which is defined below. This structure is analogous
  464. * to the Netlink message header, but fields are stored in network byte order
  465. * and no padding is permitted between the header and the message data
  466. * that follows.
  467. */
  468. struct tipc_cfg_msg_hdr
  469. {
  470. __u32 tcm_len; /* Message length (including header) */
  471. __u16 tcm_type; /* Command type */
  472. __u16 tcm_flags; /* Additional flags */
  473. char tcm_reserved[8]; /* Unused */
  474. };
  475. #define TCM_F_REQUEST 0x1 /* Flag: Request message */
  476. #define TCM_F_MORE 0x2 /* Flag: Message to be continued */
  477. #define TCM_ALIGN(datalen) (((datalen)+3) & ~3)
  478. #define TCM_LENGTH(datalen) (sizeof(struct tipc_cfg_msg_hdr) + datalen)
  479. #define TCM_SPACE(datalen) (TCM_ALIGN(TCM_LENGTH(datalen)))
  480. #define TCM_DATA(tcm_hdr) ((void *)((char *)(tcm_hdr) + TCM_LENGTH(0)))
  481. static inline int TCM_SET(void *msg, __u16 cmd, __u16 flags,
  482. void *data, __u16 data_len)
  483. {
  484. struct tipc_cfg_msg_hdr *tcm_hdr;
  485. int msg_len;
  486. msg_len = TCM_LENGTH(data_len);
  487. tcm_hdr = (struct tipc_cfg_msg_hdr *)msg;
  488. tcm_hdr->tcm_len = htonl(msg_len);
  489. tcm_hdr->tcm_type = htons(cmd);
  490. tcm_hdr->tcm_flags = htons(flags);
  491. if (data_len && data)
  492. memcpy(TCM_DATA(msg), data, data_len);
  493. return TCM_SPACE(data_len);
  494. }
  495. #endif