lg-vl600.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  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. memcpy(skb_put(buf, skb->len), 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. netif_err(dev, ifup, dev->net, "Reserving %i bytes "
  141. "for packet assembly failed.\n",
  142. le32_to_cpup(&frame->len));
  143. dev->net->stats.rx_errors++;
  144. }
  145. return 0;
  146. }
  147. count = le32_to_cpup(&frame->pkt_cnt);
  148. skb_pull(buf, sizeof(*frame));
  149. while (count--) {
  150. if (buf->len < sizeof(*packet)) {
  151. netif_err(dev, ifup, dev->net, "Packet too short\n");
  152. goto error;
  153. }
  154. packet = (struct vl600_pkt_hdr *) buf->data;
  155. packet_len = sizeof(*packet) + le32_to_cpup(&packet->len);
  156. if (packet_len > buf->len) {
  157. netif_err(dev, ifup, dev->net,
  158. "Bad packet length stored in header\n");
  159. goto error;
  160. }
  161. /* Packet header is same size as the ethernet header
  162. * (sizeof(*packet) == sizeof(*ethhdr)), additionally
  163. * the h_proto field is in the same place so we just leave it
  164. * alone and fill in the remaining fields.
  165. */
  166. ethhdr = (struct ethhdr *) skb->data;
  167. if (be16_to_cpup(&ethhdr->h_proto) == ETH_P_ARP &&
  168. buf->len > 0x26) {
  169. /* Copy the addresses from packet contents */
  170. memcpy(ethhdr->h_source,
  171. &buf->data[sizeof(*ethhdr) + 0x8],
  172. ETH_ALEN);
  173. memcpy(ethhdr->h_dest,
  174. &buf->data[sizeof(*ethhdr) + 0x12],
  175. ETH_ALEN);
  176. } else {
  177. eth_zero_addr(ethhdr->h_source);
  178. memcpy(ethhdr->h_dest, dev->net->dev_addr, ETH_ALEN);
  179. /* Inbound IPv6 packets have an IPv4 ethertype (0x800)
  180. * for some reason. Peek at the L3 header to check
  181. * for IPv6 packets, and set the ethertype to IPv6
  182. * (0x86dd) so Linux can understand it.
  183. */
  184. if ((buf->data[sizeof(*ethhdr)] & 0xf0) == 0x60)
  185. ethhdr->h_proto = htons(ETH_P_IPV6);
  186. }
  187. if (count) {
  188. /* Not the last packet in this batch */
  189. clone = skb_clone(buf, GFP_ATOMIC);
  190. if (!clone)
  191. goto error;
  192. skb_trim(clone, packet_len);
  193. usbnet_skb_return(dev, clone);
  194. skb_pull(buf, (packet_len + 3) & ~3);
  195. } else {
  196. skb_trim(buf, packet_len);
  197. if (s->current_rx_buf) {
  198. usbnet_skb_return(dev, buf);
  199. s->current_rx_buf = NULL;
  200. return 0;
  201. }
  202. return 1;
  203. }
  204. }
  205. error:
  206. if (s->current_rx_buf) {
  207. dev_kfree_skb_any(s->current_rx_buf);
  208. s->current_rx_buf = NULL;
  209. }
  210. dev->net->stats.rx_errors++;
  211. return 0;
  212. }
  213. static struct sk_buff *vl600_tx_fixup(struct usbnet *dev,
  214. struct sk_buff *skb, gfp_t flags)
  215. {
  216. struct sk_buff *ret;
  217. struct vl600_frame_hdr *frame;
  218. struct vl600_pkt_hdr *packet;
  219. static uint32_t serial = 1;
  220. int orig_len = skb->len - sizeof(struct ethhdr);
  221. int full_len = (skb->len + sizeof(struct vl600_frame_hdr) + 3) & ~3;
  222. frame = (struct vl600_frame_hdr *) skb->data;
  223. if (skb->len > sizeof(*frame) && skb->len == le32_to_cpup(&frame->len))
  224. return skb; /* Already encapsulated? */
  225. if (skb->len < sizeof(struct ethhdr))
  226. /* Drop, device can only deal with ethernet packets */
  227. return NULL;
  228. if (!skb_cloned(skb)) {
  229. int headroom = skb_headroom(skb);
  230. int tailroom = skb_tailroom(skb);
  231. if (tailroom >= full_len - skb->len - sizeof(*frame) &&
  232. headroom >= sizeof(*frame))
  233. /* There's enough head and tail room */
  234. goto encapsulate;
  235. if (headroom + tailroom + skb->len >= full_len) {
  236. /* There's enough total room, just readjust */
  237. skb->data = memmove(skb->head + sizeof(*frame),
  238. skb->data, skb->len);
  239. skb_set_tail_pointer(skb, skb->len);
  240. goto encapsulate;
  241. }
  242. }
  243. /* Alloc a new skb with the required size */
  244. ret = skb_copy_expand(skb, sizeof(struct vl600_frame_hdr), full_len -
  245. skb->len - sizeof(struct vl600_frame_hdr), flags);
  246. dev_kfree_skb_any(skb);
  247. if (!ret)
  248. return ret;
  249. skb = ret;
  250. encapsulate:
  251. /* Packet header is same size as ethernet packet header
  252. * (sizeof(*packet) == sizeof(struct ethhdr)), additionally the
  253. * h_proto field is in the same place so we just leave it alone and
  254. * overwrite the remaining fields.
  255. */
  256. packet = (struct vl600_pkt_hdr *) skb->data;
  257. /* The VL600 wants IPv6 packets to have an IPv4 ethertype
  258. * Since this modem only supports IPv4 and IPv6, just set all
  259. * frames to 0x0800 (ETH_P_IP)
  260. */
  261. packet->h_proto = htons(ETH_P_IP);
  262. memset(&packet->dummy, 0, sizeof(packet->dummy));
  263. packet->len = cpu_to_le32(orig_len);
  264. frame = (struct vl600_frame_hdr *) skb_push(skb, sizeof(*frame));
  265. memset(frame, 0, sizeof(*frame));
  266. frame->len = cpu_to_le32(full_len);
  267. frame->serial = cpu_to_le32(serial++);
  268. frame->pkt_cnt = cpu_to_le32(1);
  269. if (skb->len < full_len) /* Pad */
  270. skb_put(skb, full_len - skb->len);
  271. return skb;
  272. }
  273. static const struct driver_info vl600_info = {
  274. .description = "LG VL600 modem",
  275. .flags = FLAG_RX_ASSEMBLE | FLAG_WWAN,
  276. .bind = vl600_bind,
  277. .unbind = vl600_unbind,
  278. .status = usbnet_cdc_status,
  279. .rx_fixup = vl600_rx_fixup,
  280. .tx_fixup = vl600_tx_fixup,
  281. };
  282. static const struct usb_device_id products[] = {
  283. {
  284. USB_DEVICE_AND_INTERFACE_INFO(0x1004, 0x61aa, USB_CLASS_COMM,
  285. USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE),
  286. .driver_info = (unsigned long) &vl600_info,
  287. },
  288. {}, /* End */
  289. };
  290. MODULE_DEVICE_TABLE(usb, products);
  291. static struct usb_driver lg_vl600_driver = {
  292. .name = "lg-vl600",
  293. .id_table = products,
  294. .probe = usbnet_probe,
  295. .disconnect = usbnet_disconnect,
  296. .suspend = usbnet_suspend,
  297. .resume = usbnet_resume,
  298. .disable_hub_initiated_lpm = 1,
  299. };
  300. module_usb_driver(lg_vl600_driver);
  301. MODULE_AUTHOR("Anrzej Zaborowski");
  302. MODULE_DESCRIPTION("LG-VL600 modem's ethernet link");
  303. MODULE_LICENSE("GPL");