blob: 53cd7902d34e3f9bbd6a9a16a8c28a19c834e617 [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
Ying Xue8941bbc2013-06-17 10:54:36 -04002 * include/uapi/linux/tipc.h: Header for TIPC socket interface
Allan Stephens0e659672010-12-31 18:59:32 +00003 *
Per Liden9da1c8b2006-01-11 18:40:41 +01004 * Copyright (c) 2003-2006, Ericsson AB
Allan Stephens77c81e02011-01-18 13:37:09 -05005 * Copyright (c) 2005, 2010-2011, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#ifndef _LINUX_TIPC_H_
38#define _LINUX_TIPC_H_
39
40#include <linux/types.h>
Per Lidenb97bf3f2006-01-02 19:04:38 +010041
42/*
43 * TIPC addressing primitives
44 */
Allan Stephens0e659672010-12-31 18:59:32 +000045
Per Lidenb97bf3f2006-01-02 19:04:38 +010046struct tipc_portid {
47 __u32 ref;
48 __u32 node;
49};
50
51struct tipc_name {
52 __u32 type;
53 __u32 instance;
54};
55
56struct tipc_name_seq {
57 __u32 type;
58 __u32 lower;
59 __u32 upper;
60};
61
62static inline __u32 tipc_addr(unsigned int zone,
63 unsigned int cluster,
64 unsigned int node)
65{
Per Lidenea714cc2006-01-11 12:28:47 +010066 return (zone << 24) | (cluster << 12) | node;
Per Lidenb97bf3f2006-01-02 19:04:38 +010067}
68
69static inline unsigned int tipc_zone(__u32 addr)
70{
Per Lidenea714cc2006-01-11 12:28:47 +010071 return addr >> 24;
Per Lidenb97bf3f2006-01-02 19:04:38 +010072}
73
74static inline unsigned int tipc_cluster(__u32 addr)
75{
Per Lidenea714cc2006-01-11 12:28:47 +010076 return (addr >> 12) & 0xfff;
Per Lidenb97bf3f2006-01-02 19:04:38 +010077}
78
79static inline unsigned int tipc_node(__u32 addr)
80{
Per Lidenea714cc2006-01-11 12:28:47 +010081 return addr & 0xfff;
Per Lidenb97bf3f2006-01-02 19:04:38 +010082}
83
84/*
85 * Application-accessible port name types
86 */
87
Per Lidenea714cc2006-01-11 12:28:47 +010088#define TIPC_CFG_SRV 0 /* configuration service name type */
89#define TIPC_TOP_SRV 1 /* topology service name type */
Erik Hugnea89778d2014-04-24 16:26:46 +020090#define TIPC_LINK_STATE 2 /* link state name type */
Per Lidenb97bf3f2006-01-02 19:04:38 +010091#define TIPC_RESERVED_TYPES 64 /* lowest user-publishable name type */
92
Allan Stephens0e659672010-12-31 18:59:32 +000093/*
Per Lidenb97bf3f2006-01-02 19:04:38 +010094 * Publication scopes when binding port names and port name sequences
95 */
96
Per Lidenea714cc2006-01-11 12:28:47 +010097#define TIPC_ZONE_SCOPE 1
98#define TIPC_CLUSTER_SCOPE 2
99#define TIPC_NODE_SCOPE 3
Per Lidenb97bf3f2006-01-02 19:04:38 +0100100
101/*
102 * Limiting values for messages
103 */
104
Allan Stephensc29c3f72010-04-20 17:58:24 -0400105#define TIPC_MAX_USER_MSG_SIZE 66000U
Per Lidenb97bf3f2006-01-02 19:04:38 +0100106
Per Lidenea714cc2006-01-11 12:28:47 +0100107/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100108 * Message importance levels
109 */
110
Allan Stephens8e1c2982010-05-11 14:30:09 +0000111#define TIPC_LOW_IMPORTANCE 0
Per Lidenb97bf3f2006-01-02 19:04:38 +0100112#define TIPC_MEDIUM_IMPORTANCE 1
113#define TIPC_HIGH_IMPORTANCE 2
114#define TIPC_CRITICAL_IMPORTANCE 3
115
Allan Stephens0e659672010-12-31 18:59:32 +0000116/*
Per Lidenb97bf3f2006-01-02 19:04:38 +0100117 * Msg rejection/connection shutdown reasons
118 */
119
120#define TIPC_OK 0
121#define TIPC_ERR_NO_NAME 1
122#define TIPC_ERR_NO_PORT 2
123#define TIPC_ERR_NO_NODE 3
124#define TIPC_ERR_OVERLOAD 4
125#define TIPC_CONN_SHUTDOWN 5
126
127/*
128 * TIPC topology subscription service definitions
129 */
130
Allan Stephens0e659672010-12-31 18:59:32 +0000131#define TIPC_SUB_PORTS 0x01 /* filter for port availability */
132#define TIPC_SUB_SERVICE 0x02 /* filter for service availability */
133#define TIPC_SUB_CANCEL 0x04 /* cancel a subscription */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100134
Allan Stephens0e659672010-12-31 18:59:32 +0000135#define TIPC_WAIT_FOREVER (~0) /* timeout for permanent subscription */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100136
137struct tipc_subscr {
Neil Horman8c974432010-10-21 01:06:15 +0000138 struct tipc_name_seq seq; /* name sequence of interest */
139 __u32 timeout; /* subscription duration (in ms) */
Allan Stephens0e659672010-12-31 18:59:32 +0000140 __u32 filter; /* bitmask of filter options */
Neil Horman8c974432010-10-21 01:06:15 +0000141 char usr_handle[8]; /* available for subscriber use */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100142};
143
Per Lidenea714cc2006-01-11 12:28:47 +0100144#define TIPC_PUBLISHED 1 /* publication event */
145#define TIPC_WITHDRAWN 2 /* withdraw event */
146#define TIPC_SUBSCR_TIMEOUT 3 /* subscription timeout event */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147
148struct tipc_event {
Neil Horman8c974432010-10-21 01:06:15 +0000149 __u32 event; /* event type */
150 __u32 found_lower; /* matching name seq instances */
151 __u32 found_upper; /* " " " " */
152 struct tipc_portid port; /* associated port */
153 struct tipc_subscr s; /* associated subscription */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100154};
155
156/*
157 * Socket API
158 */
159
160#ifndef AF_TIPC
161#define AF_TIPC 30
162#endif
163
164#ifndef PF_TIPC
165#define PF_TIPC AF_TIPC
166#endif
167
168#ifndef SOL_TIPC
169#define SOL_TIPC 271
170#endif
171
Per Lidenea714cc2006-01-11 12:28:47 +0100172#define TIPC_ADDR_NAMESEQ 1
173#define TIPC_ADDR_MCAST 1
174#define TIPC_ADDR_NAME 2
175#define TIPC_ADDR_ID 3
Per Lidenb97bf3f2006-01-02 19:04:38 +0100176
177struct sockaddr_tipc {
178 unsigned short family;
179 unsigned char addrtype;
180 signed char scope;
181 union {
182 struct tipc_portid id;
183 struct tipc_name_seq nameseq;
184 struct {
185 struct tipc_name name;
Allan Stephens8e1c2982010-05-11 14:30:09 +0000186 __u32 domain;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187 } name;
188 } addr;
189};
190
191/*
192 * Ancillary data objects supported by recvmsg()
193 */
194
195#define TIPC_ERRINFO 1 /* error info */
196#define TIPC_RETDATA 2 /* returned data */
197#define TIPC_DESTNAME 3 /* destination name */
198
199/*
200 * TIPC-specific socket option values
201 */
202
203#define TIPC_IMPORTANCE 127 /* Default: TIPC_LOW_IMPORTANCE */
Allan Stephens8e1c2982010-05-11 14:30:09 +0000204#define TIPC_SRC_DROPPABLE 128 /* Default: based on socket type */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100205#define TIPC_DEST_DROPPABLE 129 /* Default: based on socket type */
Per Lidenea714cc2006-01-11 12:28:47 +0100206#define TIPC_CONN_TIMEOUT 130 /* Default: 8000 (ms) */
oscar.medina@motorola.com66506132009-06-30 03:25:39 +0000207#define TIPC_NODE_RECVQ_DEPTH 131 /* Default: none (read only) */
208#define TIPC_SOCK_RECVQ_DEPTH 132 /* Default: none (read only) */
Per Lidenb97bf3f2006-01-02 19:04:38 +0100209
210#endif