Blame view

net/tipc/node.h 4.92 KB
b97bf3fd8   Per Liden   [TIPC] Initial merge
1
2
  /*
   * net/tipc/node.h: Include file for TIPC node management routines
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
3
   *
02d11ca20   Jon Paul Maloy   tipc: transfer br...
4
   * Copyright (c) 2000-2006, 2014-2016, Ericsson AB
46651c59c   Ying Xue   tipc: rename node...
5
   * Copyright (c) 2005, 2010-2014, Wind River Systems
b97bf3fd8   Per Liden   [TIPC] Initial merge
6
7
   * All rights reserved.
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
8
   * Redistribution and use in source and binary forms, with or without
b97bf3fd8   Per Liden   [TIPC] Initial merge
9
10
   * modification, are permitted provided that the following conditions are met:
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
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.
b97bf3fd8   Per Liden   [TIPC] Initial merge
19
   *
9ea1fd3c1   Per Liden   [TIPC] License he...
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
b97bf3fd8   Per Liden   [TIPC] Initial merge
34
35
36
37
38
   * POSSIBILITY OF SUCH DAMAGE.
   */
  
  #ifndef _TIPC_NODE_H
  #define _TIPC_NODE_H
8f92df6ad   Allan Stephens   tipc: Remove prot...
39
40
  #include "addr.h"
  #include "net.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
41
  #include "bearer.h"
16e166b88   Jon Paul Maloy   tipc: make link m...
42
  #include "msg.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
43

fd556f209   Jon Paul Maloy   tipc: introduce c...
44
45
46
  /* Optional capabilities supported by this code version
   */
  enum {
25b9221b9   Jon Maloy   tipc: add SYN bit...
47
  	TIPC_SYN_BIT          = (1),
02d11ca20   Jon Paul Maloy   tipc: transfer br...
48
49
  	TIPC_BCAST_SYNCH      = (1 << 1),
  	TIPC_BCAST_STATE_NACK = (1 << 2),
01fd12bb1   Jon Paul Maloy   tipc: make replic...
50
  	TIPC_BLOCK_FLOWCTL    = (1 << 3),
75da2163d   Jon Maloy   tipc: introduce c...
51
  	TIPC_BCAST_RCAST      = (1 << 4),
9012de508   Jon Maloy   tipc: add sequenc...
52
  	TIPC_NODE_ID128       = (1 << 5),
ff2ebbfba   Hoang Le   tipc: introduce n...
53
  	TIPC_LINK_PROTO_SEQNO = (1 << 6),
9195948fb   Tuong Lien   tipc: improve TIP...
54
  	TIPC_MCAST_RBCTL      = (1 << 7),
4929a932b   Tuong Lien   tipc: optimize li...
55
56
  	TIPC_GAP_ACK_BLOCK    = (1 << 8),
  	TIPC_TUNNEL_ENHANCED  = (1 << 9)
fd556f209   Jon Paul Maloy   tipc: introduce c...
57
  };
25b9221b9   Jon Maloy   tipc: add SYN bit...
58
59
60
61
62
63
  #define TIPC_NODE_CAPABILITIES (TIPC_SYN_BIT           |  \
  				TIPC_BCAST_SYNCH       |   \
  				TIPC_BCAST_STATE_NACK  |   \
  				TIPC_BCAST_RCAST       |   \
  				TIPC_BLOCK_FLOWCTL     |   \
  				TIPC_NODE_ID128        |   \
ff2ebbfba   Hoang Le   tipc: introduce n...
64
  				TIPC_LINK_PROTO_SEQNO  |   \
9195948fb   Tuong Lien   tipc: improve TIP...
65
  				TIPC_MCAST_RBCTL       |   \
4929a932b   Tuong Lien   tipc: optimize li...
66
67
  				TIPC_GAP_ACK_BLOCK     |   \
  				TIPC_TUNNEL_ENHANCED)
38206d593   Jon Paul Maloy   tipc: narrow down...
68
  #define INVALID_BEARER_ID -1
fd556f209   Jon Paul Maloy   tipc: introduce c...
69

f2f9800d4   Ying Xue   tipc: make tipc n...
70
  void tipc_node_stop(struct net *net);
3e5cf362c   Jon Maloy   tipc: introduce i...
71
  bool tipc_node_get_id(struct net *net, u32 addr, u8 *id);
b4b9771bc   Tuong Lien   tipc: enable trac...
72
  u32 tipc_node_get_addr(struct tipc_node *node);
25b0b9c4e   Jon Maloy   tipc: handle coll...
73
74
  u32 tipc_node_try_addr(struct net *net, u8 *id, u32 addr);
  void tipc_node_check_dest(struct net *net, u32 onode, u8 *peer_id128,
cf148816a   Jon Paul Maloy   tipc: move receiv...
75
76
77
78
  			  struct tipc_bearer *bearer,
  			  u16 capabilities, u32 signature,
  			  struct tipc_media_addr *maddr,
  			  bool *respond, bool *dupl_addr);
6144a996a   Jon Paul Maloy   tipc: move all li...
79
  void tipc_node_delete_links(struct net *net, int bearer_id);
682cd3cf9   GhantaKrishnamurthy MohanKrishna   tipc: confgiure a...
80
  void tipc_node_apply_property(struct net *net, struct tipc_bearer *b, int prop);
f2f9800d4   Ying Xue   tipc: make tipc n...
81
82
  int tipc_node_get_linkname(struct net *net, u32 bearer_id, u32 node,
  			   char *linkname, size_t len);
af9b028e2   Jon Paul Maloy   tipc: make media ...
83
84
  int tipc_node_xmit(struct net *net, struct sk_buff_head *list, u32 dnode,
  		   int selector);
f70d37b79   Jon Maloy   tipc: add new fun...
85
  int tipc_node_distr_xmit(struct net *net, struct sk_buff_head *list);
af9b028e2   Jon Paul Maloy   tipc: make media ...
86
87
  int tipc_node_xmit_skb(struct net *net, struct sk_buff *skb, u32 dest,
  		       u32 selector);
1d7e1c259   Jon Paul Maloy   tipc: reduce code...
88
89
90
  void tipc_node_subscribe(struct net *net, struct list_head *subscr, u32 addr);
  void tipc_node_unsubscribe(struct net *net, struct list_head *subscr, u32 addr);
  void tipc_node_broadcast(struct net *net, struct sk_buff *skb);
f2f9800d4   Ying Xue   tipc: make tipc n...
91
92
  int tipc_node_add_conn(struct net *net, u32 dnode, u32 port, u32 peer_port);
  void tipc_node_remove_conn(struct net *net, u32 dnode, u32 port);
5be9c0867   Jon Paul Maloy   tipc: narrow down...
93
  int tipc_node_get_mtu(struct net *net, u32 addr, u32 sel);
38077b8ef   Jon Maloy   tipc: add ability...
94
  bool tipc_node_is_up(struct net *net, u32 addr);
60020e185   Jon Paul Maloy   tipc: propagate p...
95
  u16 tipc_node_get_capabilities(struct net *net, u32 addr);
3e4b6ab58   Richard Alpe   tipc: add node ge...
96
  int tipc_nl_node_dump(struct sk_buff *skb, struct netlink_callback *cb);
38206d593   Jon Paul Maloy   tipc: narrow down...
97
  int tipc_nl_node_dump_link(struct sk_buff *skb, struct netlink_callback *cb);
5be9c0867   Jon Paul Maloy   tipc: narrow down...
98
99
100
  int tipc_nl_node_reset_link_stats(struct sk_buff *skb, struct genl_info *info);
  int tipc_nl_node_get_link(struct sk_buff *skb, struct genl_info *info);
  int tipc_nl_node_set_link(struct sk_buff *skb, struct genl_info *info);
b34040227   Richard Alpe   tipc: add peer re...
101
  int tipc_nl_peer_rm(struct sk_buff *skb, struct genl_info *info);
16e166b88   Jon Paul Maloy   tipc: make link m...
102

7b3f52296   Parthasarathy Bhuvaragan   tipc: make cluste...
103
  int tipc_nl_node_set_monitor(struct sk_buff *skb, struct genl_info *info);
bf1035b2f   Parthasarathy Bhuvaragan   tipc: get monitor...
104
  int tipc_nl_node_get_monitor(struct sk_buff *skb, struct genl_info *info);
cf6f7e1d5   Parthasarathy Bhuvaragan   tipc: dump monito...
105
106
107
  int tipc_nl_node_dump_monitor(struct sk_buff *skb, struct netlink_callback *cb);
  int tipc_nl_node_dump_monitor_peer(struct sk_buff *skb,
  				   struct netlink_callback *cb);
b97bf3fd8   Per Liden   [TIPC] Initial merge
108
  #endif