rose_dev.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation; either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
  8. */
  9. #include <linux/module.h>
  10. #include <linux/proc_fs.h>
  11. #include <linux/kernel.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/fs.h>
  14. #include <linux/types.h>
  15. #include <linux/sysctl.h>
  16. #include <linux/string.h>
  17. #include <linux/socket.h>
  18. #include <linux/errno.h>
  19. #include <linux/fcntl.h>
  20. #include <linux/in.h>
  21. #include <linux/if_ether.h>
  22. #include <linux/slab.h>
  23. #include <asm/io.h>
  24. #include <linux/inet.h>
  25. #include <linux/netdevice.h>
  26. #include <linux/etherdevice.h>
  27. #include <linux/if_arp.h>
  28. #include <linux/skbuff.h>
  29. #include <net/ip.h>
  30. #include <net/arp.h>
  31. #include <net/ax25.h>
  32. #include <net/rose.h>
  33. static int rose_header(struct sk_buff *skb, struct net_device *dev,
  34. unsigned short type,
  35. const void *daddr, const void *saddr, unsigned int len)
  36. {
  37. unsigned char *buff = skb_push(skb, ROSE_MIN_LEN + 2);
  38. if (daddr)
  39. memcpy(buff + 7, daddr, dev->addr_len);
  40. *buff++ = ROSE_GFI | ROSE_Q_BIT;
  41. *buff++ = 0x00;
  42. *buff++ = ROSE_DATA;
  43. *buff++ = 0x7F;
  44. *buff++ = AX25_P_IP;
  45. if (daddr != NULL)
  46. return 37;
  47. return -37;
  48. }
  49. static int rose_set_mac_address(struct net_device *dev, void *addr)
  50. {
  51. struct sockaddr *sa = addr;
  52. int err;
  53. if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len))
  54. return 0;
  55. if (dev->flags & IFF_UP) {
  56. err = rose_add_loopback_node((rose_address *)sa->sa_data);
  57. if (err)
  58. return err;
  59. rose_del_loopback_node((rose_address *)dev->dev_addr);
  60. }
  61. memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
  62. return 0;
  63. }
  64. static int rose_open(struct net_device *dev)
  65. {
  66. int err;
  67. err = rose_add_loopback_node((rose_address *)dev->dev_addr);
  68. if (err)
  69. return err;
  70. netif_start_queue(dev);
  71. return 0;
  72. }
  73. static int rose_close(struct net_device *dev)
  74. {
  75. netif_stop_queue(dev);
  76. rose_del_loopback_node((rose_address *)dev->dev_addr);
  77. return 0;
  78. }
  79. static netdev_tx_t rose_xmit(struct sk_buff *skb, struct net_device *dev)
  80. {
  81. struct net_device_stats *stats = &dev->stats;
  82. unsigned int len = skb->len;
  83. if (!netif_running(dev)) {
  84. printk(KERN_ERR "ROSE: rose_xmit - called when iface is down\n");
  85. return NETDEV_TX_BUSY;
  86. }
  87. if (!rose_route_frame(skb, NULL)) {
  88. dev_kfree_skb(skb);
  89. stats->tx_errors++;
  90. return NETDEV_TX_OK;
  91. }
  92. stats->tx_packets++;
  93. stats->tx_bytes += len;
  94. return NETDEV_TX_OK;
  95. }
  96. static const struct header_ops rose_header_ops = {
  97. .create = rose_header,
  98. };
  99. static const struct net_device_ops rose_netdev_ops = {
  100. .ndo_open = rose_open,
  101. .ndo_stop = rose_close,
  102. .ndo_start_xmit = rose_xmit,
  103. .ndo_set_mac_address = rose_set_mac_address,
  104. };
  105. void rose_setup(struct net_device *dev)
  106. {
  107. dev->mtu = ROSE_MAX_PACKET_SIZE - 2;
  108. dev->netdev_ops = &rose_netdev_ops;
  109. dev->header_ops = &rose_header_ops;
  110. dev->hard_header_len = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN;
  111. dev->addr_len = ROSE_ADDR_LEN;
  112. dev->type = ARPHRD_ROSE;
  113. /* New-style flags. */
  114. dev->flags = IFF_NOARP;
  115. }