blob: 9ef8f1660ee1450045626afe180c81f934e3c9fe [file] [log] [blame]
Sjur Braendelandcc36a072010-03-30 13:56:27 +00001/*
2 * Copyright (C) ST-Ericsson AB 2010
3 * Authors: Sjur Brendeland/sjur.brandeland@stericsson.com
4 * Daniel Martensson / Daniel.Martensson@stericsson.com
5 * License terms: GNU General Public License (GPL) version 2
6 */
7
Joe Perchesb31fa5b2010-09-05 21:31:11 +00008#define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
9
Sjur Braendelandcc36a072010-03-30 13:56:27 +000010#include <linux/version.h>
11#include <linux/fs.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/netdevice.h>
15#include <linux/if_ether.h>
16#include <linux/moduleparam.h>
17#include <linux/ip.h>
18#include <linux/sched.h>
19#include <linux/sockios.h>
20#include <linux/caif/if_caif.h>
21#include <net/rtnetlink.h>
22#include <net/caif/caif_layer.h>
23#include <net/caif/cfcnfg.h>
24#include <net/caif/cfpkt.h>
25#include <net/caif/caif_dev.h>
26
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000027/* GPRS PDP connection has MTU to 1500 */
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +000028#define GPRS_PDP_MTU 1500
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000029/* 5 sec. connect timeout */
30#define CONNECT_TIMEOUT (5 * HZ)
Sjur Braendelandcc36a072010-03-30 13:56:27 +000031#define CAIF_NET_DEFAULT_QUEUE_LEN 500
32
Sjur Braendelandcc36a072010-03-30 13:56:27 +000033/*This list is protected by the rtnl lock. */
34static LIST_HEAD(chnl_net_list);
35
36MODULE_LICENSE("GPL");
37MODULE_ALIAS_RTNL_LINK("caif");
38
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000039enum caif_states {
40 CAIF_CONNECTED = 1,
41 CAIF_CONNECTING,
42 CAIF_DISCONNECTED,
43 CAIF_SHUTDOWN
44};
45
Sjur Braendelandcc36a072010-03-30 13:56:27 +000046struct chnl_net {
47 struct cflayer chnl;
48 struct net_device_stats stats;
49 struct caif_connect_request conn_req;
50 struct list_head list_field;
51 struct net_device *netdev;
52 char name[256];
53 wait_queue_head_t netmgmt_wq;
54 /* Flow status to remember and control the transmission. */
55 bool flowenabled;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000056 enum caif_states state;
Sjur Braendelandcc36a072010-03-30 13:56:27 +000057};
58
59static void robust_list_del(struct list_head *delete_node)
60{
61 struct list_head *list_node;
62 struct list_head *n;
63 ASSERT_RTNL();
64 list_for_each_safe(list_node, n, &chnl_net_list) {
65 if (list_node == delete_node) {
66 list_del(list_node);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000067 return;
Sjur Braendelandcc36a072010-03-30 13:56:27 +000068 }
69 }
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000070 WARN_ON(1);
Sjur Braendelandcc36a072010-03-30 13:56:27 +000071}
72
73static int chnl_recv_cb(struct cflayer *layr, struct cfpkt *pkt)
74{
75 struct sk_buff *skb;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +000076 struct chnl_net *priv = container_of(layr, struct chnl_net, chnl);
Sjur Braendelandcc36a072010-03-30 13:56:27 +000077 int pktlen;
78 int err = 0;
Kumar Sanghvid7b92af2011-01-07 01:57:08 +000079 const u8 *ip_version;
80 u8 buf;
Sjur Braendelandcc36a072010-03-30 13:56:27 +000081
82 priv = container_of(layr, struct chnl_net, chnl);
83
84 if (!priv)
85 return -EINVAL;
86
87 /* Get length of CAIF packet. */
88 pktlen = cfpkt_getlen(pkt);
89
90 skb = (struct sk_buff *) cfpkt_tonative(pkt);
91 /* Pass some minimum information and
92 * send the packet to the net stack.
93 */
94 skb->dev = priv->netdev;
Kumar Sanghvid7b92af2011-01-07 01:57:08 +000095
96 /* check the version of IP */
97 ip_version = skb_header_pointer(skb, 0, 1, &buf);
98 if (!ip_version)
99 return -EINVAL;
100 switch (*ip_version >> 4) {
101 case 4:
102 skb->protocol = htons(ETH_P_IP);
103 break;
104 case 6:
105 skb->protocol = htons(ETH_P_IPV6);
106 break;
107 default:
108 return -EINVAL;
109 }
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000110
111 /* If we change the header in loop mode, the checksum is corrupted. */
112 if (priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP)
113 skb->ip_summed = CHECKSUM_UNNECESSARY;
114 else
115 skb->ip_summed = CHECKSUM_NONE;
116
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000117 if (in_interrupt())
118 netif_rx(skb);
119 else
120 netif_rx_ni(skb);
121
122 /* Update statistics. */
123 priv->netdev->stats.rx_packets++;
124 priv->netdev->stats.rx_bytes += pktlen;
125
126 return err;
127}
128
129static int delete_device(struct chnl_net *dev)
130{
131 ASSERT_RTNL();
132 if (dev->netdev)
133 unregister_netdevice(dev->netdev);
134 return 0;
135}
136
137static void close_work(struct work_struct *work)
138{
139 struct chnl_net *dev = NULL;
140 struct list_head *list_node;
141 struct list_head *_tmp;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000142 /* May be called with or without RTNL lock held */
143 int islocked = rtnl_is_locked();
144 if (!islocked)
145 rtnl_lock();
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000146 list_for_each_safe(list_node, _tmp, &chnl_net_list) {
147 dev = list_entry(list_node, struct chnl_net, list_field);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000148 if (dev->state == CAIF_SHUTDOWN)
149 dev_close(dev->netdev);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000150 }
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000151 if (!islocked)
152 rtnl_unlock();
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000153}
154static DECLARE_WORK(close_worker, close_work);
155
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000156static void chnl_hold(struct cflayer *lyr)
157{
158 struct chnl_net *priv = container_of(lyr, struct chnl_net, chnl);
159 dev_hold(priv->netdev);
160}
161
162static void chnl_put(struct cflayer *lyr)
163{
164 struct chnl_net *priv = container_of(lyr, struct chnl_net, chnl);
165 dev_put(priv->netdev);
166}
167
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000168static void chnl_flowctrl_cb(struct cflayer *layr, enum caif_ctrlcmd flow,
169 int phyid)
170{
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000171 struct chnl_net *priv = container_of(layr, struct chnl_net, chnl);
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000172 pr_debug("NET flowctrl func called flow: %s\n",
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000173 flow == CAIF_CTRLCMD_FLOW_ON_IND ? "ON" :
174 flow == CAIF_CTRLCMD_INIT_RSP ? "INIT" :
175 flow == CAIF_CTRLCMD_FLOW_OFF_IND ? "OFF" :
176 flow == CAIF_CTRLCMD_DEINIT_RSP ? "CLOSE/DEINIT" :
177 flow == CAIF_CTRLCMD_INIT_FAIL_RSP ? "OPEN_FAIL" :
178 flow == CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND ?
179 "REMOTE_SHUTDOWN" : "UKNOWN CTRL COMMAND");
180
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000181
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000182
183 switch (flow) {
184 case CAIF_CTRLCMD_FLOW_OFF_IND:
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000185 priv->flowenabled = false;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000186 netif_stop_queue(priv->netdev);
187 break;
188 case CAIF_CTRLCMD_DEINIT_RSP:
189 priv->state = CAIF_DISCONNECTED;
190 break;
191 case CAIF_CTRLCMD_INIT_FAIL_RSP:
192 priv->state = CAIF_DISCONNECTED;
193 wake_up_interruptible(&priv->netmgmt_wq);
194 break;
195 case CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND:
196 priv->state = CAIF_SHUTDOWN;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000197 netif_tx_disable(priv->netdev);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000198 schedule_work(&close_worker);
199 break;
200 case CAIF_CTRLCMD_FLOW_ON_IND:
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000201 priv->flowenabled = true;
202 netif_wake_queue(priv->netdev);
203 break;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000204 case CAIF_CTRLCMD_INIT_RSP:
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000205 caif_client_register_refcnt(&priv->chnl, chnl_hold, chnl_put);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000206 priv->state = CAIF_CONNECTED;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000207 priv->flowenabled = true;
208 netif_wake_queue(priv->netdev);
209 wake_up_interruptible(&priv->netmgmt_wq);
210 break;
211 default:
212 break;
213 }
214}
215
216static int chnl_net_start_xmit(struct sk_buff *skb, struct net_device *dev)
217{
218 struct chnl_net *priv;
219 struct cfpkt *pkt = NULL;
220 int len;
221 int result = -1;
222 /* Get our private data. */
223 priv = netdev_priv(dev);
224
225 if (skb->len > priv->netdev->mtu) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000226 pr_warn("Size of skb exceeded MTU\n");
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000227 return -ENOSPC;
228 }
229
230 if (!priv->flowenabled) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000231 pr_debug("dropping packets flow off\n");
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000232 return NETDEV_TX_BUSY;
233 }
234
235 if (priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP)
236 swap(ip_hdr(skb)->saddr, ip_hdr(skb)->daddr);
237
238 /* Store original SKB length. */
239 len = skb->len;
240
241 pkt = cfpkt_fromnative(CAIF_DIR_OUT, (void *) skb);
242
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000243 /* Send the packet down the stack. */
244 result = priv->chnl.dn->transmit(priv->chnl.dn, pkt);
245 if (result) {
246 if (result == -EAGAIN)
247 result = NETDEV_TX_BUSY;
248 return result;
249 }
250
251 /* Update statistics. */
252 dev->stats.tx_packets++;
253 dev->stats.tx_bytes += len;
254
255 return NETDEV_TX_OK;
256}
257
258static int chnl_net_open(struct net_device *dev)
259{
260 struct chnl_net *priv = NULL;
261 int result = -1;
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000262 int llifindex, headroom, tailroom, mtu;
263 struct net_device *lldev;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000264 ASSERT_RTNL();
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000265 priv = netdev_priv(dev);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000266 if (!priv) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000267 pr_debug("chnl_net_open: no priv\n");
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000268 return -ENODEV;
269 }
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000270
271 if (priv->state != CAIF_CONNECTING) {
272 priv->state = CAIF_CONNECTING;
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000273 result = caif_connect_client(&priv->conn_req, &priv->chnl,
274 &llifindex, &headroom, &tailroom);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000275 if (result != 0) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000276 pr_debug("err: "
277 "Unable to register and open device,"
278 " Err:%d\n",
279 result);
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000280 goto error;
281 }
282
283 lldev = dev_get_by_index(dev_net(dev), llifindex);
284
285 if (lldev == NULL) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000286 pr_debug("no interface?\n");
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000287 result = -ENODEV;
288 goto error;
289 }
290
291 dev->needed_tailroom = tailroom + lldev->needed_tailroom;
292 dev->hard_header_len = headroom + lldev->hard_header_len +
293 lldev->needed_tailroom;
294
295 /*
296 * MTU, head-room etc is not know before we have a
297 * CAIF link layer device available. MTU calculation may
298 * override initial RTNL configuration.
299 * MTU is minimum of current mtu, link layer mtu pluss
300 * CAIF head and tail, and PDP GPRS contexts max MTU.
301 */
302 mtu = min_t(int, dev->mtu, lldev->mtu - (headroom + tailroom));
303 mtu = min_t(int, GPRS_PDP_MTU, mtu);
304 dev_set_mtu(dev, mtu);
305 dev_put(lldev);
306
307 if (mtu < 100) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000308 pr_warn("CAIF Interface MTU too small (%d)\n", mtu);
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000309 result = -ENODEV;
310 goto error;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000311 }
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000312 }
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000313
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000314 rtnl_unlock(); /* Release RTNL lock during connect wait */
315
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000316 result = wait_event_interruptible_timeout(priv->netmgmt_wq,
317 priv->state != CAIF_CONNECTING,
318 CONNECT_TIMEOUT);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000319
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000320 rtnl_lock();
321
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000322 if (result == -ERESTARTSYS) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000323 pr_debug("wait_event_interruptible woken by a signal\n");
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000324 result = -ERESTARTSYS;
325 goto error;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000326 }
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000327
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000328 if (result == 0) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000329 pr_debug("connect timeout\n");
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000330 caif_disconnect_client(&priv->chnl);
331 priv->state = CAIF_DISCONNECTED;
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000332 pr_debug("state disconnected\n");
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000333 result = -ETIMEDOUT;
334 goto error;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000335 }
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000336
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000337 if (priv->state != CAIF_CONNECTED) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000338 pr_debug("connect failed\n");
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000339 result = -ECONNREFUSED;
340 goto error;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000341 }
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000342 pr_debug("CAIF Netdevice connected\n");
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000343 return 0;
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000344
345error:
346 caif_disconnect_client(&priv->chnl);
347 priv->state = CAIF_DISCONNECTED;
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000348 pr_debug("state disconnected\n");
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000349 return result;
350
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000351}
352
353static int chnl_net_stop(struct net_device *dev)
354{
355 struct chnl_net *priv;
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000356
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000357 ASSERT_RTNL();
358 priv = netdev_priv(dev);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000359 priv->state = CAIF_DISCONNECTED;
360 caif_disconnect_client(&priv->chnl);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000361 return 0;
362}
363
364static int chnl_net_init(struct net_device *dev)
365{
366 struct chnl_net *priv;
367 ASSERT_RTNL();
368 priv = netdev_priv(dev);
369 strncpy(priv->name, dev->name, sizeof(priv->name));
370 return 0;
371}
372
373static void chnl_net_uninit(struct net_device *dev)
374{
375 struct chnl_net *priv;
376 ASSERT_RTNL();
377 priv = netdev_priv(dev);
378 robust_list_del(&priv->list_field);
379}
380
381static const struct net_device_ops netdev_ops = {
382 .ndo_open = chnl_net_open,
383 .ndo_stop = chnl_net_stop,
384 .ndo_init = chnl_net_init,
385 .ndo_uninit = chnl_net_uninit,
386 .ndo_start_xmit = chnl_net_start_xmit,
387};
388
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000389static void chnl_net_destructor(struct net_device *dev)
390{
391 struct chnl_net *priv = netdev_priv(dev);
392 caif_free_client(&priv->chnl);
393 free_netdev(dev);
394}
395
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000396static void ipcaif_net_setup(struct net_device *dev)
397{
398 struct chnl_net *priv;
399 dev->netdev_ops = &netdev_ops;
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000400 dev->destructor = chnl_net_destructor;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000401 dev->flags |= IFF_NOARP;
402 dev->flags |= IFF_POINTOPOINT;
Sjur Braendeland2aa40ae2010-06-17 06:55:40 +0000403 dev->mtu = GPRS_PDP_MTU;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000404 dev->tx_queue_len = CAIF_NET_DEFAULT_QUEUE_LEN;
405
406 priv = netdev_priv(dev);
407 priv->chnl.receive = chnl_recv_cb;
408 priv->chnl.ctrlcmd = chnl_flowctrl_cb;
409 priv->netdev = dev;
410 priv->conn_req.protocol = CAIFPROTO_DATAGRAM;
411 priv->conn_req.link_selector = CAIF_LINK_HIGH_BANDW;
412 priv->conn_req.priority = CAIF_PRIO_LOW;
413 /* Insert illegal value */
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000414 priv->conn_req.sockaddr.u.dgm.connection_id = 0;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000415 priv->flowenabled = false;
416
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000417 init_waitqueue_head(&priv->netmgmt_wq);
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000418}
419
420
421static int ipcaif_fill_info(struct sk_buff *skb, const struct net_device *dev)
422{
423 struct chnl_net *priv;
424 u8 loop;
425 priv = netdev_priv(dev);
426 NLA_PUT_U32(skb, IFLA_CAIF_IPV4_CONNID,
427 priv->conn_req.sockaddr.u.dgm.connection_id);
428 NLA_PUT_U32(skb, IFLA_CAIF_IPV6_CONNID,
429 priv->conn_req.sockaddr.u.dgm.connection_id);
430 loop = priv->conn_req.protocol == CAIFPROTO_DATAGRAM_LOOP;
431 NLA_PUT_U8(skb, IFLA_CAIF_LOOPBACK, loop);
432
433
434 return 0;
435nla_put_failure:
436 return -EMSGSIZE;
437
438}
439
440static void caif_netlink_parms(struct nlattr *data[],
441 struct caif_connect_request *conn_req)
442{
443 if (!data) {
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000444 pr_warn("no params data found\n");
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000445 return;
446 }
447 if (data[IFLA_CAIF_IPV4_CONNID])
448 conn_req->sockaddr.u.dgm.connection_id =
449 nla_get_u32(data[IFLA_CAIF_IPV4_CONNID]);
450 if (data[IFLA_CAIF_IPV6_CONNID])
451 conn_req->sockaddr.u.dgm.connection_id =
452 nla_get_u32(data[IFLA_CAIF_IPV6_CONNID]);
453 if (data[IFLA_CAIF_LOOPBACK]) {
454 if (nla_get_u8(data[IFLA_CAIF_LOOPBACK]))
455 conn_req->protocol = CAIFPROTO_DATAGRAM_LOOP;
456 else
457 conn_req->protocol = CAIFPROTO_DATAGRAM;
458 }
459}
460
461static int ipcaif_newlink(struct net *src_net, struct net_device *dev,
462 struct nlattr *tb[], struct nlattr *data[])
463{
464 int ret;
465 struct chnl_net *caifdev;
466 ASSERT_RTNL();
467 caifdev = netdev_priv(dev);
468 caif_netlink_parms(data, &caifdev->conn_req);
Sjur Braendeland8391c4a2010-04-28 08:54:39 +0000469 dev_net_set(caifdev->netdev, src_net);
470
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000471 ret = register_netdevice(dev);
472 if (ret)
Joe Perchesb31fa5b2010-09-05 21:31:11 +0000473 pr_warn("device rtml registration failed\n");
David S. Millerb2df5a842011-02-08 14:31:31 -0800474 else
475 list_add(&caifdev->list_field, &chnl_net_list);
sjur.brandeland@stericsson.comb3ccfbe2011-05-13 02:44:04 +0000476
477 /* Take ifindex as connection-id if null */
478 if (caifdev->conn_req.sockaddr.u.dgm.connection_id == 0)
479 caifdev->conn_req.sockaddr.u.dgm.connection_id = dev->ifindex;
Sjur Braendelandcc36a072010-03-30 13:56:27 +0000480 return ret;
481}
482
483static int ipcaif_changelink(struct net_device *dev, struct nlattr *tb[],
484 struct nlattr *data[])
485{
486 struct chnl_net *caifdev;
487 ASSERT_RTNL();
488 caifdev = netdev_priv(dev);
489 caif_netlink_parms(data, &caifdev->conn_req);
490 netdev_state_change(dev);
491 return 0;
492}
493
494static size_t ipcaif_get_size(const struct net_device *dev)
495{
496 return
497 /* IFLA_CAIF_IPV4_CONNID */
498 nla_total_size(4) +
499 /* IFLA_CAIF_IPV6_CONNID */
500 nla_total_size(4) +
501 /* IFLA_CAIF_LOOPBACK */
502 nla_total_size(2) +
503 0;
504}
505
506static const struct nla_policy ipcaif_policy[IFLA_CAIF_MAX + 1] = {
507 [IFLA_CAIF_IPV4_CONNID] = { .type = NLA_U32 },
508 [IFLA_CAIF_IPV6_CONNID] = { .type = NLA_U32 },
509 [IFLA_CAIF_LOOPBACK] = { .type = NLA_U8 }
510};
511
512
513static struct rtnl_link_ops ipcaif_link_ops __read_mostly = {
514 .kind = "caif",
515 .priv_size = sizeof(struct chnl_net),
516 .setup = ipcaif_net_setup,
517 .maxtype = IFLA_CAIF_MAX,
518 .policy = ipcaif_policy,
519 .newlink = ipcaif_newlink,
520 .changelink = ipcaif_changelink,
521 .get_size = ipcaif_get_size,
522 .fill_info = ipcaif_fill_info,
523
524};
525
526static int __init chnl_init_module(void)
527{
528 return rtnl_link_register(&ipcaif_link_ops);
529}
530
531static void __exit chnl_exit_module(void)
532{
533 struct chnl_net *dev = NULL;
534 struct list_head *list_node;
535 struct list_head *_tmp;
536 rtnl_link_unregister(&ipcaif_link_ops);
537 rtnl_lock();
538 list_for_each_safe(list_node, _tmp, &chnl_net_list) {
539 dev = list_entry(list_node, struct chnl_net, list_field);
540 list_del(list_node);
541 delete_device(dev);
542 }
543 rtnl_unlock();
544}
545
546module_init(chnl_init_module);
547module_exit(chnl_exit_module);