Blame view

net/tipc/core.c 5.19 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.
   */
3a9a231d9   Paul Gortmaker   net: Fix files ex...
36
  #include <linux/module.h>
b97bf3fd8   Per Liden   [TIPC] Initial merge
37
  #include "core.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
38
  #include "ref.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
39
40
41
  #include "name_table.h"
  #include "subscr.h"
  #include "config.h"
b97bf3fd8   Per Liden   [TIPC] Initial merge
42

b97bf3fd8   Per Liden   [TIPC] Initial merge
43
44
45
46
47
48
49
50
51
52
53
54
  #ifndef CONFIG_TIPC_PORTS
  #define CONFIG_TIPC_PORTS 8191
  #endif
  
  #ifndef CONFIG_TIPC_LOG
  #define CONFIG_TIPC_LOG 0
  #endif
  
  /* global variables used by multiple sub-systems within TIPC */
  
  int tipc_mode = TIPC_NOT_RUNNING;
  int tipc_random;
b97bf3fd8   Per Liden   [TIPC] Initial merge
55

c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
56
  const char tipc_alphabet[] =
3a8d12142   Allan Stephens   [TIPC]: Add suppo...
57
  	"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_.";
b97bf3fd8   Per Liden   [TIPC] Initial merge
58
59
60
61
  
  /* configurable TIPC parameters */
  
  u32 tipc_own_addr;
b97bf3fd8   Per Liden   [TIPC] Initial merge
62
63
64
65
66
  int tipc_max_ports;
  int tipc_max_subscriptions;
  int tipc_max_publications;
  int tipc_net_id;
  int tipc_remote_management;
b97bf3fd8   Per Liden   [TIPC] Initial merge
67
  /**
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
68
   * tipc_buf_acquire - creates a TIPC message buffer
3032cca4d   Allan Stephens   tipc: Reduce foot...
69
70
71
72
73
74
75
   * @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...
76
  struct sk_buff *tipc_buf_acquire(u32 size)
3032cca4d   Allan Stephens   tipc: Reduce foot...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  {
  	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...
91
   * tipc_core_stop_net - shut down TIPC networking sub-systems
b97bf3fd8   Per Liden   [TIPC] Initial merge
92
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
93
  static void tipc_core_stop_net(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
94
  {
4323add67   Per Liden   [TIPC] Avoid poll...
95
  	tipc_net_stop();
8c12118db   Allan Stephens   tipc: Minor optim...
96
  	tipc_eth_media_stop();
b97bf3fd8   Per Liden   [TIPC] Initial merge
97
98
99
100
101
  }
  
  /**
   * start_net - start TIPC networking sub-systems
   */
03194379a   Allan Stephens   tipc: Fix initial...
102
  int tipc_core_start_net(unsigned long addr)
b97bf3fd8   Per Liden   [TIPC] Initial merge
103
104
  {
  	int res;
2db9983a4   Allan Stephens   tipc: split varia...
105
106
107
108
  	res = tipc_net_start(addr);
  	if (!res)
  		res = tipc_eth_media_start();
  	if (res)
4323add67   Per Liden   [TIPC] Avoid poll...
109
  		tipc_core_stop_net();
b97bf3fd8   Per Liden   [TIPC] Initial merge
110
111
112
113
  	return res;
  }
  
  /**
4323add67   Per Liden   [TIPC] Avoid poll...
114
   * tipc_core_stop - switch TIPC from SINGLE NODE to NOT RUNNING mode
b97bf3fd8   Per Liden   [TIPC] Initial merge
115
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
116
  static void tipc_core_stop(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
117
118
119
120
121
  {
  	if (tipc_mode != TIPC_NODE_MODE)
  		return;
  
  	tipc_mode = TIPC_NOT_RUNNING;
4323add67   Per Liden   [TIPC] Avoid poll...
122
123
124
125
  	tipc_netlink_stop();
  	tipc_handler_stop();
  	tipc_cfg_stop();
  	tipc_subscr_stop();
4323add67   Per Liden   [TIPC] Avoid poll...
126
127
128
  	tipc_nametbl_stop();
  	tipc_ref_table_stop();
  	tipc_socket_stop();
f81380925   Anders Kaseorg   tipc: Fix log buf...
129
  	tipc_log_resize(0);
b97bf3fd8   Per Liden   [TIPC] Initial merge
130
131
132
  }
  
  /**
4323add67   Per Liden   [TIPC] Avoid poll...
133
   * tipc_core_start - switch TIPC from NOT RUNNING to SINGLE NODE mode
b97bf3fd8   Per Liden   [TIPC] Initial merge
134
   */
31e3c3f6f   stephen hemminger   tipc: cleanup fun...
135
  static int tipc_core_start(void)
b97bf3fd8   Per Liden   [TIPC] Initial merge
136
137
138
139
140
141
142
143
  {
  	int res;
  
  	if (tipc_mode != TIPC_NOT_RUNNING)
  		return -ENOPROTOOPT;
  
  	get_random_bytes(&tipc_random, sizeof(tipc_random));
  	tipc_mode = TIPC_NODE_MODE;
2db9983a4   Allan Stephens   tipc: split varia...
144
145
146
147
148
149
150
151
152
153
154
155
156
157
  	res = tipc_handler_start();
  	if (!res)
  		res = tipc_ref_table_init(tipc_max_ports, tipc_random);
  	if (!res)
  		res = tipc_nametbl_init();
  	if (!res)
  		res = tipc_k_signal((Handler)tipc_subscr_start, 0);
  	if (!res)
  		res = tipc_k_signal((Handler)tipc_cfg_init, 0);
  	if (!res)
  		res = tipc_netlink_start();
  	if (!res)
  		res = tipc_socket_init();
  	if (res)
4323add67   Per Liden   [TIPC] Avoid poll...
158
  		tipc_core_stop();
2db9983a4   Allan Stephens   tipc: split varia...
159

b97bf3fd8   Per Liden   [TIPC] Initial merge
160
161
162
163
164
165
166
  	return res;
  }
  
  
  static int __init tipc_init(void)
  {
  	int res;
f81380925   Anders Kaseorg   tipc: Fix log buf...
167
168
169
  	if (tipc_log_resize(CONFIG_TIPC_LOG) != 0)
  		warn("Unable to create log buffer
  ");
97fbdc1f7   Michal Marek   tipc: Drop __TIME...
170
171
  	info("Activated (version " TIPC_MOD_VER ")
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
172
173
174
175
176
  
  	tipc_own_addr = 0;
  	tipc_remote_management = 1;
  	tipc_max_publications = 10000;
  	tipc_max_subscriptions = 2000;
ee983ac76   Amerigo Wang   tipc: use kconfig...
177
  	tipc_max_ports = CONFIG_TIPC_PORTS;
b97bf3fd8   Per Liden   [TIPC] Initial merge
178
  	tipc_net_id = 4711;
2db9983a4   Allan Stephens   tipc: split varia...
179
180
  	res = tipc_core_start();
  	if (res)
b97bf3fd8   Per Liden   [TIPC] Initial merge
181
182
  		err("Unable to start in single node mode
  ");
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
183
  	else
b97bf3fd8   Per Liden   [TIPC] Initial merge
184
185
  		info("Started in single node mode
  ");
c43072852   YOSHIFUJI Hideaki   [NET] TIPC: Fix w...
186
  	return res;
b97bf3fd8   Per Liden   [TIPC] Initial merge
187
188
189
190
  }
  
  static void __exit tipc_exit(void)
  {
4323add67   Per Liden   [TIPC] Avoid poll...
191
192
  	tipc_core_stop_net();
  	tipc_core_stop();
b97bf3fd8   Per Liden   [TIPC] Initial merge
193
194
  	info("Deactivated
  ");
b97bf3fd8   Per Liden   [TIPC] Initial merge
195
196
197
198
199
200
201
  }
  
  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...
202
  MODULE_VERSION(TIPC_MOD_VER);