blob: 9122535973430edff99e8ee6070a091975dea457 [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 *
Allan Stephens05646c92007-06-10 17:25:24 -07004 * Copyright (c) 1994-2007, 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
Ying Xuec0fee8a2013-06-17 10:54:46 -040051 * @sk: pointer to socket handle
Allan Stephensd265fef2010-11-30 12:00:53 +000052 * @lock: pointer to spinlock for controlling access to port
53 * @connected: non-zero if port is currently connected to a peer port
54 * @conn_type: TIPC type used when connection was established
55 * @conn_instance: TIPC instance used when connection was established
56 * @conn_unacked: number of unacknowledged messages received from peer port
57 * @published: non-zero if port has one or more associated names
58 * @congested: non-zero if cannot send because of link or port congestion
59 * @max_pkt: maximum packet size "hint" used when building messages sent by port
60 * @ref: unique reference to port in TIPC object registry
61 * @phdr: preformatted message header used when sending messages
Per Lidenb97bf3f2006-01-02 19:04:38 +010062 * @port_list: adjacent ports in TIPC's global list of ports
63 * @dispatcher: ptr to routine which handles received messages
64 * @wakeup: ptr to routine to call when port is no longer congested
Per Lidenb97bf3f2006-01-02 19:04:38 +010065 * @wait_list: adjacent ports in list of ports waiting on link congestion
Per Lidenb97bf3f2006-01-02 19:04:38 +010066 * @waiting_pkts:
Allan Stephenscb7ce912011-01-24 15:02:14 -050067 * @sent: # of non-empty messages sent by port
68 * @acked: # of non-empty message acknowledgements from connected port's peer
Per Lidenb97bf3f2006-01-02 19:04:38 +010069 * @publications: list of publications for port
70 * @pub_count: total # of publications port has made during its lifetime
Per Lidenb97bf3f2006-01-02 19:04:38 +010071 * @probing_state:
72 * @probing_interval:
Per Lidenb97bf3f2006-01-02 19:04:38 +010073 * @timer_ref:
74 * @subscription: "node down" subscription used to terminate failed connections
75 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -050076struct tipc_port {
Ying Xuec0fee8a2013-06-17 10:54:46 -040077 struct sock *sk;
Allan Stephens23dd4cc2011-01-07 11:43:40 -050078 spinlock_t *lock;
79 int connected;
80 u32 conn_type;
81 u32 conn_instance;
82 u32 conn_unacked;
83 int published;
84 u32 congested;
85 u32 max_pkt;
86 u32 ref;
87 struct tipc_msg phdr;
Per Lidenb97bf3f2006-01-02 19:04:38 +010088 struct list_head port_list;
89 u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
90 void (*wakeup)(struct tipc_port *);
Per Lidenb97bf3f2006-01-02 19:04:38 +010091 struct list_head wait_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +010092 u32 waiting_pkts;
93 u32 sent;
94 u32 acked;
95 struct list_head publications;
96 u32 pub_count;
Per Lidenb97bf3f2006-01-02 19:04:38 +010097 u32 probing_state;
98 u32 probing_interval;
Per Lidenb97bf3f2006-01-02 19:04:38 +010099 struct timer_list timer;
David S. Miller6c000552008-09-02 23:38:32 -0700100 struct tipc_node_subscr subscription;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100101};
102
Per Liden4323add2006-01-18 00:38:21 +0100103extern spinlock_t tipc_port_list_lock;
Paul Gortmaker45843102011-12-29 20:33:30 -0500104struct tipc_port_list;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100105
Allan Stephensd265fef2010-11-30 12:00:53 +0000106/*
107 * TIPC port manipulation routines
108 */
Ying Xuec0fee8a2013-06-17 10:54:46 -0400109struct tipc_port *tipc_createport(struct sock *sk,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400110 u32 (*dispatcher)(struct tipc_port *,
111 struct sk_buff *),
112 void (*wakeup)(struct tipc_port *),
113 const u32 importance);
Allan Stephensd265fef2010-11-30 12:00:53 +0000114
115int tipc_reject_msg(struct sk_buff *buf, u32 err);
116
Allan Stephensd265fef2010-11-30 12:00:53 +0000117void tipc_acknowledge(u32 port_ref, u32 ack);
118
Allan Stephensd265fef2010-11-30 12:00:53 +0000119int tipc_deleteport(u32 portref);
120
Allan Stephensd265fef2010-11-30 12:00:53 +0000121int tipc_portimportance(u32 portref, unsigned int *importance);
122int tipc_set_portimportance(u32 portref, unsigned int importance);
123
124int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
125int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);
126
127int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
128int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);
129
130int tipc_publish(u32 portref, unsigned int scope,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400131 struct tipc_name_seq const *name_seq);
Allan Stephensd265fef2010-11-30 12:00:53 +0000132int tipc_withdraw(u32 portref, unsigned int scope,
Paul Gortmakerae8509c2013-06-17 10:54:47 -0400133 struct tipc_name_seq const *name_seq);
Allan Stephensd265fef2010-11-30 12:00:53 +0000134
Paul Gortmakerbc879112012-11-29 13:48:40 -0500135int tipc_connect(u32 portref, struct tipc_portid const *port);
Allan Stephensd265fef2010-11-30 12:00:53 +0000136
137int tipc_disconnect(u32 portref);
138
139int tipc_shutdown(u32 ref);
140
141
142/*
143 * The following routines require that the port be locked on entry
144 */
Paul Gortmakerbc879112012-11-29 13:48:40 -0500145int __tipc_disconnect(struct tipc_port *tp_ptr);
146int __tipc_connect(u32 ref, struct tipc_port *p_ptr,
147 struct tipc_portid const *peer);
Allan Stephensf0712e862012-04-17 18:42:28 -0400148int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
Allan Stephensd265fef2010-11-30 12:00:53 +0000149
150/*
151 * TIPC messaging routines
152 */
Allan Stephens9b641252011-11-09 13:29:18 -0500153int tipc_port_recv_msg(struct sk_buff *buf);
Ying Xue9446b872013-10-18 07:23:15 +0200154int tipc_send(u32 portref, struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000155
156int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
Ying Xue9446b872013-10-18 07:23:15 +0200157 struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000158
159int tipc_send2port(u32 portref, struct tipc_portid const *dest,
Ying Xue9446b872013-10-18 07:23:15 +0200160 struct iovec const *msg_sect, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000161
Allan Stephens38f232e2010-11-30 12:00:59 +0000162int tipc_multicast(u32 portref, struct tipc_name_seq const *seq,
Ying Xue9446b872013-10-18 07:23:15 +0200163 struct iovec const *msg, unsigned int len);
Allan Stephensd265fef2010-11-30 12:00:53 +0000164
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500165int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
Ying Xue9446b872013-10-18 07:23:15 +0200166 struct iovec const *msg_sect, unsigned int len,
167 int err);
Per Liden4323add2006-01-18 00:38:21 +0100168struct sk_buff *tipc_port_get_ports(void);
Per Liden4323add2006-01-18 00:38:21 +0100169void tipc_port_recv_proto_msg(struct sk_buff *buf);
Paul Gortmaker45843102011-12-29 20:33:30 -0500170void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp);
Per Liden4323add2006-01-18 00:38:21 +0100171void tipc_port_reinit(void);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100172
173/**
Per Liden4323add2006-01-18 00:38:21 +0100174 * tipc_port_lock - lock port instance referred to and return its pointer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500176static inline struct tipc_port *tipc_port_lock(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100177{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500178 return (struct tipc_port *)tipc_ref_lock(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100179}
180
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900181/**
Per Liden4323add2006-01-18 00:38:21 +0100182 * tipc_port_unlock - unlock a port instance
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900183 *
Per Liden4323add2006-01-18 00:38:21 +0100184 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100185 */
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500186static inline void tipc_port_unlock(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100187{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500188 spin_unlock_bh(p_ptr->lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100189}
190
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500191static inline struct tipc_port *tipc_port_deref(u32 ref)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100192{
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500193 return (struct tipc_port *)tipc_ref_deref(ref);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194}
195
Allan Stephens23dd4cc2011-01-07 11:43:40 -0500196static inline int tipc_port_congested(struct tipc_port *p_ptr)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100197{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000198 return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100199}
200
Per Lidenb97bf3f2006-01-02 19:04:38 +0100201#endif