blob: 53ec5f06422f27da1fb319a385781c100f94baef [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
2 * net/tipc/port.h: Include file for TIPC port code
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Jon Paul Maloy8826cde2014-03-12 11:31:09 -04004 * Copyright (c) 1994-2007, 2014, Ericsson AB
Ying Xue198d73b2013-06-17 10:54:42 -04005 * Copyright (c) 2004-2007, 2010-2013, 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 _TIPC_PORT_H
38#define _TIPC_PORT_H
39
Per Lidenb97bf3f2006-01-02 19:04:38 +010040#include "ref.h"
41#include "net.h"
42#include "msg.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010043#include "node_subscr.h"
44
Allan Stephensd265fef2010-11-30 12:00:53 +000045#define TIPC_FLOW_CONTROL_WIN 512
Ying Xuecc79dd12013-06-17 10:54:37 -040046#define CONN_OVERLOAD_LIMIT ((TIPC_FLOW_CONTROL_WIN * 2 + 1) * \
47 SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
Allan Stephensd265fef2010-11-30 12:00:53 +000048
Per Lidenb97bf3f2006-01-02 19:04:38 +010049/**
Allan Stephens23dd4cc2011-01-07 11:43:40 -050050 * struct tipc_port - TIPC port structure
Allan Stephensd265fef2010-11-30 12:00:53 +000051 * @lock: pointer to spinlock for controlling access to port
52 * @connected: non-zero if port is currently connected to a peer port
53 * @conn_type: TIPC type used when connection was established
54 * @conn_instance: TIPC instance used when connection was established
55 * @conn_unacked: number of unacknowledged messages received from peer port
56 * @published: non-zero if port has one or more associated names
57 * @congested: non-zero if cannot send because of link or port congestion
58 * @max_pkt: maximum packet size "hint" used when building messages sent by port
59 * @ref: unique reference to port in TIPC object registry
60 * @phdr: preformatted message header used when sending messages
Per Lidenb97bf3f2006-01-02 19:04:38 +010061 * @port_list: adjacent ports in TIPC's global list of ports
Per Lidenb97bf3f2006-01-02 19:04:38 +010062 * @wait_list: adjacent ports in list of ports waiting on link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +010063 * @waiting_pkts:
Allan Stephenscb7ce912011-01-24 15:02:14 -050064 * @sent: # of non-empty messages sent by port
65 * @acked: # of non-empty message acknowledgements from connected port's peer
Per Lidenb97bf3f2006-01-02 19:04:38 +010066 * @publications: list of publications for port
67 * @pub_count: total # of publications port has made during its lifetime
Per Lidenb97bf3f2006-01-02 19:04:38 +010068 * @probing_state:
69 * @probing_interval:
Per Lidenb97bf3f2006-01-02 19:04:38 +010070 * @timer_ref:
71 * @subscription: "node down" subscription used to terminate failed connections
72 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -050073struct tipc_port {
Allan Stephens23dd4cc2011-01-07 11:43:40 -050074 spinlock_t *lock;
75 int connected;
76 u32 conn_type;
77 u32 conn_instance;
78 u32 conn_unacked;
79 int published;
80 u32 congested;
81 u32 max_pkt;
82 u32 ref;
83 struct tipc_msg phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +010084 struct list_head port_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +010085 struct list_head wait_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +010086 u32 waiting_pkts;
87 u32 sent;
88 u32 acked;
89 struct list_head publications;
90 u32 pub_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 u32 probing_state;
92 u32 probing_interval;
Per Lidenb97bf3f2006-01-02 19:04:38 +010093 struct timer_list timer;
David S. Miller6c000552008-09-02 23:38:32 -070094 struct tipc_node_subscr subscription;
Per Lidenb97bf3f2006-01-02 19:04:38 +010095};
96
Per Liden4323add2006-01-18 00:38:21 +010097extern spinlock_t tipc_port_list_lock;
Paul Gortmaker45843102011-12-29 20:33:30 -050098struct tipc_port_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +010099
Allan Stephensd265fef2010-11-30 12:00:53 +0000100/*
101 * TIPC port manipulation routines
102 */
Jon Paul Maloy24be34b2014-03-12 11:31:10 -0400103u32 tipc_port_init(struct tipc_port *p_ptr,
104 const unsigned int importance);
Allan Stephensd265fef2010-11-30 12:00:53 +0000105
106int tipc_reject_msg(struct sk_buff *buf, u32 err);
107
Allan Stephensd265fef2010-11-30 12:00:53 +0000108void tipc_acknowledge(u32 port_ref, u32 ack);
109
Jon Paul Maloy24be34b2014-03-12 11:31:10 -0400110void tipc_port_destroy(struct tipc_port *p_ptr);
Allan Stephensd265fef2010-11-30 12:00:53 +0000111
Ying Xue84602762013-12-27 10:18:28 +0800112int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400113 struct tipc_name_seq const *name_seq);
Ying Xue84602762013-12-27 10:18:28 +0800114int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400115 struct tipc_name_seq const *name_seq);
Allan Stephensd265fef2010-11-30 12:00:53 +0000116
Ying Xue247f0f32014-02-18 16:06:46 +0800117int tipc_port_connect(u32 portref, struct tipc_portid const *port);
Allan Stephensd265fef2010-11-30 12:00:53 +0000118
Ying Xue247f0f32014-02-18 16:06:46 +0800119int tipc_port_disconnect(u32 portref);
Allan Stephensd265fef2010-11-30 12:00:53 +0000120
Ying Xue247f0f32014-02-18 16:06:46 +0800121int tipc_port_shutdown(u32 ref);
Allan Stephensd265fef2010-11-30 12:00:53 +0000122
Jon Paul Maloy24be34b2014-03-12 11:31:10 -0400123void tipc_port_wakeup(struct tipc_port *port);
Allan Stephensd265fef2010-11-30 12:00:53 +0000124
125/*
126 * The following routines require that the port be locked on entry
127 */
Ying Xue247f0f32014-02-18 16:06:46 +0800128int __tipc_port_disconnect(struct tipc_port *tp_ptr);
129int __tipc_port_connect(u32 ref, struct tipc_port *p_ptr,
Paul Gortmakerbc879112012-11-29 13:48:40 -0500130 struct tipc_portid const *peer);
Allan Stephensf0712e862012-04-17 18:42:28 -0400131int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
Allan Stephensd265fef2010-11-30 12:00:53 +0000132
133/*
134 * TIPC messaging routines
135 */
Ying Xue247f0f32014-02-18 16:06:46 +0800136int tipc_port_rcv(struct sk_buff *buf);
Ying Xue9446b872013-10-18 07:23:15 +0200137int tipc_send(u32 portref, struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000138
139int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
Ying Xue9446b872013-10-18 07:23:15 +0200140 struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000141
142int tipc_send2port(u32 portref, struct tipc_portid const *dest,
Ying Xue9446b872013-10-18 07:23:15 +0200143 struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000144
Ying Xue247f0f32014-02-18 16:06:46 +0800145int tipc_port_mcast_xmit(u32 portref, struct tipc_name_seq const *seq,
146 struct iovec const *msg, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000147
Ying Xue247f0f32014-02-18 16:06:46 +0800148int tipc_port_iovec_reject(struct tipc_port *p_ptr, struct tipc_msg *hdr,
149 struct iovec const *msg_sect, unsigned int len,
150 int err);
Per Liden4323add2006-01-18 00:38:21 +0100151struct sk_buff *tipc_port_get_ports(void);
Ying Xue247f0f32014-02-18 16:06:46 +0800152void tipc_port_proto_rcv(struct sk_buff *buf);
153void tipc_port_mcast_rcv(struct sk_buff *buf, struct tipc_port_list *dp);
Per Liden4323add2006-01-18 00:38:21 +0100154void tipc_port_reinit(void);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100155
156/**
Per Liden4323add2006-01-18 00:38:21 +0100157 * tipc_port_lock - lock port instance referred to and return its pointer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100158 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500159static inline struct tipc_port *tipc_port_lock(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100160{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500161 return (struct tipc_port *)tipc_ref_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100162}
163
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164/**
Per Liden4323add2006-01-18 00:38:21 +0100165 * tipc_port_unlock - unlock a port instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900166 *
Per Liden4323add2006-01-18 00:38:21 +0100167 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100168 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500169static inline void tipc_port_unlock(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100170{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500171 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172}
173
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500174static inline struct tipc_port *tipc_port_deref(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500176 return (struct tipc_port *)tipc_ref_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177}
178
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500179static inline int tipc_port_congested(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100180{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000181 return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182}
183
Jon Paul Maloyf9fef182014-03-12 11:31:08 -0400184
185static inline u32 tipc_port_peernode(struct tipc_port *p_ptr)
186{
187 return msg_destnode(&p_ptr->phdr);
188}
189
190static inline u32 tipc_port_peerport(struct tipc_port *p_ptr)
191{
192 return msg_destport(&p_ptr->phdr);
193}
194
Jon Paul Maloy3b4f3022014-03-12 11:31:11 -0400195static inline bool tipc_port_unreliable(struct tipc_port *port)
196{
197 return msg_src_droppable(&port->phdr) != 0;
198}
199
200static inline void tipc_port_set_unreliable(struct tipc_port *port,
201 bool unreliable)
202{
203 msg_set_src_droppable(&port->phdr, unreliable ? 1 : 0);
204}
205
206static inline bool tipc_port_unreturnable(struct tipc_port *port)
207{
208 return msg_dest_droppable(&port->phdr) != 0;
209}
210
211static inline void tipc_port_set_unreturnable(struct tipc_port *port,
212 bool unreturnable)
213{
214 msg_set_dest_droppable(&port->phdr, unreturnable ? 1 : 0);
215}
216
217
218static inline int tipc_port_importance(struct tipc_port *port)
219{
220 return msg_importance(&port->phdr);
221}
222
223static inline void tipc_port_set_importance(struct tipc_port *port, int imp)
224{
225 msg_set_importance(&port->phdr, (u32)imp);
226}
227
Per Lidenb97bf3f2006-01-02 19:04:38 +0100228#endif