Blame view

net/tipc/core.c 4.53 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.
   */
07f6c4bc0   Ying Xue   tipc: convert tip...
36
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
b97bf3fd8   Per Liden   [TIPC] Initial merge
37
  #include "core.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
38
39
  #include "name_table.h"
  #include "subscr.h"
22ae7cff5   Richard Alpe   tipc: nl compat a...
40
41
  #include "bearer.h"
  #include "net.h"
2e84c60b7   Jon Paul Maloy   tipc: remove incl...
42
  #include "socket.h"
5fd9fd635   Jon Paul Maloy   tipc: create broa...
43
  #include "bcast.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;
347475395   Ying Xue   tipc: make tipc n...
57
  	tn->own_addr = 0;
35c55c987   Jon Paul Maloy   tipc: add neighbo...
58
  	tn->mon_threshold = TIPC_DEF_MON_THRESHOLD;
bafa29e34   Ying Xue   tipc: make tipc r...
59
  	get_random_bytes(&tn->random, sizeof(int));
f2f9800d4   Ying Xue   tipc: make tipc n...
60
61
  	INIT_LIST_HEAD(&tn->node_list);
  	spin_lock_init(&tn->node_list_lock);
c93d3baa2   Ying Xue   tipc: involve nam...
62

e05b31f4b   Ying Xue   tipc: make tipc s...
63
  	err = tipc_sk_rht_init(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
64
65
66
67
68
69
  	if (err)
  		goto out_sk_rht;
  
  	err = tipc_nametbl_init(net);
  	if (err)
  		goto out_nametbl;
a62fbccec   Ying Xue   tipc: make subscr...
70

541726abe   Erik Hugne   tipc: make dist q...
71
  	INIT_LIST_HEAD(&tn->dist_queue);
57f1d1868   Ying Xue   tipc: rename func...
72
  	err = tipc_topsrv_start(net);
a62fbccec   Ying Xue   tipc: make subscr...
73
74
  	if (err)
  		goto out_subscr;
5fd9fd635   Jon Paul Maloy   tipc: create broa...
75
76
77
78
  
  	err = tipc_bcast_init(net);
  	if (err)
  		goto out_bclink;
4ac1c8d0e   Ying Xue   tipc: name tipc n...
79
  	return 0;
5fd9fd635   Jon Paul Maloy   tipc: create broa...
80
81
  out_bclink:
  	tipc_bcast_stop(net);
a62fbccec   Ying Xue   tipc: make subscr...
82
83
  out_subscr:
  	tipc_nametbl_stop(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
84
85
86
  out_nametbl:
  	tipc_sk_rht_destroy(net);
  out_sk_rht:
e05b31f4b   Ying Xue   tipc: make tipc s...
87
  	return err;
c93d3baa2   Ying Xue   tipc: involve nam...
88
89
90
91
  }
  
  static void __net_exit tipc_exit_net(struct net *net)
  {
57f1d1868   Ying Xue   tipc: rename func...
92
  	tipc_topsrv_stop(net);
f2f9800d4   Ying Xue   tipc: make tipc n...
93
  	tipc_net_stop(net);
5fd9fd635   Jon Paul Maloy   tipc: create broa...
94
  	tipc_bcast_stop(net);
4ac1c8d0e   Ying Xue   tipc: name tipc n...
95
  	tipc_nametbl_stop(net);
e05b31f4b   Ying Xue   tipc: make tipc s...
96
  	tipc_sk_rht_destroy(net);
c93d3baa2   Ying Xue   tipc: involve nam...
97
98
99
100
101
102
103
104
  }
  
  static struct pernet_operations tipc_net_ops = {
  	.init = tipc_init_net,
  	.exit = tipc_exit_net,
  	.id   = &tipc_net_id,
  	.size = sizeof(struct tipc_net),
  };
6b8326ed1   Ying Xue   tipc: remove tipc...
105
  static int __init tipc_init(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
106
  {
9fe7ed474   Ying Xue   tipc: remove all ...
107
  	int err;
b97bf3fd8   Per Liden   [TIPC] Initial merge
108

6b8326ed1   Ying Xue   tipc: remove tipc...
109
110
  	pr_info("Activated (version " TIPC_MOD_VER ")
  ");
10724cc7b   Jon Paul Maloy   tipc: redesign co...
111
112
113
  	sysctl_tipc_rmem[0] = RCVBUF_MIN;
  	sysctl_tipc_rmem[1] = RCVBUF_DEF;
  	sysctl_tipc_rmem[2] = RCVBUF_MAX;
6b8326ed1   Ying Xue   tipc: remove tipc...
114

9fe7ed474   Ying Xue   tipc: remove all ...
115
116
117
  	err = tipc_netlink_start();
  	if (err)
  		goto out_netlink;
bfb3e5dd8   Richard Alpe   tipc: move and re...
118
119
120
  	err = tipc_netlink_compat_start();
  	if (err)
  		goto out_netlink_compat;
9fe7ed474   Ying Xue   tipc: remove all ...
121
122
123
124
125
126
127
  	err = tipc_socket_init();
  	if (err)
  		goto out_socket;
  
  	err = tipc_register_sysctl();
  	if (err)
  		goto out_sysctl;
a62fbccec   Ying Xue   tipc: make subscr...
128
  	err = register_pernet_subsys(&tipc_net_ops);
9fe7ed474   Ying Xue   tipc: remove all ...
129
  	if (err)
a62fbccec   Ying Xue   tipc: make subscr...
130
  		goto out_pernet;
9fe7ed474   Ying Xue   tipc: remove all ...
131

970122fdf   Ying Xue   tipc: make bearer...
132
133
134
  	err = tipc_bearer_setup();
  	if (err)
  		goto out_bearer;
6b8326ed1   Ying Xue   tipc: remove tipc...
135
136
  	pr_info("Started in single node mode
  ");
9fe7ed474   Ying Xue   tipc: remove all ...
137
  	return 0;
970122fdf   Ying Xue   tipc: make bearer...
138
  out_bearer:
a62fbccec   Ying Xue   tipc: make subscr...
139
140
  	unregister_pernet_subsys(&tipc_net_ops);
  out_pernet:
9fe7ed474   Ying Xue   tipc: remove all ...
141
142
143
144
  	tipc_unregister_sysctl();
  out_sysctl:
  	tipc_socket_stop();
  out_socket:
bfb3e5dd8   Richard Alpe   tipc: move and re...
145
146
  	tipc_netlink_compat_stop();
  out_netlink_compat:
9fe7ed474   Ying Xue   tipc: remove all ...
147
148
  	tipc_netlink_stop();
  out_netlink:
6b8326ed1   Ying Xue   tipc: remove tipc...
149
150
  	pr_err("Unable to start in single node mode
  ");
9fe7ed474   Ying Xue   tipc: remove all ...
151
  	return err;
b97bf3fd8   Per Liden   [TIPC] Initial merge
152
  }
b97bf3fd8   Per Liden   [TIPC] Initial merge
153
154
  static void __exit tipc_exit(void)
  {
6b8326ed1   Ying Xue   tipc: remove tipc...
155
  	tipc_bearer_cleanup();
7e4369057   Ying Xue   tipc: fix a slab ...
156
  	unregister_pernet_subsys(&tipc_net_ops);
6b8326ed1   Ying Xue   tipc: remove tipc...
157
  	tipc_netlink_stop();
bfb3e5dd8   Richard Alpe   tipc: move and re...
158
  	tipc_netlink_compat_stop();
6b8326ed1   Ying Xue   tipc: remove tipc...
159
160
  	tipc_socket_stop();
  	tipc_unregister_sysctl();
6b8326ed1   Ying Xue   tipc: remove tipc...
161

2cf8aa19f   Erik Hugne   tipc: use standar...
162
163
  	pr_info("Deactivated
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
164
165
166
167
168
169
170
  }
  
  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...
171
  MODULE_VERSION(TIPC_MOD_VER);