lg-vl600.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /*
  2. * Ethernet interface part of the LG VL600 LTE modem (4G dongle)
  3. *
  4. * Copyright (C) 2011 Intel Corporation
  5. * Author: Andrzej Zaborowski <balrogg@gmail.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/etherdevice.h>
  22. #include <linux/ethtool.h>
  23. #include <linux/mii.h>
  24. #include <linux/usb.h>
  25. #include <linux/usb/cdc.h>
  26. #include <linux/usb/usbnet.h>
  27. #include <linux/if_ether.h>
  28. #include <linux/if_arp.h>
  29. #include <linux/inetdevice.h>
  30. /*
  31. * The device has a CDC ACM port for modem control (it claims to be
  32. * CDC ACM anyway) and a CDC Ethernet port for actual network data.
  33. * It will however ignore data on both ports that is not encapsulated
  34. * in a specific way, any data returned is also encapsulated the same
  35. * way. The headers don't seem to follow any popular standard.
  36. *
  37. * This driver adds and strips these headers from the ethernet frames
  38. * sent/received from the CDC Ethernet port. The proprietary header
  39. * replaces the standard ethernet header in a packet so only actual
  40. * ethernet frames are allowed. The headers allow some form of
  41. * multiplexing by using non standard values of the .h_proto field.
  42. * Windows/Mac drivers do send a couple of such frames to the device
  43. * during initialisation, with protocol set to 0x0906 or 0x0b06 and (what
  44. * seems to be) a flag in the .dummy_flags. This doesn't seem necessary
  45. * for modem operation but can possibly be used for GPS or other funcitons.
  46. */
  47. struct vl600_frame_hdr {
  48. __le32 len;
  49. __le32 serial;
  50. __le32 pkt_cnt;
  51. __le32 dummy_flags;
  52. __le32 dummy;
  53. __le32 magic;
  54. } __attribute__((packed));
  55. struct vl600_pkt_hdr {
  56. __le32 dummy[2];
  57. __le32 len;
  58. __be16 h_proto;
  59. } __attribute__((packed));
  60. struct vl600_state {
  61. struct sk_buff *current_rx_buf;
  62. };
  63. static int vl600_bind(struct usbnet *dev, struct usb_interface *intf)
  64. {
  65. int ret;
  66. struct vl600_state *s = kzalloc(sizeof(struct vl600_state), GFP_KERNEL);
  67. if (!s)
  68. return -ENOMEM;
  69. ret = usbnet_cdc_bind(dev, intf);
  70. if (ret) {
  71. kfree(s);
  72. return ret;
  73. }
  74. dev->driver_priv = s;
  75. /* ARP packets don't go through, but they're also of no use. The
  76. * subnet has only two hosts anyway: us and the gateway / DHCP
  77. * server (probably simulated by modem firmware or network operator)
  78. * whose address changes everytime we connect to the intarwebz and
  79. * who doesn't bother answering ARP requests either. So hardware
  80. * addresses have no meaning, the destination and the source of every
  81. * packet depend only on whether it is on the IN or OUT endpoint. */
  82. dev->net->flags |= IFF_NOARP;
  83. return ret;
  84. }
  85. static void vl600_unbind(struct usbnet *dev, struct usb_interface *intf)
  86. {
  87. struct vl600_state *s = dev->driver_priv;
  88. if (s->current_rx_buf)
  89. dev_kfree_skb(s->current_rx_buf);
  90. kfree(s);
  91. return usbnet_cdc_unbind(dev, intf);
  92. }
  93. static int vl600_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
  94. {
  95. struct vl600_frame_hdr *frame;
  96. struct vl600_pkt_hdr *packet;
  97. struct ethhdr *ethhdr;
  98. int packet_len, count;
  99. struct sk_buff *buf = skb;
  100. struct sk_buff *clone;
  101. struct vl600_state *s = dev->driver_priv;
  102. /* Frame lengths are generally 4B multiplies but every couple of
  103. * hours there's an odd number of bytes sized yet correct frame,
  104. * so don't require this. */
  105. /* Allow a packet (or multiple packets batched together) to be
  106. * split across many frames. We don't allow a new batch to
  107. * begin in the same frame another one is ending however, and no
  108. * leading or trailing pad bytes. */
  109. if (s->current_rx_buf) {
  110. frame = (struct vl600_frame_hdr *) s->current_rx_buf->data;
  111. if (skb->len + s->current_rx_buf->len >
  112. le32_to_cpup(&frame->len)) {
  113. netif_err(dev, ifup, dev->net, "Fragment too long\n");
  114. dev->net->stats.rx_length_errors++;
  115. goto error;
  116. }
  117. buf = s->current_rx_buf;
  118. memcpy(skb_put(buf, skb->len), skb->data, skb->len);
  119. } else if (skb->len < 4) {
  120. netif_err(dev, ifup, dev->net, "Frame too short\n");
  121. dev->net->stats.rx_length_errors++;
  122. goto error;
  123. }
  124. frame = (struct vl600_frame_hdr *) buf->data;
  125. /* NOTE: Should check that frame->magic == 0x53544448?
  126. * Otherwise if we receive garbage at the beginning of the frame
  127. * we may end up allocating a huge buffer and saving all the
  128. * future incoming data into it. */
  129. if (buf->len < sizeof(*frame) ||
  130. buf->len != le32_to_cpup(&frame->len)) {
  131. /* Save this fragment for later assembly */
  132. if (s->current_rx_buf)
  133. return 0;
  134. s->current_rx_buf = skb_copy_expand(skb, 0,
  135. le32_to_cpup(&frame->len), GFP_ATOMIC);
  136. if (!s->current_rx_buf) {
  137. netif_err(dev, ifup, dev->net, "Reserving %i bytes "
  138. "for packet assembly failed.\n",
  139. le32_to_cpup(&frame->len));
  140. dev->net->stats.rx_errors++;
  141. }
  142. return 0;
  143. }
  144. count = le32_to_cpup(&frame->pkt_cnt);
  145. skb_pull(buf, sizeof(*frame));
  146. while (count--) {
  147. if (buf->len < sizeof(*packet)) {
  148. netif_err(dev, ifup, dev->net, "Packet too short\n");
  149. goto error;
  150. }
  151. packet = (struct vl600_pkt_hdr *) buf->data;
  152. packet_len = sizeof(*packet) + le32_to_cpup(&packet->len);
  153. if (packet_len > buf->len) {
  154. netif_err(dev, ifup, dev->net,
  155. "Bad packet length stored in header\n");
  156. goto error;
  157. }
  158. /* Packet header is same size as the ethernet header
  159. * (sizeof(*packet) == sizeof(*ethhdr)), additionally
  160. * the h_proto field is in the same place so we just leave it
  161. * alone and fill in the remaining fields.
  162. */
  163. ethhdr = (struct ethhdr *) skb->data;
  164. if (be16_to_cpup(&ethhdr->h_proto) == ETH_P_ARP &&
  165. buf->len > 0x26) {
  166. /* Copy the addresses from packet contents */
  167. memcpy(ethhdr->h_source,
  168. &buf->data[sizeof(*ethhdr) + 0x8],
  169. ETH_ALEN);
  170. memcpy(ethhdr->h_dest,
  171. &buf->data[sizeof(*ethhdr) + 0x12],
  172. ETH_ALEN);
  173. } else {
  174. memset(ethhdr->h_source, 0, ETH_ALEN);
  175. memcpy(ethhdr->h_dest, dev->net->dev_addr, ETH_ALEN);
  176. }
  177. if (count) {
  178. /* Not the last packet in this batch */
  179. clone = skb_clone(buf, GFP_ATOMIC);
  180. if (!clone)
  181. goto error;
  182. skb_trim(clone, packet_len);
  183. usbnet_skb_return(dev, clone);
  184. skb_pull(buf, (packet_len + 3) & ~3);
  185. } else {
  186. skb_trim(buf, packet_len);
  187. if (s->current_rx_buf) {
  188. usbnet_skb_return(dev, buf);
  189. s->current_rx_buf = NULL;
  190. return 0;
  191. }
  192. return 1;
  193. }
  194. }
  195. error:
  196. if (s->current_rx_buf) {
  197. dev_kfree_skb_any(s->current_rx_buf);
  198. s->current_rx_buf = NULL;
  199. }
  200. dev->net->stats.rx_errors++;
  201. return 0;
  202. }
  203. static struct sk_buff *vl600_tx_fixup(struct usbnet *dev,
  204. struct sk_buff *skb, gfp_t flags)
  205. {
  206. struct sk_buff *ret;
  207. struct vl600_frame_hdr *frame;
  208. struct vl600_pkt_hdr *packet;
  209. static uint32_t serial = 1;
  210. int orig_len = skb->len - sizeof(struct ethhdr);
  211. int full_len = (skb->len + sizeof(struct vl600_frame_hdr) + 3) & ~3;
  212. frame = (struct vl600_frame_hdr *) skb->data;
  213. if (skb->len > sizeof(*frame) && skb->len == le32_to_cpup(&frame->len))
  214. return skb; /* Already encapsulated? */
  215. if (skb->len < sizeof(struct ethhdr))
  216. /* Drop, device can only deal with ethernet packets */
  217. return NULL;
  218. if (!skb_cloned(skb)) {
  219. int headroom = skb_headroom(skb);
  220. int tailroom = skb_tailroom(skb);
  221. if (tailroom >= full_len - skb->len - sizeof(*frame) &&
  222. headroom >= sizeof(*frame))
  223. /* There's enough head and tail room */
  224. goto encapsulate;
  225. if (headroom + tailroom + skb->len >= full_len) {
  226. /* There's enough total room, just readjust */
  227. skb->data = memmove(skb->head + sizeof(*frame),
  228. skb->data, skb->len);
  229. skb_set_tail_pointer(skb, skb->len);
  230. goto encapsulate;
  231. }
  232. }
  233. /* Alloc a new skb with the required size */
  234. ret = skb_copy_expand(skb, sizeof(struct vl600_frame_hdr), full_len -
  235. skb->len - sizeof(struct vl600_frame_hdr), flags);
  236. dev_kfree_skb_any(skb);
  237. if (!ret)
  238. return ret;
  239. skb = ret;
  240. encapsulate:
  241. /* Packet header is same size as ethernet packet header
  242. * (sizeof(*packet) == sizeof(struct ethhdr)), additionally the
  243. * h_proto field is in the same place so we just leave it alone and
  244. * overwrite the remaining fields.
  245. */
  246. packet = (struct vl600_pkt_hdr *) skb->data;
  247. memset(&packet->dummy, 0, sizeof(packet->dummy));
  248. packet->len = cpu_to_le32(orig_len);
  249. frame = (struct vl600_frame_hdr *) skb_push(skb, sizeof(*frame));
  250. memset(frame, 0, sizeof(*frame));
  251. frame->len = cpu_to_le32(full_len);
  252. frame->serial = cpu_to_le32(serial++);
  253. frame->pkt_cnt = cpu_to_le32(1);
  254. if (skb->len < full_len) /* Pad */
  255. skb_put(skb, full_len - skb->len);
  256. return skb;
  257. }
  258. static const struct driver_info vl600_info = {
  259. .description = "LG VL600 modem",
  260. .flags = FLAG_ETHER | FLAG_RX_ASSEMBLE,
  261. .bind = vl600_bind,
  262. .unbind = vl600_unbind,
  263. .status = usbnet_cdc_status,
  264. .rx_fixup = vl600_rx_fixup,
  265. .tx_fixup = vl600_tx_fixup,
  266. };
  267. static const struct usb_device_id products[] = {
  268. {
  269. USB_DEVICE_AND_INTERFACE_INFO(0x1004, 0x61aa, USB_CLASS_COMM,
  270. USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
  271. .driver_info = (unsigned long) &vl600_info,
  272. },
  273. {}, /* End */
  274. };
  275. MODULE_DEVICE_TABLE(usb, products);
  276. static struct usb_driver lg_vl600_driver = {
  277. .name = "lg-vl600",
  278. .id_table = products,
  279. .probe = usbnet_probe,
  280. .disconnect = usbnet_disconnect,
  281. .suspend = usbnet_suspend,
  282. .resume = usbnet_resume,
  283. };
  284. static int __init vl600_init(void)
  285. {
  286. return usb_register(&lg_vl600_driver);
  287. }
  288. module_init(vl600_init);
  289. static void __exit vl600_exit(void)
  290. {
  291. usb_deregister(&lg_vl600_driver);
  292. }
  293. module_exit(vl600_exit);
  294. MODULE_AUTHOR("Anrzej Zaborowski");
  295. MODULE_DESCRIPTION("LG-VL600 modem's ethernet link");
  296. MODULE_LICENSE("GPL");