port.h 7.1 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/port.h: Include file for TIPC port code
3
 *
4
 * Copyright (c) 1994-2007, Ericsson AB
5
 * Copyright (c) 2004-2007, 2010-2013, Wind River Systems
P
Per Liden 已提交
6 7
 * All rights reserved.
 *
P
Per Liden 已提交
8
 * Redistribution and use in source and binary forms, with or without
P
Per Liden 已提交
9 10
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18
 * 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.
P
Per Liden 已提交
19
 *
P
Per Liden 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * 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
P
Per Liden 已提交
34 35 36 37 38 39 40 41 42 43 44
 * 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"

45
#define TIPC_FLOW_CONTROL_WIN 512
46 47
#define CONN_OVERLOAD_LIMIT	((TIPC_FLOW_CONTROL_WIN * 2 + 1) * \
				SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
48 49

/**
50
 * struct tipc_port - TIPC port structure
51 52 53 54 55 56 57 58 59 60 61
 * @usr_handle: pointer to additional user-defined information about port
 * @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
P
Per Liden 已提交
62 63 64 65 66
 * @port_list: adjacent ports in TIPC's global list of ports
 * @dispatcher: ptr to routine which handles received messages
 * @wakeup: ptr to routine to call when port is no longer congested
 * @wait_list: adjacent ports in list of ports waiting on link congestion
 * @waiting_pkts:
67 68
 * @sent: # of non-empty messages sent by port
 * @acked: # of non-empty message acknowledgements from connected port's peer
P
Per Liden 已提交
69 70 71 72 73 74 75
 * @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
 */
76 77 78 79 80 81 82 83 84 85 86 87
struct tipc_port {
	void *usr_handle;
	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;
P
Per Liden 已提交
88 89 90 91 92 93 94 95 96 97 98 99
	struct list_head port_list;
	u32 (*dispatcher)(struct tipc_port *, struct sk_buff *);
	void (*wakeup)(struct tipc_port *);
	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;
100
	struct tipc_node_subscr subscription;
P
Per Liden 已提交
101 102
};

103
extern spinlock_t tipc_port_list_lock;
104
struct tipc_port_list;
P
Per Liden 已提交
105

106 107 108
/*
 * TIPC port manipulation routines
 */
109
struct tipc_port *tipc_createport(void *usr_handle,
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
		u32 (*dispatcher)(struct tipc_port *, struct sk_buff *),
		void (*wakeup)(struct tipc_port *), const u32 importance);

int tipc_reject_msg(struct sk_buff *buf, u32 err);

void tipc_acknowledge(u32 port_ref, u32 ack);

int tipc_deleteport(u32 portref);

int tipc_portimportance(u32 portref, unsigned int *importance);
int tipc_set_portimportance(u32 portref, unsigned int importance);

int tipc_portunreliable(u32 portref, unsigned int *isunreliable);
int tipc_set_portunreliable(u32 portref, unsigned int isunreliable);

int tipc_portunreturnable(u32 portref, unsigned int *isunreturnable);
int tipc_set_portunreturnable(u32 portref, unsigned int isunreturnable);

int tipc_publish(u32 portref, unsigned int scope,
		struct tipc_name_seq const *name_seq);
int tipc_withdraw(u32 portref, unsigned int scope,
		struct tipc_name_seq const *name_seq);

133
int tipc_connect(u32 portref, struct tipc_portid const *port);
134 135 136 137 138 139 140 141 142

int tipc_disconnect(u32 portref);

int tipc_shutdown(u32 ref);


/*
 * The following routines require that the port be locked on entry
 */
143 144 145
int __tipc_disconnect(struct tipc_port *tp_ptr);
int __tipc_connect(u32 ref, struct tipc_port *p_ptr,
		   struct tipc_portid const *peer);
146
int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
147 148 149 150

/*
 * TIPC messaging routines
 */
151
int tipc_port_recv_msg(struct sk_buff *buf);
152 153
int tipc_send(u32 portref, unsigned int num_sect, struct iovec const *msg_sect,
	      unsigned int total_len);
154 155

int tipc_send2name(u32 portref, struct tipc_name const *name, u32 domain,
156 157
		   unsigned int num_sect, struct iovec const *msg_sect,
		   unsigned int total_len);
158 159

int tipc_send2port(u32 portref, struct tipc_portid const *dest,
160 161
		   unsigned int num_sect, struct iovec const *msg_sect,
		   unsigned int total_len);
162

163
int tipc_multicast(u32 portref, struct tipc_name_seq const *seq,
164 165
		   unsigned int section_count, struct iovec const *msg,
		   unsigned int total_len);
166

167
int tipc_port_reject_sections(struct tipc_port *p_ptr, struct tipc_msg *hdr,
168
			      struct iovec const *msg_sect, u32 num_sect,
169
			      unsigned int total_len, int err);
170 171
struct sk_buff *tipc_port_get_ports(void);
void tipc_port_recv_proto_msg(struct sk_buff *buf);
172
void tipc_port_recv_mcast(struct sk_buff *buf, struct tipc_port_list *dp);
173
void tipc_port_reinit(void);
P
Per Liden 已提交
174 175

/**
176
 * tipc_port_lock - lock port instance referred to and return its pointer
P
Per Liden 已提交
177
 */
178
static inline struct tipc_port *tipc_port_lock(u32 ref)
P
Per Liden 已提交
179
{
180
	return (struct tipc_port *)tipc_ref_lock(ref);
P
Per Liden 已提交
181 182
}

183
/**
184
 * tipc_port_unlock - unlock a port instance
185
 *
186
 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
P
Per Liden 已提交
187
 */
188
static inline void tipc_port_unlock(struct tipc_port *p_ptr)
P
Per Liden 已提交
189
{
190
	spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
191 192
}

193
static inline struct tipc_port *tipc_port_deref(u32 ref)
P
Per Liden 已提交
194
{
195
	return (struct tipc_port *)tipc_ref_deref(ref);
P
Per Liden 已提交
196 197
}

198
static inline int tipc_port_congested(struct tipc_port *p_ptr)
P
Per Liden 已提交
199
{
E
Eric Dumazet 已提交
200
	return (p_ptr->sent - p_ptr->acked) >= (TIPC_FLOW_CONTROL_WIN * 2);
P
Per Liden 已提交
201 202 203
}

#endif