link.h 9.5 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/link.h: Include file for TIPC link code
3
 *
4
 * Copyright (c) 1995-2006, 2013-2014, Ericsson AB
5
 * Copyright (c) 2004-2005, 2010-2011, 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
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef _TIPC_LINK_H
#define _TIPC_LINK_H

40
#include <net/genetlink.h>
P
Per Liden 已提交
41 42 43
#include "msg.h"
#include "node.h"

Y
Ying Xue 已提交
44 45 46 47
/* TIPC-specific error codes
*/
#define ELINKCONG EAGAIN	/* link congestion <=> resource unavailable */

48
/* Out-of-range value for link sequence numbers
49 50 51
 */
#define INVALID_LINK_SEQ 0x10000

52
/* Link working states
P
Per Liden 已提交
53 54 55 56 57 58
 */
#define WORKING_WORKING 560810u
#define WORKING_UNKNOWN 560811u
#define RESET_UNKNOWN   560812u
#define RESET_RESET     560813u

59 60
/* Link endpoint execution states
 */
61 62 63 64
#define LINK_STARTED     0x0001
#define LINK_STOPPED     0x0002
#define LINK_SYNCHING    0x0004
#define LINK_FAILINGOVER 0x0008
65 66

/* Starting value for maximum packet size negotiation on unicast links
P
Per Liden 已提交
67 68 69 70
 * (unless bearer MTU is less)
 */
#define MAX_PKT_DEFAULT 1500

71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
struct tipc_stats {
	u32 sent_info;		/* used in counting # sent packets */
	u32 recv_info;		/* used in counting # recv'd packets */
	u32 sent_states;
	u32 recv_states;
	u32 sent_probes;
	u32 recv_probes;
	u32 sent_nacks;
	u32 recv_nacks;
	u32 sent_acks;
	u32 sent_bundled;
	u32 sent_bundles;
	u32 recv_bundled;
	u32 recv_bundles;
	u32 retransmitted;
	u32 sent_fragmented;
	u32 sent_fragments;
	u32 recv_fragmented;
	u32 recv_fragments;
	u32 link_congs;		/* # port sends blocked by congestion */
	u32 deferred_recv;
	u32 duplicates;
	u32 max_queue_sz;	/* send queue size high water mark */
	u32 accu_queue_sz;	/* used for send queue size profiling */
	u32 queue_sz_counts;	/* used for send queue size profiling */
	u32 msg_length_counts;	/* used for message length profiling */
	u32 msg_lengths_total;	/* used for message length profiling */
	u32 msg_length_profile[7]; /* used for msg. length profiling */
};

P
Per Liden 已提交
101
/**
102
 * struct tipc_link - TIPC link data structure
P
Per Liden 已提交
103 104 105 106 107
 * @addr: network address of link's peer node
 * @name: link name character string
 * @media_addr: media address to use when sending messages over link
 * @timer: link timer
 * @owner: pointer to peer node
108
 * @refcnt: reference counter for permanent references (owner node & timer)
109
 * @flags: execution state flags for link endpoint instance
P
Per Liden 已提交
110 111
 * @peer_session: link session # being used by peer end of link
 * @peer_bearer_id: bearer id used by link's peer endpoint
112
 * @bearer_id: local bearer id used by link
113
 * @tolerance: minimum link continuity loss needed to reset link [in ms]
114
 * @keepalive_intv: link keepalive timer interval
P
Per Liden 已提交
115 116
 * @abort_limit: # of unacknowledged continuity probes needed to reset link
 * @state: current state of link FSM
117
 * @silent_intv_cnt: # of timer intervals without any reception from peer
P
Per Liden 已提交
118 119 120
 * @proto_msg: template for control messages generated by link
 * @pmsg: convenience pointer to "proto_msg" field
 * @priority: current link priority
121
 * @net_plane: current link network plane ('A' through 'H')
122
 * @backlog_limit: backlog queue congestion thresholds (indexed by importance)
P
Per Liden 已提交
123
 * @exp_msg_count: # of tunnelled messages expected during link changeover
124
 * @reset_rcv_checkpt: seq # of last acknowledged message at time of link reset
125 126
 * @mtu: current maximum packet size for this link
 * @advertised_mtu: advertised own mtu when link is being established
J
Jon Paul Maloy 已提交
127 128
 * @transmitq: queue for sent, non-acked messages
 * @backlogq: queue for messages waiting to be sent
129
 * @snt_nxt: next sequence number to use for outbound messages
P
Per Liden 已提交
130 131
 * @last_retransmitted: sequence number of most recently retransmitted message
 * @stale_count: # of identical retransmit requests made by peer
132
 * @rcv_nxt: next sequence number to expect for inbound messages
133
 * @deferred_queue: deferred queue saved OOS b'cast message received from node
P
Per Liden 已提交
134
 * @unacked_window: # of inbound messages rx'd without ack'ing back to peer
135 136
 * @inputq: buffer queue for messages to be delivered upwards
 * @namedq: buffer queue for name table messages to be delivered upwards
P
Per Liden 已提交
137
 * @next_out: ptr to first unsent outbound message in queue
138
 * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate
P
Per Liden 已提交
139
 * @long_msg_seq_no: next identifier to use for outbound fragmented messages
140
 * @reasm_buf: head of partially reassembled inbound message fragments
P
Per Liden 已提交
141 142
 * @stats: collects statistics regarding link activity
 */
143
struct tipc_link {
P
Per Liden 已提交
144 145 146 147
	u32 addr;
	char name[TIPC_MAX_LINK_NAME];
	struct tipc_media_addr media_addr;
	struct timer_list timer;
148
	struct tipc_node *owner;
149
	struct kref ref;
P
Per Liden 已提交
150 151

	/* Management and link supervision data */
152
	unsigned int flags;
P
Per Liden 已提交
153 154
	u32 peer_session;
	u32 peer_bearer_id;
155
	u32 bearer_id;
P
Per Liden 已提交
156
	u32 tolerance;
157
	unsigned long keepalive_intv;
P
Per Liden 已提交
158 159
	u32 abort_limit;
	int state;
160
	u32 silent_intv_cnt;
P
Per Liden 已提交
161 162 163 164 165 166
	struct {
		unchar hdr[INT_H_SIZE];
		unchar body[TIPC_MAX_IF_NAME];
	} proto_msg;
	struct tipc_msg *pmsg;
	u32 priority;
167
	char net_plane;
168
	u16 synch_point;
P
Per Liden 已提交
169

170 171 172 173
	/* Failover */
	u16 failover_pkts;
	u16 failover_checkpt;
	struct sk_buff *failover_skb;
P
Per Liden 已提交
174

175
	/* Max packet negotiation */
176 177
	u16 mtu;
	u16 advertised_mtu;
P
Per Liden 已提交
178 179

	/* Sending */
J
Jon Paul Maloy 已提交
180 181
	struct sk_buff_head transmq;
	struct sk_buff_head backlogq;
182 183 184 185
	struct {
		u16 len;
		u16 limit;
	} backlog[5];
186 187
	u16 snd_nxt;
	u16 last_retransm;
J
Jon Paul Maloy 已提交
188
	u32 window;
189
	u32 stale_count;
P
Per Liden 已提交
190 191

	/* Reception */
192
	u16 rcv_nxt;
J
Jon Paul Maloy 已提交
193 194
	u32 rcv_unacked;
	struct sk_buff_head deferdq;
195 196
	struct sk_buff_head *inputq;
	struct sk_buff_head *namedq;
P
Per Liden 已提交
197 198

	/* Congestion handling */
199
	struct sk_buff_head wakeupq;
P
Per Liden 已提交
200

201
	/* Fragmentation/reassembly */
202
	struct sk_buff *reasm_buf;
P
Per Liden 已提交
203

204
	/* Statistics */
205
	struct tipc_stats stats;
P
Per Liden 已提交
206 207
};

208
struct tipc_port;
P
Per Liden 已提交
209

210 211 212 213 214
struct tipc_link *tipc_link_create(struct tipc_node *n,
				   struct tipc_bearer *b,
				   const struct tipc_media_addr *maddr,
				   struct sk_buff_head *inputq,
				   struct sk_buff_head *namedq);
215
void tipc_link_delete(struct tipc_link *link);
216
void tipc_link_delete_list(struct net *net, unsigned int bearer_id);
217
void tipc_link_failover_send_queue(struct tipc_link *l_ptr);
218
void tipc_link_dup_queue_xmit(struct tipc_link *l_ptr, struct tipc_link *dest);
219 220 221
void tipc_link_reset_fragments(struct tipc_link *l_ptr);
int tipc_link_is_up(struct tipc_link *l_ptr);
int tipc_link_is_active(struct tipc_link *l_ptr);
222
void tipc_link_purge_queues(struct tipc_link *l_ptr);
223
void tipc_link_purge_backlog(struct tipc_link *l);
224
void tipc_link_reset_all(struct tipc_node *node);
225
void tipc_link_reset(struct tipc_link *l_ptr);
226 227
int __tipc_link_xmit(struct net *net, struct tipc_link *link,
		     struct sk_buff_head *list);
228 229
int tipc_link_xmit(struct tipc_link *link,	struct sk_buff_head *list,
		   struct sk_buff_head *xmitq);
230
void tipc_link_proto_xmit(struct tipc_link *l_ptr, u32 msg_typ, int prob,
231
			  u32 gap, u32 tolerance, u32 priority);
232
void tipc_link_push_packets(struct tipc_link *l_ptr);
233
u32 tipc_link_defer_pkt(struct sk_buff_head *list, struct sk_buff *buf);
234 235 236
void tipc_link_set_queue_limits(struct tipc_link *l_ptr, u32 window);
void tipc_link_retransmit(struct tipc_link *l_ptr,
			  struct sk_buff *start, u32 retransmits);
237 238
struct sk_buff *tipc_skb_queue_next(const struct sk_buff_head *list,
				    const struct sk_buff *skb);
P
Per Liden 已提交
239

240 241
int tipc_nl_link_dump(struct sk_buff *skb, struct netlink_callback *cb);
int tipc_nl_link_get(struct sk_buff *skb, struct genl_info *info);
242
int tipc_nl_link_set(struct sk_buff *skb, struct genl_info *info);
243
int tipc_nl_link_reset_stats(struct sk_buff *skb, struct genl_info *info);
244
int tipc_nl_parse_link_prop(struct nlattr *prop, struct nlattr *props[]);
245
void link_prepare_wakeup(struct tipc_link *l);
246

247 248 249 250
static inline u32 link_own_addr(struct tipc_link *l)
{
	return msg_prevnode(l->pmsg);
}
251 252 253 254

/*
 * Link status checking routines
 */
255
static inline int link_working_working(struct tipc_link *l_ptr)
256
{
E
Eric Dumazet 已提交
257
	return l_ptr->state == WORKING_WORKING;
258 259
}

260
static inline int link_working_unknown(struct tipc_link *l_ptr)
261
{
E
Eric Dumazet 已提交
262
	return l_ptr->state == WORKING_UNKNOWN;
263 264
}

265
static inline int link_reset_unknown(struct tipc_link *l_ptr)
266
{
E
Eric Dumazet 已提交
267
	return l_ptr->state == RESET_UNKNOWN;
268 269
}

270
static inline int link_reset_reset(struct tipc_link *l_ptr)
271
{
E
Eric Dumazet 已提交
272
	return l_ptr->state == RESET_RESET;
273 274
}

P
Per Liden 已提交
275
#endif