Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / net / tipc / eth_media.c
1 /*
2  * net/tipc/eth_media.c: Ethernet bearer support for TIPC
3  *
4  * Copyright (c) 2001-2007, Ericsson AB
5  * Copyright (c) 2005-2008, 2011, Wind River Systems
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. Neither the names of the copyright holders nor the names of its
17  *    contributors may be used to endorse or promote products derived from
18  *    this software without specific prior written permission.
19  *
20  * Alternatively, this software may be distributed under the terms of the
21  * GNU General Public License ("GPL") version 2 as published by the Free
22  * Software Foundation.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 #include "core.h"
38 #include "bearer.h"
39
40 #define MAX_ETH_BEARERS         MAX_BEARERS
41 #define ETH_LINK_PRIORITY       TIPC_DEF_LINK_PRI
42 #define ETH_LINK_TOLERANCE      TIPC_DEF_LINK_TOL
43 #define ETH_LINK_WINDOW         TIPC_DEF_LINK_WIN
44
45 /**
46  * struct eth_bearer - Ethernet bearer data structure
47  * @bearer: ptr to associated "generic" bearer structure
48  * @dev: ptr to associated Ethernet network device
49  * @tipc_packet_type: used in binding TIPC to Ethernet driver
50  */
51
52 struct eth_bearer {
53         struct tipc_bearer *bearer;
54         struct net_device *dev;
55         struct packet_type tipc_packet_type;
56         struct work_struct setup;
57 };
58
59 static struct eth_bearer eth_bearers[MAX_ETH_BEARERS];
60 static int eth_started;
61 static struct notifier_block notifier;
62
63 /**
64  * send_msg - send a TIPC message out over an Ethernet interface
65  */
66
67 static int send_msg(struct sk_buff *buf, struct tipc_bearer *tb_ptr,
68                     struct tipc_media_addr *dest)
69 {
70         struct sk_buff *clone;
71         struct net_device *dev;
72         int delta;
73
74         clone = skb_clone(buf, GFP_ATOMIC);
75         if (!clone)
76                 return 0;
77
78         dev = ((struct eth_bearer *)(tb_ptr->usr_handle))->dev;
79         delta = dev->hard_header_len - skb_headroom(buf);
80
81         if ((delta > 0) &&
82             pskb_expand_head(clone, SKB_DATA_ALIGN(delta), 0, GFP_ATOMIC)) {
83                 kfree_skb(clone);
84                 return 0;
85         }
86
87         skb_reset_network_header(clone);
88         clone->dev = dev;
89         dev_hard_header(clone, dev, ETH_P_TIPC, &dest->dev_addr.eth_addr,
90                         dev->dev_addr, clone->len);
91         dev_queue_xmit(clone);
92         return 0;
93 }
94
95 /**
96  * recv_msg - handle incoming TIPC message from an Ethernet interface
97  *
98  * Accept only packets explicitly sent to this node, or broadcast packets;
99  * ignores packets sent using Ethernet multicast, and traffic sent to other
100  * nodes (which can happen if interface is running in promiscuous mode).
101  */
102
103 static int recv_msg(struct sk_buff *buf, struct net_device *dev,
104                     struct packet_type *pt, struct net_device *orig_dev)
105 {
106         struct eth_bearer *eb_ptr = (struct eth_bearer *)pt->af_packet_priv;
107
108         if (!net_eq(dev_net(dev), &init_net)) {
109                 kfree_skb(buf);
110                 return 0;
111         }
112
113         if (likely(eb_ptr->bearer)) {
114                 if (likely(buf->pkt_type <= PACKET_BROADCAST)) {
115                         buf->next = NULL;
116                         tipc_recv_msg(buf, eb_ptr->bearer);
117                         return 0;
118                 }
119         }
120         kfree_skb(buf);
121         return 0;
122 }
123
124 /**
125  * setup_bearer - setup association between Ethernet bearer and interface
126  */
127 static void setup_bearer(struct work_struct *work)
128 {
129         struct eth_bearer *eb_ptr =
130                 container_of(work, struct eth_bearer, setup);
131
132         dev_add_pack(&eb_ptr->tipc_packet_type);
133 }
134
135 /**
136  * enable_bearer - attach TIPC bearer to an Ethernet interface
137  */
138
139 static int enable_bearer(struct tipc_bearer *tb_ptr)
140 {
141         struct net_device *dev = NULL;
142         struct net_device *pdev = NULL;
143         struct eth_bearer *eb_ptr = &eth_bearers[0];
144         struct eth_bearer *stop = &eth_bearers[MAX_ETH_BEARERS];
145         char *driver_name = strchr((const char *)tb_ptr->name, ':') + 1;
146         int pending_dev = 0;
147
148         /* Find unused Ethernet bearer structure */
149
150         while (eb_ptr->dev) {
151                 if (!eb_ptr->bearer)
152                         pending_dev++;
153                 if (++eb_ptr == stop)
154                         return pending_dev ? -EAGAIN : -EDQUOT;
155         }
156
157         /* Find device with specified name */
158
159         read_lock(&dev_base_lock);
160         for_each_netdev(&init_net, pdev) {
161                 if (!strncmp(pdev->name, driver_name, IFNAMSIZ)) {
162                         dev = pdev;
163                         dev_hold(dev);
164                         break;
165                 }
166         }
167         read_unlock(&dev_base_lock);
168         if (!dev)
169                 return -ENODEV;
170
171         /* Create Ethernet bearer for device */
172
173         eb_ptr->dev = dev;
174         eb_ptr->tipc_packet_type.type = htons(ETH_P_TIPC);
175         eb_ptr->tipc_packet_type.dev = dev;
176         eb_ptr->tipc_packet_type.func = recv_msg;
177         eb_ptr->tipc_packet_type.af_packet_priv = eb_ptr;
178         INIT_LIST_HEAD(&(eb_ptr->tipc_packet_type.list));
179         INIT_WORK(&eb_ptr->setup, setup_bearer);
180         schedule_work(&eb_ptr->setup);
181
182         /* Associate TIPC bearer with Ethernet bearer */
183
184         eb_ptr->bearer = tb_ptr;
185         tb_ptr->usr_handle = (void *)eb_ptr;
186         tb_ptr->mtu = dev->mtu;
187         tb_ptr->blocked = 0;
188         tb_ptr->addr.type = htonl(TIPC_MEDIA_TYPE_ETH);
189         memcpy(&tb_ptr->addr.dev_addr, dev->dev_addr, ETH_ALEN);
190         return 0;
191 }
192
193 /**
194  * disable_bearer - detach TIPC bearer from an Ethernet interface
195  *
196  * We really should do dev_remove_pack() here, but this function can not be
197  * called at tasklet level. => Use eth_bearer->bearer as a flag to throw away
198  * incoming buffers, & postpone dev_remove_pack() to eth_media_stop() on exit.
199  */
200
201 static void disable_bearer(struct tipc_bearer *tb_ptr)
202 {
203         ((struct eth_bearer *)tb_ptr->usr_handle)->bearer = NULL;
204 }
205
206 /**
207  * recv_notification - handle device updates from OS
208  *
209  * Change the state of the Ethernet bearer (if any) associated with the
210  * specified device.
211  */
212
213 static int recv_notification(struct notifier_block *nb, unsigned long evt,
214                              void *dv)
215 {
216         struct net_device *dev = (struct net_device *)dv;
217         struct eth_bearer *eb_ptr = &eth_bearers[0];
218         struct eth_bearer *stop = &eth_bearers[MAX_ETH_BEARERS];
219
220         if (!net_eq(dev_net(dev), &init_net))
221                 return NOTIFY_DONE;
222
223         while ((eb_ptr->dev != dev)) {
224                 if (++eb_ptr == stop)
225                         return NOTIFY_DONE;     /* couldn't find device */
226         }
227         if (!eb_ptr->bearer)
228                 return NOTIFY_DONE;             /* bearer had been disabled */
229
230         eb_ptr->bearer->mtu = dev->mtu;
231
232         switch (evt) {
233         case NETDEV_CHANGE:
234                 if (netif_carrier_ok(dev))
235                         tipc_continue(eb_ptr->bearer);
236                 else
237                         tipc_block_bearer(eb_ptr->bearer->name);
238                 break;
239         case NETDEV_UP:
240                 tipc_continue(eb_ptr->bearer);
241                 break;
242         case NETDEV_DOWN:
243                 tipc_block_bearer(eb_ptr->bearer->name);
244                 break;
245         case NETDEV_CHANGEMTU:
246         case NETDEV_CHANGEADDR:
247                 tipc_block_bearer(eb_ptr->bearer->name);
248                 tipc_continue(eb_ptr->bearer);
249                 break;
250         case NETDEV_UNREGISTER:
251         case NETDEV_CHANGENAME:
252                 tipc_disable_bearer(eb_ptr->bearer->name);
253                 break;
254         }
255         return NOTIFY_OK;
256 }
257
258 /**
259  * eth_addr2str - convert Ethernet address to string
260  */
261
262 static char *eth_addr2str(struct tipc_media_addr *a, char *str_buf, int str_size)
263 {
264         unchar *addr = (unchar *)&a->dev_addr;
265
266         if (str_size < 18)
267                 *str_buf = '\0';
268         else
269                 sprintf(str_buf, "%pM", addr);
270         return str_buf;
271 }
272
273 /**
274  * tipc_eth_media_start - activate Ethernet bearer support
275  *
276  * Register Ethernet media type with TIPC bearer code.  Also register
277  * with OS for notifications about device state changes.
278  */
279
280 int tipc_eth_media_start(void)
281 {
282         struct tipc_media_addr bcast_addr;
283         int res;
284
285         if (eth_started)
286                 return -EINVAL;
287
288         bcast_addr.type = htonl(TIPC_MEDIA_TYPE_ETH);
289         memset(&bcast_addr.dev_addr, 0xff, ETH_ALEN);
290
291         memset(eth_bearers, 0, sizeof(eth_bearers));
292
293         res = tipc_register_media(TIPC_MEDIA_TYPE_ETH, "eth",
294                                   enable_bearer, disable_bearer, send_msg,
295                                   eth_addr2str, &bcast_addr, ETH_LINK_PRIORITY,
296                                   ETH_LINK_TOLERANCE, ETH_LINK_WINDOW);
297         if (res)
298                 return res;
299
300         notifier.notifier_call = &recv_notification;
301         notifier.priority = 0;
302         res = register_netdevice_notifier(&notifier);
303         if (!res)
304                 eth_started = 1;
305         return res;
306 }
307
308 /**
309  * tipc_eth_media_stop - deactivate Ethernet bearer support
310  */
311
312 void tipc_eth_media_stop(void)
313 {
314         int i;
315
316         if (!eth_started)
317                 return;
318
319         unregister_netdevice_notifier(&notifier);
320         for (i = 0; i < MAX_ETH_BEARERS ; i++) {
321                 if (eth_bearers[i].bearer) {
322                         eth_bearers[i].bearer->blocked = 1;
323                         eth_bearers[i].bearer = NULL;
324                 }
325                 if (eth_bearers[i].dev) {
326                         dev_remove_pack(&eth_bearers[i].tipc_packet_type);
327                         dev_put(eth_bearers[i].dev);
328                 }
329         }
330         memset(&eth_bearers, 0, sizeof(eth_bearers));
331         eth_started = 0;
332 }