Merge tag 'nios2-v5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan...
[linux-block.git] / include / uapi / linux / tipc.h
CommitLineData
e2be04c7 1/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
b97bf3fd 2/*
8941bbcd 3 * include/uapi/linux/tipc.h: Header for TIPC socket interface
0e65967e 4 *
01fd12bb 5 * Copyright (c) 2003-2006, 2015-2016 Ericsson AB
77c81e0b 6 * Copyright (c) 2005, 2010-2011, Wind River Systems
b97bf3fd
PL
7 * All rights reserved.
8 *
9ea1fd3c 9 * Redistribution and use in source and binary forms, with or without
b97bf3fd
PL
10 * modification, are permitted provided that the following conditions are met:
11 *
9ea1fd3c
PL
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
b97bf3fd 20 *
9ea1fd3c
PL
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
b97bf3fd
PL
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#ifndef _LINUX_TIPC_H_
39#define _LINUX_TIPC_H_
40
41#include <linux/types.h>
78acb1f9 42#include <linux/sockios.h>
b97bf3fd
PL
43
44/*
45 * TIPC addressing primitives
46 */
0e65967e 47
7a74d39c 48struct tipc_socket_addr {
b97bf3fd
PL
49 __u32 ref;
50 __u32 node;
51};
52
7a74d39c 53struct tipc_service_addr {
b97bf3fd
PL
54 __u32 type;
55 __u32 instance;
56};
57
7a74d39c 58struct tipc_service_range {
b97bf3fd
PL
59 __u32 type;
60 __u32 lower;
61 __u32 upper;
62};
63
b97bf3fd 64/*
7a74d39c 65 * Application-accessible service types
b97bf3fd
PL
66 */
67
7a74d39c
JM
68#define TIPC_NODE_STATE 0 /* node state service type */
69#define TIPC_TOP_SRV 1 /* topology server service type */
70#define TIPC_LINK_STATE 2 /* link state service type */
71#define TIPC_RESERVED_TYPES 64 /* lowest user-allowed service type */
b97bf3fd 72
0e65967e 73/*
7a74d39c 74 * Publication scopes when binding service / service range
b97bf3fd 75 */
928df188
JM
76enum tipc_scope {
77 TIPC_CLUSTER_SCOPE = 2, /* 0 can also be used */
78 TIPC_NODE_SCOPE = 3
79};
b97bf3fd
PL
80
81/*
82 * Limiting values for messages
83 */
84
c29c3f70 85#define TIPC_MAX_USER_MSG_SIZE 66000U
b97bf3fd 86
ea714ccd 87/*
b97bf3fd
PL
88 * Message importance levels
89 */
90
8e1c298c 91#define TIPC_LOW_IMPORTANCE 0
b97bf3fd
PL
92#define TIPC_MEDIUM_IMPORTANCE 1
93#define TIPC_HIGH_IMPORTANCE 2
94#define TIPC_CRITICAL_IMPORTANCE 3
95
0e65967e 96/*
b97bf3fd
PL
97 * Msg rejection/connection shutdown reasons
98 */
99
100#define TIPC_OK 0
101#define TIPC_ERR_NO_NAME 1
102#define TIPC_ERR_NO_PORT 2
103#define TIPC_ERR_NO_NODE 3
104#define TIPC_ERR_OVERLOAD 4
105#define TIPC_CONN_SHUTDOWN 5
106
107/*
108 * TIPC topology subscription service definitions
109 */
110
7a74d39c
JM
111#define TIPC_SUB_PORTS 0x01 /* filter: evt at each match */
112#define TIPC_SUB_SERVICE 0x02 /* filter: evt at first up/last down */
113#define TIPC_SUB_CANCEL 0x04 /* filter: cancel a subscription */
b97bf3fd 114
0e65967e 115#define TIPC_WAIT_FOREVER (~0) /* timeout for permanent subscription */
b97bf3fd
PL
116
117struct tipc_subscr {
7a74d39c 118 struct tipc_service_range seq; /* range of interest */
8c974438 119 __u32 timeout; /* subscription duration (in ms) */
0e65967e 120 __u32 filter; /* bitmask of filter options */
8c974438 121 char usr_handle[8]; /* available for subscriber use */
b97bf3fd
PL
122};
123
ea714ccd 124#define TIPC_PUBLISHED 1 /* publication event */
7a74d39c 125#define TIPC_WITHDRAWN 2 /* withdrawal event */
ea714ccd 126#define TIPC_SUBSCR_TIMEOUT 3 /* subscription timeout event */
b97bf3fd
PL
127
128struct tipc_event {
8c974438 129 __u32 event; /* event type */
7a74d39c
JM
130 __u32 found_lower; /* matching range */
131 __u32 found_upper; /* " " */
132 struct tipc_socket_addr port; /* associated socket */
8c974438 133 struct tipc_subscr s; /* associated subscription */
b97bf3fd
PL
134};
135
136/*
137 * Socket API
138 */
139
140#ifndef AF_TIPC
141#define AF_TIPC 30
142#endif
143
144#ifndef PF_TIPC
145#define PF_TIPC AF_TIPC
146#endif
147
148#ifndef SOL_TIPC
149#define SOL_TIPC 271
150#endif
151
7a74d39c
JM
152#define TIPC_ADDR_MCAST 1
153#define TIPC_SERVICE_RANGE 1
154#define TIPC_SERVICE_ADDR 2
155#define TIPC_SOCKET_ADDR 3
b97bf3fd
PL
156
157struct sockaddr_tipc {
158 unsigned short family;
159 unsigned char addrtype;
160 signed char scope;
161 union {
7a74d39c
JM
162 struct tipc_socket_addr id;
163 struct tipc_service_range nameseq;
b97bf3fd 164 struct {
7a74d39c 165 struct tipc_service_addr name;
8e1c298c 166 __u32 domain;
b97bf3fd
PL
167 } name;
168 } addr;
169};
170
171/*
172 * Ancillary data objects supported by recvmsg()
173 */
174
175#define TIPC_ERRINFO 1 /* error info */
176#define TIPC_RETDATA 2 /* returned data */
177#define TIPC_DESTNAME 3 /* destination name */
178
179/*
01fd12bb 180 * TIPC-specific socket option names
b97bf3fd
PL
181 */
182
183#define TIPC_IMPORTANCE 127 /* Default: TIPC_LOW_IMPORTANCE */
8e1c298c 184#define TIPC_SRC_DROPPABLE 128 /* Default: based on socket type */
b97bf3fd 185#define TIPC_DEST_DROPPABLE 129 /* Default: based on socket type */
ea714ccd 186#define TIPC_CONN_TIMEOUT 130 /* Default: 8000 (ms) */
6650613d 187#define TIPC_NODE_RECVQ_DEPTH 131 /* Default: none (read only) */
188#define TIPC_SOCK_RECVQ_DEPTH 132 /* Default: none (read only) */
01fd12bb
JPM
189#define TIPC_MCAST_BROADCAST 133 /* Default: TIPC selects. No arg */
190#define TIPC_MCAST_REPLICAST 134 /* Default: TIPC selects. No arg */
75da2163
JM
191#define TIPC_GROUP_JOIN 135 /* Takes struct tipc_group_req* */
192#define TIPC_GROUP_LEAVE 136 /* No argument */
42e5425a 193#define TIPC_SOCK_RECVQ_USED 137 /* Default: none (read only) */
75da2163
JM
194
195/*
196 * Flag values
197 */
198#define TIPC_GROUP_LOOPBACK 0x1 /* Receive copy of sent msg when match */
ae236fb2 199#define TIPC_GROUP_MEMBER_EVTS 0x2 /* Receive membership events in socket */
75da2163
JM
200
201struct tipc_group_req {
202 __u32 type; /* group id */
203 __u32 instance; /* member id */
928df188 204 __u32 scope; /* cluster/node */
75da2163
JM
205 __u32 flags;
206};
b97bf3fd 207
78acb1f9
EH
208/*
209 * Maximum sizes of TIPC bearer-related names (including terminating NULL)
210 * The string formatting for each name element is:
211 * media: media
212 * interface: media:interface name
3e5cf362 213 * link: node:interface-node:interface
78acb1f9 214 */
3e5cf362 215#define TIPC_NODEID_LEN 16
78acb1f9
EH
216#define TIPC_MAX_MEDIA_NAME 16
217#define TIPC_MAX_IF_NAME 16
218#define TIPC_MAX_BEARER_NAME 32
7494cfa6 219#define TIPC_MAX_LINK_NAME 68
78acb1f9 220
3e5cf362
JM
221#define SIOCGETLINKNAME SIOCPROTOPRIVATE
222#define SIOCGETNODEID (SIOCPROTOPRIVATE + 1)
78acb1f9
EH
223
224struct tipc_sioc_ln_req {
225 __u32 peer;
226 __u32 bearer_id;
227 char linkname[TIPC_MAX_LINK_NAME];
228};
928df188 229
3e5cf362
JM
230struct tipc_sioc_nodeid_req {
231 __u32 peer;
232 char node_id[TIPC_NODEID_LEN];
233};
928df188
JM
234
235/* The macros and functions below are deprecated:
236 */
237
7a74d39c 238#define TIPC_CFG_SRV 0
928df188
JM
239#define TIPC_ZONE_SCOPE 1
240
7a74d39c
JM
241#define TIPC_ADDR_NAMESEQ 1
242#define TIPC_ADDR_NAME 2
243#define TIPC_ADDR_ID 3
244
928df188
JM
245#define TIPC_NODE_BITS 12
246#define TIPC_CLUSTER_BITS 12
247#define TIPC_ZONE_BITS 8
248
249#define TIPC_NODE_OFFSET 0
250#define TIPC_CLUSTER_OFFSET TIPC_NODE_BITS
251#define TIPC_ZONE_OFFSET (TIPC_CLUSTER_OFFSET + TIPC_CLUSTER_BITS)
252
253#define TIPC_NODE_SIZE ((1UL << TIPC_NODE_BITS) - 1)
254#define TIPC_CLUSTER_SIZE ((1UL << TIPC_CLUSTER_BITS) - 1)
255#define TIPC_ZONE_SIZE ((1UL << TIPC_ZONE_BITS) - 1)
256
257#define TIPC_NODE_MASK (TIPC_NODE_SIZE << TIPC_NODE_OFFSET)
258#define TIPC_CLUSTER_MASK (TIPC_CLUSTER_SIZE << TIPC_CLUSTER_OFFSET)
259#define TIPC_ZONE_MASK (TIPC_ZONE_SIZE << TIPC_ZONE_OFFSET)
260
261#define TIPC_ZONE_CLUSTER_MASK (TIPC_ZONE_MASK | TIPC_CLUSTER_MASK)
262
7a74d39c
JM
263#define tipc_portid tipc_socket_addr
264#define tipc_name tipc_service_addr
265#define tipc_name_seq tipc_service_range
266
928df188
JM
267static inline __u32 tipc_addr(unsigned int zone,
268 unsigned int cluster,
269 unsigned int node)
270{
271 return (zone << TIPC_ZONE_OFFSET) |
272 (cluster << TIPC_CLUSTER_OFFSET) |
273 node;
274}
275
276static inline unsigned int tipc_zone(__u32 addr)
277{
278 return addr >> TIPC_ZONE_OFFSET;
279}
280
281static inline unsigned int tipc_cluster(__u32 addr)
282{
283 return (addr & TIPC_CLUSTER_MASK) >> TIPC_CLUSTER_OFFSET;
284}
285
286static inline unsigned int tipc_node(__u32 addr)
287{
288 return addr & TIPC_NODE_MASK;
289}
290
b97bf3fd 291#endif