blob: 6b2fd4d9655f6949d9c752a4f286ed0834d02f1f [file] [log] [blame]
Greg Kroah-Hartmane2be04c2017-11-01 15:09:13 +01001/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
Per Lidenb97bf3f2006-01-02 19:04:38 +01002/*
Ying Xue8941bbc2013-06-17 10:54:36 -04003 * include/uapi/linux/tipc.h: Header for TIPC socket interface
Allan Stephens0e659672010-12-31 18:59:32 +00004 *
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -05005 * Copyright (c) 2003-2006, 2015-2016 Ericsson AB
Allan Stephens77c81e02011-01-18 13:37:09 -05006 * Copyright (c) 2005, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01007 * All rights reserved.
8 *
Per Liden9ea1fd32006-01-11 13:30:43 +01009 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +010010 * modification, are permitted provided that the following conditions are met:
11 *
Per Liden9ea1fd32006-01-11 13:30:43 +010012 * 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.
Per Lidenb97bf3f2006-01-02 19:04:38 +010020 *
Per Liden9ea1fd32006-01-11 13:30:43 +010021 * 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
Per Lidenb97bf3f2006-01-02 19:04:38 +010035 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#ifndef _LINUX_TIPC_H_
39#define _LINUX_TIPC_H_
40
41#include <linux/types.h>
Erik Hugne78acb1f2014-04-24 16:26:47 +020042#include <linux/sockios.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010043
44/*
45 * TIPC addressing primitives
46 */
Allan Stephens0e659672010-12-31 18:59:32 +000047
Jon Maloy7a74d392018-03-29 23:20:44 +020048struct tipc_socket_addr {
Per Lidenb97bf3f2006-01-02 19:04:38 +010049 __u32 ref;
50 __u32 node;
51};
52
Jon Maloy7a74d392018-03-29 23:20:44 +020053struct tipc_service_addr {
Per Lidenb97bf3f2006-01-02 19:04:38 +010054 __u32 type;
55 __u32 instance;
56};
57
Jon Maloy7a74d392018-03-29 23:20:44 +020058struct tipc_service_range {
Per Lidenb97bf3f2006-01-02 19:04:38 +010059 __u32 type;
60 __u32 lower;
61 __u32 upper;
62};
63
Per Lidenb97bf3f2006-01-02 19:04:38 +010064/*
Jon Maloy7a74d392018-03-29 23:20:44 +020065 * Application-accessible service types
Per Lidenb97bf3f2006-01-02 19:04:38 +010066 */
67
Jon Maloy7a74d392018-03-29 23:20:44 +020068#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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010072
Allan Stephens0e659672010-12-31 18:59:32 +000073/*
Jon Maloy7a74d392018-03-29 23:20:44 +020074 * Publication scopes when binding service / service range
Per Lidenb97bf3f2006-01-02 19:04:38 +010075 */
Jon Maloy928df182018-03-15 16:48:51 +010076enum tipc_scope {
77 TIPC_CLUSTER_SCOPE = 2, /* 0 can also be used */
78 TIPC_NODE_SCOPE = 3
79};
Per Lidenb97bf3f2006-01-02 19:04:38 +010080
81/*
82 * Limiting values for messages
83 */
84
Allan Stephensc29c3f72010-04-20 17:58:24 -040085#define TIPC_MAX_USER_MSG_SIZE 66000U
Per Lidenb97bf3f2006-01-02 19:04:38 +010086
Per Lidenea714cc2006-01-11 12:28:47 +010087/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010088 * Message importance levels
89 */
90
Allan Stephens8e1c2982010-05-11 14:30:09 +000091#define TIPC_LOW_IMPORTANCE 0
Per Lidenb97bf3f2006-01-02 19:04:38 +010092#define TIPC_MEDIUM_IMPORTANCE 1
93#define TIPC_HIGH_IMPORTANCE 2
94#define TIPC_CRITICAL_IMPORTANCE 3
95
Allan Stephens0e659672010-12-31 18:59:32 +000096/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 * 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
Jon Maloy7a74d392018-03-29 23:20:44 +0200111#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 */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114
Allan Stephens0e659672010-12-31 18:59:32 +0000115#define TIPC_WAIT_FOREVER (~0) /* timeout for permanent subscription */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100116
117struct tipc_subscr {
Jon Maloy7a74d392018-03-29 23:20:44 +0200118 struct tipc_service_range seq; /* range of interest */
Neil Horman8c974432010-10-21 01:06:15 +0000119 __u32 timeout; /* subscription duration (in ms) */
Allan Stephens0e659672010-12-31 18:59:32 +0000120 __u32 filter; /* bitmask of filter options */
Neil Horman8c974432010-10-21 01:06:15 +0000121 char usr_handle[8]; /* available for subscriber use */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122};
123
Per Lidenea714cc2006-01-11 12:28:47 +0100124#define TIPC_PUBLISHED 1 /* publication event */
Jon Maloy7a74d392018-03-29 23:20:44 +0200125#define TIPC_WITHDRAWN 2 /* withdrawal event */
Per Lidenea714cc2006-01-11 12:28:47 +0100126#define TIPC_SUBSCR_TIMEOUT 3 /* subscription timeout event */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100127
128struct tipc_event {
Neil Horman8c974432010-10-21 01:06:15 +0000129 __u32 event; /* event type */
Jon Maloy7a74d392018-03-29 23:20:44 +0200130 __u32 found_lower; /* matching range */
131 __u32 found_upper; /* " " */
132 struct tipc_socket_addr port; /* associated socket */
Neil Horman8c974432010-10-21 01:06:15 +0000133 struct tipc_subscr s; /* associated subscription */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134};
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
Jon Maloy7a74d392018-03-29 23:20:44 +0200152#define TIPC_ADDR_MCAST 1
153#define TIPC_SERVICE_RANGE 1
154#define TIPC_SERVICE_ADDR 2
155#define TIPC_SOCKET_ADDR 3
Per Lidenb97bf3f2006-01-02 19:04:38 +0100156
157struct sockaddr_tipc {
158 unsigned short family;
159 unsigned char addrtype;
160 signed char scope;
161 union {
Jon Maloy7a74d392018-03-29 23:20:44 +0200162 struct tipc_socket_addr id;
163 struct tipc_service_range nameseq;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100164 struct {
Jon Maloy7a74d392018-03-29 23:20:44 +0200165 struct tipc_service_addr name;
Allan Stephens8e1c2982010-05-11 14:30:09 +0000166 __u32 domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100167 } 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/*
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500180 * TIPC-specific socket option names
Per Lidenb97bf3f2006-01-02 19:04:38 +0100181 */
182
183#define TIPC_IMPORTANCE 127 /* Default: TIPC_LOW_IMPORTANCE */
Allan Stephens8e1c2982010-05-11 14:30:09 +0000184#define TIPC_SRC_DROPPABLE 128 /* Default: based on socket type */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185#define TIPC_DEST_DROPPABLE 129 /* Default: based on socket type */
Per Lidenea714cc2006-01-11 12:28:47 +0100186#define TIPC_CONN_TIMEOUT 130 /* Default: 8000 (ms) */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +0000187#define TIPC_NODE_RECVQ_DEPTH 131 /* Default: none (read only) */
188#define TIPC_SOCK_RECVQ_DEPTH 132 /* Default: none (read only) */
Jon Paul Maloy01fd12b2017-01-18 13:50:53 -0500189#define TIPC_MCAST_BROADCAST 133 /* Default: TIPC selects. No arg */
190#define TIPC_MCAST_REPLICAST 134 /* Default: TIPC selects. No arg */
Jon Maloy75da2162017-10-13 11:04:23 +0200191#define TIPC_GROUP_JOIN 135 /* Takes struct tipc_group_req* */
192#define TIPC_GROUP_LEAVE 136 /* No argument */
193
194/*
195 * Flag values
196 */
197#define TIPC_GROUP_LOOPBACK 0x1 /* Receive copy of sent msg when match */
Jon Maloyae236fb2017-10-13 11:04:25 +0200198#define TIPC_GROUP_MEMBER_EVTS 0x2 /* Receive membership events in socket */
Jon Maloy75da2162017-10-13 11:04:23 +0200199
200struct tipc_group_req {
201 __u32 type; /* group id */
202 __u32 instance; /* member id */
Jon Maloy928df182018-03-15 16:48:51 +0100203 __u32 scope; /* cluster/node */
Jon Maloy75da2162017-10-13 11:04:23 +0200204 __u32 flags;
205};
Per Lidenb97bf3f2006-01-02 19:04:38 +0100206
Erik Hugne78acb1f2014-04-24 16:26:47 +0200207/*
208 * Maximum sizes of TIPC bearer-related names (including terminating NULL)
209 * The string formatting for each name element is:
210 * media: media
211 * interface: media:interface name
Jon Maloy3e5cf362018-04-25 19:29:36 +0200212 * link: node:interface-node:interface
Erik Hugne78acb1f2014-04-24 16:26:47 +0200213 */
Jon Maloy3e5cf362018-04-25 19:29:36 +0200214#define TIPC_NODEID_LEN 16
Erik Hugne78acb1f2014-04-24 16:26:47 +0200215#define TIPC_MAX_MEDIA_NAME 16
216#define TIPC_MAX_IF_NAME 16
217#define TIPC_MAX_BEARER_NAME 32
Jon Maloy7494cfa2018-03-29 23:20:45 +0200218#define TIPC_MAX_LINK_NAME 68
Erik Hugne78acb1f2014-04-24 16:26:47 +0200219
Jon Maloy3e5cf362018-04-25 19:29:36 +0200220#define SIOCGETLINKNAME SIOCPROTOPRIVATE
221#define SIOCGETNODEID (SIOCPROTOPRIVATE + 1)
Erik Hugne78acb1f2014-04-24 16:26:47 +0200222
223struct tipc_sioc_ln_req {
224 __u32 peer;
225 __u32 bearer_id;
226 char linkname[TIPC_MAX_LINK_NAME];
227};
Jon Maloy928df182018-03-15 16:48:51 +0100228
Jon Maloy3e5cf362018-04-25 19:29:36 +0200229struct tipc_sioc_nodeid_req {
230 __u32 peer;
231 char node_id[TIPC_NODEID_LEN];
232};
Jon Maloy928df182018-03-15 16:48:51 +0100233
234/* The macros and functions below are deprecated:
235 */
236
Jon Maloy7a74d392018-03-29 23:20:44 +0200237#define TIPC_CFG_SRV 0
Jon Maloy928df182018-03-15 16:48:51 +0100238#define TIPC_ZONE_SCOPE 1
239
Jon Maloy7a74d392018-03-29 23:20:44 +0200240#define TIPC_ADDR_NAMESEQ 1
241#define TIPC_ADDR_NAME 2
242#define TIPC_ADDR_ID 3
243
Jon Maloy928df182018-03-15 16:48:51 +0100244#define TIPC_NODE_BITS 12
245#define TIPC_CLUSTER_BITS 12
246#define TIPC_ZONE_BITS 8
247
248#define TIPC_NODE_OFFSET 0
249#define TIPC_CLUSTER_OFFSET TIPC_NODE_BITS
250#define TIPC_ZONE_OFFSET (TIPC_CLUSTER_OFFSET + TIPC_CLUSTER_BITS)
251
252#define TIPC_NODE_SIZE ((1UL << TIPC_NODE_BITS) - 1)
253#define TIPC_CLUSTER_SIZE ((1UL << TIPC_CLUSTER_BITS) - 1)
254#define TIPC_ZONE_SIZE ((1UL << TIPC_ZONE_BITS) - 1)
255
256#define TIPC_NODE_MASK (TIPC_NODE_SIZE << TIPC_NODE_OFFSET)
257#define TIPC_CLUSTER_MASK (TIPC_CLUSTER_SIZE << TIPC_CLUSTER_OFFSET)
258#define TIPC_ZONE_MASK (TIPC_ZONE_SIZE << TIPC_ZONE_OFFSET)
259
260#define TIPC_ZONE_CLUSTER_MASK (TIPC_ZONE_MASK | TIPC_CLUSTER_MASK)
261
Jon Maloy7a74d392018-03-29 23:20:44 +0200262#define tipc_portid tipc_socket_addr
263#define tipc_name tipc_service_addr
264#define tipc_name_seq tipc_service_range
265
Jon Maloy928df182018-03-15 16:48:51 +0100266static inline __u32 tipc_addr(unsigned int zone,
267 unsigned int cluster,
268 unsigned int node)
269{
270 return (zone << TIPC_ZONE_OFFSET) |
271 (cluster << TIPC_CLUSTER_OFFSET) |
272 node;
273}
274
275static inline unsigned int tipc_zone(__u32 addr)
276{
277 return addr >> TIPC_ZONE_OFFSET;
278}
279
280static inline unsigned int tipc_cluster(__u32 addr)
281{
282 return (addr & TIPC_CLUSTER_MASK) >> TIPC_CLUSTER_OFFSET;
283}
284
285static inline unsigned int tipc_node(__u32 addr)
286{
287 return addr & TIPC_NODE_MASK;
288}
289
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290#endif