tipc: remove source file port.c
[cascardo/linux.git] / net / tipc / port.h
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
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 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.
19  *
20  * 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
34  * POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 #ifndef _TIPC_PORT_H
38 #define _TIPC_PORT_H
39
40 #include "net.h"
41 #include "msg.h"
42 #include "node_subscr.h"
43
44 #define TIPC_CONNACK_INTV         256
45 #define TIPC_FLOWCTRL_WIN        (TIPC_CONNACK_INTV * 2)
46 #define TIPC_CONN_OVERLOAD_LIMIT ((TIPC_FLOWCTRL_WIN * 2 + 1) * \
47                                   SKB_TRUESIZE(TIPC_MAX_USER_MSG_SIZE))
48
49 /**
50  * struct tipc_port - TIPC port structure
51  * @lock: pointer to spinlock for controlling access to port
52  * @connected: non-zero if port is currently connected to a peer port
53  * @conn_type: TIPC type used when connection was established
54  * @conn_instance: TIPC instance used when connection was established
55  * @published: non-zero if port has one or more associated names
56  * @max_pkt: maximum packet size "hint" used when building messages sent by port
57  * @ref: unique reference to port in TIPC object registry
58  * @phdr: preformatted message header used when sending messages
59  * @port_list: adjacent ports in TIPC's global list of ports
60  * @publications: list of publications for port
61  * @pub_count: total # of publications port has made during its lifetime
62  * @probing_state:
63  * @probing_interval:
64  * @timer_ref:
65  */
66 struct tipc_port {
67         int connected;
68         u32 conn_type;
69         u32 conn_instance;
70         int published;
71         u32 max_pkt;
72         u32 ref;
73         struct tipc_msg phdr;
74         struct list_head publications;
75         u32 pub_count;
76         u32 probing_state;
77         u32 probing_interval;
78         struct timer_list timer;
79 };
80
81 /*
82  * TIPC port manipulation routines
83  */
84 u32 tipc_port_init(struct tipc_port *p_ptr,
85                    const unsigned int importance);
86
87 void tipc_port_destroy(struct tipc_port *p_ptr);
88
89 int tipc_publish(struct tipc_port *p_ptr, unsigned int scope,
90                  struct tipc_name_seq const *name_seq);
91
92 int tipc_withdraw(struct tipc_port *p_ptr, unsigned int scope,
93                   struct tipc_name_seq const *name_seq);
94
95 int tipc_port_peer_msg(struct tipc_port *p_ptr, struct tipc_msg *msg);
96
97 void tipc_port_reinit(void);
98
99 static inline u32 tipc_port_peernode(struct tipc_port *p_ptr)
100 {
101         return msg_destnode(&p_ptr->phdr);
102 }
103
104 static inline u32 tipc_port_peerport(struct tipc_port *p_ptr)
105 {
106         return msg_destport(&p_ptr->phdr);
107 }
108
109 static inline  bool tipc_port_unreliable(struct tipc_port *port)
110 {
111         return msg_src_droppable(&port->phdr) != 0;
112 }
113
114 static inline void tipc_port_set_unreliable(struct tipc_port *port,
115                                             bool unreliable)
116 {
117         msg_set_src_droppable(&port->phdr, unreliable ? 1 : 0);
118 }
119
120 static inline bool tipc_port_unreturnable(struct tipc_port *port)
121 {
122         return msg_dest_droppable(&port->phdr) != 0;
123 }
124
125 static inline void tipc_port_set_unreturnable(struct tipc_port *port,
126                                              bool unreturnable)
127 {
128         msg_set_dest_droppable(&port->phdr, unreturnable ? 1 : 0);
129 }
130
131
132 static inline int tipc_port_importance(struct tipc_port *port)
133 {
134         return msg_importance(&port->phdr);
135 }
136
137 static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
138 {
139         if (imp > TIPC_CRITICAL_IMPORTANCE)
140                 return -EINVAL;
141         msg_set_importance(&port->phdr, (u32)imp);
142         return 0;
143 }
144
145 #endif