lg-vl600.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  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, see <http://www.gnu.org/licenses/>.
  19. */
  20. #include <linux/etherdevice.h>
  21. #include <linux/ethtool.h>
  22. #include <linux/mii.h>
  23. #include <linux/usb.h>
  24. #include <linux/usb/cdc.h>
  25. #include <linux/usb/usbnet.h>
  26. #include <linux/if_ether.h>
  27. #include <linux/if_arp.h>
  28. #include <linux/inetdevice.h>
  29. #include <linux/module.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. /* IPv6 NDP relies on multicast. Enable it by default. */
  84. dev->net->flags |= IFF_MULTICAST;
  85. return ret;
  86. }
  87. static void vl600_unbind(struct usbnet *dev, struct usb_interface *intf)
  88. {
  89. struct vl600_state *s = dev->driver_priv;
  90. if (s->current_rx_buf)
  91. dev_kfree_skb(s->current_rx_buf);
  92. kfree(s);
  93. return usbnet_cdc_unbind(dev, intf);
  94. }
  95. static int vl600_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
  96. {
  97. struct vl600_frame_hdr *frame;
  98. struct vl600_pkt_hdr *packet;
  99. struct ethhdr *ethhdr;
  100. int packet_len, count;
  101. struct sk_buff *buf = skb;
  102. struct sk_buff *clone;
  103. struct vl600_state *s = dev->driver_priv;
  104. /* Frame lengths are generally 4B multiplies but every couple of
  105. * hours there's an odd number of bytes sized yet correct frame,
  106. * so don't require this. */
  107. /* Allow a packet (or multiple packets batched together) to be
  108. * split across many frames. We don't allow a new batch to
  109. * begin in the same frame another one is ending however, and no
  110. * leading or trailing pad bytes. */
  111. if (s->current_rx_buf) {
  112. frame = (struct vl600_frame_hdr *) s->current_rx_buf->data;
  113. if (skb->len + s->current_rx_buf->len >
  114. le32_to_cpup(&frame->len)) {
  115. netif_err(dev, ifup, dev->net, "Fragment too long\n");
  116. dev->net->stats.rx_length_errors++;
  117. goto error;
  118. }
  119. buf = s->current_rx_buf;
  120. skb_put_data(buf, skb->data, skb->len);
  121. } else if (skb->len < 4) {
  122. netif_err(dev, ifup, dev->net, "Frame too short\n");
  123. dev->net->stats.rx_length_errors++;
  124. goto error;
  125. }
  126. frame = (struct vl600_frame_hdr *) buf->data;
  127. /* Yes, check that frame->magic == 0x53544448 (or 0x44544d48),
  128. * otherwise we may run out of memory w/a bad packet */
  129. if (ntohl(frame->magic) != 0x53544448 &&
  130. ntohl(frame->magic) != 0x44544d48)
  131. goto error;
  132. if (buf->len < sizeof(*frame) ||
  133. buf->len != le32_to_cpup(&frame->len)) {
  134. /* Save this fragment for later assembly */
  135. if (s->current_rx_buf)
  136. return 0;
  137. s->current_rx_buf = skb_copy_expand(skb, 0,
  138. le32_to_cpup(&frame->len), GFP_ATOMIC);
  139. if (!s->current_rx_buf)
  140. dev->net->stats.rx_errors++;
  141. return 0;
  142. }
  143. count = le32_to_cpup(&frame->pkt_cnt);
  144. skb_pull(buf, sizeof(*frame));
  145. while (count--) {
  146. if (buf->len < sizeof(*packet)) {
  147. netif_err(dev, ifup, dev->net, "Packet too short\n");
  148. goto error;
  149. }
  150. packet = (struct vl600_pkt_hdr *) buf->data;
  151. packet_len = sizeof(*packet) + le32_to_cpup(&packet->len);
  152. if (packet_len > buf->len) {
  153. netif_err(dev, ifup, dev->net,
  154. "Bad packet length stored in header\n");
  155. goto error;
  156. }
  157. /* Packet header is same size as the ethernet header
  158. * (sizeof(*packet) == sizeof(*ethhdr)), additionally
  159. * the h_proto field is in the same place so we just leave it
  160. * alone and fill in the remaining fields.
  161. */
  162. ethhdr = (struct ethhdr *) skb->data;
  163. if (be16_to_cpup(&ethhdr->h_proto) == ETH_P_ARP &&
  164. buf->len > 0x26) {
  165. /* Copy the addresses from packet contents */
  166. memcpy(ethhdr->h_source,
  167. &buf->data[sizeof(*ethhdr) + 0x8],
  168. ETH_ALEN);
  169. memcpy(ethhdr->h_dest,
  170. &buf->data[sizeof(*ethhdr) + 0x12],
  171. ETH_ALEN);
  172. } else {
  173. eth_zero_addr(ethhdr->h_source);
  174. memcpy(ethhdr->h_dest, dev->net->dev_addr, ETH_ALEN);
  175. /* Inbound IPv6 packets have an IPv4 ethertype (0x800)
  176. * for some reason. Peek at the L3 header to check
  177. * for IPv6 packets, and set the ethertype to IPv6
  178. * (0x86dd) so Linux can understand it.
  179. */
  180. if ((buf->data[sizeof(*ethhdr)] & 0xf0) == 0x60)
  181. ethhdr->h_proto = htons(ETH_P_IPV6);
  182. }
  183. if (count) {
  184. /* Not the last packet in this batch */
  185. clone = skb_clone(buf, GFP_ATOMIC);
  186. if (!clone)
  187. goto error;
  188. skb_trim(clone, packet_len);
  189. usbnet_skb_return(dev, clone);
  190. skb_pull(buf, (packet_len + 3) & ~3);
  191. } else {
  192. skb_trim(buf, packet_len);
  193. if (s->current_rx_buf) {
  194. usbnet_skb_return(dev, buf);
  195. s->current_rx_buf = NULL;
  196. return 0;
  197. }
  198. return 1;
  199. }
  200. }
  201. error:
  202. if (s->current_rx_buf) {
  203. dev_kfree_skb_any(s->current_rx_buf);
  204. s->current_rx_buf = NULL;
  205. }
  206. dev->net->stats.rx_errors++;
  207. return 0;
  208. }
  209. static struct sk_buff *vl600_tx_fixup(struct usbnet *dev,
  210. struct sk_buff *skb, gfp_t flags)
  211. {
  212. struct sk_buff *ret;
  213. struct vl600_frame_hdr *frame;
  214. struct vl600_pkt_hdr *packet;
  215. static uint32_t serial = 1;
  216. int orig_len = skb->len - sizeof(struct ethhdr);
  217. int full_len = (skb->len + sizeof(struct vl600_frame_hdr) + 3) & ~3;
  218. frame = (struct vl600_frame_hdr *) skb->data;
  219. if (skb->len > sizeof(*frame) && skb->len == le32_to_cpup(&frame->len))
  220. return skb; /* Already encapsulated? */
  221. if (skb->len < sizeof(struct ethhdr))
  222. /* Drop, device can only deal with ethernet packets */
  223. return NULL;
  224. if (!skb_cloned(skb)) {
  225. int headroom = skb_headroom(skb);
  226. int tailroom = skb_tailroom(skb);
  227. if (tailroom >= full_len - skb->len - sizeof(*frame) &&
  228. headroom >= sizeof(*frame))
  229. /* There's enough head and tail room */
  230. goto encapsulate;
  231. if (headroom + tailroom + skb->len >= full_len) {
  232. /* There's enough total room, just readjust */
  233. skb->data = memmove(skb->head + sizeof(*frame),
  234. skb->data, skb->len);
  235. skb_set_tail_pointer(skb, skb->len);
  236. goto encapsulate;
  237. }
  238. }
  239. /* Alloc a new skb with the required size */
  240. ret = skb_copy_expand(skb, sizeof(struct vl600_frame_hdr), full_len -
  241. skb->len - sizeof(struct vl600_frame_hdr), flags);
  242. dev_kfree_skb_any(skb);
  243. if (!ret)
  244. return ret;
  245. skb = ret;
  246. encapsulate:
  247. /* Packet header is same size as ethernet packet header
  248. * (sizeof(*packet) == sizeof(struct ethhdr)), additionally the
  249. * h_proto field is in the same place so we just leave it alone and
  250. * overwrite the remaining fields.
  251. */
  252. packet = (struct vl600_pkt_hdr *) skb->data;
  253. /* The VL600 wants IPv6 packets to have an IPv4 ethertype
  254. * Since this modem only supports IPv4 and IPv6, just set all
  255. * frames to 0x0800 (ETH_P_IP)
  256. */
  257. packet->h_proto = htons(ETH_P_IP);
  258. memset(&packet->dummy, 0, sizeof(packet->dummy));
  259. packet->len = cpu_to_le32(orig_len);
  260. frame = skb_push(skb, sizeof(*frame));
  261. memset(frame, 0, sizeof(*frame));
  262. frame->len = cpu_to_le32(full_len);
  263. frame->serial = cpu_to_le32(serial++);
  264. frame->pkt_cnt = cpu_to_le32(1);
  265. if (skb->len < full_len) /* Pad */
  266. skb_put(skb, full_len - skb->len);
  267. return skb;
  268. }
  269. static const struct driver_info vl600_info = {
  270. .description = "LG VL600 modem",
  271. .flags = FLAG_RX_ASSEMBLE | FLAG_WWAN,
  272. .bind = vl600_bind,
  273. .unbind = vl600_unbind,
  274. .status = usbnet_cdc_status,
  275. .rx_fixup = vl600_rx_fixup,
  276. .tx_fixup = vl600_tx_fixup,
  277. };
  278. static const struct usb_device_id products[] = {
  279. {
  280. USB_DEVICE_AND_INTERFACE_INFO(0x1004, 0x61aa, USB_CLASS_COMM,
  281. USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
  282. .driver_info = (unsigned long) &vl600_info,
  283. },
  284. {}, /* End */
  285. };
  286. MODULE_DEVICE_TABLE(usb, products);
  287. static struct usb_driver lg_vl600_driver = {
  288. .name = "lg-vl600",
  289. .id_table = products,
  290. .probe = usbnet_probe,
  291. .disconnect = usbnet_disconnect,
  292. .suspend = usbnet_suspend,
  293. .resume = usbnet_resume,
  294. .disable_hub_initiated_lpm = 1,
  295. };
  296. module_usb_driver(lg_vl600_driver);
  297. MODULE_AUTHOR("Anrzej Zaborowski");
  298. MODULE_DESCRIPTION("LG-VL600 modem's ethernet link");
  299. MODULE_LICENSE("GPL");