caif_dev.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. /*
  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
  6. *
  7. * Borrowed heavily from file: pn_dev.c. Thanks to Remi Denis-Courmont
  8. * and Sakari Ailus <sakari.ailus@nokia.com>
  9. */
  10. #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
  11. #include <linux/kernel.h>
  12. #include <linux/if_arp.h>
  13. #include <linux/net.h>
  14. #include <linux/netdevice.h>
  15. #include <linux/mutex.h>
  16. #include <linux/module.h>
  17. #include <linux/spinlock.h>
  18. #include <net/netns/generic.h>
  19. #include <net/net_namespace.h>
  20. #include <net/pkt_sched.h>
  21. #include <net/caif/caif_device.h>
  22. #include <net/caif/caif_layer.h>
  23. #include <net/caif/caif_dev.h>
  24. #include <net/caif/cfpkt.h>
  25. #include <net/caif/cfcnfg.h>
  26. #include <net/caif/cfserl.h>
  27. MODULE_LICENSE("GPL");
  28. /* Used for local tracking of the CAIF net devices */
  29. struct caif_device_entry {
  30. struct cflayer layer;
  31. struct list_head list;
  32. struct net_device *netdev;
  33. int __percpu *pcpu_refcnt;
  34. spinlock_t flow_lock;
  35. struct sk_buff *xoff_skb;
  36. void (*xoff_skb_dtor)(struct sk_buff *skb);
  37. bool xoff;
  38. };
  39. struct caif_device_entry_list {
  40. struct list_head list;
  41. /* Protects simulanous deletes in list */
  42. struct mutex lock;
  43. };
  44. struct caif_net {
  45. struct cfcnfg *cfg;
  46. struct caif_device_entry_list caifdevs;
  47. };
  48. static unsigned int caif_net_id;
  49. static int q_high = 50; /* Percent */
  50. struct cfcnfg *get_cfcnfg(struct net *net)
  51. {
  52. struct caif_net *caifn;
  53. caifn = net_generic(net, caif_net_id);
  54. return caifn->cfg;
  55. }
  56. EXPORT_SYMBOL(get_cfcnfg);
  57. static struct caif_device_entry_list *caif_device_list(struct net *net)
  58. {
  59. struct caif_net *caifn;
  60. caifn = net_generic(net, caif_net_id);
  61. return &caifn->caifdevs;
  62. }
  63. static void caifd_put(struct caif_device_entry *e)
  64. {
  65. this_cpu_dec(*e->pcpu_refcnt);
  66. }
  67. static void caifd_hold(struct caif_device_entry *e)
  68. {
  69. this_cpu_inc(*e->pcpu_refcnt);
  70. }
  71. static int caifd_refcnt_read(struct caif_device_entry *e)
  72. {
  73. int i, refcnt = 0;
  74. for_each_possible_cpu(i)
  75. refcnt += *per_cpu_ptr(e->pcpu_refcnt, i);
  76. return refcnt;
  77. }
  78. /* Allocate new CAIF device. */
  79. static struct caif_device_entry *caif_device_alloc(struct net_device *dev)
  80. {
  81. struct caif_device_entry *caifd;
  82. caifd = kzalloc(sizeof(*caifd), GFP_KERNEL);
  83. if (!caifd)
  84. return NULL;
  85. caifd->pcpu_refcnt = alloc_percpu(int);
  86. if (!caifd->pcpu_refcnt) {
  87. kfree(caifd);
  88. return NULL;
  89. }
  90. caifd->netdev = dev;
  91. dev_hold(dev);
  92. return caifd;
  93. }
  94. static struct caif_device_entry *caif_get(struct net_device *dev)
  95. {
  96. struct caif_device_entry_list *caifdevs =
  97. caif_device_list(dev_net(dev));
  98. struct caif_device_entry *caifd;
  99. list_for_each_entry_rcu(caifd, &caifdevs->list, list) {
  100. if (caifd->netdev == dev)
  101. return caifd;
  102. }
  103. return NULL;
  104. }
  105. static void caif_flow_cb(struct sk_buff *skb)
  106. {
  107. struct caif_device_entry *caifd;
  108. void (*dtor)(struct sk_buff *skb) = NULL;
  109. bool send_xoff;
  110. WARN_ON(skb->dev == NULL);
  111. rcu_read_lock();
  112. caifd = caif_get(skb->dev);
  113. WARN_ON(caifd == NULL);
  114. if (caifd == NULL)
  115. return;
  116. caifd_hold(caifd);
  117. rcu_read_unlock();
  118. spin_lock_bh(&caifd->flow_lock);
  119. send_xoff = caifd->xoff;
  120. caifd->xoff = 0;
  121. dtor = caifd->xoff_skb_dtor;
  122. if (WARN_ON(caifd->xoff_skb != skb))
  123. skb = NULL;
  124. caifd->xoff_skb = NULL;
  125. caifd->xoff_skb_dtor = NULL;
  126. spin_unlock_bh(&caifd->flow_lock);
  127. if (dtor && skb)
  128. dtor(skb);
  129. if (send_xoff)
  130. caifd->layer.up->
  131. ctrlcmd(caifd->layer.up,
  132. _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND,
  133. caifd->layer.id);
  134. caifd_put(caifd);
  135. }
  136. static int transmit(struct cflayer *layer, struct cfpkt *pkt)
  137. {
  138. int err, high = 0, qlen = 0;
  139. struct caif_device_entry *caifd =
  140. container_of(layer, struct caif_device_entry, layer);
  141. struct sk_buff *skb;
  142. struct netdev_queue *txq;
  143. rcu_read_lock_bh();
  144. skb = cfpkt_tonative(pkt);
  145. skb->dev = caifd->netdev;
  146. skb_reset_network_header(skb);
  147. skb->protocol = htons(ETH_P_CAIF);
  148. /* Check if we need to handle xoff */
  149. if (likely(caifd->netdev->priv_flags & IFF_NO_QUEUE))
  150. goto noxoff;
  151. if (unlikely(caifd->xoff))
  152. goto noxoff;
  153. if (likely(!netif_queue_stopped(caifd->netdev))) {
  154. /* If we run with a TX queue, check if the queue is too long*/
  155. txq = netdev_get_tx_queue(skb->dev, 0);
  156. qlen = qdisc_qlen(rcu_dereference_bh(txq->qdisc));
  157. if (likely(qlen == 0))
  158. goto noxoff;
  159. high = (caifd->netdev->tx_queue_len * q_high) / 100;
  160. if (likely(qlen < high))
  161. goto noxoff;
  162. }
  163. /* Hold lock while accessing xoff */
  164. spin_lock_bh(&caifd->flow_lock);
  165. if (caifd->xoff) {
  166. spin_unlock_bh(&caifd->flow_lock);
  167. goto noxoff;
  168. }
  169. /*
  170. * Handle flow off, we do this by temporary hi-jacking this
  171. * skb's destructor function, and replace it with our own
  172. * flow-on callback. The callback will set flow-on and call
  173. * the original destructor.
  174. */
  175. pr_debug("queue has stopped(%d) or is full (%d > %d)\n",
  176. netif_queue_stopped(caifd->netdev),
  177. qlen, high);
  178. caifd->xoff = 1;
  179. caifd->xoff_skb = skb;
  180. caifd->xoff_skb_dtor = skb->destructor;
  181. skb->destructor = caif_flow_cb;
  182. spin_unlock_bh(&caifd->flow_lock);
  183. caifd->layer.up->ctrlcmd(caifd->layer.up,
  184. _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND,
  185. caifd->layer.id);
  186. noxoff:
  187. rcu_read_unlock_bh();
  188. err = dev_queue_xmit(skb);
  189. if (err > 0)
  190. err = -EIO;
  191. return err;
  192. }
  193. /*
  194. * Stuff received packets into the CAIF stack.
  195. * On error, returns non-zero and releases the skb.
  196. */
  197. static int receive(struct sk_buff *skb, struct net_device *dev,
  198. struct packet_type *pkttype, struct net_device *orig_dev)
  199. {
  200. struct cfpkt *pkt;
  201. struct caif_device_entry *caifd;
  202. int err;
  203. pkt = cfpkt_fromnative(CAIF_DIR_IN, skb);
  204. rcu_read_lock();
  205. caifd = caif_get(dev);
  206. if (!caifd || !caifd->layer.up || !caifd->layer.up->receive ||
  207. !netif_oper_up(caifd->netdev)) {
  208. rcu_read_unlock();
  209. kfree_skb(skb);
  210. return NET_RX_DROP;
  211. }
  212. /* Hold reference to netdevice while using CAIF stack */
  213. caifd_hold(caifd);
  214. rcu_read_unlock();
  215. err = caifd->layer.up->receive(caifd->layer.up, pkt);
  216. /* For -EILSEQ the packet is not freed so so it now */
  217. if (err == -EILSEQ)
  218. cfpkt_destroy(pkt);
  219. /* Release reference to stack upwards */
  220. caifd_put(caifd);
  221. if (err != 0)
  222. err = NET_RX_DROP;
  223. return err;
  224. }
  225. static struct packet_type caif_packet_type __read_mostly = {
  226. .type = cpu_to_be16(ETH_P_CAIF),
  227. .func = receive,
  228. };
  229. static void dev_flowctrl(struct net_device *dev, int on)
  230. {
  231. struct caif_device_entry *caifd;
  232. rcu_read_lock();
  233. caifd = caif_get(dev);
  234. if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) {
  235. rcu_read_unlock();
  236. return;
  237. }
  238. caifd_hold(caifd);
  239. rcu_read_unlock();
  240. caifd->layer.up->ctrlcmd(caifd->layer.up,
  241. on ?
  242. _CAIF_CTRLCMD_PHYIF_FLOW_ON_IND :
  243. _CAIF_CTRLCMD_PHYIF_FLOW_OFF_IND,
  244. caifd->layer.id);
  245. caifd_put(caifd);
  246. }
  247. void caif_enroll_dev(struct net_device *dev, struct caif_dev_common *caifdev,
  248. struct cflayer *link_support, int head_room,
  249. struct cflayer **layer,
  250. int (**rcv_func)(struct sk_buff *, struct net_device *,
  251. struct packet_type *,
  252. struct net_device *))
  253. {
  254. struct caif_device_entry *caifd;
  255. enum cfcnfg_phy_preference pref;
  256. struct cfcnfg *cfg = get_cfcnfg(dev_net(dev));
  257. struct caif_device_entry_list *caifdevs;
  258. caifdevs = caif_device_list(dev_net(dev));
  259. caifd = caif_device_alloc(dev);
  260. if (!caifd)
  261. return;
  262. *layer = &caifd->layer;
  263. spin_lock_init(&caifd->flow_lock);
  264. switch (caifdev->link_select) {
  265. case CAIF_LINK_HIGH_BANDW:
  266. pref = CFPHYPREF_HIGH_BW;
  267. break;
  268. case CAIF_LINK_LOW_LATENCY:
  269. pref = CFPHYPREF_LOW_LAT;
  270. break;
  271. default:
  272. pref = CFPHYPREF_HIGH_BW;
  273. break;
  274. }
  275. mutex_lock(&caifdevs->lock);
  276. list_add_rcu(&caifd->list, &caifdevs->list);
  277. strlcpy(caifd->layer.name, dev->name,
  278. sizeof(caifd->layer.name));
  279. caifd->layer.transmit = transmit;
  280. cfcnfg_add_phy_layer(cfg,
  281. dev,
  282. &caifd->layer,
  283. pref,
  284. link_support,
  285. caifdev->use_fcs,
  286. head_room);
  287. mutex_unlock(&caifdevs->lock);
  288. if (rcv_func)
  289. *rcv_func = receive;
  290. }
  291. EXPORT_SYMBOL(caif_enroll_dev);
  292. /* notify Caif of device events */
  293. static int caif_device_notify(struct notifier_block *me, unsigned long what,
  294. void *ptr)
  295. {
  296. struct net_device *dev = netdev_notifier_info_to_dev(ptr);
  297. struct caif_device_entry *caifd = NULL;
  298. struct caif_dev_common *caifdev;
  299. struct cfcnfg *cfg;
  300. struct cflayer *layer, *link_support;
  301. int head_room = 0;
  302. struct caif_device_entry_list *caifdevs;
  303. cfg = get_cfcnfg(dev_net(dev));
  304. caifdevs = caif_device_list(dev_net(dev));
  305. caifd = caif_get(dev);
  306. if (caifd == NULL && dev->type != ARPHRD_CAIF)
  307. return 0;
  308. switch (what) {
  309. case NETDEV_REGISTER:
  310. if (caifd != NULL)
  311. break;
  312. caifdev = netdev_priv(dev);
  313. link_support = NULL;
  314. if (caifdev->use_frag) {
  315. head_room = 1;
  316. link_support = cfserl_create(dev->ifindex,
  317. caifdev->use_stx);
  318. if (!link_support) {
  319. pr_warn("Out of memory\n");
  320. break;
  321. }
  322. }
  323. caif_enroll_dev(dev, caifdev, link_support, head_room,
  324. &layer, NULL);
  325. caifdev->flowctrl = dev_flowctrl;
  326. break;
  327. case NETDEV_UP:
  328. rcu_read_lock();
  329. caifd = caif_get(dev);
  330. if (caifd == NULL) {
  331. rcu_read_unlock();
  332. break;
  333. }
  334. caifd->xoff = 0;
  335. cfcnfg_set_phy_state(cfg, &caifd->layer, true);
  336. rcu_read_unlock();
  337. break;
  338. case NETDEV_DOWN:
  339. rcu_read_lock();
  340. caifd = caif_get(dev);
  341. if (!caifd || !caifd->layer.up || !caifd->layer.up->ctrlcmd) {
  342. rcu_read_unlock();
  343. return -EINVAL;
  344. }
  345. cfcnfg_set_phy_state(cfg, &caifd->layer, false);
  346. caifd_hold(caifd);
  347. rcu_read_unlock();
  348. caifd->layer.up->ctrlcmd(caifd->layer.up,
  349. _CAIF_CTRLCMD_PHYIF_DOWN_IND,
  350. caifd->layer.id);
  351. spin_lock_bh(&caifd->flow_lock);
  352. /*
  353. * Replace our xoff-destructor with original destructor.
  354. * We trust that skb->destructor *always* is called before
  355. * the skb reference is invalid. The hijacked SKB destructor
  356. * takes the flow_lock so manipulating the skb->destructor here
  357. * should be safe.
  358. */
  359. if (caifd->xoff_skb_dtor != NULL && caifd->xoff_skb != NULL)
  360. caifd->xoff_skb->destructor = caifd->xoff_skb_dtor;
  361. caifd->xoff = 0;
  362. caifd->xoff_skb_dtor = NULL;
  363. caifd->xoff_skb = NULL;
  364. spin_unlock_bh(&caifd->flow_lock);
  365. caifd_put(caifd);
  366. break;
  367. case NETDEV_UNREGISTER:
  368. mutex_lock(&caifdevs->lock);
  369. caifd = caif_get(dev);
  370. if (caifd == NULL) {
  371. mutex_unlock(&caifdevs->lock);
  372. break;
  373. }
  374. list_del_rcu(&caifd->list);
  375. /*
  376. * NETDEV_UNREGISTER is called repeatedly until all reference
  377. * counts for the net-device are released. If references to
  378. * caifd is taken, simply ignore NETDEV_UNREGISTER and wait for
  379. * the next call to NETDEV_UNREGISTER.
  380. *
  381. * If any packets are in flight down the CAIF Stack,
  382. * cfcnfg_del_phy_layer will return nonzero.
  383. * If no packets are in flight, the CAIF Stack associated
  384. * with the net-device un-registering is freed.
  385. */
  386. if (caifd_refcnt_read(caifd) != 0 ||
  387. cfcnfg_del_phy_layer(cfg, &caifd->layer) != 0) {
  388. pr_info("Wait for device inuse\n");
  389. /* Enrole device if CAIF Stack is still in use */
  390. list_add_rcu(&caifd->list, &caifdevs->list);
  391. mutex_unlock(&caifdevs->lock);
  392. break;
  393. }
  394. synchronize_rcu();
  395. dev_put(caifd->netdev);
  396. free_percpu(caifd->pcpu_refcnt);
  397. kfree(caifd);
  398. mutex_unlock(&caifdevs->lock);
  399. break;
  400. }
  401. return 0;
  402. }
  403. static struct notifier_block caif_device_notifier = {
  404. .notifier_call = caif_device_notify,
  405. .priority = 0,
  406. };
  407. /* Per-namespace Caif devices handling */
  408. static int caif_init_net(struct net *net)
  409. {
  410. struct caif_net *caifn = net_generic(net, caif_net_id);
  411. INIT_LIST_HEAD(&caifn->caifdevs.list);
  412. mutex_init(&caifn->caifdevs.lock);
  413. caifn->cfg = cfcnfg_create();
  414. if (!caifn->cfg)
  415. return -ENOMEM;
  416. return 0;
  417. }
  418. static void caif_exit_net(struct net *net)
  419. {
  420. struct caif_device_entry *caifd, *tmp;
  421. struct caif_device_entry_list *caifdevs =
  422. caif_device_list(net);
  423. struct cfcnfg *cfg = get_cfcnfg(net);
  424. rtnl_lock();
  425. mutex_lock(&caifdevs->lock);
  426. list_for_each_entry_safe(caifd, tmp, &caifdevs->list, list) {
  427. int i = 0;
  428. list_del_rcu(&caifd->list);
  429. cfcnfg_set_phy_state(cfg, &caifd->layer, false);
  430. while (i < 10 &&
  431. (caifd_refcnt_read(caifd) != 0 ||
  432. cfcnfg_del_phy_layer(cfg, &caifd->layer) != 0)) {
  433. pr_info("Wait for device inuse\n");
  434. msleep(250);
  435. i++;
  436. }
  437. synchronize_rcu();
  438. dev_put(caifd->netdev);
  439. free_percpu(caifd->pcpu_refcnt);
  440. kfree(caifd);
  441. }
  442. cfcnfg_remove(cfg);
  443. mutex_unlock(&caifdevs->lock);
  444. rtnl_unlock();
  445. }
  446. static struct pernet_operations caif_net_ops = {
  447. .init = caif_init_net,
  448. .exit = caif_exit_net,
  449. .id = &caif_net_id,
  450. .size = sizeof(struct caif_net),
  451. };
  452. /* Initialize Caif devices list */
  453. static int __init caif_device_init(void)
  454. {
  455. int result;
  456. result = register_pernet_subsys(&caif_net_ops);
  457. if (result)
  458. return result;
  459. register_netdevice_notifier(&caif_device_notifier);
  460. dev_add_pack(&caif_packet_type);
  461. return result;
  462. }
  463. static void __exit caif_device_exit(void)
  464. {
  465. unregister_netdevice_notifier(&caif_device_notifier);
  466. dev_remove_pack(&caif_packet_type);
  467. unregister_pernet_subsys(&caif_net_ops);
  468. }
  469. module_init(caif_device_init);
  470. module_exit(caif_device_exit);