Blame view

net/tipc/addr.h 3 KB
b97bf3fd8   Per Liden   [TIPC] Initial merge
1
2
  /*
   * net/tipc/addr.h: Include file for TIPC address utility routines
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
3
   *
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
4
   * Copyright (c) 2000-2006, 2018, Ericsson AB
b97bf3fd8   Per Liden   [TIPC] Initial merge
5
   * Copyright (c) 2004-2005, 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_ADDR_H
  #define _TIPC_ADDR_H
1da465683   Ying Xue   tipc: make tipc b...
39
40
  #include <linux/types.h>
  #include <linux/tipc.h>
347475395   Ying Xue   tipc: make tipc n...
41
42
  #include <net/net_namespace.h>
  #include <net/netns/generic.h>
a6bf70f79   Jon Paul Maloy   tipc: simplify in...
43
  #include "core.h"
1da465683   Ying Xue   tipc: make tipc b...
44

a6bf70f79   Jon Paul Maloy   tipc: simplify in...
45
46
  static inline u32 tipc_own_addr(struct net *net)
  {
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
47
48
49
50
51
  	return tipc_net(net)->node_addr;
  }
  
  static inline u8 *tipc_own_id(struct net *net)
  {
23fd3eace   Jon Maloy   tipc: remove dire...
52
  	struct tipc_net *tn = tipc_net(net);
a6bf70f79   Jon Paul Maloy   tipc: simplify in...
53

d50ccc2d3   Jon Maloy   tipc: add 128-bit...
54
55
56
57
58
59
60
61
  	if (!strlen(tn->node_id_string))
  		return NULL;
  	return tn->node_id;
  }
  
  static inline char *tipc_own_id_string(struct net *net)
  {
  	return tipc_net(net)->node_id_string;
a6bf70f79   Jon Paul Maloy   tipc: simplify in...
62
  }
a3796f895   Allan Stephens   tipc: Add network...
63
64
  static inline u32 tipc_cluster_mask(u32 addr)
  {
9ff26e9fa   Parthasarathy Bhuvaragan   tipc: introduce c...
65
  	return addr & TIPC_ZONE_CLUSTER_MASK;
a3796f895   Allan Stephens   tipc: Add network...
66
  }
928df1880   Jon Maloy   tipc: obsolete TI...
67
68
69
70
71
72
73
74
75
  static inline int tipc_node2scope(u32 node)
  {
  	return node ? TIPC_NODE_SCOPE : TIPC_CLUSTER_SCOPE;
  }
  
  static inline int tipc_scope2node(struct net *net, int sc)
  {
  	return sc != TIPC_NODE_SCOPE ? 0 : tipc_own_addr(net);
  }
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
76
77
78
79
  static inline int in_own_node(struct net *net, u32 addr)
  {
  	return addr == tipc_own_addr(net) || !addr;
  }
b89afb116   Jon Maloy   tipc: allow close...
80
  bool tipc_in_scope(bool legacy_format, u32 domain, u32 addr);
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
81
82
83
84
  void tipc_set_node_id(struct net *net, u8 *id);
  void tipc_set_node_addr(struct net *net, u32 addr);
  char *tipc_nodeid2string(char *str, u8 *id);
  u32 tipc_node_id2hash(u8 *id128);
35c55c987   Jon Paul Maloy   tipc: add neighbo...
85

b97bf3fd8   Per Liden   [TIPC] Initial merge
86
  #endif