port.h 5.4 KB
Newer Older
P
Per Liden 已提交
1 2
/*
 * net/tipc/port.h: Include file for TIPC port code
3
 *
4
 * Copyright (c) 1994-2007, 2014, 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 46 47 48
#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))
49 50

/**
51
 * struct tipc_port - TIPC port structure
52 53 54 55 56 57 58 59
 * @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
 * @published: non-zero if port has one or more associated names
 * @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 已提交
60 61 62 63 64 65 66 67
 * @port_list: adjacent ports in TIPC's global list of ports
 * @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
 */
68 69 70 71 72 73 74 75 76
struct tipc_port {
	spinlock_t *lock;
	int connected;
	u32 conn_type;
	u32 conn_instance;
	int published;
	u32 max_pkt;
	u32 ref;
	struct tipc_msg phdr;
P
Per Liden 已提交
77 78 79 80 81 82
	struct list_head port_list;
	struct list_head publications;
	u32 pub_count;
	u32 probing_state;
	u32 probing_interval;
	struct timer_list timer;
83
	struct tipc_node_subscr subscription;
P
Per Liden 已提交
84 85
};

86
extern spinlock_t tipc_port_list_lock;
87
struct tipc_port_list;
P
Per Liden 已提交
88

89 90 91
/*
 * TIPC port manipulation routines
 */
92 93
u32 tipc_port_init(struct tipc_port *p_ptr,
		   const unsigned int importance);
94 95 96

void tipc_acknowledge(u32 port_ref, u32 ack);

97
void tipc_port_destroy(struct tipc_port *p_ptr);
98

99
int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
100
		 struct tipc_name_seq const *name_seq);
101

102
int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
103
		  struct tipc_name_seq const *name_seq);
104

105
int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
106

107 108
struct sk_buff *tipc_port_get_ports(void);
void tipc_port_reinit(void);
P
Per Liden 已提交
109 110

/**
111
 * tipc_port_lock - lock port instance referred to and return its pointer
P
Per Liden 已提交
112
 */
113
static inline struct tipc_port *tipc_port_lock(u32 ref)
P
Per Liden 已提交
114
{
115
	return (struct tipc_port *)tipc_ref_lock(ref);
P
Per Liden 已提交
116 117
}

118
/**
119
 * tipc_port_unlock - unlock a port instance
120
 *
121
 * Can use pointer instead of tipc_ref_unlock() since port is already locked.
P
Per Liden 已提交
122
 */
123
static inline void tipc_port_unlock(struct tipc_port *p_ptr)
P
Per Liden 已提交
124
{
125
	spin_unlock_bh(p_ptr->lock);
P
Per Liden 已提交
126 127
}

128 129 130 131 132 133 134 135 136 137
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);
}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
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);
}

166
static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
167
{
168
	if (imp > TIPC_CRITICAL_IMPORTANCE)
D
David S. Miller 已提交
169
		return -EINVAL;
170
	msg_set_importance(&port->phdr, (u32)imp);
D
David S. Miller 已提交
171
	return 0;
172 173
}

P
Per Liden 已提交
174
#endif