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 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
|
/*
* IPSEC MAST code.
* Copyright (C) 1996, 1997 John Ioannidis.
* Copyright (C) 1998, 1999, 2000, 2001, 2002 Richard Guy Briggs.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
char ipsec_mast_c_version[] = "RCSID $Id: ipsec_mast.c,v 1.7 2005/04/29 05:10:22 mcr Exp $";
#define __NO_VERSION__
#include <linux/module.h>
#include <linux/config.h> /* for CONFIG_IP_FORWARD */
#include <linux/version.h>
#include <linux/kernel.h> /* printk() */
#include "freeswan/ipsec_param.h"
#ifdef MALLOC_SLAB
# include <linux/slab.h> /* kmalloc() */
#else /* MALLOC_SLAB */
# include <linux/malloc.h> /* kmalloc() */
#endif /* MALLOC_SLAB */
#include <linux/errno.h> /* error codes */
#include <linux/types.h> /* size_t */
#include <linux/interrupt.h> /* mark_bh */
#include <linux/netdevice.h> /* struct device, struct net_device_stats, dev_queue_xmit() and other headers */
#include <linux/etherdevice.h> /* eth_type_trans */
#include <linux/ip.h> /* struct iphdr */
#include <linux/tcp.h> /* struct tcphdr */
#include <linux/udp.h> /* struct udphdr */
#include <linux/skbuff.h>
#include <freeswan.h>
#include <linux/in6.h>
#include <net/dst.h>
#undef dev_kfree_skb
#define dev_kfree_skb(a,b) kfree_skb(a)
#define PHYSDEV_TYPE
#include <net/icmp.h> /* icmp_send() */
#include <net/ip.h>
#include <linux/netfilter_ipv4.h>
#include <linux/if_arp.h>
#include "freeswan/radij.h"
#include "freeswan/ipsec_life.h"
#include "freeswan/ipsec_xform.h"
#include "freeswan/ipsec_eroute.h"
#include "freeswan/ipsec_encap.h"
#include "freeswan/ipsec_radij.h"
#include "freeswan/ipsec_sa.h"
#include "freeswan/ipsec_tunnel.h"
#include "freeswan/ipsec_mast.h"
#include "freeswan/ipsec_ipe4.h"
#include "freeswan/ipsec_ah.h"
#include "freeswan/ipsec_esp.h"
#include <pfkeyv2.h>
#include <pfkey.h>
#include "freeswan/ipsec_proto.h"
int ipsec_maxdevice_count = -1;
DEBUG_NO_STATIC int
ipsec_mast_open(struct net_device *dev)
{
struct ipsecpriv *prv = dev->priv;
/*
* Can't open until attached.
*/
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_open: "
"dev = %s, prv->dev = %s\n",
dev->name, prv->dev?prv->dev->name:"NONE");
if (prv->dev == NULL)
return -ENODEV;
KLIPS_INC_USE;
return 0;
}
DEBUG_NO_STATIC int
ipsec_mast_close(struct net_device *dev)
{
KLIPS_DEC_USE;
return 0;
}
static inline int ipsec_mast_xmit2(struct sk_buff *skb)
{
return ip_send(skb);
}
enum ipsec_xmit_value
ipsec_mast_send(struct ipsec_xmit_state*ixs)
{
/* new route/dst cache code from James Morris */
ixs->skb->dev = ixs->physdev;
/*skb_orphan(ixs->skb);*/
if((ixs->error = ip_route_output(&ixs->route,
ixs->skb->nh.iph->daddr,
ixs->pass ? 0 : ixs->skb->nh.iph->saddr,
RT_TOS(ixs->skb->nh.iph->tos),
ixs->physdev->iflink /* rgb: should this be 0? */))) {
ixs->stats->tx_errors++;
KLIPS_PRINT(debug_mast & DB_MAST_XMIT,
"klips_debug:ipsec_xmit_send: "
"ip_route_output failed with error code %d, rt->u.dst.dev=%s, dropped\n",
ixs->error,
ixs->route->u.dst.dev->name);
return IPSEC_XMIT_ROUTEERR;
}
if(ixs->dev == ixs->route->u.dst.dev) {
ip_rt_put(ixs->route);
/* This is recursion, drop it. */
ixs->stats->tx_errors++;
KLIPS_PRINT(debug_mast & DB_MAST_XMIT,
"klips_debug:ipsec_xmit_send: "
"suspect recursion, dev=rt->u.dst.dev=%s, dropped\n",
ixs->dev->name);
return IPSEC_XMIT_RECURSDETECT;
}
dst_release(ixs->skb->dst);
ixs->skb->dst = &ixs->route->u.dst;
ixs->stats->tx_bytes += ixs->skb->len;
if(ixs->skb->len < ixs->skb->nh.raw - ixs->skb->data) {
ixs->stats->tx_errors++;
printk(KERN_WARNING
"klips_error:ipsec_xmit_send: "
"tried to __skb_pull nh-data=%ld, %d available. This should never happen, please report.\n",
(unsigned long)(ixs->skb->nh.raw - ixs->skb->data),
ixs->skb->len);
return IPSEC_XMIT_PUSHPULLERR;
}
__skb_pull(ixs->skb, ixs->skb->nh.raw - ixs->skb->data);
#ifdef SKB_RESET_NFCT
nf_conntrack_put(ixs->skb->nfct);
ixs->skb->nfct = NULL;
#ifdef CONFIG_NETFILTER_DEBUG
ixs->skb->nf_debug = 0;
#endif /* CONFIG_NETFILTER_DEBUG */
#endif /* SKB_RESET_NFCT */
KLIPS_PRINT(debug_mast & DB_MAST_XMIT,
"klips_debug:ipsec_xmit_send: "
"...done, calling ip_send() on device:%s\n",
ixs->skb->dev ? ixs->skb->dev->name : "NULL");
KLIPS_IP_PRINT(debug_mast & DB_MAST_XMIT, ixs->skb->nh.iph);
{
int err;
err = NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, ixs->skb, NULL, ixs->route->u.dst.dev,
ipsec_mast_xmit2);
if(err != NET_XMIT_SUCCESS && err != NET_XMIT_CN) {
if(net_ratelimit())
printk(KERN_ERR
"klips_error:ipsec_xmit_send: "
"ip_send() failed, err=%d\n",
-err);
ixs->stats->tx_errors++;
ixs->stats->tx_aborted_errors++;
ixs->skb = NULL;
return IPSEC_XMIT_IPSENDFAILURE;
}
}
ixs->stats->tx_packets++;
ixs->skb = NULL;
return IPSEC_XMIT_OK;
}
void
ipsec_mast_cleanup(struct ipsec_xmit_state*ixs)
{
#if defined(HAS_NETIF_QUEUE) || defined (HAVE_NETIF_QUEUE)
netif_wake_queue(ixs->dev);
#else /* defined(HAS_NETIF_QUEUE) || defined (HAVE_NETIF_QUEUE) */
ixs->dev->tbusy = 0;
#endif /* defined(HAS_NETIF_QUEUE) || defined (HAVE_NETIF_QUEUE) */
if(ixs->saved_header) {
kfree(ixs->saved_header);
}
if(ixs->skb) {
dev_kfree_skb(ixs->skb, FREE_WRITE);
}
if(ixs->oskb) {
dev_kfree_skb(ixs->oskb, FREE_WRITE);
}
if (ixs->ips.ips_ident_s.data) {
kfree(ixs->ips.ips_ident_s.data);
}
if (ixs->ips.ips_ident_d.data) {
kfree(ixs->ips.ips_ident_d.data);
}
}
#if 0
/*
* This function assumes it is being called from dev_queue_xmit()
* and that skb is filled properly by that function.
*/
int
ipsec_mast_start_xmit(struct sk_buff *skb, struct net_device *dev, IPsecSAref_t SAref)
{
struct ipsec_xmit_state ixs_mem;
struct ipsec_xmit_state *ixs = &ixs_mem;
enum ipsec_xmit_value stat = IPSEC_XMIT_OK;
/* dev could be a mast device, but should be optional, I think... */
/* SAref is also optional, but one of the two must be present. */
/* I wonder if it could accept no device or saref and guess? */
/* ipsec_xmit_sanity_check_dev(ixs); */
ipsec_xmit_sanity_check_skb(ixs);
ipsec_xmit_adjust_hard_header(ixs);
stat = ipsec_xmit_encap_bundle(ixs);
if(stat != IPSEC_XMIT_OK) {
/* SA processing failed */
}
ipsec_xmit_hard_header_restore();
}
#endif
DEBUG_NO_STATIC struct net_device_stats *
ipsec_mast_get_stats(struct net_device *dev)
{
return &(((struct ipsecpriv *)(dev->priv))->mystats);
}
/*
* Revectored calls.
* For each of these calls, a field exists in our private structure.
*/
DEBUG_NO_STATIC int
ipsec_mast_hard_header(struct sk_buff *skb, struct net_device *dev,
unsigned short type, void *daddr, void *saddr, unsigned len)
{
struct ipsecpriv *prv = dev->priv;
struct net_device *tmp;
int ret;
struct net_device_stats *stats; /* This device's statistics */
if(skb == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"no skb...\n");
return -ENODATA;
}
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"no device...\n");
return -ENODEV;
}
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"skb->dev=%s dev=%s.\n",
skb->dev ? skb->dev->name : "NULL",
dev->name);
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"no private space associated with dev=%s\n",
dev->name ? dev->name : "NULL");
return -ENODEV;
}
stats = (struct net_device_stats *) &(prv->mystats);
if(prv->dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"no physical device associated with dev=%s\n",
dev->name ? dev->name : "NULL");
stats->tx_dropped++;
return -ENODEV;
}
/* check if we have to send a IPv6 packet. It might be a Router
Solicitation, where the building of the packet happens in
reverse order:
1. ll hdr,
2. IPv6 hdr,
3. ICMPv6 hdr
-> skb->nh.raw is still uninitialized when this function is
called!! If this is no IPv6 packet, we can print debugging
messages, otherwise we skip all debugging messages and just
build the ll header */
if(type != ETH_P_IPV6) {
/* execute this only, if we don't have to build the
header for a IPv6 packet */
if(!prv->hard_header) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"physical device has been detached, packet dropped 0p%p->0p%p len=%d type=%d dev=%s->NULL ",
saddr,
daddr,
len,
type,
dev->name);
KLIPS_PRINTMORE(debug_mast & DB_MAST_REVEC,
"ip=%08x->%08x\n",
(__u32)ntohl(skb->nh.iph->saddr),
(__u32)ntohl(skb->nh.iph->daddr) );
stats->tx_dropped++;
return -ENODEV;
}
#define da ((struct net_device *)(prv->dev))->dev_addr
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_hard_header: "
"Revectored 0p%p->0p%p len=%d type=%d dev=%s->%s dev_addr=%02x:%02x:%02x:%02x:%02x:%02x ",
saddr,
daddr,
len,
type,
dev->name,
prv->dev->name,
da[0], da[1], da[2], da[3], da[4], da[5]);
KLIPS_PRINTMORE(debug_mast & DB_MAST_REVEC,
"ip=%08x->%08x\n",
(__u32)ntohl(skb->nh.iph->saddr),
(__u32)ntohl(skb->nh.iph->daddr) );
} else {
KLIPS_PRINT(debug_mast,
"klips_debug:ipsec_mast_hard_header: "
"is IPv6 packet, skip debugging messages, only revector and build linklocal header.\n");
}
tmp = skb->dev;
skb->dev = prv->dev;
ret = prv->hard_header(skb, prv->dev, type, (void *)daddr, (void *)saddr, len);
skb->dev = tmp;
return ret;
}
DEBUG_NO_STATIC int
ipsec_mast_rebuild_header(struct sk_buff *skb)
{
struct ipsecpriv *prv = skb->dev->priv;
struct net_device *tmp;
int ret;
struct net_device_stats *stats; /* This device's statistics */
if(skb->dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_rebuild_header: "
"no device...");
return -ENODEV;
}
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_rebuild_header: "
"no private space associated with dev=%s",
skb->dev->name ? skb->dev->name : "NULL");
return -ENODEV;
}
stats = (struct net_device_stats *) &(prv->mystats);
if(prv->dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_rebuild_header: "
"no physical device associated with dev=%s",
skb->dev->name ? skb->dev->name : "NULL");
stats->tx_dropped++;
return -ENODEV;
}
if(!prv->rebuild_header) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_rebuild_header: "
"physical device has been detached, packet dropped skb->dev=%s->NULL ",
skb->dev->name);
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"ip=%08x->%08x\n",
(__u32)ntohl(skb->nh.iph->saddr),
(__u32)ntohl(skb->nh.iph->daddr) );
stats->tx_dropped++;
return -ENODEV;
}
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast: "
"Revectored rebuild_header dev=%s->%s ",
skb->dev->name, prv->dev->name);
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"ip=%08x->%08x\n",
(__u32)ntohl(skb->nh.iph->saddr),
(__u32)ntohl(skb->nh.iph->daddr) );
tmp = skb->dev;
skb->dev = prv->dev;
ret = prv->rebuild_header(skb);
skb->dev = tmp;
return ret;
}
DEBUG_NO_STATIC int
ipsec_mast_set_mac_address(struct net_device *dev, void *addr)
{
struct ipsecpriv *prv = dev->priv;
struct net_device_stats *stats; /* This device's statistics */
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_set_mac_address: "
"no device...");
return -ENODEV;
}
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_set_mac_address: "
"no private space associated with dev=%s",
dev->name ? dev->name : "NULL");
return -ENODEV;
}
stats = (struct net_device_stats *) &(prv->mystats);
if(prv->dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_set_mac_address: "
"no physical device associated with dev=%s",
dev->name ? dev->name : "NULL");
stats->tx_dropped++;
return -ENODEV;
}
if(!prv->set_mac_address) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_set_mac_address: "
"physical device has been detached, cannot set - skb->dev=%s->NULL\n",
dev->name);
return -ENODEV;
}
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_set_mac_address: "
"Revectored dev=%s->%s addr=0p%p\n",
dev->name, prv->dev->name, addr);
return prv->set_mac_address(prv->dev, addr);
}
DEBUG_NO_STATIC void
ipsec_mast_cache_update(struct hh_cache *hh, struct net_device *dev, unsigned char * haddr)
{
struct ipsecpriv *prv = dev->priv;
struct net_device_stats *stats; /* This device's statistics */
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_cache_update: "
"no device...");
return;
}
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_cache_update: "
"no private space associated with dev=%s",
dev->name ? dev->name : "NULL");
return;
}
stats = (struct net_device_stats *) &(prv->mystats);
if(prv->dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_cache_update: "
"no physical device associated with dev=%s",
dev->name ? dev->name : "NULL");
stats->tx_dropped++;
return;
}
if(!prv->header_cache_update) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_cache_update: "
"physical device has been detached, cannot set - skb->dev=%s->NULL\n",
dev->name);
return;
}
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast: "
"Revectored cache_update\n");
prv->header_cache_update(hh, prv->dev, haddr);
return;
}
DEBUG_NO_STATIC int
ipsec_mast_neigh_setup(struct neighbour *n)
{
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_neigh_setup:\n");
if (n->nud_state == NUD_NONE) {
n->ops = &arp_broken_ops;
n->output = n->ops->output;
}
return 0;
}
DEBUG_NO_STATIC int
ipsec_mast_neigh_setup_dev(struct net_device *dev, struct neigh_parms *p)
{
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_neigh_setup_dev: "
"setting up %s\n",
dev ? dev->name : "NULL");
if (p->tbl->family == AF_INET) {
p->neigh_setup = ipsec_mast_neigh_setup;
p->ucast_probes = 0;
p->mcast_probes = 0;
}
return 0;
}
/*
* We call the attach routine to attach another device.
*/
DEBUG_NO_STATIC int
ipsec_mast_attach(struct net_device *dev, struct net_device *physdev)
{
int i;
struct ipsecpriv *prv = dev->priv;
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_attach: "
"no device...");
return -ENODEV;
}
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_attach: "
"no private space associated with dev=%s",
dev->name ? dev->name : "NULL");
return -ENODATA;
}
prv->dev = physdev;
prv->hard_start_xmit = physdev->hard_start_xmit;
prv->get_stats = physdev->get_stats;
if (physdev->hard_header) {
prv->hard_header = physdev->hard_header;
dev->hard_header = ipsec_mast_hard_header;
} else
dev->hard_header = NULL;
if (physdev->rebuild_header) {
prv->rebuild_header = physdev->rebuild_header;
dev->rebuild_header = ipsec_mast_rebuild_header;
} else
dev->rebuild_header = NULL;
if (physdev->set_mac_address) {
prv->set_mac_address = physdev->set_mac_address;
dev->set_mac_address = ipsec_mast_set_mac_address;
} else
dev->set_mac_address = NULL;
if (physdev->header_cache_update) {
prv->header_cache_update = physdev->header_cache_update;
dev->header_cache_update = ipsec_mast_cache_update;
} else
dev->header_cache_update = NULL;
dev->hard_header_len = physdev->hard_header_len;
/* prv->neigh_setup = physdev->neigh_setup; */
dev->neigh_setup = ipsec_mast_neigh_setup_dev;
dev->mtu = 16260; /* 0xfff0; */ /* dev->mtu; */
prv->mtu = physdev->mtu;
#ifdef PHYSDEV_TYPE
dev->type = physdev->type; /* ARPHRD_MAST; */
#endif /* PHYSDEV_TYPE */
dev->addr_len = physdev->addr_len;
for (i=0; i<dev->addr_len; i++) {
dev->dev_addr[i] = physdev->dev_addr[i];
}
#ifdef CONFIG_KLIPS_DEBUG
if(debug_mast & DB_MAST_INIT) {
printk(KERN_INFO "klips_debug:ipsec_mast_attach: "
"physical device %s being attached has HW address: %2x",
physdev->name, physdev->dev_addr[0]);
for (i=1; i < physdev->addr_len; i++) {
printk(":%02x", physdev->dev_addr[i]);
}
printk("\n");
}
#endif /* CONFIG_KLIPS_DEBUG */
return 0;
}
/*
* We call the detach routine to detach the ipsec mast from another device.
*/
DEBUG_NO_STATIC int
ipsec_mast_detach(struct net_device *dev)
{
int i;
struct ipsecpriv *prv = dev->priv;
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_detach: "
"no device...");
return -ENODEV;
}
if(prv == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_REVEC,
"klips_debug:ipsec_mast_detach: "
"no private space associated with dev=%s",
dev->name ? dev->name : "NULL");
return -ENODATA;
}
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_detach: "
"physical device %s being detached from virtual device %s\n",
prv->dev ? prv->dev->name : "NULL",
dev->name);
prv->dev = NULL;
prv->hard_start_xmit = NULL;
prv->get_stats = NULL;
prv->hard_header = NULL;
#ifdef DETACH_AND_DOWN
dev->hard_header = NULL;
#endif /* DETACH_AND_DOWN */
prv->rebuild_header = NULL;
#ifdef DETACH_AND_DOWN
dev->rebuild_header = NULL;
#endif /* DETACH_AND_DOWN */
prv->set_mac_address = NULL;
#ifdef DETACH_AND_DOWN
dev->set_mac_address = NULL;
#endif /* DETACH_AND_DOWN */
prv->header_cache_update = NULL;
#ifdef DETACH_AND_DOWN
dev->header_cache_update = NULL;
#endif /* DETACH_AND_DOWN */
#ifdef DETACH_AND_DOWN
dev->neigh_setup = NULL;
#endif /* DETACH_AND_DOWN */
dev->hard_header_len = 0;
#ifdef DETACH_AND_DOWN
dev->mtu = 0;
#endif /* DETACH_AND_DOWN */
prv->mtu = 0;
for (i=0; i<MAX_ADDR_LEN; i++) {
dev->dev_addr[i] = 0;
}
dev->addr_len = 0;
#ifdef PHYSDEV_TYPE
dev->type = ARPHRD_VOID; /* ARPHRD_MAST; */
#endif /* PHYSDEV_TYPE */
return 0;
}
/*
* We call the clear routine to detach all ipsec masts from other devices.
*/
DEBUG_NO_STATIC int
ipsec_mast_clear(void)
{
int i;
struct net_device *ipsecdev = NULL, *prvdev;
struct ipsecpriv *prv;
char name[9];
int ret;
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_clear: .\n");
for(i = 0; i < IPSEC_NUM_IF; i++) {
sprintf(name, IPSEC_DEV_FORMAT, i);
if((ipsecdev = ipsec_dev_get(name)) != NULL) {
if((prv = (struct ipsecpriv *)(ipsecdev->priv))) {
prvdev = (struct net_device *)(prv->dev);
if(prvdev) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_clear: "
"physical device for device %s is %s\n",
name, prvdev->name);
if((ret = ipsec_mast_detach(ipsecdev))) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_clear: "
"error %d detatching device %s from device %s.\n",
ret, name, prvdev->name);
return ret;
}
}
}
}
}
return 0;
}
DEBUG_NO_STATIC int
ipsec_mast_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
struct ipsecmastconf *cf = (struct ipsecmastconf *)&ifr->ifr_data;
struct ipsecpriv *prv = dev->priv;
struct net_device *them; /* physical device */
#ifdef CONFIG_IP_ALIAS
char *colon;
char realphysname[IFNAMSIZ];
#endif /* CONFIG_IP_ALIAS */
if(dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"device not supplied.\n");
return -ENODEV;
}
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"tncfg service call #%d for dev=%s\n",
cmd,
dev->name ? dev->name : "NULL");
switch (cmd) {
/* attach a virtual ipsec? device to a physical device */
case IPSEC_SET_DEV:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"calling ipsec_mast_attatch...\n");
#ifdef CONFIG_IP_ALIAS
/* If this is an IP alias interface, get its real physical name */
strncpy(realphysname, cf->cf_name, IFNAMSIZ);
realphysname[IFNAMSIZ-1] = 0;
colon = strchr(realphysname, ':');
if (colon) *colon = 0;
them = ipsec_dev_get(realphysname);
#else /* CONFIG_IP_ALIAS */
them = ipsec_dev_get(cf->cf_name);
#endif /* CONFIG_IP_ALIAS */
if (them == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"physical device %s requested is null\n",
cf->cf_name);
return -ENXIO;
}
#if 0
if (them->flags & IFF_UP) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"physical device %s requested is not up.\n",
cf->cf_name);
return -ENXIO;
}
#endif
if (prv && prv->dev) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"virtual device is already connected to %s.\n",
prv->dev->name ? prv->dev->name : "NULL");
return -EBUSY;
}
return ipsec_mast_attach(dev, them);
case IPSEC_DEL_DEV:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"calling ipsec_mast_detatch.\n");
if (! prv->dev) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"physical device not connected.\n");
return -ENODEV;
}
return ipsec_mast_detach(dev);
case IPSEC_CLR_DEV:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"calling ipsec_mast_clear.\n");
return ipsec_mast_clear();
default:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_ioctl: "
"unknown command %d.\n",
cmd);
return -EOPNOTSUPP;
}
}
int
ipsec_mast_device_event(struct notifier_block *unused, unsigned long event, void *ptr)
{
struct net_device *dev = ptr;
struct net_device *ipsec_dev;
struct ipsecpriv *priv;
char name[9];
int i;
if (dev == NULL) {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"dev=NULL for event type %ld.\n",
event);
return(NOTIFY_DONE);
}
/* check for loopback devices */
if (dev && (dev->flags & IFF_LOOPBACK)) {
return(NOTIFY_DONE);
}
switch (event) {
case NETDEV_DOWN:
/* look very carefully at the scope of these compiler
directives before changing anything... -- RGB */
case NETDEV_UNREGISTER:
switch (event) {
case NETDEV_DOWN:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_DOWN dev=%s flags=%x\n",
dev->name,
dev->flags);
if(strncmp(dev->name, "ipsec", strlen("ipsec")) == 0) {
printk(KERN_CRIT "IPSEC EVENT: KLIPS device %s shut down.\n",
dev->name);
}
break;
case NETDEV_UNREGISTER:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_UNREGISTER dev=%s flags=%x\n",
dev->name,
dev->flags);
break;
}
/* find the attached physical device and detach it. */
for(i = 0; i < IPSEC_NUM_IF; i++) {
sprintf(name, IPSEC_DEV_FORMAT, i);
ipsec_dev = ipsec_dev_get(name);
if(ipsec_dev) {
priv = (struct ipsecpriv *)(ipsec_dev->priv);
if(priv) {
;
if(((struct net_device *)(priv->dev)) == dev) {
/* dev_close(ipsec_dev); */
/* return */ ipsec_mast_detach(ipsec_dev);
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"device '%s' has been detached.\n",
ipsec_dev->name);
break;
}
} else {
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"device '%s' has no private data space!\n",
ipsec_dev->name);
}
}
}
break;
case NETDEV_UP:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_UP dev=%s\n",
dev->name);
break;
case NETDEV_REBOOT:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_REBOOT dev=%s\n",
dev->name);
break;
case NETDEV_CHANGE:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_CHANGE dev=%s flags=%x\n",
dev->name,
dev->flags);
break;
case NETDEV_REGISTER:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_REGISTER dev=%s\n",
dev->name);
break;
case NETDEV_CHANGEMTU:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_CHANGEMTU dev=%s to mtu=%d\n",
dev->name,
dev->mtu);
break;
case NETDEV_CHANGEADDR:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_CHANGEADDR dev=%s\n",
dev->name);
break;
case NETDEV_GOING_DOWN:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_GOING_DOWN dev=%s\n",
dev->name);
break;
case NETDEV_CHANGENAME:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"NETDEV_CHANGENAME dev=%s\n",
dev->name);
break;
default:
KLIPS_PRINT(debug_mast & DB_MAST_INIT,
"klips_debug:ipsec_mast_device_event: "
"event type %ld unrecognised for dev=%s\n",
event,
dev->name);
break;
}
return NOTIFY_DONE;
}
/*
* Called when an ipsec mast device is initialized.
* The ipsec mast device structure is passed to us.
*/
int
ipsec_mast_init(struct net_device *dev)
{
int i;
KLIPS_PRINT(debug_mast,
"klips_debug:ipsec_mast_init: "
"allocating %lu bytes initialising device: %s\n",
(unsigned long) sizeof(struct ipsecpriv),
dev->name ? dev->name : "NULL");
/* Add our mast functions to the device */
dev->open = ipsec_mast_open;
dev->stop = ipsec_mast_close;
dev->hard_start_xmit = ipsec_mast_start_xmit;
dev->get_stats = ipsec_mast_get_stats;
dev->priv = kmalloc(sizeof(struct ipsecpriv), GFP_KERNEL);
if (dev->priv == NULL)
return -ENOMEM;
memset((caddr_t)(dev->priv), 0, sizeof(struct ipsecpriv));
for(i = 0; i < sizeof(zeroes); i++) {
((__u8*)(zeroes))[i] = 0;
}
dev->set_multicast_list = NULL;
dev->do_ioctl = ipsec_mast_ioctl;
dev->hard_header = NULL;
dev->rebuild_header = NULL;
dev->set_mac_address = NULL;
dev->header_cache_update= NULL;
dev->neigh_setup = ipsec_mast_neigh_setup_dev;
dev->hard_header_len = 0;
dev->mtu = 0;
dev->addr_len = 0;
dev->type = ARPHRD_VOID; /* ARPHRD_MAST; */ /* ARPHRD_ETHER; */
dev->tx_queue_len = 10; /* Small queue */
memset((caddr_t)(dev->broadcast),0xFF, ETH_ALEN); /* what if this is not attached to ethernet? */
/* New-style flags. */
dev->flags = IFF_NOARP /* 0 */ /* Petr Novak */;
dev_init_buffers(dev);
/* We're done. Have I forgotten anything? */
return 0;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* Module specific interface (but it links with the rest of IPSEC) */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
int
ipsec_mast_probe(struct net_device *dev)
{
ipsec_mast_init(dev);
return 0;
}
int
ipsec_mast_init_devices(void)
{
return 0;
}
/* void */
int
ipsec_mast_cleanup_devices(void)
{
int error = 0;
int i;
char name[10];
struct net_device *dev_mast;
for(i = 0; i < ipsec_mastdevice_count; i++) {
sprintf(name, MAST_DEV_FORMAT, i);
if((dev_mast = ipsec_dev_get(name)) == NULL) {
break;
}
unregister_netdev(dev_mast);
kfree(dev_mast->priv);
dev_mast->priv=NULL;
}
return error;
}
/*
* $Log: ipsec_mast.c,v $
* Revision 1.7 2005/04/29 05:10:22 mcr
* removed from extraenous includes to make unit testing easier.
*
* Revision 1.6 2004/12/03 21:25:57 mcr
* compile time fixes for running on 2.6.
* still experimental.
*
* Revision 1.5 2004/08/03 18:19:08 mcr
* in 2.6, use "net_device" instead of #define device->net_device.
* this probably breaks 2.0 compiles.
*
* Revision 1.4 2004/07/10 19:11:18 mcr
* CONFIG_IPSEC -> CONFIG_KLIPS.
*
* Revision 1.3 2003/10/31 02:27:55 mcr
* pulled up port-selector patches and sa_id elimination.
*
* Revision 1.2.4.1 2003/10/29 01:30:41 mcr
* elimited "struct sa_id".
*
* Revision 1.2 2003/06/22 20:06:17 mcr
* refactored mast code still had lots of ipsecX junk in it.
*
* Revision 1.1 2003/02/12 19:31:12 rgb
* Refactored from ipsec_tunnel.c
*
*/
|