1 // SPDX-License-Identifier: GPL-2.0-only
3 * CAIF Interface registration.
4 * Copyright (C) ST-Ericsson AB 2010
5 * Author: Sjur Brendeland
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/caif_dev.h>
26 #include <net/caif/cfpkt.h>
27 #include <net/caif/cfcnfg.h>
28 #include <net/caif/cfserl.h>
30 MODULE_DESCRIPTION("ST-Ericsson CAIF modem protocol support");
31 MODULE_LICENSE("GPL");
33 /* Used for local tracking of the CAIF net devices */
34 struct caif_device_entry
{
36 struct list_head list
;
37 struct net_device
*netdev
;
38 int __percpu
*pcpu_refcnt
;
40 struct sk_buff
*xoff_skb
;
41 void (*xoff_skb_dtor
)(struct sk_buff
*skb
);
45 struct caif_device_entry_list
{
46 struct list_head list
;
47 /* Protects simulanous deletes in list */
53 struct caif_device_entry_list caifdevs
;
56 static unsigned int caif_net_id
;
57 static int q_high
= 50; /* Percent */
59 struct cfcnfg
*get_cfcnfg(struct net
*net
)
61 struct caif_net
*caifn
;
62 caifn
= net_generic(net
, caif_net_id
);
65 EXPORT_SYMBOL(get_cfcnfg
);
67 static struct caif_device_entry_list
*caif_device_list(struct net
*net
)
69 struct caif_net
*caifn
;
70 caifn
= net_generic(net
, caif_net_id
);
71 return &caifn
->caifdevs
;
74 static void caifd_put(struct caif_device_entry
*e
)
76 this_cpu_dec(*e
->pcpu_refcnt
);
79 static void caifd_hold(struct caif_device_entry
*e
)
81 this_cpu_inc(*e
->pcpu_refcnt
);
84 static int caifd_refcnt_read(struct caif_device_entry
*e
)
87 for_each_possible_cpu(i
)
88 refcnt
+= *per_cpu_ptr(e
->pcpu_refcnt
, i
);
92 /* Allocate new CAIF device. */
93 static struct caif_device_entry
*caif_device_alloc(struct net_device
*dev
)
95 struct caif_device_entry
*caifd
;
97 caifd
= kzalloc(sizeof(*caifd
), GFP_KERNEL
);
100 caifd
->pcpu_refcnt
= alloc_percpu(int);
101 if (!caifd
->pcpu_refcnt
) {
110 static struct caif_device_entry
*caif_get(struct net_device
*dev
)
112 struct caif_device_entry_list
*caifdevs
=
113 caif_device_list(dev_net(dev
));
114 struct caif_device_entry
*caifd
;
116 list_for_each_entry_rcu(caifd
, &caifdevs
->list
, list
,
117 lockdep_rtnl_is_held()) {
118 if (caifd
->netdev
== dev
)
124 static void caif_flow_cb(struct sk_buff
*skb
)
126 struct caif_device_entry
*caifd
;
127 void (*dtor
)(struct sk_buff
*skb
) = NULL
;
130 WARN_ON(skb
->dev
== NULL
);
133 caifd
= caif_get(skb
->dev
);
135 WARN_ON(caifd
== NULL
);
144 spin_lock_bh(&caifd
->flow_lock
);
145 send_xoff
= caifd
->xoff
;
147 dtor
= caifd
->xoff_skb_dtor
;
149 if (WARN_ON(caifd
->xoff_skb
!= skb
))
152 caifd
->xoff_skb
= NULL
;
153 caifd
->xoff_skb_dtor
= NULL
;
155 spin_unlock_bh(&caifd
->flow_lock
);
162 ctrlcmd(caifd
->layer
.up
,
163 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
,
168 static int transmit(struct cflayer
*layer
, struct cfpkt
*pkt
)
170 int err
, high
= 0, qlen
= 0;
171 struct caif_device_entry
*caifd
=
172 container_of(layer
, struct caif_device_entry
, layer
);
174 struct netdev_queue
*txq
;
178 skb
= cfpkt_tonative(pkt
);
179 skb
->dev
= caifd
->netdev
;
180 skb_reset_network_header(skb
);
181 skb
->protocol
= htons(ETH_P_CAIF
);
183 /* Check if we need to handle xoff */
184 if (likely(caifd
->netdev
->priv_flags
& IFF_NO_QUEUE
))
187 if (unlikely(caifd
->xoff
))
190 if (likely(!netif_queue_stopped(caifd
->netdev
))) {
193 /* If we run with a TX queue, check if the queue is too long*/
194 txq
= netdev_get_tx_queue(skb
->dev
, 0);
195 sch
= rcu_dereference_bh(txq
->qdisc
);
196 if (likely(qdisc_is_empty(sch
)))
199 /* can check for explicit qdisc len value only !NOLOCK,
200 * always set flow off otherwise
202 high
= (caifd
->netdev
->tx_queue_len
* q_high
) / 100;
203 if (!(sch
->flags
& TCQ_F_NOLOCK
) && likely(sch
->q
.qlen
< high
))
207 /* Hold lock while accessing xoff */
208 spin_lock_bh(&caifd
->flow_lock
);
210 spin_unlock_bh(&caifd
->flow_lock
);
215 * Handle flow off, we do this by temporary hi-jacking this
216 * skb's destructor function, and replace it with our own
217 * flow-on callback. The callback will set flow-on and call
218 * the original destructor.
221 pr_debug("queue has stopped(%d) or is full (%d > %d)\n",
222 netif_queue_stopped(caifd
->netdev
),
225 caifd
->xoff_skb
= skb
;
226 caifd
->xoff_skb_dtor
= skb
->destructor
;
227 skb
->destructor
= caif_flow_cb
;
228 spin_unlock_bh(&caifd
->flow_lock
);
230 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
231 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
234 rcu_read_unlock_bh();
236 err
= dev_queue_xmit(skb
);
244 * Stuff received packets into the CAIF stack.
245 * On error, returns non-zero and releases the skb.
247 static int receive(struct sk_buff
*skb
, struct net_device
*dev
,
248 struct packet_type
*pkttype
, struct net_device
*orig_dev
)
251 struct caif_device_entry
*caifd
;
254 pkt
= cfpkt_fromnative(CAIF_DIR_IN
, skb
);
257 caifd
= caif_get(dev
);
259 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->receive
||
260 !netif_oper_up(caifd
->netdev
)) {
266 /* Hold reference to netdevice while using CAIF stack */
270 err
= caifd
->layer
.up
->receive(caifd
->layer
.up
, pkt
);
272 /* For -EILSEQ the packet is not freed so free it now */
276 /* Release reference to stack upwards */
284 static struct packet_type caif_packet_type __read_mostly
= {
285 .type
= cpu_to_be16(ETH_P_CAIF
),
289 static void dev_flowctrl(struct net_device
*dev
, int on
)
291 struct caif_device_entry
*caifd
;
295 caifd
= caif_get(dev
);
296 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
304 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
306 _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND
:
307 _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND
,
312 int caif_enroll_dev(struct net_device
*dev
, struct caif_dev_common
*caifdev
,
313 struct cflayer
*link_support
, int head_room
,
314 struct cflayer
**layer
,
315 int (**rcv_func
)(struct sk_buff
*, struct net_device
*,
316 struct packet_type
*,
317 struct net_device
*))
319 struct caif_device_entry
*caifd
;
320 enum cfcnfg_phy_preference pref
;
321 struct cfcnfg
*cfg
= get_cfcnfg(dev_net(dev
));
322 struct caif_device_entry_list
*caifdevs
;
325 caifdevs
= caif_device_list(dev_net(dev
));
326 caifd
= caif_device_alloc(dev
);
329 *layer
= &caifd
->layer
;
330 spin_lock_init(&caifd
->flow_lock
);
332 switch (caifdev
->link_select
) {
333 case CAIF_LINK_HIGH_BANDW
:
334 pref
= CFPHYPREF_HIGH_BW
;
336 case CAIF_LINK_LOW_LATENCY
:
337 pref
= CFPHYPREF_LOW_LAT
;
340 pref
= CFPHYPREF_HIGH_BW
;
343 mutex_lock(&caifdevs
->lock
);
344 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
346 strscpy(caifd
->layer
.name
, dev
->name
,
347 sizeof(caifd
->layer
.name
));
348 caifd
->layer
.transmit
= transmit
;
349 res
= cfcnfg_add_phy_layer(cfg
,
356 mutex_unlock(&caifdevs
->lock
);
361 EXPORT_SYMBOL(caif_enroll_dev
);
363 /* notify Caif of device events */
364 static int caif_device_notify(struct notifier_block
*me
, unsigned long what
,
367 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
368 struct caif_device_entry
*caifd
= NULL
;
369 struct caif_dev_common
*caifdev
;
371 struct cflayer
*layer
, *link_support
;
373 struct caif_device_entry_list
*caifdevs
;
376 cfg
= get_cfcnfg(dev_net(dev
));
377 caifdevs
= caif_device_list(dev_net(dev
));
379 caifd
= caif_get(dev
);
380 if (caifd
== NULL
&& dev
->type
!= ARPHRD_CAIF
)
384 case NETDEV_REGISTER
:
388 caifdev
= netdev_priv(dev
);
391 if (caifdev
->use_frag
) {
393 link_support
= cfserl_create(dev
->ifindex
,
396 pr_warn("Out of memory\n");
400 res
= caif_enroll_dev(dev
, caifdev
, link_support
, head_room
,
403 cfserl_release(link_support
);
404 caifdev
->flowctrl
= dev_flowctrl
;
410 caifd
= caif_get(dev
);
417 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, true);
425 caifd
= caif_get(dev
);
426 if (!caifd
|| !caifd
->layer
.up
|| !caifd
->layer
.up
->ctrlcmd
) {
431 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
435 caifd
->layer
.up
->ctrlcmd(caifd
->layer
.up
,
436 _CAIF_CTRLCMD_PHYIF_DOWN_IND
,
439 spin_lock_bh(&caifd
->flow_lock
);
442 * Replace our xoff-destructor with original destructor.
443 * We trust that skb->destructor *always* is called before
444 * the skb reference is invalid. The hijacked SKB destructor
445 * takes the flow_lock so manipulating the skb->destructor here
448 if (caifd
->xoff_skb_dtor
!= NULL
&& caifd
->xoff_skb
!= NULL
)
449 caifd
->xoff_skb
->destructor
= caifd
->xoff_skb_dtor
;
452 caifd
->xoff_skb_dtor
= NULL
;
453 caifd
->xoff_skb
= NULL
;
455 spin_unlock_bh(&caifd
->flow_lock
);
459 case NETDEV_UNREGISTER
:
460 mutex_lock(&caifdevs
->lock
);
462 caifd
= caif_get(dev
);
464 mutex_unlock(&caifdevs
->lock
);
467 list_del_rcu(&caifd
->list
);
470 * NETDEV_UNREGISTER is called repeatedly until all reference
471 * counts for the net-device are released. If references to
472 * caifd is taken, simply ignore NETDEV_UNREGISTER and wait for
473 * the next call to NETDEV_UNREGISTER.
475 * If any packets are in flight down the CAIF Stack,
476 * cfcnfg_del_phy_layer will return nonzero.
477 * If no packets are in flight, the CAIF Stack associated
478 * with the net-device un-registering is freed.
481 if (caifd_refcnt_read(caifd
) != 0 ||
482 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0) {
484 pr_info("Wait for device inuse\n");
485 /* Enrole device if CAIF Stack is still in use */
486 list_add_rcu(&caifd
->list
, &caifdevs
->list
);
487 mutex_unlock(&caifdevs
->lock
);
492 dev_put(caifd
->netdev
);
493 free_percpu(caifd
->pcpu_refcnt
);
496 mutex_unlock(&caifdevs
->lock
);
502 static struct notifier_block caif_device_notifier
= {
503 .notifier_call
= caif_device_notify
,
507 /* Per-namespace Caif devices handling */
508 static int caif_init_net(struct net
*net
)
510 struct caif_net
*caifn
= net_generic(net
, caif_net_id
);
511 INIT_LIST_HEAD(&caifn
->caifdevs
.list
);
512 mutex_init(&caifn
->caifdevs
.lock
);
514 caifn
->cfg
= cfcnfg_create();
521 static void caif_exit_net(struct net
*net
)
523 struct caif_device_entry
*caifd
, *tmp
;
524 struct caif_device_entry_list
*caifdevs
=
525 caif_device_list(net
);
526 struct cfcnfg
*cfg
= get_cfcnfg(net
);
529 mutex_lock(&caifdevs
->lock
);
531 list_for_each_entry_safe(caifd
, tmp
, &caifdevs
->list
, list
) {
533 list_del_rcu(&caifd
->list
);
534 cfcnfg_set_phy_state(cfg
, &caifd
->layer
, false);
537 (caifd_refcnt_read(caifd
) != 0 ||
538 cfcnfg_del_phy_layer(cfg
, &caifd
->layer
) != 0)) {
540 pr_info("Wait for device inuse\n");
545 dev_put(caifd
->netdev
);
546 free_percpu(caifd
->pcpu_refcnt
);
551 mutex_unlock(&caifdevs
->lock
);
555 static struct pernet_operations caif_net_ops
= {
556 .init
= caif_init_net
,
557 .exit
= caif_exit_net
,
559 .size
= sizeof(struct caif_net
),
562 /* Initialize Caif devices list */
563 static int __init
caif_device_init(void)
567 result
= register_pernet_subsys(&caif_net_ops
);
572 register_netdevice_notifier(&caif_device_notifier
);
573 dev_add_pack(&caif_packet_type
);
578 static void __exit
caif_device_exit(void)
580 unregister_netdevice_notifier(&caif_device_notifier
);
581 dev_remove_pack(&caif_packet_type
);
582 unregister_pernet_subsys(&caif_net_ops
);
585 module_init(caif_device_init
);
586 module_exit(caif_device_exit
);