2006-01-03 02:04:38 +08:00
|
|
|
/*
|
|
|
|
* net/tipc/port.h: Include file for TIPC port code
|
2007-02-09 22:25:21 +08:00
|
|
|
*
|
2014-03-12 23:31:09 +08:00
|
|
|
* Copyright (c) 1994-2007, 2014, Ericsson AB
|
2013-06-17 22:54:42 +08:00
|
|
|
* Copyright (c) 2004-2007, 2010-2013, Wind River Systems
|
2006-01-03 02:04:38 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2006-01-11 20:30:43 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
2006-01-03 02:04:38 +08:00
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
2006-01-11 20:30:43 +08:00
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the names of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
2006-01-03 02:04:38 +08:00
|
|
|
*
|
2006-01-11 20:30:43 +08:00
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License ("GPL") version 2 as published by the Free
|
|
|
|
* Software Foundation.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
2006-01-03 02:04:38 +08:00
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _TIPC_PORT_H
|
|
|
|
#define _TIPC_PORT_H
|
|
|
|
|
|
|
|
#include "ref.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "node_subscr.h"
|
|
|
|
|
2014-05-14 17:39:08 +08:00
|
|
|
#define TIPC_CONNACK_INTV 256
|
|
|
|
#define TIPC_FLOWCTRL_WIN (TIPC_CONNACK_INTV * 2)
|
|
|
|
#define TIPC_CONN_OVERLOAD_LIMIT ((TIPC_FLOWCTRL_WIN * 2 + 1) * \
|
|
|
|
SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
|
2010-11-30 20:00:53 +08:00
|
|
|
|
|
|
|
/**
|
2011-01-08 00:43:40 +08:00
|
|
|
* struct tipc_port - TIPC port structure
|
2010-11-30 20:00:53 +08:00
|
|
|
* @lock: pointer to spinlock for controlling access to port
|
|
|
|
* @connected: non-zero if port is currently connected to a peer port
|
|
|
|
* @conn_type: TIPC type used when connection was established
|
|
|
|
* @conn_instance: TIPC instance used when connection was established
|
|
|
|
* @conn_unacked: number of unacknowledged messages received from peer port
|
|
|
|
* @published: non-zero if port has one or more associated names
|
|
|
|
* @congested: non-zero if cannot send because of link or port congestion
|
|
|
|
* @max_pkt: maximum packet size "hint" used when building messages sent by port
|
|
|
|
* @ref: unique reference to port in TIPC object registry
|
|
|
|
* @phdr: preformatted message header used when sending messages
|
2006-01-03 02:04:38 +08:00
|
|
|
* @port_list: adjacent ports in TIPC's global list of ports
|
|
|
|
* @wait_list: adjacent ports in list of ports waiting on link congestion
|
|
|
|
* @waiting_pkts:
|
2011-01-25 04:02:14 +08:00
|
|
|
* @sent: # of non-empty messages sent by port
|
|
|
|
* @acked: # of non-empty message acknowledgements from connected port's peer
|
2006-01-03 02:04:38 +08:00
|
|
|
* @publications: list of publications for port
|
|
|
|
* @pub_count: total # of publications port has made during its lifetime
|
|
|
|
* @probing_state:
|
|
|
|
* @probing_interval:
|
|
|
|
* @timer_ref:
|
|
|
|
* @subscription: "node down" subscription used to terminate failed connections
|
|
|
|
*/
|
2011-01-08 00:43:40 +08:00
|
|
|
struct tipc_port {
|
|
|
|
spinlock_t *lock;
|
|
|
|
int connected;
|
|
|
|
u32 conn_type;
|
|
|
|
u32 conn_instance;
|
|
|
|
u32 conn_unacked;
|
|
|
|
int published;
|
|
|
|
u32 congested;
|
|
|
|
u32 max_pkt;
|
|
|
|
u32 ref;
|
|
|
|
struct tipc_msg phdr;
|
2006-01-03 02:04:38 +08:00
|
|
|
struct list_head port_list;
|
|
|
|
struct list_head wait_list;
|
|
|
|
u32 waiting_pkts;
|
|
|
|
u32 sent;
|
|
|
|
u32 acked;
|
|
|
|
struct list_head publications;
|
|
|
|
u32 pub_count;
|
|
|
|
u32 probing_state;
|
|
|
|
u32 probing_interval;
|
|
|
|
struct timer_list timer;
|
2008-09-03 14:38:32 +08:00
|
|
|
struct tipc_node_subscr subscription;
|
2006-01-03 02:04:38 +08:00
|
|
|
};
|
|
|
|
|
2006-01-18 07:38:21 +08:00
|
|
|
extern spinlock_t tipc_port_list_lock;
|
2011-12-30 09:33:30 +08:00
|
|
|
struct tipc_port_list;
|
2006-01-03 02:04:38 +08:00
|
|
|
|
2010-11-30 20:00:53 +08:00
|
|
|
/*
|
|
|
|
* TIPC port manipulation routines
|
|
|
|
*/
|
2014-03-12 23:31:10 +08:00
|
|
|
u32 tipc_port_init(struct tipc_port *p_ptr,
|
|
|
|
const unsigned int importance);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
|
|
|
int tipc_reject_msg(struct sk_buff *buf, u32 err);
|
|
|
|
|
|
|
|
void tipc_acknowledge(u32 port_ref, u32 ack);
|
|
|
|
|
2014-03-12 23:31:10 +08:00
|
|
|
void tipc_port_destroy(struct tipc_port *p_ptr);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
2013-12-27 10:18:28 +08:00
|
|
|
int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
|
2013-06-17 22:54:47 +08:00
|
|
|
struct tipc_name_seq const *name_seq);
|
2014-03-12 23:31:13 +08:00
|
|
|
|
2013-12-27 10:18:28 +08:00
|
|
|
int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
|
2013-06-17 22:54:47 +08:00
|
|
|
struct tipc_name_seq const *name_seq);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
2014-02-18 16:06:46 +08:00
|
|
|
int tipc_port_connect(u32 portref, struct tipc_portid const *port);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
2014-02-18 16:06:46 +08:00
|
|
|
int tipc_port_disconnect(u32 portref);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
2014-02-18 16:06:46 +08:00
|
|
|
int tipc_port_shutdown(u32 ref);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
2014-03-12 23:31:10 +08:00
|
|
|
void tipc_port_wakeup(struct tipc_port *port);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following routines require that the port be locked on entry
|
|
|
|
*/
|
2014-02-18 16:06:46 +08:00
|
|
|
int __tipc_port_disconnect(struct tipc_port *tp_ptr);
|
|
|
|
int __tipc_port_connect(u32 ref, struct tipc_port *p_ptr,
|
tipc: standardize across connect/disconnect function naming
Currently we have tipc_disconnect and tipc_disconnect_port. It is
not clear from the names alone, what they do or how they differ.
It turns out that tipc_disconnect just deals with the port locking
and then calls tipc_disconnect_port which does all the work.
If we rename as follows: tipc_disconnect_port --> __tipc_disconnect
then we will be following typical linux convention, where:
__tipc_disconnect: "raw" function that does all the work.
tipc_disconnect: wrapper that deals with locking and then calls
the real core __tipc_disconnect function
With this, the difference is immediately evident, and locking
violations are more apt to be spotted by chance while working on,
or even just while reading the code.
On the connect side of things, we currently only have the single
"tipc_connect2port" function. It does both the locking at enter/exit,
and the core of the work. Pending changes will make it desireable to
have the connect be a two part locking wrapper + worker function,
just like the disconnect is already.
Here, we make the connect look just like the updated disconnect case,
for the above reason, and for consistency. In the process, we also
get rid of the "2port" suffix that was on the original name, since
it adds no descriptive value.
On close examination, one might notice that the above connect
changes implicitly move the call to tipc_link_get_max_pkt() to be
within the scope of tipc_port_lock() protected region; when it was
not previously. We don't see any issues with this, and it is in
keeping with __tipc_connect doing the work and tipc_connect just
handling the locking.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2012-11-30 02:48:40 +08:00
|
|
|
struct tipc_portid const *peer);
|
2012-04-18 06:42:28 +08:00
|
|
|
int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
|
2010-11-30 20:00:53 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TIPC messaging routines
|
|
|
|
*/
|
|
|
|
|
2014-03-12 23:31:13 +08:00
|
|
|
int tipc_send(struct tipc_port *port,
|
|
|
|
struct iovec const *msg_sect,
|
|
|
|
unsigned int len);
|
|
|
|
|
|
|
|
int tipc_send2name(struct tipc_port *port,
|
|
|
|
struct tipc_name const *name,
|
|
|
|
u32 domain,
|
|
|
|
struct iovec const *msg_sect,
|
|
|
|
unsigned int len);
|
|
|
|
|
|
|
|
int tipc_send2port(struct tipc_port *port,
|
|
|
|
struct tipc_portid const *dest,
|
|
|
|
struct iovec const *msg_sect,
|
|
|
|
unsigned int len);
|
|
|
|
|
|
|
|
int tipc_port_mcast_xmit(struct tipc_port *port,
|
|
|
|
struct tipc_name_seq const *seq,
|
|
|
|
struct iovec const *msg,
|
|
|
|
unsigned int len);
|
|
|
|
|
|
|
|
int tipc_port_iovec_reject(struct tipc_port *p_ptr,
|
|
|
|
struct tipc_msg *hdr,
|
|
|
|
struct iovec const *msg_sect,
|
|
|
|
unsigned int len,
|
2014-02-18 16:06:46 +08:00
|
|
|
int err);
|
2014-03-12 23:31:13 +08:00
|
|
|
|
2006-01-18 07:38:21 +08:00
|
|
|
struct sk_buff *tipc_port_get_ports(void);
|
2014-02-18 16:06:46 +08:00
|
|
|
void tipc_port_proto_rcv(struct sk_buff *buf);
|
|
|
|
void tipc_port_mcast_rcv(struct sk_buff *buf, struct tipc_port_list *dp);
|
2006-01-18 07:38:21 +08:00
|
|
|
void tipc_port_reinit(void);
|
2006-01-03 02:04:38 +08:00
|
|
|
|
|
|
|
/**
|
2006-01-18 07:38:21 +08:00
|
|
|
* tipc_port_lock - lock port instance referred to and return its pointer
|
2006-01-03 02:04:38 +08:00
|
|
|
*/
|
2011-01-08 00:43:40 +08:00
|
|
|
static inline struct tipc_port *tipc_port_lock(u32 ref)
|
2006-01-03 02:04:38 +08:00
|
|
|
{
|
2011-01-08 00:43:40 +08:00
|
|
|
return (struct tipc_port *)tipc_ref_lock(ref);
|
2006-01-03 02:04:38 +08:00
|
|
|
}
|
|
|
|
|
2007-02-09 22:25:21 +08:00
|
|
|
/**
|
2006-01-18 07:38:21 +08:00
|
|
|
* tipc_port_unlock - unlock a port instance
|
2007-02-09 22:25:21 +08:00
|
|
|
*
|
2006-01-18 07:38:21 +08:00
|
|
|
* Can use pointer instead of tipc_ref_unlock() since port is already locked.
|
2006-01-03 02:04:38 +08:00
|
|
|
*/
|
2011-01-08 00:43:40 +08:00
|
|
|
static inline void tipc_port_unlock(struct tipc_port *p_ptr)
|
2006-01-03 02:04:38 +08:00
|
|
|
{
|
2011-01-08 00:43:40 +08:00
|
|
|
spin_unlock_bh(p_ptr->lock);
|
2006-01-03 02:04:38 +08:00
|
|
|
}
|
|
|
|
|
2011-01-08 00:43:40 +08:00
|
|
|
static inline int tipc_port_congested(struct tipc_port *p_ptr)
|
2006-01-03 02:04:38 +08:00
|
|
|
{
|
2014-05-14 17:39:08 +08:00
|
|
|
return ((p_ptr->sent - p_ptr->acked) >= TIPC_FLOWCTRL_WIN);
|
2006-01-03 02:04:38 +08:00
|
|
|
}
|
|
|
|
|
2014-03-12 23:31:08 +08:00
|
|
|
|
|
|
|
static inline u32 tipc_port_peernode(struct tipc_port *p_ptr)
|
|
|
|
{
|
|
|
|
return msg_destnode(&p_ptr->phdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 tipc_port_peerport(struct tipc_port *p_ptr)
|
|
|
|
{
|
|
|
|
return msg_destport(&p_ptr->phdr);
|
|
|
|
}
|
|
|
|
|
2014-03-12 23:31:11 +08:00
|
|
|
static inline bool tipc_port_unreliable(struct tipc_port *port)
|
|
|
|
{
|
|
|
|
return msg_src_droppable(&port->phdr) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tipc_port_set_unreliable(struct tipc_port *port,
|
|
|
|
bool unreliable)
|
|
|
|
{
|
|
|
|
msg_set_src_droppable(&port->phdr, unreliable ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool tipc_port_unreturnable(struct tipc_port *port)
|
|
|
|
{
|
|
|
|
return msg_dest_droppable(&port->phdr) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tipc_port_set_unreturnable(struct tipc_port *port,
|
|
|
|
bool unreturnable)
|
|
|
|
{
|
|
|
|
msg_set_dest_droppable(&port->phdr, unreturnable ? 1 : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int tipc_port_importance(struct tipc_port *port)
|
|
|
|
{
|
|
|
|
return msg_importance(&port->phdr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void tipc_port_set_importance(struct tipc_port *port, int imp)
|
|
|
|
{
|
|
|
|
msg_set_importance(&port->phdr, (u32)imp);
|
|
|
|
}
|
|
|
|
|
2006-01-03 02:04:38 +08:00
|
|
|
#endif
|