Blame view

include/linux/tipc_config.h 14.1 KB
ea714ccda   Per Liden   [TIPC] Moved conf...
1
2
  /*
   * include/linux/tipc_config.h: Include file for TIPC configuration interface
0e65967e3   Allan Stephens   tipc: cleanup var...
3
   *
9da1c8b69   Per Liden   [TIPC] Update of ...
4
   * Copyright (c) 2003-2006, Ericsson AB
77c81e0bb   Allan Stephens   tipc: Clean out a...
5
   * Copyright (c) 2005-2007, 2010-2011, Wind River Systems
ea714ccda   Per Liden   [TIPC] Moved conf...
6
7
   * All rights reserved.
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
8
   * Redistribution and use in source and binary forms, with or without
ea714ccda   Per Liden   [TIPC] Moved conf...
9
10
   * modification, are permitted provided that the following conditions are met:
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
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.
ea714ccda   Per Liden   [TIPC] Moved conf...
19
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
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
ea714ccda   Per Liden   [TIPC] Moved conf...
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
   * POSSIBILITY OF SUCH DAMAGE.
   */
  
  #ifndef _LINUX_TIPC_CONFIG_H_
  #define _LINUX_TIPC_CONFIG_H_
  
  #include <linux/types.h>
  #include <linux/string.h>
  #include <asm/byteorder.h>
  
  /*
   * Configuration
   *
   * All configuration management messaging involves sending a request message
   * to the TIPC configuration service on a node, which sends a reply message
   * back.  (In the future multi-message replies may be supported.)
   *
   * Both request and reply messages consist of a transport header and payload.
   * The transport header contains info about the desired operation;
   * the payload consists of zero or more type/length/value (TLV) items
   * which specify parameters or results for the operation.
   *
   * For many operations, the request and reply messages have a fixed number
0e65967e3   Allan Stephens   tipc: cleanup var...
57
   * of TLVs (usually zero or one); however, some reply messages may return
ea714ccda   Per Liden   [TIPC] Moved conf...
58
59
60
61
   * a variable number of TLVs.  A failed request is denoted by the presence
   * of an "error string" TLV in the reply message instead of the TLV(s) the
   * reply should contain if the request succeeds.
   */
0e65967e3   Allan Stephens   tipc: cleanup var...
62
63
  
  /*
ea714ccda   Per Liden   [TIPC] Moved conf...
64
65
   * Public commands:
   * May be issued by any process.
0e65967e3   Allan Stephens   tipc: cleanup var...
66
   * Accepted by own node, or by remote node only if remote management enabled.
ea714ccda   Per Liden   [TIPC] Moved conf...
67
   */
0e65967e3   Allan Stephens   tipc: cleanup var...
68
69
  
  #define  TIPC_CMD_NOOP              0x0000    /* tx none, rx none */
ea714ccda   Per Liden   [TIPC] Moved conf...
70
71
72
73
74
75
76
  #define  TIPC_CMD_GET_NODES         0x0001    /* tx net_addr, rx node_info(s) */
  #define  TIPC_CMD_GET_MEDIA_NAMES   0x0002    /* tx none, rx media_name(s) */
  #define  TIPC_CMD_GET_BEARER_NAMES  0x0003    /* tx none, rx bearer_name(s) */
  #define  TIPC_CMD_GET_LINKS         0x0004    /* tx net_addr, rx link_info(s) */
  #define  TIPC_CMD_SHOW_NAME_TABLE   0x0005    /* tx name_tbl_query, rx ultra_string */
  #define  TIPC_CMD_SHOW_PORTS        0x0006    /* tx none, rx ultra_string */
  #define  TIPC_CMD_SHOW_LINK_STATS   0x000B    /* tx link_name, rx ultra_string */
107e7be62   Allan Stephens   tipc: Add support...
77
  #define  TIPC_CMD_SHOW_STATS        0x000F    /* tx unsigned, rx ultra_string */
ea714ccda   Per Liden   [TIPC] Moved conf...
78

0e65967e3   Allan Stephens   tipc: cleanup var...
79
  /*
ea714ccda   Per Liden   [TIPC] Moved conf...
80
81
82
   * Protected commands:
   * May only be issued by "network administration capable" process.
   * Accepted by own node, or by remote node only if remote management enabled
0e65967e3   Allan Stephens   tipc: cleanup var...
83
   * and this node is zone manager.
ea714ccda   Per Liden   [TIPC] Moved conf...
84
85
86
87
88
89
   */
  
  #define  TIPC_CMD_GET_REMOTE_MNG    0x4003    /* tx none, rx unsigned */
  #define  TIPC_CMD_GET_MAX_PORTS     0x4004    /* tx none, rx unsigned */
  #define  TIPC_CMD_GET_MAX_PUBL      0x4005    /* tx none, rx unsigned */
  #define  TIPC_CMD_GET_MAX_SUBSCR    0x4006    /* tx none, rx unsigned */
51f98a8d7   Allan Stephens   tipc: Remove prot...
90
  #define  TIPC_CMD_GET_MAX_ZONES     0x4007    /* obsoleted */
8f92df6ad   Allan Stephens   tipc: Remove prot...
91
  #define  TIPC_CMD_GET_MAX_CLUSTERS  0x4008    /* obsoleted */
f831c963b   Allan Stephens   tipc: Eliminate c...
92
  #define  TIPC_CMD_GET_MAX_NODES     0x4009    /* obsoleted */
08c80e9a0   Allan Stephens   tipc: Remove prot...
93
  #define  TIPC_CMD_GET_MAX_SLAVES    0x400A    /* obsoleted */
ea714ccda   Per Liden   [TIPC] Moved conf...
94
95
96
97
98
99
100
101
102
103
  #define  TIPC_CMD_GET_NETID         0x400B    /* tx none, rx unsigned */
  
  #define  TIPC_CMD_ENABLE_BEARER     0x4101    /* tx bearer_config, rx none */
  #define  TIPC_CMD_DISABLE_BEARER    0x4102    /* tx bearer_name, rx none */
  #define  TIPC_CMD_SET_LINK_TOL      0x4107    /* tx link_config, rx none */
  #define  TIPC_CMD_SET_LINK_PRI      0x4108    /* tx link_config, rx none */
  #define  TIPC_CMD_SET_LINK_WINDOW   0x4109    /* tx link_config, rx none */
  #define  TIPC_CMD_SET_LOG_SIZE      0x410A    /* tx unsigned, rx none */
  #define  TIPC_CMD_DUMP_LOG          0x410B    /* tx none, rx ultra_string */
  #define  TIPC_CMD_RESET_LINK_STATS  0x410C    /* tx link_name, rx none */
0e65967e3   Allan Stephens   tipc: cleanup var...
104
  /*
ea714ccda   Per Liden   [TIPC] Moved conf...
105
106
   * Private commands:
   * May only be issued by "network administration capable" process.
0e65967e3   Allan Stephens   tipc: cleanup var...
107
   * Accepted by own node only; cannot be used on a remote node.
ea714ccda   Per Liden   [TIPC] Moved conf...
108
109
110
   */
  
  #define  TIPC_CMD_SET_NODE_ADDR     0x8001    /* tx net_addr, rx none */
ea714ccda   Per Liden   [TIPC] Moved conf...
111
112
113
114
  #define  TIPC_CMD_SET_REMOTE_MNG    0x8003    /* tx unsigned, rx none */
  #define  TIPC_CMD_SET_MAX_PORTS     0x8004    /* tx unsigned, rx none */
  #define  TIPC_CMD_SET_MAX_PUBL      0x8005    /* tx unsigned, rx none */
  #define  TIPC_CMD_SET_MAX_SUBSCR    0x8006    /* tx unsigned, rx none */
51f98a8d7   Allan Stephens   tipc: Remove prot...
115
  #define  TIPC_CMD_SET_MAX_ZONES     0x8007    /* obsoleted */
8f92df6ad   Allan Stephens   tipc: Remove prot...
116
  #define  TIPC_CMD_SET_MAX_CLUSTERS  0x8008    /* obsoleted */
f831c963b   Allan Stephens   tipc: Eliminate c...
117
  #define  TIPC_CMD_SET_MAX_NODES     0x8009    /* obsoleted */
08c80e9a0   Allan Stephens   tipc: Remove prot...
118
  #define  TIPC_CMD_SET_MAX_SLAVES    0x800A    /* obsoleted */
ea714ccda   Per Liden   [TIPC] Moved conf...
119
120
121
  #define  TIPC_CMD_SET_NETID         0x800B    /* tx unsigned, rx none */
  
  /*
59f0c4523   Allan Stephens   tipc: Fix skb_und...
122
123
124
125
126
127
128
129
   * Reserved commands:
   * May not be issued by any process.
   * Used internally by TIPC.
   */
  
  #define  TIPC_CMD_NOT_NET_ADMIN     0xC001    /* tx none, rx none */
  
  /*
ea714ccda   Per Liden   [TIPC] Moved conf...
130
131
132
133
134
135
136
137
138
139
140
   * TLV types defined for TIPC
   */
  
  #define TIPC_TLV_NONE		0	/* no TLV present */
  #define TIPC_TLV_VOID		1	/* empty TLV (0 data bytes)*/
  #define TIPC_TLV_UNSIGNED	2	/* 32-bit integer */
  #define TIPC_TLV_STRING		3	/* char[128] (max) */
  #define TIPC_TLV_LARGE_STRING	4	/* char[2048] (max) */
  #define TIPC_TLV_ULTRA_STRING	5	/* char[32768] (max) */
  
  #define TIPC_TLV_ERROR_STRING	16	/* char[128] containing "error code" */
0e65967e3   Allan Stephens   tipc: cleanup var...
141
  #define TIPC_TLV_NET_ADDR	17	/* 32-bit integer denoting <Z.C.N> */
ea714ccda   Per Liden   [TIPC] Moved conf...
142
143
144
145
146
  #define TIPC_TLV_MEDIA_NAME	18	/* char[TIPC_MAX_MEDIA_NAME] */
  #define TIPC_TLV_BEARER_NAME	19	/* char[TIPC_MAX_BEARER_NAME] */
  #define TIPC_TLV_LINK_NAME	20	/* char[TIPC_MAX_LINK_NAME] */
  #define TIPC_TLV_NODE_INFO	21	/* struct tipc_node_info */
  #define TIPC_TLV_LINK_INFO	22	/* struct tipc_link_info */
0e65967e3   Allan Stephens   tipc: cleanup var...
147
148
  #define TIPC_TLV_BEARER_CONFIG	23	/* struct tipc_bearer_config */
  #define TIPC_TLV_LINK_CONFIG	24	/* struct tipc_link_config */
ea714ccda   Per Liden   [TIPC] Moved conf...
149
  #define TIPC_TLV_NAME_TBL_QUERY	25	/* struct tipc_name_table_query */
0e65967e3   Allan Stephens   tipc: cleanup var...
150
  #define TIPC_TLV_PORT_REF	26	/* 32-bit port reference */
ea714ccda   Per Liden   [TIPC] Moved conf...
151
152
153
  
  /*
   * Maximum sizes of TIPC bearer-related names (including terminating NUL)
0e65967e3   Allan Stephens   tipc: cleanup var...
154
   */
ea714ccda   Per Liden   [TIPC] Moved conf...
155
156
157
158
159
160
161
  
  #define TIPC_MAX_MEDIA_NAME	16	/* format = media */
  #define TIPC_MAX_IF_NAME	16	/* format = interface */
  #define TIPC_MAX_BEARER_NAME	32	/* format = media:interface */
  #define TIPC_MAX_LINK_NAME	60	/* format = Z.C.N:interface-Z.C.N:interface */
  
  /*
16cb4b333   Per Liden   [TIPC] Updated li...
162
   * Link priority limits (min, default, max, media default)
ea714ccda   Per Liden   [TIPC] Moved conf...
163
   */
16cb4b333   Per Liden   [TIPC] Updated li...
164
165
166
167
  #define TIPC_MIN_LINK_PRI	0
  #define TIPC_DEF_LINK_PRI	10
  #define TIPC_MAX_LINK_PRI	31
  #define TIPC_MEDIA_LINK_PRI	(TIPC_MAX_LINK_PRI + 1)
ea714ccda   Per Liden   [TIPC] Moved conf...
168
169
170
171
172
173
174
175
  
  /*
   * Link tolerance limits (min, default, max), in ms
   */
  
  #define TIPC_MIN_LINK_TOL 50
  #define TIPC_DEF_LINK_TOL 1500
  #define TIPC_MAX_LINK_TOL 30000
5413b4c6c   Allan Stephens   tipc: Improve han...
176
177
178
  #if (TIPC_MIN_LINK_TOL < 16)
  #error "TIPC_MIN_LINK_TOL is too small (abort limit may be NaN)"
  #endif
ea714ccda   Per Liden   [TIPC] Moved conf...
179
180
181
182
183
184
185
186
187
188
  /*
   * Link window limits (min, default, max), in packets
   */
  
  #define TIPC_MIN_LINK_WIN 16
  #define TIPC_DEF_LINK_WIN 50
  #define TIPC_MAX_LINK_WIN 150
  
  
  struct tipc_node_info {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
189
190
  	__be32 addr;			/* network address of node */
  	__be32 up;			/* 0=down, 1= up */
ea714ccda   Per Liden   [TIPC] Moved conf...
191
192
193
  };
  
  struct tipc_link_info {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
194
195
  	__be32 dest;			/* network address of peer node */
  	__be32 up;			/* 0=down, 1=up */
ea714ccda   Per Liden   [TIPC] Moved conf...
196
197
198
199
  	char str[TIPC_MAX_LINK_NAME];	/* link name */
  };
  
  struct tipc_bearer_config {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
200
  	__be32 priority;		/* Range [1,31]. Override per link  */
50d3e6399   Allan Stephens   tipc: Correct mis...
201
  	__be32 disc_domain;		/* <Z.C.N> describing desired nodes */
ea714ccda   Per Liden   [TIPC] Moved conf...
202
203
204
205
  	char name[TIPC_MAX_BEARER_NAME];
  };
  
  struct tipc_link_config {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
206
  	__be32 value;
ea714ccda   Per Liden   [TIPC] Moved conf...
207
208
209
210
211
212
  	char name[TIPC_MAX_LINK_NAME];
  };
  
  #define TIPC_NTQ_ALLTYPES 0x80000000
  
  struct tipc_name_table_query {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
213
214
215
216
  	__be32 depth;	/* 1:type, 2:+name info, 3:+port info, 4+:+debug info */
  	__be32 type;	/* {t,l,u} info ignored if high bit of "depth" is set */
  	__be32 lowbound; /* (i.e. displays all entries of name table) */
  	__be32 upbound;
ea714ccda   Per Liden   [TIPC] Moved conf...
217
218
219
  };
  
  /*
0e65967e3   Allan Stephens   tipc: cleanup var...
220
   * The error string TLV is a null-terminated string describing the cause
ea714ccda   Per Liden   [TIPC] Moved conf...
221
222
223
224
225
226
227
228
229
230
231
   * of the request failure.  To simplify error processing (and to save space)
   * the first character of the string can be a special error code character
   * (lying by the range 0x80 to 0xFF) which represents a pre-defined reason.
   */
  
  #define TIPC_CFG_TLV_ERROR      "\x80"  /* request contains incorrect TLV(s) */
  #define TIPC_CFG_NOT_NET_ADMIN  "\x81"	/* must be network administrator */
  #define TIPC_CFG_NOT_ZONE_MSTR	"\x82"	/* must be zone master */
  #define TIPC_CFG_NO_REMOTE	"\x83"	/* remote management not enabled */
  #define TIPC_CFG_NOT_SUPPORTED  "\x84"	/* request is not supported by TIPC */
  #define TIPC_CFG_INVALID_VALUE  "\x85"  /* request has invalid argument value */
ea714ccda   Per Liden   [TIPC] Moved conf...
232
233
  /*
   * A TLV consists of a descriptor, followed by the TLV value.
0e65967e3   Allan Stephens   tipc: cleanup var...
234
   * TLV descriptor fields are stored in network byte order;
ea714ccda   Per Liden   [TIPC] Moved conf...
235
236
237
238
239
240
241
   * TLV values must also be stored in network byte order (where applicable).
   * TLV descriptors must be aligned to addresses which are multiple of 4,
   * so up to 3 bytes of padding may exist at the end of the TLV value area.
   * There must not be any padding between the TLV descriptor and its value.
   */
  
  struct tlv_desc {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
242
243
  	__be16 tlv_len;		/* TLV length (descriptor + value) */
  	__be16 tlv_type;		/* TLV identifier */
ea714ccda   Per Liden   [TIPC] Moved conf...
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
  };
  
  #define TLV_ALIGNTO 4
  
  #define TLV_ALIGN(datalen) (((datalen)+(TLV_ALIGNTO-1)) & ~(TLV_ALIGNTO-1))
  #define TLV_LENGTH(datalen) (sizeof(struct tlv_desc) + (datalen))
  #define TLV_SPACE(datalen) (TLV_ALIGN(TLV_LENGTH(datalen)))
  #define TLV_DATA(tlv) ((void *)((char *)(tlv) + TLV_LENGTH(0)))
  
  static inline int TLV_OK(const void *tlv, __u16 space)
  {
  	/*
  	 * Would also like to check that "tlv" is a multiple of 4,
  	 * but don't know how to do this in a portable way.
  	 * - Tried doing (!(tlv & (TLV_ALIGNTO-1))), but GCC compiler
  	 *   won't allow binary "&" with a pointer.
  	 * - Tried casting "tlv" to integer type, but causes warning about size
  	 *   mismatch when pointer is bigger than chosen type (int, long, ...).
  	 */
  
  	return (space >= TLV_SPACE(0)) &&
  		(ntohs(((struct tlv_desc *)tlv)->tlv_len) <= space);
  }
  
  static inline int TLV_CHECK(const void *tlv, __u16 space, __u16 exp_type)
  {
0e65967e3   Allan Stephens   tipc: cleanup var...
270
  	return TLV_OK(tlv, space) &&
ea714ccda   Per Liden   [TIPC] Moved conf...
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  		(ntohs(((struct tlv_desc *)tlv)->tlv_type) == exp_type);
  }
  
  static inline int TLV_SET(void *tlv, __u16 type, void *data, __u16 len)
  {
  	struct tlv_desc *tlv_ptr;
  	int tlv_len;
  
  	tlv_len = TLV_LENGTH(len);
  	tlv_ptr = (struct tlv_desc *)tlv;
  	tlv_ptr->tlv_type = htons(type);
  	tlv_ptr->tlv_len  = htons(tlv_len);
  	if (len && data)
  		memcpy(TLV_DATA(tlv_ptr), data, tlv_len);
  	return TLV_SPACE(len);
  }
  
  /*
0e65967e3   Allan Stephens   tipc: cleanup var...
289
   * A TLV list descriptor simplifies processing of messages
ea714ccda   Per Liden   [TIPC] Moved conf...
290
291
292
293
294
295
296
   * containing multiple TLVs.
   */
  
  struct tlv_list_desc {
  	struct tlv_desc *tlv_ptr;	/* ptr to current TLV */
  	__u32 tlv_space;		/* # bytes from curr TLV to list end */
  };
0e65967e3   Allan Stephens   tipc: cleanup var...
297
  static inline void TLV_LIST_INIT(struct tlv_list_desc *list,
ea714ccda   Per Liden   [TIPC] Moved conf...
298
299
300
301
302
  				 void *data, __u32 space)
  {
  	list->tlv_ptr = (struct tlv_desc *)data;
  	list->tlv_space = space;
  }
0e65967e3   Allan Stephens   tipc: cleanup var...
303

ea714ccda   Per Liden   [TIPC] Moved conf...
304
  static inline int TLV_LIST_EMPTY(struct tlv_list_desc *list)
0e65967e3   Allan Stephens   tipc: cleanup var...
305
  {
ea714ccda   Per Liden   [TIPC] Moved conf...
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
  	return (list->tlv_space == 0);
  }
  
  static inline int TLV_LIST_CHECK(struct tlv_list_desc *list, __u16 exp_type)
  {
  	return TLV_CHECK(list->tlv_ptr, list->tlv_space, exp_type);
  }
  
  static inline void *TLV_LIST_DATA(struct tlv_list_desc *list)
  {
  	return TLV_DATA(list->tlv_ptr);
  }
  
  static inline void TLV_LIST_STEP(struct tlv_list_desc *list)
  {
  	__u16 tlv_space = TLV_ALIGN(ntohs(list->tlv_ptr->tlv_len));
0e65967e3   Allan Stephens   tipc: cleanup var...
322
  	list->tlv_ptr = (struct tlv_desc *)((char *)list->tlv_ptr + tlv_space);
ea714ccda   Per Liden   [TIPC] Moved conf...
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
  	list->tlv_space -= tlv_space;
  }
  
  /*
   * Configuration messages exchanged via NETLINK_GENERIC use the following
   * family id, name, version and command.
   */
  #define TIPC_GENL_NAME		"TIPC"
  #define TIPC_GENL_VERSION	0x1
  #define TIPC_GENL_CMD		0x1
  
  /*
   * TIPC specific header used in NETLINK_GENERIC requests.
   */
  struct tipc_genlmsghdr {
  	__u32 dest;		/* Destination address */
  	__u16 cmd;		/* Command */
  	__u16 reserved;		/* Unused */
  };
  
  #define TIPC_GENL_HDRLEN	NLMSG_ALIGN(sizeof(struct tipc_genlmsghdr))
  
  /*
0e65967e3   Allan Stephens   tipc: cleanup var...
346
347
348
349
   * Configuration messages exchanged via TIPC sockets use the TIPC configuration
   * message header, which is defined below.  This structure is analogous
   * to the Netlink message header, but fields are stored in network byte order
   * and no padding is permitted between the header and the message data
ea714ccda   Per Liden   [TIPC] Moved conf...
350
351
   * that follows.
   */
0e65967e3   Allan Stephens   tipc: cleanup var...
352
  struct tipc_cfg_msg_hdr {
3e6c8cd56   Al Viro   [TIPC]: endiannes...
353
354
355
  	__be32 tcm_len;		/* Message length (including header) */
  	__be16 tcm_type;	/* Command type */
  	__be16 tcm_flags;	/* Additional flags */
ea714ccda   Per Liden   [TIPC] Moved conf...
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
  	char  tcm_reserved[8];	/* Unused */
  };
  
  #define TCM_F_REQUEST	0x1	/* Flag: Request message */
  #define TCM_F_MORE	0x2	/* Flag: Message to be continued */
  
  #define TCM_ALIGN(datalen)  (((datalen)+3) & ~3)
  #define TCM_LENGTH(datalen) (sizeof(struct tipc_cfg_msg_hdr) + datalen)
  #define TCM_SPACE(datalen)  (TCM_ALIGN(TCM_LENGTH(datalen)))
  #define TCM_DATA(tcm_hdr)   ((void *)((char *)(tcm_hdr) + TCM_LENGTH(0)))
  
  static inline int TCM_SET(void *msg, __u16 cmd, __u16 flags,
  			  void *data, __u16 data_len)
  {
  	struct tipc_cfg_msg_hdr *tcm_hdr;
  	int msg_len;
  
  	msg_len = TCM_LENGTH(data_len);
  	tcm_hdr = (struct tipc_cfg_msg_hdr *)msg;
  	tcm_hdr->tcm_len   = htonl(msg_len);
  	tcm_hdr->tcm_type  = htons(cmd);
  	tcm_hdr->tcm_flags = htons(flags);
  	if (data_len && data)
  		memcpy(TCM_DATA(msg), data, data_len);
  	return TCM_SPACE(data_len);
  }
  
  #endif