2 * CAIF Interface registration.
3 * Copyright (C) ST-Ericsson AB 2010
4 * Author: Sjur Brendeland/sjur.brandeland@stericsson.com
5 * License terms: GNU General Public License (GPL) version 2
7 * Borrowed heavily from file: pn_dev.c. Thanks to
8 * Remi Denis-Courmont <remi.denis-courmont@nokia.com>
9 * and Sakari Ailus <sakari.ailus@nokia.com>
12 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
14 #include <linux/kernel.h>
15 #include <linux/if_arp.h>
16 #include <linux/net.h>
17 #include <linux/netdevice.h>
18 #include <linux/mutex.h>
19 #include <linux/module.h>
20 #include <linux/spinlock.h>
21 #include <net/netns/generic.h>
22 #include <net/net_namespace.h>
23 #include <net/pkt_sched.h>
24 #include <net/caif/caif_device.h>
25 #include <net/caif/caif_layer.h>
26 #include <net/caif/cfpkt.h>
27 #include <net/caif/cfcnfg.h>
28 #include <net/caif/cfserl.h>
30 MODULE_LICENSE("GPL");
32 /* Used for local tracking of the CAIF net devices */
33 struct caif_device_entry
{
35 struct list_head list
;
36 struct net_device
*netdev
;
37 int __percpu
*pcpu_refcnt
;
39 struct sk_buff
*xoff_skb
;
40 void (*xoff_skb_dtor
)(struct sk_buff
*skb
);
44 struct caif_device_entry_list
{
45 struct list_head list
;
46 /* Protects simulanous deletes in list */
52 struct caif_device_entry_list caifdevs
;
55 static int caif_net_id
;
56 static int q_high
= 50; /* Percent */
58 struct cfcnfg
*get_cfcnfg(struct net
*net
)
60 struct caif_net
*caifn
;
61 caifn
= net_generic(net
, caif_net_id
);
64 EXPORT_SYMBOL(get_cfcnfg
);
66 static struct caif_device_entry_list
*caif_device_list(struct net
*net
)
68 struct caif_net
*caifn
;
69 caifn
= net_generic(net
, caif_net_id
);
70 return &caifn
->caifdevs
;
73 static void caifd_put(struct caif_device_entry
*e
)
75 this_cpu_dec(*e
->pcpu_refcnt
);
78 static void caifd_hold(struct caif_device_entry
*e
)
80 this_cpu_inc(*e
->pcpu_refcnt
);
83 static int caifd_refcnt_read(struct caif_device_entry
*e
)
86 for_each_possible_cpu(i
)
87 refcnt
+= *per_cpu_ptr(e
->pcpu_refcnt
, i
);
91 /* Allocate new CAIF device. */
92 static struct caif_device_entry
*caif_device_alloc(struct net_device
*dev
)
94 struct caif_device_entry_list
*caifdevs
;
95 struct caif_device_entry
*caifd
;
97 caifdevs
= caif_device_list(dev_net(dev
));
99 caifd
= kzalloc(sizeof(*caifd
), GFP_KERNEL
);
102 caifd
->pcpu_refcnt
= alloc_percpu(int);
103 if (!caifd
->pcpu_refcnt
) {
112 static struct caif_device_entry
*caif_get(struct net_device
*dev
)
114 struct caif_device_entry_list
*caifdevs
=
115 caif_device_list(dev_net(dev
));
116 struct caif_device_entry
*caifd
;
118 list_for_each_entry_rcu(caifd
, &caifdevs
->list
, list
) {
119 if (caifd
->netdev
== dev
)
125 void caif_flow_cb(struct sk_buff
*skb
)
127 struct caif_device_entry
*caifd
;
128 void (*dtor
)(struct sk_buff
*skb
) = NULL
;
131 WARN_ON(skb
->dev
== NULL
);
134 caifd
= caif_get(skb
->dev
);
138 spin_lock_bh(&caifd
->flow_lock
);
139 send_xoff
= caifd
->xoff
;
141 dtor
= caifd
->xoff_skb_dtor
;
143 if (WARN_ON(caifd
->xoff_skb
!= skb
))
146 caifd
->xoff_skb
= NULL
;
147 caifd
->xoff_skb_dtor
= NULL
;
149 spin_unlock_bh(&caifd
->flow_lock
);
156 ctrlcmd(caifd
->layer
.up
,
157 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
,
162 static int transmit(struct cflayer
*layer
, struct cfpkt
*pkt
)
164 int err
, high
= 0, qlen
= 0;
165 struct caif_device_entry
*caifd
=
166 container_of(layer
, struct caif_device_entry
, layer
);
168 struct netdev_queue
*txq
;
172 skb
= cfpkt_tonative(pkt
);
173 skb
->dev
= caifd
->netdev
;
174 skb_reset_network_header(skb
);
175 skb
->protocol
= htons(ETH_P_CAIF
);
177 /* Check if we need to handle xoff */
178 if (likely(caifd
->netdev
->tx_queue_len
== 0))
181 if (unlikely(caifd
->xoff
))
184 if (likely(!netif_queue_stopped(caifd
->netdev
))) {
185 /* If we run with a TX queue, check if the queue is too long*/
186 txq
= netdev_get_tx_queue(skb
->dev
, 0);
187 qlen
= qdisc_qlen(rcu_dereference_bh(txq
->qdisc
));
189 if (likely(qlen
== 0))
192 high
= (caifd
->netdev
->tx_queue_len
* q_high
) / 100;
193 if (likely(qlen
< high
))
197 /* Hold lock while accessing xoff */
198 spin_lock_bh(&caifd
->flow_lock
);
200 spin_unlock_bh(&caifd
->flow_lock
);
205 * Handle flow off, we do this by temporary hi-jacking this
206 * skb's destructor function, and replace it with our own
207 * flow-on callback. The callback will set flow-on and call
208 * the original destructor.
211 pr_debug("queue has stopped(%d) or is full (%d > %d)\n",
212 netif_queue_stopped(caifd
->netdev
),
215 caifd
->xoff_skb
= skb
;
216 caifd
->xoff_skb_dtor
= skb
->destructor
;
217 skb
->destructor
= caif_flow_cb
;
218 spin_unlock_bh(&caifd
->flow_lock
);
220 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
221 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
224 rcu_read_unlock_bh();
226 err
= dev_queue_xmit(skb
);
234 * Stuff received packets into the CAIF stack.
235 * On error, returns non-zero and releases the skb.
237 static int receive(struct sk_buff
*skb
, struct net_device
*dev
,
238 struct packet_type
*pkttype
, struct net_device
*orig_dev
)
241 struct caif_device_entry
*caifd
;
244 pkt
= cfpkt_fromnative(CAIF_DIR_IN
, skb
);
247 caifd
= caif_get(dev
);
249 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->receive
||
250 !netif_oper_up(caifd
->netdev
)) {
256 /* Hold reference to netdevice while using CAIF stack */
260 err
= caifd
->layer
.up
->receive(caifd
->layer
.up
, pkt
);
262 /* For -EILSEQ the packet is not freed so so it now */
266 /* Release reference to stack upwards */
274 static struct packet_type caif_packet_type __read_mostly
= {
275 .type
= cpu_to_be16(ETH_P_CAIF
),
279 static void dev_flowctrl(struct net_device
*dev
, int on
)
281 struct caif_device_entry
*caifd
;
285 caifd
= caif_get(dev
);
286 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
294 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
296 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
:
297 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
302 void caif_enroll_dev(struct net_device
*dev
, struct caif_dev_common
*caifdev
,
303 struct cflayer
*link_support
, int head_room
,
304 struct cflayer
**layer
, int (**rcv_func
)(
305 struct sk_buff
*, struct net_device
*,
306 struct packet_type
*, struct net_device
*))
308 struct caif_device_entry
*caifd
;
309 enum cfcnfg_phy_preference pref
;
310 struct cfcnfg
*cfg
= get_cfcnfg(dev_net(dev
));
311 struct caif_device_entry_list
*caifdevs
;
313 caifdevs
= caif_device_list(dev_net(dev
));
314 caifd
= caif_device_alloc(dev
);
317 *layer
= &caifd
->layer
;
318 spin_lock_init(&caifd
->flow_lock
);
320 switch (caifdev
->link_select
) {
321 case CAIF_LINK_HIGH_BANDW
:
322 pref
= CFPHYPREF_HIGH_BW
;
324 case CAIF_LINK_LOW_LATENCY
:
325 pref
= CFPHYPREF_LOW_LAT
;
328 pref
= CFPHYPREF_HIGH_BW
;
331 mutex_lock(&caifdevs
->lock
);
332 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
334 strncpy(caifd
->layer
.name
, dev
->name
,
335 sizeof(caifd
->layer
.name
) - 1);
336 caifd
->layer
.name
[sizeof(caifd
->layer
.name
) - 1] = 0;
337 caifd
->layer
.transmit
= transmit
;
338 cfcnfg_add_phy_layer(cfg
,
345 mutex_unlock(&caifdevs
->lock
);
349 EXPORT_SYMBOL(caif_enroll_dev
);
351 /* notify Caif of device events */
352 static int caif_device_notify(struct notifier_block
*me
, unsigned long what
,
355 struct net_device
*dev
= arg
;
356 struct caif_device_entry
*caifd
= NULL
;
357 struct caif_dev_common
*caifdev
;
359 struct cflayer
*layer
, *link_support
;
361 struct caif_device_entry_list
*caifdevs
;
363 cfg
= get_cfcnfg(dev_net(dev
));
364 caifdevs
= caif_device_list(dev_net(dev
));
366 caifd
= caif_get(dev
);
367 if (caifd
== NULL
&& dev
->type
!= ARPHRD_CAIF
)
371 case NETDEV_REGISTER
:
375 caifdev
= netdev_priv(dev
);
378 if (caifdev
->use_frag
) {
380 link_support
= cfserl_create(dev
->ifindex
,
383 pr_warn("Out of memory\n");
387 caif_enroll_dev(dev
, caifdev
, link_support
, head_room
,
389 caifdev
->flowctrl
= dev_flowctrl
;
395 caifd
= caif_get(dev
);
402 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, true);
410 caifd
= caif_get(dev
);
411 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
416 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
420 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
421 _CAIF_CTRLCMD_PHYIF_DOWN_IND
,
424 spin_lock_bh(&caifd
->flow_lock
);
427 * Replace our xoff-destructor with original destructor.
428 * We trust that skb->destructor *always* is called before
429 * the skb reference is invalid. The hijacked SKB destructor
430 * takes the flow_lock so manipulating the skb->destructor here
433 if (caifd
->xoff_skb_dtor
!= NULL
&& caifd
->xoff_skb
!= NULL
)
434 caifd
->xoff_skb
->destructor
= caifd
->xoff_skb_dtor
;
437 caifd
->xoff_skb_dtor
= NULL
;
438 caifd
->xoff_skb
= NULL
;
440 spin_unlock_bh(&caifd
->flow_lock
);
444 case NETDEV_UNREGISTER
:
445 mutex_lock(&caifdevs
->lock
);
447 caifd
= caif_get(dev
);
449 mutex_unlock(&caifdevs
->lock
);
452 list_del_rcu(&caifd
->list
);
455 * NETDEV_UNREGISTER is called repeatedly until all reference
456 * counts for the net-device are released. If references to
457 * caifd is taken, simply ignore NETDEV_UNREGISTER and wait for
458 * the next call to NETDEV_UNREGISTER.
460 * If any packets are in flight down the CAIF Stack,
461 * cfcnfg_del_phy_layer will return nonzero.
462 * If no packets are in flight, the CAIF Stack associated
463 * with the net-device un-registering is freed.
466 if (caifd_refcnt_read(caifd
) != 0 ||
467 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0) {
469 pr_info("Wait for device inuse\n");
470 /* Enrole device if CAIF Stack is still in use */
471 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
472 mutex_unlock(&caifdevs
->lock
);
477 dev_put(caifd
->netdev
);
478 free_percpu(caifd
->pcpu_refcnt
);
481 mutex_unlock(&caifdevs
->lock
);
487 static struct notifier_block caif_device_notifier
= {
488 .notifier_call
= caif_device_notify
,
492 /* Per-namespace Caif devices handling */
493 static int caif_init_net(struct net
*net
)
495 struct caif_net
*caifn
= net_generic(net
, caif_net_id
);
496 INIT_LIST_HEAD(&caifn
->caifdevs
.list
);
497 mutex_init(&caifn
->caifdevs
.lock
);
499 caifn
->cfg
= cfcnfg_create();
506 static void caif_exit_net(struct net
*net
)
508 struct caif_device_entry
*caifd
, *tmp
;
509 struct caif_device_entry_list
*caifdevs
=
510 caif_device_list(net
);
511 struct cfcnfg
*cfg
= get_cfcnfg(net
);
514 mutex_lock(&caifdevs
->lock
);
516 list_for_each_entry_safe(caifd
, tmp
, &caifdevs
->list
, list
) {
518 list_del_rcu(&caifd
->list
);
519 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
522 (caifd_refcnt_read(caifd
) != 0 ||
523 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0)) {
525 pr_info("Wait for device inuse\n");
530 dev_put(caifd
->netdev
);
531 free_percpu(caifd
->pcpu_refcnt
);
536 mutex_unlock(&caifdevs
->lock
);
540 static struct pernet_operations caif_net_ops
= {
541 .init
= caif_init_net
,
542 .exit
= caif_exit_net
,
544 .size
= sizeof(struct caif_net
),
547 /* Initialize Caif devices list */
548 static int __init
caif_device_init(void)
552 result
= register_pernet_subsys(&caif_net_ops
);
557 register_netdevice_notifier(&caif_device_notifier
);
558 dev_add_pack(&caif_packet_type
);
563 static void __exit
caif_device_exit(void)
565 unregister_netdevice_notifier(&caif_device_notifier
);
566 dev_remove_pack(&caif_packet_type
);
567 unregister_pernet_subsys(&caif_net_ops
);
570 module_init(caif_device_init
);
571 module_exit(caif_device_exit
);