ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / net / rose / rose_dev.c
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/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>
15 #include <linux/fs.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>
22 #include <linux/in.h>
23 #include <linux/if_ether.h>
24
25 #include <asm/system.h>
26 #include <asm/io.h>
27
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>
33
34 #include <net/ip.h>
35 #include <net/arp.h>
36
37 #include <net/ax25.h>
38 #include <net/rose.h>
39
40 /*
41  *      Only allow IP over ROSE frames through if the netrom device is up.
42  */
43
44 int rose_rx_ip(struct sk_buff *skb, struct net_device *dev)
45 {
46         struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
47
48 #ifdef CONFIG_INET
49         if (!netif_running(dev)) {
50                 stats->rx_errors++;
51                 return 0;
52         }
53
54         stats->rx_packets++;
55         stats->rx_bytes += skb->len;
56
57         skb->protocol = htons(ETH_P_IP);
58
59         /* Spoof incoming device */
60         skb->dev      = dev;
61         skb->h.raw    = skb->data;
62         skb->nh.raw   = skb->data;
63         skb->pkt_type = PACKET_HOST;
64
65         ip_rcv(skb, skb->dev, NULL);
66 #else
67         kfree_skb(skb);
68 #endif
69         return 1;
70 }
71
72 static int rose_header(struct sk_buff *skb, struct net_device *dev, unsigned short type,
73         void *daddr, void *saddr, unsigned len)
74 {
75         unsigned char *buff = skb_push(skb, ROSE_MIN_LEN + 2);
76
77         *buff++ = ROSE_GFI | ROSE_Q_BIT;
78         *buff++ = 0x00;
79         *buff++ = ROSE_DATA;
80         *buff++ = 0x7F;
81         *buff++ = AX25_P_IP;
82
83         if (daddr != NULL)
84                 return 37;
85
86         return -37;
87 }
88
89 static int rose_rebuild_header(struct sk_buff *skb)
90 {
91         struct net_device *dev = skb->dev;
92         struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
93         unsigned char *bp = (unsigned char *)skb->data;
94         struct sk_buff *skbn;
95
96 #ifdef CONFIG_INET
97         if (arp_find(bp + 7, skb)) {
98                 return 1;
99         }
100
101         if ((skbn = skb_clone(skb, GFP_ATOMIC)) == NULL) {
102                 kfree_skb(skb);
103                 return 1;
104         }
105
106         if (skb->sk != NULL)
107                 skb_set_owner_w(skbn, skb->sk);
108
109         kfree_skb(skb);
110
111         if (!rose_route_frame(skbn, NULL)) {
112                 kfree_skb(skbn);
113                 stats->tx_errors++;
114                 return 1;
115         }
116
117         stats->tx_packets++;
118         stats->tx_bytes += skbn->len;
119 #endif
120         return 1;
121 }
122
123 static int rose_set_mac_address(struct net_device *dev, void *addr)
124 {
125         struct sockaddr *sa = addr;
126
127         rose_del_loopback_node((rose_address *)dev->dev_addr);
128
129         memcpy(dev->dev_addr, sa->sa_data, dev->addr_len);
130
131         rose_add_loopback_node((rose_address *)dev->dev_addr);
132
133         return 0;
134 }
135
136 static int rose_open(struct net_device *dev)
137 {
138         netif_start_queue(dev);
139         rose_add_loopback_node((rose_address *)dev->dev_addr);
140         return 0;
141 }
142
143 static int rose_close(struct net_device *dev)
144 {
145         netif_stop_queue(dev);
146         rose_del_loopback_node((rose_address *)dev->dev_addr);
147         return 0;
148 }
149
150 static int rose_xmit(struct sk_buff *skb, struct net_device *dev)
151 {
152         struct net_device_stats *stats = (struct net_device_stats *)dev->priv;
153
154         if (!netif_running(dev)) {
155                 printk(KERN_ERR "ROSE: rose_xmit - called when iface is down\n");
156                 return 1;
157         }
158         dev_kfree_skb(skb);
159         stats->tx_errors++;
160         return 0;
161 }
162
163 static struct net_device_stats *rose_get_stats(struct net_device *dev)
164 {
165         return (struct net_device_stats *)dev->priv;
166 }
167
168 void rose_setup(struct net_device *dev)
169 {
170         SET_MODULE_OWNER(dev);
171         dev->mtu                = ROSE_MAX_PACKET_SIZE - 2;
172         dev->hard_start_xmit    = rose_xmit;
173         dev->open               = rose_open;
174         dev->stop               = rose_close;
175
176         dev->hard_header        = rose_header;
177         dev->hard_header_len    = AX25_BPQ_HEADER_LEN + AX25_MAX_HEADER_LEN + ROSE_MIN_LEN;
178         dev->addr_len           = ROSE_ADDR_LEN;
179         dev->type               = ARPHRD_ROSE;
180         dev->rebuild_header     = rose_rebuild_header;
181         dev->set_mac_address    = rose_set_mac_address;
182
183         /* New-style flags. */
184         dev->flags              = 0;
185         dev->get_stats = rose_get_stats;
186 }