Blame view

net/tipc/core.c 4.68 KB
b97bf3fd8   Per Liden   [TIPC] Initial merge
1
2
3
  /*
   * net/tipc/core.c: TIPC module code
   *
9da1c8b69   Per Liden   [TIPC] Update of ...
4
   * Copyright (c) 2003-2006, Ericsson AB
4132facae   Allan Stephens   tipc: Remove unus...
5
   * Copyright (c) 2005-2006, 2010-2011, 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
   * POSSIBILITY OF SUCH DAMAGE.
   */
b97bf3fd8   Per Liden   [TIPC] Initial merge
36
  #include "core.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
37
  #include "ref.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
38
39
40
  #include "name_table.h"
  #include "subscr.h"
  #include "config.h"
2cf8aa19f   Erik Hugne   tipc: use standar...
41
  #include <linux/module.h>
b97bf3fd8   Per Liden   [TIPC] Initial merge
42

b97bf3fd8   Per Liden   [TIPC] Initial merge
43
  /* global variables used by multiple sub-systems within TIPC */
61cdd4d80   Ying Xue   tipc: add __read_...
44
  int tipc_random __read_mostly;
b97bf3fd8   Per Liden   [TIPC] Initial merge
45

b97bf3fd8   Per Liden   [TIPC] Initial merge
46
  /* configurable TIPC parameters */
61cdd4d80   Ying Xue   tipc: add __read_...
47
48
  u32 tipc_own_addr __read_mostly;
  int tipc_max_ports __read_mostly;
61cdd4d80   Ying Xue   tipc: add __read_...
49
50
  int tipc_net_id __read_mostly;
  int tipc_remote_management __read_mostly;
b97bf3fd8   Per Liden   [TIPC] Initial merge
51

b97bf3fd8   Per Liden   [TIPC] Initial merge
52
  /**
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
53
   * tipc_buf_acquire - creates a TIPC message buffer
3032cca4d   Allan Stephens   tipc: Reduce foot...
54
55
56
57
58
59
60
   * @size: message size (including TIPC header)
   *
   * Returns a new buffer with data pointers set to the specified size.
   *
   * NOTE: Headroom is reserved to allow prepending of a data link header.
   *       There may also be unrequested tailroom present at the buffer's end.
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
61
  struct sk_buff *tipc_buf_acquire(u32 size)
3032cca4d   Allan Stephens   tipc: Reduce foot...
62
63
64
65
66
67
68
69
70
71
72
73
74
75
  {
  	struct sk_buff *skb;
  	unsigned int buf_size = (BUF_HEADROOM + size + 3) & ~3u;
  
  	skb = alloc_skb_fclone(buf_size, GFP_ATOMIC);
  	if (skb) {
  		skb_reserve(skb, BUF_HEADROOM);
  		skb_put(skb, size);
  		skb->next = NULL;
  	}
  	return skb;
  }
  
  /**
4323add67   Per Liden   [TIPC] Avoid poll...
76
   * tipc_core_stop_net - shut down TIPC networking sub-systems
b97bf3fd8   Per Liden   [TIPC] Initial merge
77
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
78
  static void tipc_core_stop_net(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
79
  {
4323add67   Per Liden   [TIPC] Avoid poll...
80
  	tipc_net_stop();
8c12118db   Allan Stephens   tipc: Minor optim...
81
  	tipc_eth_media_stop();
a29a194a1   Patrick McHardy   tipc: add InfiniB...
82
  	tipc_ib_media_stop();
b97bf3fd8   Per Liden   [TIPC] Initial merge
83
84
85
86
87
  }
  
  /**
   * start_net - start TIPC networking sub-systems
   */
03194379a   Allan Stephens   tipc: Fix initial...
88
  int tipc_core_start_net(unsigned long addr)
b97bf3fd8   Per Liden   [TIPC] Initial merge
89
90
  {
  	int res;
379c0456a   Ying Xue   tipc: change tipc...
91
92
  	tipc_net_start(addr);
  	res = tipc_eth_media_start();
a29a194a1   Patrick McHardy   tipc: add InfiniB...
93
94
95
96
97
98
99
100
101
  	if (res < 0)
  		goto err;
  	res = tipc_ib_media_start();
  	if (res < 0)
  		goto err;
  	return res;
  
  err:
  	tipc_core_stop_net();
b97bf3fd8   Per Liden   [TIPC] Initial merge
102
103
104
105
  	return res;
  }
  
  /**
4323add67   Per Liden   [TIPC] Avoid poll...
106
   * tipc_core_stop - switch TIPC from SINGLE NODE to NOT RUNNING mode
b97bf3fd8   Per Liden   [TIPC] Initial merge
107
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
108
  static void tipc_core_stop(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
109
  {
4323add67   Per Liden   [TIPC] Avoid poll...
110
111
112
113
  	tipc_netlink_stop();
  	tipc_handler_stop();
  	tipc_cfg_stop();
  	tipc_subscr_stop();
4323add67   Per Liden   [TIPC] Avoid poll...
114
115
116
  	tipc_nametbl_stop();
  	tipc_ref_table_stop();
  	tipc_socket_stop();
b97bf3fd8   Per Liden   [TIPC] Initial merge
117
118
119
  }
  
  /**
4323add67   Per Liden   [TIPC] Avoid poll...
120
   * tipc_core_start - switch TIPC from NOT RUNNING to SINGLE NODE mode
b97bf3fd8   Per Liden   [TIPC] Initial merge
121
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
122
  static int tipc_core_start(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
123
124
  {
  	int res;
b97bf3fd8   Per Liden   [TIPC] Initial merge
125
  	get_random_bytes(&tipc_random, sizeof(tipc_random));
b97bf3fd8   Per Liden   [TIPC] Initial merge
126

2db9983a4   Allan Stephens   tipc: split varia...
127
128
129
130
131
132
  	res = tipc_handler_start();
  	if (!res)
  		res = tipc_ref_table_init(tipc_max_ports, tipc_random);
  	if (!res)
  		res = tipc_nametbl_init();
  	if (!res)
2d98abb9f   Allan Stephens   tipc: Optimize in...
133
  		res = tipc_subscr_start();
2db9983a4   Allan Stephens   tipc: split varia...
134
  	if (!res)
861d3a0e5   Allan Stephens   tipc: Optimize in...
135
  		res = tipc_cfg_init();
2db9983a4   Allan Stephens   tipc: split varia...
136
137
138
139
140
  	if (!res)
  		res = tipc_netlink_start();
  	if (!res)
  		res = tipc_socket_init();
  	if (res)
4323add67   Per Liden   [TIPC] Avoid poll...
141
  		tipc_core_stop();
2db9983a4   Allan Stephens   tipc: split varia...
142

b97bf3fd8   Per Liden   [TIPC] Initial merge
143
144
145
146
147
148
149
  	return res;
  }
  
  
  static int __init tipc_init(void)
  {
  	int res;
2cf8aa19f   Erik Hugne   tipc: use standar...
150
151
  	pr_info("Activated (version " TIPC_MOD_VER ")
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
152
153
154
  
  	tipc_own_addr = 0;
  	tipc_remote_management = 1;
ee983ac76   Amerigo Wang   tipc: use kconfig...
155
  	tipc_max_ports = CONFIG_TIPC_PORTS;
b97bf3fd8   Per Liden   [TIPC] Initial merge
156
  	tipc_net_id = 4711;
2db9983a4   Allan Stephens   tipc: split varia...
157
158
  	res = tipc_core_start();
  	if (res)
2cf8aa19f   Erik Hugne   tipc: use standar...
159
160
  		pr_err("Unable to start in single node mode
  ");
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
161
  	else
2cf8aa19f   Erik Hugne   tipc: use standar...
162
163
  		pr_info("Started in single node mode
  ");
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
164
  	return res;
b97bf3fd8   Per Liden   [TIPC] Initial merge
165
166
167
168
  }
  
  static void __exit tipc_exit(void)
  {
4323add67   Per Liden   [TIPC] Avoid poll...
169
170
  	tipc_core_stop_net();
  	tipc_core_stop();
2cf8aa19f   Erik Hugne   tipc: use standar...
171
172
  	pr_info("Deactivated
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
173
174
175
176
177
178
179
  }
  
  module_init(tipc_init);
  module_exit(tipc_exit);
  
  MODULE_DESCRIPTION("TIPC: Transparent Inter Process Communication");
  MODULE_LICENSE("Dual BSD/GPL");
a592ea636   Allan Stephens   [TIPC]: Added sup...
180
  MODULE_VERSION(TIPC_MOD_VER);