Blame view

include/uapi/linux/tipc.h 6.82 KB
b97bf3fd8   Per Liden   [TIPC] Initial merge
1
  /*
8941bbcd5   Ying Xue   tipc: update code...
2
   * include/uapi/linux/tipc.h: Header for TIPC socket 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, 2010-2011, Wind River Systems
b97bf3fd8   Per Liden   [TIPC] Initial merge
6
7
   * All rights reserved.
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
8
   * Redistribution and use in source and binary forms, with or without
b97bf3fd8   Per Liden   [TIPC] Initial merge
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.
b97bf3fd8   Per Liden   [TIPC] Initial merge
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
b97bf3fd8   Per Liden   [TIPC] Initial merge
34
35
36
37
38
39
40
   * POSSIBILITY OF SUCH DAMAGE.
   */
  
  #ifndef _LINUX_TIPC_H_
  #define _LINUX_TIPC_H_
  
  #include <linux/types.h>
78acb1f9b   Erik Hugne   tipc: add ioctl t...
41
  #include <linux/sockios.h>
b97bf3fd8   Per Liden   [TIPC] Initial merge
42
43
44
45
  
  /*
   * TIPC addressing primitives
   */
0e65967e3   Allan Stephens   tipc: cleanup var...
46

b97bf3fd8   Per Liden   [TIPC] Initial merge
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  struct tipc_portid {
  	__u32 ref;
  	__u32 node;
  };
  
  struct tipc_name {
  	__u32 type;
  	__u32 instance;
  };
  
  struct tipc_name_seq {
  	__u32 type;
  	__u32 lower;
  	__u32 upper;
  };
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  /* TIPC Address Size, Offset, Mask specification for Z.C.N
   */
  #define TIPC_NODE_BITS          12
  #define TIPC_CLUSTER_BITS       12
  #define TIPC_ZONE_BITS          8
  
  #define TIPC_NODE_OFFSET        0
  #define TIPC_CLUSTER_OFFSET     TIPC_NODE_BITS
  #define TIPC_ZONE_OFFSET        (TIPC_CLUSTER_OFFSET + TIPC_CLUSTER_BITS)
  
  #define TIPC_NODE_SIZE          ((1UL << TIPC_NODE_BITS) - 1)
  #define TIPC_CLUSTER_SIZE       ((1UL << TIPC_CLUSTER_BITS) - 1)
  #define TIPC_ZONE_SIZE          ((1UL << TIPC_ZONE_BITS) - 1)
  
  #define TIPC_NODE_MASK		(TIPC_NODE_SIZE << TIPC_NODE_OFFSET)
  #define TIPC_CLUSTER_MASK	(TIPC_CLUSTER_SIZE << TIPC_CLUSTER_OFFSET)
  #define TIPC_ZONE_MASK		(TIPC_ZONE_SIZE << TIPC_ZONE_OFFSET)
  
  #define TIPC_ZONE_CLUSTER_MASK (TIPC_ZONE_MASK | TIPC_CLUSTER_MASK)
b97bf3fd8   Per Liden   [TIPC] Initial merge
81
82
83
84
  static inline __u32 tipc_addr(unsigned int zone,
  			      unsigned int cluster,
  			      unsigned int node)
  {
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
85
86
87
  	return (zone << TIPC_ZONE_OFFSET) |
  		(cluster << TIPC_CLUSTER_OFFSET) |
  		node;
b97bf3fd8   Per Liden   [TIPC] Initial merge
88
89
90
91
  }
  
  static inline unsigned int tipc_zone(__u32 addr)
  {
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
92
  	return addr >> TIPC_ZONE_OFFSET;
b97bf3fd8   Per Liden   [TIPC] Initial merge
93
94
95
96
  }
  
  static inline unsigned int tipc_cluster(__u32 addr)
  {
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
97
  	return (addr & TIPC_CLUSTER_MASK) >> TIPC_CLUSTER_OFFSET;
b97bf3fd8   Per Liden   [TIPC] Initial merge
98
99
100
101
  }
  
  static inline unsigned int tipc_node(__u32 addr)
  {
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
102
  	return addr & TIPC_NODE_MASK;
b97bf3fd8   Per Liden   [TIPC] Initial merge
103
104
105
106
107
  }
  
  /*
   * Application-accessible port name types
   */
ea714ccda   Per Liden   [TIPC] Moved conf...
108
109
  #define TIPC_CFG_SRV		0	/* configuration service name type */
  #define TIPC_TOP_SRV		1	/* topology service name type */
a89778d8b   Erik Hugne   tipc: add support...
110
  #define TIPC_LINK_STATE		2	/* link state name type */
b97bf3fd8   Per Liden   [TIPC] Initial merge
111
  #define TIPC_RESERVED_TYPES	64	/* lowest user-publishable name type */
0e65967e3   Allan Stephens   tipc: cleanup var...
112
  /*
b97bf3fd8   Per Liden   [TIPC] Initial merge
113
114
   * Publication scopes when binding port names and port name sequences
   */
ea714ccda   Per Liden   [TIPC] Moved conf...
115
116
117
  #define TIPC_ZONE_SCOPE		1
  #define TIPC_CLUSTER_SCOPE	2
  #define TIPC_NODE_SCOPE		3
b97bf3fd8   Per Liden   [TIPC] Initial merge
118
119
120
121
  
  /*
   * Limiting values for messages
   */
c29c3f70c   Allan Stephens   tipc: Abort exces...
122
  #define TIPC_MAX_USER_MSG_SIZE	66000U
b97bf3fd8   Per Liden   [TIPC] Initial merge
123

ea714ccda   Per Liden   [TIPC] Moved conf...
124
  /*
b97bf3fd8   Per Liden   [TIPC] Initial merge
125
126
   * Message importance levels
   */
8e1c298c0   Allan Stephens   tipc: Update comm...
127
  #define TIPC_LOW_IMPORTANCE		0
b97bf3fd8   Per Liden   [TIPC] Initial merge
128
129
130
  #define TIPC_MEDIUM_IMPORTANCE		1
  #define TIPC_HIGH_IMPORTANCE		2
  #define TIPC_CRITICAL_IMPORTANCE	3
0e65967e3   Allan Stephens   tipc: cleanup var...
131
  /*
b97bf3fd8   Per Liden   [TIPC] Initial merge
132
133
134
135
136
137
138
139
140
141
142
143
144
   * Msg rejection/connection shutdown reasons
   */
  
  #define TIPC_OK			0
  #define TIPC_ERR_NO_NAME	1
  #define TIPC_ERR_NO_PORT	2
  #define TIPC_ERR_NO_NODE	3
  #define TIPC_ERR_OVERLOAD	4
  #define TIPC_CONN_SHUTDOWN	5
  
  /*
   * TIPC topology subscription service definitions
   */
0e65967e3   Allan Stephens   tipc: cleanup var...
145
146
147
  #define TIPC_SUB_PORTS		0x01	/* filter for port availability */
  #define TIPC_SUB_SERVICE	0x02	/* filter for service availability */
  #define TIPC_SUB_CANCEL		0x04	/* cancel a subscription */
b97bf3fd8   Per Liden   [TIPC] Initial merge
148

0e65967e3   Allan Stephens   tipc: cleanup var...
149
  #define TIPC_WAIT_FOREVER	(~0)	/* timeout for permanent subscription */
b97bf3fd8   Per Liden   [TIPC] Initial merge
150
151
  
  struct tipc_subscr {
8c9744380   Neil Horman   Revert c6537d6742...
152
153
  	struct tipc_name_seq seq;	/* name sequence of interest */
  	__u32 timeout;			/* subscription duration (in ms) */
0e65967e3   Allan Stephens   tipc: cleanup var...
154
  	__u32 filter;			/* bitmask of filter options */
8c9744380   Neil Horman   Revert c6537d6742...
155
  	char usr_handle[8];		/* available for subscriber use */
b97bf3fd8   Per Liden   [TIPC] Initial merge
156
  };
ea714ccda   Per Liden   [TIPC] Moved conf...
157
158
159
  #define TIPC_PUBLISHED		1	/* publication event */
  #define TIPC_WITHDRAWN		2	/* withdraw event */
  #define TIPC_SUBSCR_TIMEOUT	3	/* subscription timeout event */
b97bf3fd8   Per Liden   [TIPC] Initial merge
160
161
  
  struct tipc_event {
8c9744380   Neil Horman   Revert c6537d6742...
162
163
164
165
166
  	__u32 event;			/* event type */
  	__u32 found_lower;		/* matching name seq instances */
  	__u32 found_upper;		/*    "      "    "     "      */
  	struct tipc_portid port;	/* associated port */
  	struct tipc_subscr s;		/* associated subscription */
b97bf3fd8   Per Liden   [TIPC] Initial merge
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
  };
  
  /*
   * Socket API
   */
  
  #ifndef AF_TIPC
  #define AF_TIPC		30
  #endif
  
  #ifndef PF_TIPC
  #define PF_TIPC		AF_TIPC
  #endif
  
  #ifndef SOL_TIPC
  #define SOL_TIPC	271
  #endif
ea714ccda   Per Liden   [TIPC] Moved conf...
184
185
186
187
  #define TIPC_ADDR_NAMESEQ	1
  #define TIPC_ADDR_MCAST		1
  #define TIPC_ADDR_NAME		2
  #define TIPC_ADDR_ID		3
b97bf3fd8   Per Liden   [TIPC] Initial merge
188
189
190
191
192
193
194
195
196
197
  
  struct sockaddr_tipc {
  	unsigned short family;
  	unsigned char  addrtype;
  	signed   char  scope;
  	union {
  		struct tipc_portid id;
  		struct tipc_name_seq nameseq;
  		struct {
  			struct tipc_name name;
8e1c298c0   Allan Stephens   tipc: Update comm...
198
  			__u32 domain;
b97bf3fd8   Per Liden   [TIPC] Initial merge
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  		} name;
  	} addr;
  };
  
  /*
   * Ancillary data objects supported by recvmsg()
   */
  
  #define TIPC_ERRINFO	1	/* error info */
  #define TIPC_RETDATA	2	/* returned data */
  #define TIPC_DESTNAME	3	/* destination name */
  
  /*
   * TIPC-specific socket option values
   */
  
  #define TIPC_IMPORTANCE		127	/* Default: TIPC_LOW_IMPORTANCE */
8e1c298c0   Allan Stephens   tipc: Update comm...
216
  #define TIPC_SRC_DROPPABLE	128	/* Default: based on socket type */
b97bf3fd8   Per Liden   [TIPC] Initial merge
217
  #define TIPC_DEST_DROPPABLE	129	/* Default: based on socket type */
ea714ccda   Per Liden   [TIPC] Moved conf...
218
  #define TIPC_CONN_TIMEOUT	130	/* Default: 8000 (ms)  */
6650613d3   oscar.medina@motorola.com   tipc: Add socket ...
219
220
  #define TIPC_NODE_RECVQ_DEPTH	131	/* Default: none (read only) */
  #define TIPC_SOCK_RECVQ_DEPTH	132	/* Default: none (read only) */
b97bf3fd8   Per Liden   [TIPC] Initial merge
221

78acb1f9b   Erik Hugne   tipc: add ioctl t...
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
  /*
   * Maximum sizes of TIPC bearer-related names (including terminating NULL)
   * The string formatting for each name element is:
   * media: media
   * interface: media:interface name
   * link: Z.C.N:interface-Z.C.N:interface
   *
   */
  
  #define TIPC_MAX_MEDIA_NAME	16
  #define TIPC_MAX_IF_NAME	16
  #define TIPC_MAX_BEARER_NAME	32
  #define TIPC_MAX_LINK_NAME	60
  
  #define SIOCGETLINKNAME		SIOCPROTOPRIVATE
  
  struct tipc_sioc_ln_req {
  	__u32 peer;
  	__u32 bearer_id;
  	char linkname[TIPC_MAX_LINK_NAME];
  };
b97bf3fd8   Per Liden   [TIPC] Initial merge
243
  #endif