2 * Copyright (C) ST-Ericsson AB 2010
3 * Authors: Sjur Brendeland
5 * License terms: GNU General Public License (GPL) version 2
8 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
11 #include <linux/hardirq.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>
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/cfpkt.h>
24 #include <net/caif/caif_dev.h>
26 /* GPRS PDP connection has MTU to 1500 */
27 #define GPRS_PDP_MTU 1500
28 /* 5 sec. connect timeout */
29 #define CONNECT_TIMEOUT (5 * HZ)
30 #define CAIF_NET_DEFAULT_QUEUE_LEN 500
31 #define UNDEF_CONNID 0xffffffff
33 /*This list is protected by the rtnl lock. */
34 static LIST_HEAD(chnl_net_list
);
36 MODULE_LICENSE("GPL");
37 MODULE_ALIAS_RTNL_LINK("caif");
48 struct net_device_stats stats
;
49 struct caif_connect_request conn_req
;
50 struct list_head list_field
;
51 struct net_device
*netdev
;
53 wait_queue_head_t netmgmt_wq
;
54 /* Flow status to remember and control the transmission. */
56 enum caif_states state
;
59 static void robust_list_del(struct list_head
*delete_node
)
61 struct list_head
*list_node
;
64 list_for_each_safe(list_node
, n
, &chnl_net_list
) {
65 if (list_node
== delete_node
) {
73 static int chnl_recv_cb(struct cflayer
*layr
, struct cfpkt
*pkt
)
76 struct chnl_net
*priv
;
81 priv
= container_of(layr
, struct chnl_net
, chnl
);
85 skb
= (struct sk_buff
*) cfpkt_tonative(pkt
);
87 /* Get length of CAIF packet. */
90 /* Pass some minimum information and
91 * send the packet to the net stack.
93 skb
->dev
= priv
->netdev
;
95 /* check the version of IP */
96 ip_version
= skb_header_pointer(skb
, 0, 1, &buf
);
102 switch (*ip_version
>> 4) {
104 skb
->protocol
= htons(ETH_P_IP
);
107 skb
->protocol
= htons(ETH_P_IPV6
);
111 priv
->netdev
->stats
.rx_errors
++;
115 /* If we change the header in loop mode, the checksum is corrupted. */
116 if (priv
->conn_req
.protocol
== CAIFPROTO_DATAGRAM_LOOP
)
117 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
119 skb
->ip_summed
= CHECKSUM_NONE
;
126 /* Update statistics. */
127 priv
->netdev
->stats
.rx_packets
++;
128 priv
->netdev
->stats
.rx_bytes
+= pktlen
;
133 static int delete_device(struct chnl_net
*dev
)
137 unregister_netdevice(dev
->netdev
);
141 static void close_work(struct work_struct
*work
)
143 struct chnl_net
*dev
= NULL
;
144 struct list_head
*list_node
;
145 struct list_head
*_tmp
;
148 list_for_each_safe(list_node
, _tmp
, &chnl_net_list
) {
149 dev
= list_entry(list_node
, struct chnl_net
, list_field
);
150 if (dev
->state
== CAIF_SHUTDOWN
)
151 dev_close(dev
->netdev
);
155 static DECLARE_WORK(close_worker
, close_work
);
157 static void chnl_hold(struct cflayer
*lyr
)
159 struct chnl_net
*priv
= container_of(lyr
, struct chnl_net
, chnl
);
160 dev_hold(priv
->netdev
);
163 static void chnl_put(struct cflayer
*lyr
)
165 struct chnl_net
*priv
= container_of(lyr
, struct chnl_net
, chnl
);
166 dev_put(priv
->netdev
);
169 static void chnl_flowctrl_cb(struct cflayer
*layr
, enum caif_ctrlcmd flow
,
172 struct chnl_net
*priv
= container_of(layr
, struct chnl_net
, chnl
);
173 pr_debug("NET flowctrl func called flow: %s\n",
174 flow
== CAIF_CTRLCMD_FLOW_ON_IND
? "ON" :
175 flow
== CAIF_CTRLCMD_INIT_RSP
? "INIT" :
176 flow
== CAIF_CTRLCMD_FLOW_OFF_IND
? "OFF" :
177 flow
== CAIF_CTRLCMD_DEINIT_RSP
? "CLOSE/DEINIT" :
178 flow
== CAIF_CTRLCMD_INIT_FAIL_RSP
? "OPEN_FAIL" :
179 flow
== CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND
?
180 "REMOTE_SHUTDOWN" : "UKNOWN CTRL COMMAND");
185 case CAIF_CTRLCMD_FLOW_OFF_IND
:
186 priv
->flowenabled
= false;
187 netif_stop_queue(priv
->netdev
);
189 case CAIF_CTRLCMD_DEINIT_RSP
:
190 priv
->state
= CAIF_DISCONNECTED
;
192 case CAIF_CTRLCMD_INIT_FAIL_RSP
:
193 priv
->state
= CAIF_DISCONNECTED
;
194 wake_up_interruptible(&priv
->netmgmt_wq
);
196 case CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND
:
197 priv
->state
= CAIF_SHUTDOWN
;
198 netif_tx_disable(priv
->netdev
);
199 schedule_work(&close_worker
);
201 case CAIF_CTRLCMD_FLOW_ON_IND
:
202 priv
->flowenabled
= true;
203 netif_wake_queue(priv
->netdev
);
205 case CAIF_CTRLCMD_INIT_RSP
:
206 caif_client_register_refcnt(&priv
->chnl
, chnl_hold
, chnl_put
);
207 priv
->state
= CAIF_CONNECTED
;
208 priv
->flowenabled
= true;
209 netif_wake_queue(priv
->netdev
);
210 wake_up_interruptible(&priv
->netmgmt_wq
);
217 static int chnl_net_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
219 struct chnl_net
*priv
;
220 struct cfpkt
*pkt
= NULL
;
223 /* Get our private data. */
224 priv
= netdev_priv(dev
);
226 if (skb
->len
> priv
->netdev
->mtu
) {
227 pr_warn("Size of skb exceeded MTU\n");
229 dev
->stats
.tx_errors
++;
233 if (!priv
->flowenabled
) {
234 pr_debug("dropping packets flow off\n");
236 dev
->stats
.tx_dropped
++;
240 if (priv
->conn_req
.protocol
== CAIFPROTO_DATAGRAM_LOOP
)
241 swap(ip_hdr(skb
)->saddr
, ip_hdr(skb
)->daddr
);
243 /* Store original SKB length. */
246 pkt
= cfpkt_fromnative(CAIF_DIR_OUT
, (void *) skb
);
248 /* Send the packet down the stack. */
249 result
= priv
->chnl
.dn
->transmit(priv
->chnl
.dn
, pkt
);
251 dev
->stats
.tx_dropped
++;
255 /* Update statistics. */
256 dev
->stats
.tx_packets
++;
257 dev
->stats
.tx_bytes
+= len
;
262 static int chnl_net_open(struct net_device
*dev
)
264 struct chnl_net
*priv
= NULL
;
266 int llifindex
, headroom
, tailroom
, mtu
;
267 struct net_device
*lldev
;
269 priv
= netdev_priv(dev
);
271 pr_debug("chnl_net_open: no priv\n");
275 if (priv
->state
!= CAIF_CONNECTING
) {
276 priv
->state
= CAIF_CONNECTING
;
277 result
= caif_connect_client(dev_net(dev
), &priv
->conn_req
,
278 &priv
->chnl
, &llifindex
,
279 &headroom
, &tailroom
);
282 "Unable to register and open device,"
288 lldev
= dev_get_by_index(dev_net(dev
), llifindex
);
291 pr_debug("no interface?\n");
296 dev
->needed_tailroom
= tailroom
+ lldev
->needed_tailroom
;
297 dev
->hard_header_len
= headroom
+ lldev
->hard_header_len
+
298 lldev
->needed_tailroom
;
301 * MTU, head-room etc is not know before we have a
302 * CAIF link layer device available. MTU calculation may
303 * override initial RTNL configuration.
304 * MTU is minimum of current mtu, link layer mtu pluss
305 * CAIF head and tail, and PDP GPRS contexts max MTU.
307 mtu
= min_t(int, dev
->mtu
, lldev
->mtu
- (headroom
+ tailroom
));
308 mtu
= min_t(int, GPRS_PDP_MTU
, mtu
);
309 dev_set_mtu(dev
, mtu
);
313 pr_warn("CAIF Interface MTU too small (%d)\n", mtu
);
319 rtnl_unlock(); /* Release RTNL lock during connect wait */
321 result
= wait_event_interruptible_timeout(priv
->netmgmt_wq
,
322 priv
->state
!= CAIF_CONNECTING
,
327 if (result
== -ERESTARTSYS
) {
328 pr_debug("wait_event_interruptible woken by a signal\n");
329 result
= -ERESTARTSYS
;
334 pr_debug("connect timeout\n");
335 caif_disconnect_client(dev_net(dev
), &priv
->chnl
);
336 priv
->state
= CAIF_DISCONNECTED
;
337 pr_debug("state disconnected\n");
342 if (priv
->state
!= CAIF_CONNECTED
) {
343 pr_debug("connect failed\n");
344 result
= -ECONNREFUSED
;
347 pr_debug("CAIF Netdevice connected\n");
351 caif_disconnect_client(dev_net(dev
), &priv
->chnl
);
352 priv
->state
= CAIF_DISCONNECTED
;
353 pr_debug("state disconnected\n");
358 static int chnl_net_stop(struct net_device
*dev
)
360 struct chnl_net
*priv
;
363 priv
= netdev_priv(dev
);
364 priv
->state
= CAIF_DISCONNECTED
;
365 caif_disconnect_client(dev_net(dev
), &priv
->chnl
);
369 static int chnl_net_init(struct net_device
*dev
)
371 struct chnl_net
*priv
;
373 priv
= netdev_priv(dev
);
374 strncpy(priv
->name
, dev
->name
, sizeof(priv
->name
));
378 static void chnl_net_uninit(struct net_device
*dev
)
380 struct chnl_net
*priv
;
382 priv
= netdev_priv(dev
);
383 robust_list_del(&priv
->list_field
);
386 static const struct net_device_ops netdev_ops
= {
387 .ndo_open
= chnl_net_open
,
388 .ndo_stop
= chnl_net_stop
,
389 .ndo_init
= chnl_net_init
,
390 .ndo_uninit
= chnl_net_uninit
,
391 .ndo_start_xmit
= chnl_net_start_xmit
,
394 static void chnl_net_destructor(struct net_device
*dev
)
396 struct chnl_net
*priv
= netdev_priv(dev
);
397 caif_free_client(&priv
->chnl
);
401 static void ipcaif_net_setup(struct net_device
*dev
)
403 struct chnl_net
*priv
;
404 dev
->netdev_ops
= &netdev_ops
;
405 dev
->destructor
= chnl_net_destructor
;
406 dev
->flags
|= IFF_NOARP
;
407 dev
->flags
|= IFF_POINTOPOINT
;
408 dev
->mtu
= GPRS_PDP_MTU
;
409 dev
->tx_queue_len
= CAIF_NET_DEFAULT_QUEUE_LEN
;
411 priv
= netdev_priv(dev
);
412 priv
->chnl
.receive
= chnl_recv_cb
;
413 priv
->chnl
.ctrlcmd
= chnl_flowctrl_cb
;
415 priv
->conn_req
.protocol
= CAIFPROTO_DATAGRAM
;
416 priv
->conn_req
.link_selector
= CAIF_LINK_HIGH_BANDW
;
417 priv
->conn_req
.priority
= CAIF_PRIO_LOW
;
418 /* Insert illegal value */
419 priv
->conn_req
.sockaddr
.u
.dgm
.connection_id
= UNDEF_CONNID
;
420 priv
->flowenabled
= false;
422 init_waitqueue_head(&priv
->netmgmt_wq
);
426 static int ipcaif_fill_info(struct sk_buff
*skb
, const struct net_device
*dev
)
428 struct chnl_net
*priv
;
430 priv
= netdev_priv(dev
);
431 if (nla_put_u32(skb
, IFLA_CAIF_IPV4_CONNID
,
432 priv
->conn_req
.sockaddr
.u
.dgm
.connection_id
) ||
433 nla_put_u32(skb
, IFLA_CAIF_IPV6_CONNID
,
434 priv
->conn_req
.sockaddr
.u
.dgm
.connection_id
))
435 goto nla_put_failure
;
436 loop
= priv
->conn_req
.protocol
== CAIFPROTO_DATAGRAM_LOOP
;
437 if (nla_put_u8(skb
, IFLA_CAIF_LOOPBACK
, loop
))
438 goto nla_put_failure
;
445 static void caif_netlink_parms(struct nlattr
*data
[],
446 struct caif_connect_request
*conn_req
)
449 pr_warn("no params data found\n");
452 if (data
[IFLA_CAIF_IPV4_CONNID
])
453 conn_req
->sockaddr
.u
.dgm
.connection_id
=
454 nla_get_u32(data
[IFLA_CAIF_IPV4_CONNID
]);
455 if (data
[IFLA_CAIF_IPV6_CONNID
])
456 conn_req
->sockaddr
.u
.dgm
.connection_id
=
457 nla_get_u32(data
[IFLA_CAIF_IPV6_CONNID
]);
458 if (data
[IFLA_CAIF_LOOPBACK
]) {
459 if (nla_get_u8(data
[IFLA_CAIF_LOOPBACK
]))
460 conn_req
->protocol
= CAIFPROTO_DATAGRAM_LOOP
;
462 conn_req
->protocol
= CAIFPROTO_DATAGRAM
;
466 static int ipcaif_newlink(struct net
*src_net
, struct net_device
*dev
,
467 struct nlattr
*tb
[], struct nlattr
*data
[])
470 struct chnl_net
*caifdev
;
472 caifdev
= netdev_priv(dev
);
473 caif_netlink_parms(data
, &caifdev
->conn_req
);
474 dev_net_set(caifdev
->netdev
, src_net
);
476 ret
= register_netdevice(dev
);
478 pr_warn("device rtml registration failed\n");
480 list_add(&caifdev
->list_field
, &chnl_net_list
);
482 /* Use ifindex as connection id, and use loopback channel default. */
483 if (caifdev
->conn_req
.sockaddr
.u
.dgm
.connection_id
== UNDEF_CONNID
) {
484 caifdev
->conn_req
.sockaddr
.u
.dgm
.connection_id
= dev
->ifindex
;
485 caifdev
->conn_req
.protocol
= CAIFPROTO_DATAGRAM_LOOP
;
490 static int ipcaif_changelink(struct net_device
*dev
, struct nlattr
*tb
[],
491 struct nlattr
*data
[])
493 struct chnl_net
*caifdev
;
495 caifdev
= netdev_priv(dev
);
496 caif_netlink_parms(data
, &caifdev
->conn_req
);
497 netdev_state_change(dev
);
501 static size_t ipcaif_get_size(const struct net_device
*dev
)
504 /* IFLA_CAIF_IPV4_CONNID */
506 /* IFLA_CAIF_IPV6_CONNID */
508 /* IFLA_CAIF_LOOPBACK */
513 static const struct nla_policy ipcaif_policy
[IFLA_CAIF_MAX
+ 1] = {
514 [IFLA_CAIF_IPV4_CONNID
] = { .type
= NLA_U32
},
515 [IFLA_CAIF_IPV6_CONNID
] = { .type
= NLA_U32
},
516 [IFLA_CAIF_LOOPBACK
] = { .type
= NLA_U8
}
520 static struct rtnl_link_ops ipcaif_link_ops __read_mostly
= {
522 .priv_size
= sizeof(struct chnl_net
),
523 .setup
= ipcaif_net_setup
,
524 .maxtype
= IFLA_CAIF_MAX
,
525 .policy
= ipcaif_policy
,
526 .newlink
= ipcaif_newlink
,
527 .changelink
= ipcaif_changelink
,
528 .get_size
= ipcaif_get_size
,
529 .fill_info
= ipcaif_fill_info
,
533 static int __init
chnl_init_module(void)
535 return rtnl_link_register(&ipcaif_link_ops
);
538 static void __exit
chnl_exit_module(void)
540 struct chnl_net
*dev
= NULL
;
541 struct list_head
*list_node
;
542 struct list_head
*_tmp
;
543 rtnl_link_unregister(&ipcaif_link_ops
);
545 list_for_each_safe(list_node
, _tmp
, &chnl_net_list
) {
546 dev
= list_entry(list_node
, struct chnl_net
, list_field
);
553 module_init(chnl_init_module
);
554 module_exit(chnl_exit_module
);