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/config.h>
10 #include <linux/module.h>
11 #include <linux/proc_fs.h>
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
14 #include <linux/interrupt.h>
16 #include <linux/types.h>
17 #include <linux/sysctl.h>
18 #include <linux/string.h>
19 #include <linux/socket.h>
20 #include <linux/errno.h>
21 #include <linux/fcntl.h>
23 #include <linux/if_ether.h> /* For the statistics structure. */
25 #include <asm/system.h>
26 #include <asm/uaccess.h>
29 #include <linux/inet.h>
30 #include <linux/netdevice.h>
31 #include <linux/etherdevice.h>
32 #include <linux/if_arp.h>
33 #include <linux/skbuff.h>
39 #include <net/netrom.h>
44 * Only allow IP over NET/ROM frames through if the netrom device is up.
47 int nr_rx_ip(struct sk_buff
*skb
, struct net_device
*dev
)
49 struct net_device_stats
*stats
= (struct net_device_stats
*)dev
->priv
;
51 if (!netif_running(dev
)) {
57 stats
->rx_bytes
+= skb
->len
;
59 skb
->protocol
= htons(ETH_P_IP
);
61 /* Spoof incoming device */
63 skb
->h
.raw
= skb
->data
;
64 skb
->nh
.raw
= skb
->data
;
65 skb
->pkt_type
= PACKET_HOST
;
67 ip_rcv(skb
, skb
->dev
, NULL
);
73 static int nr_rebuild_header(struct sk_buff
*skb
)
75 struct net_device
*dev
= skb
->dev
;
76 struct net_device_stats
*stats
= (struct net_device_stats
*)dev
->priv
;
78 unsigned char *bp
= skb
->data
;
81 if (arp_find(bp
+ 7, skb
)) {
87 bp
[6] |= AX25_SSSID_SPARE
;
92 bp
[6] |= AX25_SSSID_SPARE
;
94 if ((skbn
= skb_clone(skb
, GFP_ATOMIC
)) == NULL
) {
100 skb_set_owner_w(skbn
, skb
->sk
);
106 if (!nr_route_frame(skbn
, NULL
)) {
112 stats
->tx_bytes
+= len
;
119 static int nr_rebuild_header(struct sk_buff
*skb
)
126 static int nr_header(struct sk_buff
*skb
, struct net_device
*dev
, unsigned short type
,
127 void *daddr
, void *saddr
, unsigned len
)
129 unsigned char *buff
= skb_push(skb
, NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
);
131 memcpy(buff
, (saddr
!= NULL
) ? saddr
: dev
->dev_addr
, dev
->addr_len
);
132 buff
[6] &= ~AX25_CBIT
;
133 buff
[6] &= ~AX25_EBIT
;
134 buff
[6] |= AX25_SSSID_SPARE
;
135 buff
+= AX25_ADDR_LEN
;
138 memcpy(buff
, daddr
, dev
->addr_len
);
139 buff
[6] &= ~AX25_CBIT
;
140 buff
[6] |= AX25_EBIT
;
141 buff
[6] |= AX25_SSSID_SPARE
;
142 buff
+= AX25_ADDR_LEN
;
144 *buff
++ = sysctl_netrom_network_ttl_initialiser
;
146 *buff
++ = NR_PROTO_IP
;
147 *buff
++ = NR_PROTO_IP
;
150 *buff
++ = NR_PROTOEXT
;
158 static int nr_set_mac_address(struct net_device
*dev
, void *addr
)
160 struct sockaddr
*sa
= addr
;
162 if (dev
->flags
& IFF_UP
)
163 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
165 memcpy(dev
->dev_addr
, sa
->sa_data
, dev
->addr_len
);
167 if (dev
->flags
& IFF_UP
)
168 ax25_listen_register((ax25_address
*)dev
->dev_addr
, NULL
);
173 static int nr_open(struct net_device
*dev
)
175 netif_start_queue(dev
);
176 ax25_listen_register((ax25_address
*)dev
->dev_addr
, NULL
);
180 static int nr_close(struct net_device
*dev
)
182 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
183 netif_stop_queue(dev
);
187 static int nr_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
189 struct net_device_stats
*stats
= (struct net_device_stats
*)dev
->priv
;
195 static struct net_device_stats
*nr_get_stats(struct net_device
*dev
)
197 return (struct net_device_stats
*)dev
->priv
;
200 void nr_setup(struct net_device
*dev
)
202 SET_MODULE_OWNER(dev
);
203 dev
->mtu
= NR_MAX_PACKET_SIZE
;
204 dev
->hard_start_xmit
= nr_xmit
;
206 dev
->stop
= nr_close
;
208 dev
->hard_header
= nr_header
;
209 dev
->hard_header_len
= NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
;
210 dev
->addr_len
= AX25_ADDR_LEN
;
211 dev
->type
= ARPHRD_NETROM
;
212 dev
->tx_queue_len
= 40;
213 dev
->rebuild_header
= nr_rebuild_header
;
214 dev
->set_mac_address
= nr_set_mac_address
;
216 /* New-style flags. */
219 dev
->get_stats
= nr_get_stats
;