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.
7 * Copyright Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
9 #include <linux/module.h>
10 #include <linux/proc_fs.h>
11 #include <linux/kernel.h>
12 #include <linux/interrupt.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>
21 #include <linux/if_ether.h> /* For the statistics structure. */
22 #include <linux/slab.h>
24 #include <asm/system.h>
25 #include <asm/uaccess.h>
28 #include <linux/inet.h>
29 #include <linux/netdevice.h>
30 #include <linux/etherdevice.h>
31 #include <linux/if_arp.h>
32 #include <linux/skbuff.h>
38 #include <net/netrom.h>
41 * Only allow IP over NET/ROM frames through if the netrom device is up.
44 int nr_rx_ip(struct sk_buff
*skb
, struct net_device
*dev
)
46 struct net_device_stats
*stats
= &dev
->stats
;
48 if (!netif_running(dev
)) {
54 stats
->rx_bytes
+= skb
->len
;
56 skb
->protocol
= htons(ETH_P_IP
);
58 /* Spoof incoming device */
60 skb
->mac_header
= skb
->network_header
;
61 skb_reset_network_header(skb
);
62 skb
->pkt_type
= PACKET_HOST
;
71 static int nr_rebuild_header(struct sk_buff
*skb
)
73 unsigned char *bp
= skb
->data
;
75 if (arp_find(bp
+ 7, skb
))
80 bp
[6] |= AX25_SSSID_SPARE
;
85 bp
[6] |= AX25_SSSID_SPARE
;
92 static int nr_rebuild_header(struct sk_buff
*skb
)
99 static int nr_header(struct sk_buff
*skb
, struct net_device
*dev
,
101 const void *daddr
, const void *saddr
, unsigned len
)
103 unsigned char *buff
= skb_push(skb
, NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
);
105 memcpy(buff
, (saddr
!= NULL
) ? saddr
: dev
->dev_addr
, dev
->addr_len
);
106 buff
[6] &= ~AX25_CBIT
;
107 buff
[6] &= ~AX25_EBIT
;
108 buff
[6] |= AX25_SSSID_SPARE
;
109 buff
+= AX25_ADDR_LEN
;
112 memcpy(buff
, daddr
, dev
->addr_len
);
113 buff
[6] &= ~AX25_CBIT
;
114 buff
[6] |= AX25_EBIT
;
115 buff
[6] |= AX25_SSSID_SPARE
;
116 buff
+= AX25_ADDR_LEN
;
118 *buff
++ = sysctl_netrom_network_ttl_initialiser
;
120 *buff
++ = NR_PROTO_IP
;
121 *buff
++ = NR_PROTO_IP
;
124 *buff
++ = NR_PROTOEXT
;
132 static int __must_check
nr_set_mac_address(struct net_device
*dev
, void *addr
)
134 struct sockaddr
*sa
= addr
;
137 if (!memcmp(dev
->dev_addr
, sa
->sa_data
, dev
->addr_len
))
140 if (dev
->flags
& IFF_UP
) {
141 err
= ax25_listen_register((ax25_address
*)sa
->sa_data
, NULL
);
145 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
148 memcpy(dev
->dev_addr
, sa
->sa_data
, dev
->addr_len
);
153 static int nr_open(struct net_device
*dev
)
157 err
= ax25_listen_register((ax25_address
*)dev
->dev_addr
, NULL
);
161 netif_start_queue(dev
);
166 static int nr_close(struct net_device
*dev
)
168 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
169 netif_stop_queue(dev
);
173 static netdev_tx_t
nr_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
175 struct net_device_stats
*stats
= &dev
->stats
;
176 unsigned int len
= skb
->len
;
178 if (!nr_route_frame(skb
, NULL
)) {
185 stats
->tx_bytes
+= len
;
190 static const struct header_ops nr_header_ops
= {
192 .rebuild
= nr_rebuild_header
,
195 static const struct net_device_ops nr_netdev_ops
= {
197 .ndo_stop
= nr_close
,
198 .ndo_start_xmit
= nr_xmit
,
199 .ndo_set_mac_address
= nr_set_mac_address
,
202 void nr_setup(struct net_device
*dev
)
204 dev
->mtu
= NR_MAX_PACKET_SIZE
;
205 dev
->netdev_ops
= &nr_netdev_ops
;
206 dev
->header_ops
= &nr_header_ops
;
207 dev
->hard_header_len
= NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
;
208 dev
->addr_len
= AX25_ADDR_LEN
;
209 dev
->type
= ARPHRD_NETROM
;
211 /* New-style flags. */
212 dev
->flags
= IFF_NOARP
;