Blame view

net/tipc/core.c 4.99 KB
b97bf3fd8   Per Liden   [TIPC] Initial merge
1
2
3
  /*
   * net/tipc/core.c: TIPC module code
   *
c61dd61de   Ying Xue   tipc: remove 'lin...
4
   * Copyright (c) 2003-2006, 2013, Ericsson AB
13a2e8987   Ying Xue   tipc: convert top...
5
   * Copyright (c) 2005-2006, 2010-2013, 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
38
  #include "name_table.h"
  #include "subscr.h"
22ae7cff5   Richard Alpe   tipc: nl compat a...
39
40
  #include "bearer.h"
  #include "net.h"
2e84c60b7   Jon Paul Maloy   tipc: remove incl...
41
  #include "socket.h"
5fd9fd635   Jon Paul Maloy   tipc: create broa...
42
  #include "bcast.h"
ff2ebbfba   Hoang Le   tipc: introduce n...
43
  #include "node.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
44

2cf8aa19f   Erik Hugne   tipc: use standar...
45
  #include <linux/module.h>
b97bf3fd8   Per Liden   [TIPC] Initial merge
46

b97bf3fd8   Per Liden   [TIPC] Initial merge
47
  /* configurable TIPC parameters */
c7d03a00b   Alexey Dobriyan   netns: make struc...
48
  unsigned int tipc_net_id __read_mostly;
cc79dd1ba   Ying Xue   tipc: change sock...
49
  int sysctl_tipc_rmem[3] __read_mostly;	/* min/default/max */
b97bf3fd8   Per Liden   [TIPC] Initial merge
50

c93d3baa2   Ying Xue   tipc: involve nam...
51
52
53
  static int __net_init tipc_init_net(struct net *net)
  {
  	struct tipc_net *tn = net_generic(net, tipc_net_id);
e05b31f4b   Ying Xue   tipc: make tipc s...
54
  	int err;
c93d3baa2   Ying Xue   tipc: involve nam...
55
56
  
  	tn->net_id = 4711;
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
57
  	tn->node_addr = 0;
25b0b9c4e   Jon Maloy   tipc: handle coll...
58
59
  	tn->trial_addr = 0;
  	tn->addr_trial_end = 0;
ff2ebbfba   Hoang Le   tipc: introduce n...
60
  	tn->capabilities = TIPC_NODE_CAPABILITIES;
d50ccc2d3   Jon Maloy   tipc: add 128-bit...
61
62
  	memset(tn->node_id, 0, sizeof(tn->node_id));
  	memset(tn->node_id_string, 0, sizeof(tn->node_id_string));
35c55c987   Jon Paul Maloy   tipc: add neighbo...
63
  	tn->mon_threshold = TIPC_DEF_MON_THRESHOLD;
bafa29e34   Ying Xue   tipc: make tipc r...
64
  	get_random_bytes(&tn->random, sizeof(int));
f2f9800d4   Ying Xue   tipc: make tipc n...
65
66
  	INIT_LIST_HEAD(&tn->node_list);
  	spin_lock_init(&tn->node_list_lock);
c93d3baa2   Ying Xue   tipc: involve nam...
67

e05b31f4b   Ying Xue   tipc: make tipc s...
68
  	err = tipc_sk_rht_init(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
69
70
71
72
73
74
  	if (err)
  		goto out_sk_rht;
  
  	err = tipc_nametbl_init(net);
  	if (err)
  		goto out_nametbl;
a62fbccec   Ying Xue   tipc: make subscr...
75

541726abe   Erik Hugne   tipc: make dist q...
76
  	INIT_LIST_HEAD(&tn->dist_queue);
5fd9fd635   Jon Paul Maloy   tipc: create broa...
77
78
79
80
  
  	err = tipc_bcast_init(net);
  	if (err)
  		goto out_bclink;
6c9081a39   John Rutherford   tipc: add loopbac...
81
82
83
  	err = tipc_attach_loopback(net);
  	if (err)
  		goto out_bclink;
4ac1c8d0e   Ying Xue   tipc: name tipc n...
84
  	return 0;
5fd9fd635   Jon Paul Maloy   tipc: create broa...
85
  out_bclink:
a62fbccec   Ying Xue   tipc: make subscr...
86
  	tipc_nametbl_stop(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
87
88
89
  out_nametbl:
  	tipc_sk_rht_destroy(net);
  out_sk_rht:
e05b31f4b   Ying Xue   tipc: make tipc s...
90
  	return err;
c93d3baa2   Ying Xue   tipc: involve nam...
91
92
93
94
  }
  
  static void __net_exit tipc_exit_net(struct net *net)
  {
6c9081a39   John Rutherford   tipc: add loopbac...
95
  	tipc_detach_loopback(net);
f2f9800d4   Ying Xue   tipc: make tipc n...
96
  	tipc_net_stop(net);
5fd9fd635   Jon Paul Maloy   tipc: create broa...
97
  	tipc_bcast_stop(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
98
  	tipc_nametbl_stop(net);
e05b31f4b   Ying Xue   tipc: make tipc s...
99
  	tipc_sk_rht_destroy(net);
c93d3baa2   Ying Xue   tipc: involve nam...
100
101
102
103
104
105
106
107
  }
  
  static struct pernet_operations tipc_net_ops = {
  	.init = tipc_init_net,
  	.exit = tipc_exit_net,
  	.id   = &tipc_net_id,
  	.size = sizeof(struct tipc_net),
  };
526f5b851   Junwei Hu   tipc: fix modprob...
108
109
110
111
  static struct pernet_operations tipc_topsrv_net_ops = {
  	.init = tipc_topsrv_init_net,
  	.exit = tipc_topsrv_exit_net,
  };
6b8326ed1   Ying Xue   tipc: remove tipc...
112
  static int __init tipc_init(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
113
  {
9fe7ed474   Ying Xue   tipc: remove all ...
114
  	int err;
b97bf3fd8   Per Liden   [TIPC] Initial merge
115

6b8326ed1   Ying Xue   tipc: remove tipc...
116
117
  	pr_info("Activated (version " TIPC_MOD_VER ")
  ");
10724cc7b   Jon Paul Maloy   tipc: redesign co...
118
119
120
  	sysctl_tipc_rmem[0] = RCVBUF_MIN;
  	sysctl_tipc_rmem[1] = RCVBUF_DEF;
  	sysctl_tipc_rmem[2] = RCVBUF_MAX;
6b8326ed1   Ying Xue   tipc: remove tipc...
121

9fe7ed474   Ying Xue   tipc: remove all ...
122
123
124
  	err = tipc_register_sysctl();
  	if (err)
  		goto out_sysctl;
c492d4c74   Xin Long   tipc: change to u...
125
  	err = register_pernet_device(&tipc_net_ops);
9fe7ed474   Ying Xue   tipc: remove all ...
126
  	if (err)
a62fbccec   Ying Xue   tipc: make subscr...
127
  		goto out_pernet;
9fe7ed474   Ying Xue   tipc: remove all ...
128

5593530e5   David S. Miller   Revert "tipc: fix...
129
130
131
  	err = tipc_socket_init();
  	if (err)
  		goto out_socket;
c492d4c74   Xin Long   tipc: change to u...
132
  	err = register_pernet_device(&tipc_topsrv_net_ops);
526f5b851   Junwei Hu   tipc: fix modprob...
133
134
  	if (err)
  		goto out_pernet_topsrv;
970122fdf   Ying Xue   tipc: make bearer...
135
136
137
  	err = tipc_bearer_setup();
  	if (err)
  		goto out_bearer;
0703996ff   Taehee Yoo   tipc: fix orderin...
138
139
140
141
142
143
144
  	err = tipc_netlink_start();
  	if (err)
  		goto out_netlink;
  
  	err = tipc_netlink_compat_start();
  	if (err)
  		goto out_netlink_compat;
6b8326ed1   Ying Xue   tipc: remove tipc...
145
146
  	pr_info("Started in single node mode
  ");
9fe7ed474   Ying Xue   tipc: remove all ...
147
  	return 0;
0703996ff   Taehee Yoo   tipc: fix orderin...
148
149
150
151
152
  
  out_netlink_compat:
  	tipc_netlink_stop();
  out_netlink:
  	tipc_bearer_cleanup();
970122fdf   Ying Xue   tipc: make bearer...
153
  out_bearer:
c492d4c74   Xin Long   tipc: change to u...
154
  	unregister_pernet_device(&tipc_topsrv_net_ops);
526f5b851   Junwei Hu   tipc: fix modprob...
155
  out_pernet_topsrv:
5593530e5   David S. Miller   Revert "tipc: fix...
156
157
  	tipc_socket_stop();
  out_socket:
c492d4c74   Xin Long   tipc: change to u...
158
  	unregister_pernet_device(&tipc_net_ops);
a62fbccec   Ying Xue   tipc: make subscr...
159
  out_pernet:
9fe7ed474   Ying Xue   tipc: remove all ...
160
161
  	tipc_unregister_sysctl();
  out_sysctl:
6b8326ed1   Ying Xue   tipc: remove tipc...
162
163
  	pr_err("Unable to start in single node mode
  ");
9fe7ed474   Ying Xue   tipc: remove all ...
164
  	return err;
b97bf3fd8   Per Liden   [TIPC] Initial merge
165
  }
b97bf3fd8   Per Liden   [TIPC] Initial merge
166
167
  static void __exit tipc_exit(void)
  {
0703996ff   Taehee Yoo   tipc: fix orderin...
168
169
  	tipc_netlink_compat_stop();
  	tipc_netlink_stop();
6b8326ed1   Ying Xue   tipc: remove tipc...
170
  	tipc_bearer_cleanup();
c492d4c74   Xin Long   tipc: change to u...
171
  	unregister_pernet_device(&tipc_topsrv_net_ops);
5593530e5   David S. Miller   Revert "tipc: fix...
172
  	tipc_socket_stop();
c492d4c74   Xin Long   tipc: change to u...
173
  	unregister_pernet_device(&tipc_net_ops);
6b8326ed1   Ying Xue   tipc: remove tipc...
174
  	tipc_unregister_sysctl();
6b8326ed1   Ying Xue   tipc: remove tipc...
175

2cf8aa19f   Erik Hugne   tipc: use standar...
176
177
  	pr_info("Deactivated
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
178
179
180
181
182
183
184
  }
  
  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...
185
  MODULE_VERSION(TIPC_MOD_VER);