Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | /* * ipddp.c: IP to Appletalk-IP Encapsulation driver for Linux * Appletalk-IP to IP Decapsulation driver for Linux * * Authors: * - DDP-IP Encap by: Bradford W. Johnson <johns393@maroon.tc.umn.edu> * - DDP-IP Decap by: Jay Schulist <Jay.Schulist@spacs.k12.wi.us> * * Derived from: * - Almost all code already existed in net/appletalk/ddp.c I just * moved/reorginized it into a driver file. Original IP-over-DDP code * was done by Bradford W. Johnson <johns393@maroon.tc.umn.edu> * - skeleton.c: A network driver outline for linux. * Written 1993-94 by Donald Becker. * - dummy.c: A dummy net driver. By Nick Holloway. * - MacGate: A user space Daemon for Appletalk-IP Decap for * Linux by Jay Schulist <Jay.Schulist@spacs.k12.wi.us> * * Copyright 1993 United States Government as represented by the * Director, National Security Agency. * * This software may be used and distributed according to the terms * of the GNU Public License, incorporated herein by reference. */ static const char *version = "ipddp.c:v0.01 8/28/97 Bradford W. Johnson <johns393@maroon.tc.umn.edu>\n"; #include <linux/config.h> #ifdef MODULE #include <linux/module.h> #include <linux/version.h> #endif #include <linux/kernel.h> #include <linux/sched.h> #include <linux/types.h> #include <linux/fcntl.h> #include <linux/interrupt.h> #include <linux/ptrace.h> #include <linux/ioport.h> #include <linux/in.h> #include <linux/malloc.h> #include <linux/string.h> #include <asm/uaccess.h> #include <asm/system.h> #include <asm/bitops.h> #include <asm/io.h> #include <asm/dma.h> #include <linux/errno.h> #include <linux/netdevice.h> #include <linux/inetdevice.h> #include <linux/etherdevice.h> #include <linux/skbuff.h> #include <linux/if_arp.h> #include <linux/atalk.h> #include <linux/ip.h> #include <net/route.h> #include <linux/inet.h> #include "ipddp.h" /* Our stuff */ static struct ipddp_route *ipddp_route_list = NULL; /* * The name of the card. Is used for messages and in the requests for * io regions, irqs and dma channels */ static const char *cardname = "ipddp"; #ifdef CONFIG_IPDDP_ENCAP static int ipddp_mode = IPDDP_ENCAP; #else static int ipddp_mode = IPDDP_DECAP; #endif /* Use 0 for production, 1 for verification, 2 for debug, 3 for verbose debug */ #ifndef IPDDP_DEBUG #define IPDDP_DEBUG 1 #endif static unsigned int ipddp_debug = IPDDP_DEBUG; /* Index to functions, as function prototypes. */ static int ipddp_xmit(struct sk_buff *skb, struct device *dev); static struct net_device_stats *ipddp_get_stats(struct device *dev); static int ipddp_rebuild_header(struct sk_buff *skb); static int ipddp_hard_header(struct sk_buff *skb, struct device *dev, unsigned short type, void *daddr, void *saddr, unsigned len); static int ipddp_create(struct ipddp_route *new_rt); static int ipddp_delete(struct ipddp_route *rt); static struct ipddp_route* ipddp_find_route(struct ipddp_route *rt); static int ipddp_ioctl(struct device *dev, struct ifreq *ifr, int cmd); static int ipddp_open(struct device *dev) { #ifdef MODULE MOD_INC_USE_COUNT; #endif return 0; } static int ipddp_close(struct device *dev) { #ifdef MODULE MOD_DEC_USE_COUNT; #endif return 0; } int ipddp_init(struct device *dev) { static unsigned version_printed = 0; if (ipddp_debug && version_printed++ == 0) printk("%s", version); /* Let the user now what mode we are in */ if(ipddp_mode == IPDDP_ENCAP) printk("%s: Appletalk-IP Encapsulation mode by Bradford W. Johnson <johns393@maroon.tc.umn.edu>\n", dev->name); if(ipddp_mode == IPDDP_DECAP) printk("%s: Appletalk-IP Decapsulation mode by Jay Schulist <Jay.Schulist@spacs.k12.wi.us>\n", dev->name); /* Fill in the device structure with ethernet-generic values. */ ether_setup(dev); /* Initalize the device structure. */ dev->hard_start_xmit = ipddp_xmit; dev->priv = kmalloc(sizeof(struct enet_statistics), GFP_KERNEL); if(!dev->priv) return -ENOMEM; memset(dev->priv,0,sizeof(struct enet_statistics)); dev->open = ipddp_open; dev->stop = ipddp_close; dev->get_stats = ipddp_get_stats; dev->do_ioctl = ipddp_ioctl; dev->hard_header = ipddp_hard_header; /* see ip_output.c */ dev->rebuild_header = ipddp_rebuild_header; dev->type = ARPHRD_IPDDP; /* IP over DDP tunnel */ dev->mtu = 585; dev->flags |= IFF_NOARP; /* * The worst case header we will need is currently a * ethernet header (14 bytes) and a ddp header (sizeof ddpehdr+1) * We send over SNAP so that takes another 8 bytes. */ dev->hard_header_len = 14+8+sizeof(struct ddpehdr)+1; return 0; } /* * Transmit LLAP/ELAP frame using aarp_send_ddp. */ static int ipddp_xmit(struct sk_buff *skb, struct device *dev) { /* Retrieve the saved address hint */ struct at_addr *at = (struct at_addr *)skb->data; skb_pull(skb,4); ((struct net_device_stats *) dev->priv)->tx_packets++; ((struct net_device_stats *) dev->priv)->tx_bytes+=skb->len; if(aarp_send_ddp(skb->dev, skb, at, NULL) < 0) dev_kfree_skb(skb); return 0; } /* * Get the current statistics. This may be called with the card open or closed. */ static struct net_device_stats *ipddp_get_stats(struct device *dev) { return (struct net_device_stats *)dev->priv; } /* * Now the packet really wants to go out. On entry skb->data points to the * ddpehdr we reserved earlier. skb->h.raw will be the higher level header. */ static int ipddp_rebuild_header(struct sk_buff *skb) { u32 paddr = ((struct rtable*)skb->dst)->rt_gateway; struct ddpehdr *ddp; struct at_addr at; struct ipddp_route *rt; struct at_addr *our_addr; /* Wow! I'll eat my hat if this routine is really called. --ANK */ /* * Find appropriate route to use, based only on IP number. */ for(rt = ipddp_route_list; rt != NULL; rt = rt->next) { if(rt->ip == paddr) break; } if(rt == NULL) { printk("%s: unreachable dst %s\n", cardname, in_ntoa(paddr)); return -ENETUNREACH; } our_addr = atalk_find_dev_addr(rt->dev); if(ipddp_mode == IPDDP_DECAP) /* * Pull off the excess room that should not be there. * This is the case for Localtalk, this may not hold * true for Ethertalk, etc. */ skb_pull(skb, 31-(sizeof(struct ddpehdr)+1)); /* Create the Extended DDP header */ ddp = (struct ddpehdr *) (skb->data+4); ddp->deh_len = skb->len; ddp->deh_hops = 1; ddp->deh_pad = 0; ddp->deh_sum = 0; /* * For Localtalk we need aarp_send_ddp to strip the * Ext DDP header and place a Shrt DDP header on it. */ if(rt->dev->type == ARPHRD_LOCALTLK) { ddp->deh_dnet = 0; /* FIXME more hops?? */ ddp->deh_snet = 0; } else { ddp->deh_dnet = rt->at.s_net; /* FIXME more hops?? */ ddp->deh_snet = our_addr->s_net; } ddp->deh_dnode = rt->at.s_node; ddp->deh_snode = our_addr->s_node; ddp->deh_dport = 72; ddp->deh_sport = 72; *((__u8 *)(ddp+1)) = 22; /* ddp type = IP */ *((__u16 *)ddp)=ntohs(*((__u16 *)ddp)); /* fix up length field */ /* Hide it at the start of the buffer, we pull it out in ipddp_xmit */ at = rt->at; memcpy(skb->data,(void *)&at,sizeof(at)); skb->dev = rt->dev; /* set skb->dev to appropriate device */ skb->protocol = htons(ETH_P_ATALK); /* Protocol has changed */ return 0; } static int ipddp_hard_header(struct sk_buff *skb, struct device *dev, unsigned short type, void *daddr, void *saddr, unsigned len) { /* Push down the header space and the type byte */ skb_push(skb, sizeof(struct ddpehdr)+1+4); return 0; } /* * Create a routing entry. We first verify that the * record does not already exist. If it does we return -EEXIST */ static int ipddp_create(struct ipddp_route *new_rt) { struct ipddp_route *rt =(struct ipddp_route*) kmalloc(sizeof(*rt), GFP_KERNEL); struct ipddp_route *test; if(rt == NULL) return -ENOMEM; rt->ip = new_rt->ip; rt->at = new_rt->at; rt->next = NULL; rt->dev = atrtr_get_dev(&rt->at); if(rt->dev == NULL) return (-ENETUNREACH); test = ipddp_find_route(rt); if(test != NULL) return (-EEXIST); rt->next = ipddp_route_list; ipddp_route_list = rt; return 0; } /* * Delete a route, we only delete a FULL match. * If route does not exist we return -ENOENT. */ static int ipddp_delete(struct ipddp_route *rt) { struct ipddp_route **r = &ipddp_route_list; struct ipddp_route *tmp; while((tmp = *r) != NULL) { if(tmp->ip == rt->ip && tmp->at.s_net == rt->at.s_net && tmp->at.s_node == rt->at.s_node) { *r = tmp->next; kfree_s(tmp, sizeof(struct ipddp_route)); return 0; } r = &tmp->next; } return (-ENOENT); } /* * Find a routing entry, we only return a FULL match */ static struct ipddp_route* ipddp_find_route(struct ipddp_route *rt) { struct ipddp_route *f; for(f = ipddp_route_list; f != NULL; f = f->next) { if(f->ip == rt->ip && f->at.s_net == rt->at.s_net && f->at.s_node == rt->at.s_node) return (f); } return (NULL); } static int ipddp_ioctl(struct device *dev, struct ifreq *ifr, int cmd) { struct ipddp_route *rt = (struct ipddp_route *)ifr->ifr_data; if(!suser()) return -EPERM; switch(cmd) { case SIOCADDIPDDPRT: return (ipddp_create(rt)); case SIOCFINDIPDDPRT: if(copy_to_user(rt, ipddp_find_route(rt), sizeof(struct ipddp_route))) return -EFAULT; return 0; case SIOCDELIPDDPRT: return (ipddp_delete(rt)); default: return -EINVAL; } } #ifdef MODULE /* Module specific functions for ipddp.c */ static struct device dev_ipddp= { "ipddp0\0 ", 0, 0, 0, 0, 0x0, 0, 0, 0, 0, NULL, ipddp_init }; MODULE_PARM(ipddp_mode, "i"); int init_module(void) { int err; err=dev_alloc_name(&dev_ipddp, "ipddp%d"); if(err < 0) return err; if(register_netdev(&dev_ipddp) != 0) return -EIO; return 0; } void cleanup_module(void) { unregister_netdev(&dev_ipddp); kfree(dev_ipddp.priv); dev_ipddp.priv = NULL; } #endif /* MODULE */ |