2 * CAIF Interface registration.
3 * Copyright (C) ST-Ericsson AB 2010
4 * Author: Sjur Brendeland
5 * License terms: GNU General Public License (GPL) version 2
7 * Borrowed heavily from file: pn_dev.c. Thanks to Remi Denis-Courmont
8 * and Sakari Ailus <sakari.ailus@nokia.com>
11 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
13 #include <linux/kernel.h>
14 #include <linux/if_arp.h>
15 #include <linux/net.h>
16 #include <linux/netdevice.h>
17 #include <linux/mutex.h>
18 #include <linux/module.h>
19 #include <linux/spinlock.h>
20 #include <net/netns/generic.h>
21 #include <net/net_namespace.h>
22 #include <net/pkt_sched.h>
23 #include <net/caif/caif_device.h>
24 #include <net/caif/caif_layer.h>
25 #include <net/caif/cfpkt.h>
26 #include <net/caif/cfcnfg.h>
27 #include <net/caif/cfserl.h>
29 MODULE_LICENSE("GPL");
31 /* Used for local tracking of the CAIF net devices */
32 struct caif_device_entry
{
34 struct list_head list
;
35 struct net_device
*netdev
;
36 int __percpu
*pcpu_refcnt
;
38 struct sk_buff
*xoff_skb
;
39 void (*xoff_skb_dtor
)(struct sk_buff
*skb
);
43 struct caif_device_entry_list
{
44 struct list_head list
;
45 /* Protects simulanous deletes in list */
51 struct caif_device_entry_list caifdevs
;
54 static int caif_net_id
;
55 static int q_high
= 50; /* Percent */
57 struct cfcnfg
*get_cfcnfg(struct net
*net
)
59 struct caif_net
*caifn
;
60 caifn
= net_generic(net
, caif_net_id
);
63 EXPORT_SYMBOL(get_cfcnfg
);
65 static struct caif_device_entry_list
*caif_device_list(struct net
*net
)
67 struct caif_net
*caifn
;
68 caifn
= net_generic(net
, caif_net_id
);
69 return &caifn
->caifdevs
;
72 static void caifd_put(struct caif_device_entry
*e
)
74 this_cpu_dec(*e
->pcpu_refcnt
);
77 static void caifd_hold(struct caif_device_entry
*e
)
79 this_cpu_inc(*e
->pcpu_refcnt
);
82 static int caifd_refcnt_read(struct caif_device_entry
*e
)
85 for_each_possible_cpu(i
)
86 refcnt
+= *per_cpu_ptr(e
->pcpu_refcnt
, i
);
90 /* Allocate new CAIF device. */
91 static struct caif_device_entry
*caif_device_alloc(struct net_device
*dev
)
93 struct caif_device_entry
*caifd
;
95 caifd
= kzalloc(sizeof(*caifd
), GFP_KERNEL
);
98 caifd
->pcpu_refcnt
= alloc_percpu(int);
99 if (!caifd
->pcpu_refcnt
) {
108 static struct caif_device_entry
*caif_get(struct net_device
*dev
)
110 struct caif_device_entry_list
*caifdevs
=
111 caif_device_list(dev_net(dev
));
112 struct caif_device_entry
*caifd
;
114 list_for_each_entry_rcu(caifd
, &caifdevs
->list
, list
) {
115 if (caifd
->netdev
== dev
)
121 static void caif_flow_cb(struct sk_buff
*skb
)
123 struct caif_device_entry
*caifd
;
124 void (*dtor
)(struct sk_buff
*skb
) = NULL
;
127 WARN_ON(skb
->dev
== NULL
);
130 caifd
= caif_get(skb
->dev
);
132 WARN_ON(caifd
== NULL
);
139 spin_lock_bh(&caifd
->flow_lock
);
140 send_xoff
= caifd
->xoff
;
142 dtor
= caifd
->xoff_skb_dtor
;
144 if (WARN_ON(caifd
->xoff_skb
!= skb
))
147 caifd
->xoff_skb
= NULL
;
148 caifd
->xoff_skb_dtor
= NULL
;
150 spin_unlock_bh(&caifd
->flow_lock
);
157 ctrlcmd(caifd
->layer
.up
,
158 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
,
163 static int transmit(struct cflayer
*layer
, struct cfpkt
*pkt
)
165 int err
, high
= 0, qlen
= 0;
166 struct caif_device_entry
*caifd
=
167 container_of(layer
, struct caif_device_entry
, layer
);
169 struct netdev_queue
*txq
;
173 skb
= cfpkt_tonative(pkt
);
174 skb
->dev
= caifd
->netdev
;
175 skb_reset_network_header(skb
);
176 skb
->protocol
= htons(ETH_P_CAIF
);
178 /* Check if we need to handle xoff */
179 if (likely(caifd
->netdev
->tx_queue_len
== 0))
182 if (unlikely(caifd
->xoff
))
185 if (likely(!netif_queue_stopped(caifd
->netdev
))) {
186 /* If we run with a TX queue, check if the queue is too long*/
187 txq
= netdev_get_tx_queue(skb
->dev
, 0);
188 qlen
= qdisc_qlen(rcu_dereference_bh(txq
->qdisc
));
190 if (likely(qlen
== 0))
193 high
= (caifd
->netdev
->tx_queue_len
* q_high
) / 100;
194 if (likely(qlen
< high
))
198 /* Hold lock while accessing xoff */
199 spin_lock_bh(&caifd
->flow_lock
);
201 spin_unlock_bh(&caifd
->flow_lock
);
206 * Handle flow off, we do this by temporary hi-jacking this
207 * skb's destructor function, and replace it with our own
208 * flow-on callback. The callback will set flow-on and call
209 * the original destructor.
212 pr_debug("queue has stopped(%d) or is full (%d > %d)\n",
213 netif_queue_stopped(caifd
->netdev
),
216 caifd
->xoff_skb
= skb
;
217 caifd
->xoff_skb_dtor
= skb
->destructor
;
218 skb
->destructor
= caif_flow_cb
;
219 spin_unlock_bh(&caifd
->flow_lock
);
221 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
222 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
225 rcu_read_unlock_bh();
227 err
= dev_queue_xmit(skb
);
235 * Stuff received packets into the CAIF stack.
236 * On error, returns non-zero and releases the skb.
238 static int receive(struct sk_buff
*skb
, struct net_device
*dev
,
239 struct packet_type
*pkttype
, struct net_device
*orig_dev
)
242 struct caif_device_entry
*caifd
;
245 pkt
= cfpkt_fromnative(CAIF_DIR_IN
, skb
);
248 caifd
= caif_get(dev
);
250 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->receive
||
251 !netif_oper_up(caifd
->netdev
)) {
257 /* Hold reference to netdevice while using CAIF stack */
261 err
= caifd
->layer
.up
->receive(caifd
->layer
.up
, pkt
);
263 /* For -EILSEQ the packet is not freed so so it now */
267 /* Release reference to stack upwards */
275 static struct packet_type caif_packet_type __read_mostly
= {
276 .type
= cpu_to_be16(ETH_P_CAIF
),
280 static void dev_flowctrl(struct net_device
*dev
, int on
)
282 struct caif_device_entry
*caifd
;
286 caifd
= caif_get(dev
);
287 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
295 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
297 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
:
298 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
303 void caif_enroll_dev(struct net_device
*dev
, struct caif_dev_common
*caifdev
,
304 struct cflayer
*link_support
, int head_room
,
305 struct cflayer
**layer
,
306 int (**rcv_func
)(struct sk_buff
*, struct net_device
*,
307 struct packet_type
*,
308 struct net_device
*))
310 struct caif_device_entry
*caifd
;
311 enum cfcnfg_phy_preference pref
;
312 struct cfcnfg
*cfg
= get_cfcnfg(dev_net(dev
));
313 struct caif_device_entry_list
*caifdevs
;
315 caifdevs
= caif_device_list(dev_net(dev
));
316 caifd
= caif_device_alloc(dev
);
319 *layer
= &caifd
->layer
;
320 spin_lock_init(&caifd
->flow_lock
);
322 switch (caifdev
->link_select
) {
323 case CAIF_LINK_HIGH_BANDW
:
324 pref
= CFPHYPREF_HIGH_BW
;
326 case CAIF_LINK_LOW_LATENCY
:
327 pref
= CFPHYPREF_LOW_LAT
;
330 pref
= CFPHYPREF_HIGH_BW
;
333 mutex_lock(&caifdevs
->lock
);
334 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
336 strncpy(caifd
->layer
.name
, dev
->name
,
337 sizeof(caifd
->layer
.name
) - 1);
338 caifd
->layer
.name
[sizeof(caifd
->layer
.name
) - 1] = 0;
339 caifd
->layer
.transmit
= transmit
;
340 cfcnfg_add_phy_layer(cfg
,
347 mutex_unlock(&caifdevs
->lock
);
351 EXPORT_SYMBOL(caif_enroll_dev
);
353 /* notify Caif of device events */
354 static int caif_device_notify(struct notifier_block
*me
, unsigned long what
,
357 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
358 struct caif_device_entry
*caifd
= NULL
;
359 struct caif_dev_common
*caifdev
;
361 struct cflayer
*layer
, *link_support
;
363 struct caif_device_entry_list
*caifdevs
;
365 cfg
= get_cfcnfg(dev_net(dev
));
366 caifdevs
= caif_device_list(dev_net(dev
));
368 caifd
= caif_get(dev
);
369 if (caifd
== NULL
&& dev
->type
!= ARPHRD_CAIF
)
373 case NETDEV_REGISTER
:
377 caifdev
= netdev_priv(dev
);
380 if (caifdev
->use_frag
) {
382 link_support
= cfserl_create(dev
->ifindex
,
385 pr_warn("Out of memory\n");
389 caif_enroll_dev(dev
, caifdev
, link_support
, head_room
,
391 caifdev
->flowctrl
= dev_flowctrl
;
397 caifd
= caif_get(dev
);
404 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, true);
412 caifd
= caif_get(dev
);
413 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
418 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
422 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
423 _CAIF_CTRLCMD_PHYIF_DOWN_IND
,
426 spin_lock_bh(&caifd
->flow_lock
);
429 * Replace our xoff-destructor with original destructor.
430 * We trust that skb->destructor *always* is called before
431 * the skb reference is invalid. The hijacked SKB destructor
432 * takes the flow_lock so manipulating the skb->destructor here
435 if (caifd
->xoff_skb_dtor
!= NULL
&& caifd
->xoff_skb
!= NULL
)
436 caifd
->xoff_skb
->destructor
= caifd
->xoff_skb_dtor
;
439 caifd
->xoff_skb_dtor
= NULL
;
440 caifd
->xoff_skb
= NULL
;
442 spin_unlock_bh(&caifd
->flow_lock
);
446 case NETDEV_UNREGISTER
:
447 mutex_lock(&caifdevs
->lock
);
449 caifd
= caif_get(dev
);
451 mutex_unlock(&caifdevs
->lock
);
454 list_del_rcu(&caifd
->list
);
457 * NETDEV_UNREGISTER is called repeatedly until all reference
458 * counts for the net-device are released. If references to
459 * caifd is taken, simply ignore NETDEV_UNREGISTER and wait for
460 * the next call to NETDEV_UNREGISTER.
462 * If any packets are in flight down the CAIF Stack,
463 * cfcnfg_del_phy_layer will return nonzero.
464 * If no packets are in flight, the CAIF Stack associated
465 * with the net-device un-registering is freed.
468 if (caifd_refcnt_read(caifd
) != 0 ||
469 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0) {
471 pr_info("Wait for device inuse\n");
472 /* Enrole device if CAIF Stack is still in use */
473 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
474 mutex_unlock(&caifdevs
->lock
);
479 dev_put(caifd
->netdev
);
480 free_percpu(caifd
->pcpu_refcnt
);
483 mutex_unlock(&caifdevs
->lock
);
489 static struct notifier_block caif_device_notifier
= {
490 .notifier_call
= caif_device_notify
,
494 /* Per-namespace Caif devices handling */
495 static int caif_init_net(struct net
*net
)
497 struct caif_net
*caifn
= net_generic(net
, caif_net_id
);
498 INIT_LIST_HEAD(&caifn
->caifdevs
.list
);
499 mutex_init(&caifn
->caifdevs
.lock
);
501 caifn
->cfg
= cfcnfg_create();
508 static void caif_exit_net(struct net
*net
)
510 struct caif_device_entry
*caifd
, *tmp
;
511 struct caif_device_entry_list
*caifdevs
=
512 caif_device_list(net
);
513 struct cfcnfg
*cfg
= get_cfcnfg(net
);
516 mutex_lock(&caifdevs
->lock
);
518 list_for_each_entry_safe(caifd
, tmp
, &caifdevs
->list
, list
) {
520 list_del_rcu(&caifd
->list
);
521 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
524 (caifd_refcnt_read(caifd
) != 0 ||
525 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0)) {
527 pr_info("Wait for device inuse\n");
532 dev_put(caifd
->netdev
);
533 free_percpu(caifd
->pcpu_refcnt
);
538 mutex_unlock(&caifdevs
->lock
);
542 static struct pernet_operations caif_net_ops
= {
543 .init
= caif_init_net
,
544 .exit
= caif_exit_net
,
546 .size
= sizeof(struct caif_net
),
549 /* Initialize Caif devices list */
550 static int __init
caif_device_init(void)
554 result
= register_pernet_subsys(&caif_net_ops
);
559 register_netdevice_notifier(&caif_device_notifier
);
560 dev_add_pack(&caif_packet_type
);
565 static void __exit
caif_device_exit(void)
567 unregister_netdevice_notifier(&caif_device_notifier
);
568 dev_remove_pack(&caif_packet_type
);
569 unregister_pernet_subsys(&caif_net_ops
);
572 module_init(caif_device_init
);
573 module_exit(caif_device_exit
);