1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Copyright Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
6 #include <linux/module.h>
7 #include <linux/proc_fs.h>
8 #include <linux/kernel.h>
9 #include <linux/interrupt.h>
11 #include <linux/types.h>
12 #include <linux/sysctl.h>
13 #include <linux/string.h>
14 #include <linux/socket.h>
15 #include <linux/errno.h>
16 #include <linux/fcntl.h>
18 #include <linux/if_ether.h> /* For the statistics structure. */
19 #include <linux/slab.h>
20 #include <linux/uaccess.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>
34 #include <net/netrom.h>
37 * Only allow IP over NET/ROM frames through if the netrom device is up.
40 int nr_rx_ip(struct sk_buff *skb, struct net_device *dev)
42 struct net_device_stats *stats = &dev->stats;
44 if (!netif_running(dev)) {
50 stats->rx_bytes += skb->len;
52 skb->protocol = htons(ETH_P_IP);
54 /* Spoof incoming device */
56 skb->mac_header = skb->network_header;
57 skb_reset_network_header(skb);
58 skb->pkt_type = PACKET_HOST;
65 static int nr_header(struct sk_buff *skb, struct net_device *dev,
67 const void *daddr, const void *saddr, unsigned int len)
69 unsigned char *buff = skb_push(skb, NR_NETWORK_LEN + NR_TRANSPORT_LEN);
71 memcpy(buff, (saddr != NULL) ? saddr : dev->dev_addr, dev->addr_len);
72 buff[6] &= ~AX25_CBIT;
73 buff[6] &= ~AX25_EBIT;
74 buff[6] |= AX25_SSSID_SPARE;
75 buff += AX25_ADDR_LEN;
78 memcpy(buff, daddr, dev->addr_len);
79 buff[6] &= ~AX25_CBIT;
81 buff[6] |= AX25_SSSID_SPARE;
82 buff += AX25_ADDR_LEN;
84 *buff++ = sysctl_netrom_network_ttl_initialiser;
86 *buff++ = NR_PROTO_IP;
87 *buff++ = NR_PROTO_IP;
90 *buff++ = NR_PROTOEXT;
98 static int __must_check nr_set_mac_address(struct net_device *dev, void *addr)
100 struct sockaddr *sa = addr;
103 if (!memcmp(dev->dev_addr, sa->sa_data, dev->addr_len))
106 if (dev->flags & IFF_UP) {
107 err = ax25_listen_register((ax25_address *)sa->sa_data, NULL);
111 ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
114 memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
119 static int nr_open(struct net_device *dev)
123 err = ax25_listen_register((ax25_address *)dev->dev_addr, NULL);
127 netif_start_queue(dev);
132 static int nr_close(struct net_device *dev)
134 ax25_listen_release((ax25_address *)dev->dev_addr, NULL);
135 netif_stop_queue(dev);
139 static netdev_tx_t nr_xmit(struct sk_buff *skb, struct net_device *dev)
141 struct net_device_stats *stats = &dev->stats;
142 unsigned int len = skb->len;
144 if (!nr_route_frame(skb, NULL)) {
151 stats->tx_bytes += len;
156 static const struct header_ops nr_header_ops = {
160 static const struct net_device_ops nr_netdev_ops = {
162 .ndo_stop = nr_close,
163 .ndo_start_xmit = nr_xmit,
164 .ndo_set_mac_address = nr_set_mac_address,
167 void nr_setup(struct net_device *dev)
169 dev->mtu = NR_MAX_PACKET_SIZE;
170 dev->netdev_ops = &nr_netdev_ops;
171 dev->header_ops = &nr_header_ops;
172 dev->hard_header_len = NR_NETWORK_LEN + NR_TRANSPORT_LEN;
173 dev->addr_len = AX25_ADDR_LEN;
174 dev->type = ARPHRD_NETROM;
176 /* New-style flags. */
177 dev->flags = IFF_NOARP;