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>
42 * Only allow IP over NET/ROM frames through if the netrom device is up.
45 int nr_rx_ip(struct sk_buff
*skb
, struct net_device
*dev
)
47 struct net_device_stats
*stats
= netdev_priv(dev
);
49 if (!netif_running(dev
)) {
55 stats
->rx_bytes
+= skb
->len
;
57 skb
->protocol
= htons(ETH_P_IP
);
59 /* Spoof incoming device */
61 skb
->h
.raw
= skb
->data
;
62 skb
->nh
.raw
= skb
->data
;
63 skb
->pkt_type
= PACKET_HOST
;
72 static int nr_rebuild_header(struct sk_buff
*skb
)
74 struct net_device
*dev
= skb
->dev
;
75 struct net_device_stats
*stats
= netdev_priv(dev
);
77 unsigned char *bp
= skb
->data
;
80 if (arp_find(bp
+ 7, skb
)) {
86 bp
[6] |= AX25_SSSID_SPARE
;
91 bp
[6] |= AX25_SSSID_SPARE
;
93 if ((skbn
= skb_clone(skb
, GFP_ATOMIC
)) == NULL
) {
99 skb_set_owner_w(skbn
, skb
->sk
);
105 if (!nr_route_frame(skbn
, NULL
)) {
111 stats
->tx_bytes
+= len
;
118 static int nr_rebuild_header(struct sk_buff
*skb
)
125 static int nr_header(struct sk_buff
*skb
, struct net_device
*dev
, unsigned short type
,
126 void *daddr
, void *saddr
, unsigned len
)
128 unsigned char *buff
= skb_push(skb
, NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
);
130 memcpy(buff
, (saddr
!= NULL
) ? saddr
: dev
->dev_addr
, dev
->addr_len
);
131 buff
[6] &= ~AX25_CBIT
;
132 buff
[6] &= ~AX25_EBIT
;
133 buff
[6] |= AX25_SSSID_SPARE
;
134 buff
+= AX25_ADDR_LEN
;
137 memcpy(buff
, daddr
, dev
->addr_len
);
138 buff
[6] &= ~AX25_CBIT
;
139 buff
[6] |= AX25_EBIT
;
140 buff
[6] |= AX25_SSSID_SPARE
;
141 buff
+= AX25_ADDR_LEN
;
143 *buff
++ = sysctl_netrom_network_ttl_initialiser
;
145 *buff
++ = NR_PROTO_IP
;
146 *buff
++ = NR_PROTO_IP
;
149 *buff
++ = NR_PROTOEXT
;
157 static int nr_set_mac_address(struct net_device
*dev
, void *addr
)
159 struct sockaddr
*sa
= addr
;
161 if (dev
->flags
& IFF_UP
)
162 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
164 memcpy(dev
->dev_addr
, sa
->sa_data
, dev
->addr_len
);
166 if (dev
->flags
& IFF_UP
)
167 ax25_listen_register((ax25_address
*)dev
->dev_addr
, NULL
);
172 static int nr_open(struct net_device
*dev
)
174 netif_start_queue(dev
);
175 ax25_listen_register((ax25_address
*)dev
->dev_addr
, NULL
);
179 static int nr_close(struct net_device
*dev
)
181 ax25_listen_release((ax25_address
*)dev
->dev_addr
, NULL
);
182 netif_stop_queue(dev
);
186 static int nr_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
188 struct net_device_stats
*stats
= netdev_priv(dev
);
194 static struct net_device_stats
*nr_get_stats(struct net_device
*dev
)
196 return netdev_priv(dev
);
199 void nr_setup(struct net_device
*dev
)
201 SET_MODULE_OWNER(dev
);
202 dev
->mtu
= NR_MAX_PACKET_SIZE
;
203 dev
->hard_start_xmit
= nr_xmit
;
205 dev
->stop
= nr_close
;
207 dev
->hard_header
= nr_header
;
208 dev
->hard_header_len
= NR_NETWORK_LEN
+ NR_TRANSPORT_LEN
;
209 dev
->addr_len
= AX25_ADDR_LEN
;
210 dev
->type
= ARPHRD_NETROM
;
211 dev
->tx_queue_len
= 40;
212 dev
->rebuild_header
= nr_rebuild_header
;
213 dev
->set_mac_address
= nr_set_mac_address
;
215 /* New-style flags. */
218 dev
->get_stats
= nr_get_stats
;