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
|
/*
* control KLIPS debugging options
* Copyright (C) 1996 John Ioannidis.
* Copyright (C) 1998, 1999, 2000, 2001 Richard Guy Briggs <rgb@freeswan.org>
* 2001 Michael Richardson <mcr@freeswan.org>
*
* 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 klipsdebug_c_version[] = "RCSID $Id: klipsdebug.c,v 1.53 2003/09/10 00:01:27 mcr Exp $";
#include <sys/types.h>
#include <linux/types.h> /* new */
#include <string.h>
#include <errno.h>
#include <stdlib.h> /* system(), strtoul() */
#include <sys/stat.h> /* open() */
#include <fcntl.h> /* open() */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <freeswan.h>
#if 0
#include <linux/autoconf.h> /* CONFIG_IPSEC_PFKEYv2 */
#endif
/* permanently turn it on since netlink support has been disabled */
#include <signal.h>
#include <pfkeyv2.h>
#include <pfkey.h>
#include "freeswan/radij.h"
#include "freeswan/ipsec_encap.h"
#ifndef CONFIG_IPSEC_DEBUG
#define CONFIG_IPSEC_DEBUG
#endif /* CONFIG_IPSEC_DEBUG */
#include "freeswan/ipsec_netlink.h"
#include "freeswan/ipsec_tunnel.h"
#include <stdio.h>
#include <getopt.h>
__u32 bigbuf[1024];
char *program_name;
int pfkey_sock;
fd_set pfkey_socks;
uint32_t pfkey_seq = 0;
char copyright[] =
"Copyright (C) 1999 Henry Spencer, Richard Guy Briggs, D. Hugh Redelmeier,\n\
Sandy Harris, Angelos D. Keromytis, John Ioannidis.\n\
\n\
This program is free software; you can redistribute it and/or modify it\n\
under the terms of the GNU General Public License as published by the\n\
Free Software Foundation; either version 2 of the License, or (at your\n\
option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.\n\
\n\
This program is distributed in the hope that it will be useful, but\n\
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n\
(file COPYING in the distribution) for more details.\n";
static void
usage(char * arg)
{
fprintf(stdout, "usage: %s {--set|--clear} {tunnel|tunnel-xmit|netlink|xform|eroute|spi|radij|esp|ah|rcv|pfkey|ipcomp|verbose}\n", arg);
fprintf(stdout, " %s {--all|--none}\n", arg);
fprintf(stdout, " %s --help\n", arg);
fprintf(stdout, " %s --version\n", arg);
fprintf(stdout, " %s\n", arg);
fprintf(stdout, " [ --debug ] is optional to any %s command\n", arg);
fprintf(stdout, " [ --label <label> ] is optional to any %s command.\n", arg);
exit(1);
}
static struct option const longopts[] =
{
{"set", 1, 0, 's'},
{"clear", 1, 0, 'c'},
{"all", 0, 0, 'a'},
{"none", 0, 0, 'n'},
{"help", 0, 0, 'h'},
{"version", 0, 0, 'v'},
{"label", 1, 0, 'l'},
{"optionsfrom", 1, 0, '+'},
{"debug", 0, 0, 'd'},
{0, 0, 0, 0}
};
int
main(int argc, char **argv)
{
/* int fd; */
unsigned char action = 0;
unsigned int i;
int *bitfieldp;
int c, previous = -1;
struct encap_msghdr *em = (struct encap_msghdr *)bigbuf;
int debug = 0;
int error = 0;
int argcount = argc;
struct sadb_ext *extensions[SADB_EXT_MAX + 1];
struct sadb_msg *pfkey_msg;
bitfieldp = (int *)&em->em_db_tn;
program_name = argv[0];
while((c = getopt_long(argc, argv, ""/*"s:c:anhvl:+:d"*/, longopts, 0)) != EOF) {
switch(c) {
case 'd':
debug = 1;
pfkey_lib_debug = PF_KEY_DEBUG_PARSE_MAX;
argcount--;
break;
case 's':
if(action) {
fprintf(stderr, "%s: Only one of '--set', '--clear', '--all' or '--none' options permitted.\n",
program_name);
exit(1);
}
action = 's';
for (i = 0; i < (sizeof(em->Eu.Dbg)/sizeof(int)); i++) {
*(bitfieldp++) = 0;
}
if(strcmp(optarg, "tunnel") == 0) {
em->em_db_tn = -1L;
} else if(strcmp(optarg, "tunnel-xmit") == 0) {
em->em_db_tn = DB_TN_XMIT;
} else if(strcmp(optarg, "netlink") == 0) {
em->em_db_nl = -1L;
} else if(strcmp(optarg, "xform") == 0) {
em->em_db_xf = -1L;
} else if(strcmp(optarg, "eroute") == 0) {
em->em_db_er = -1L;
} else if(strcmp(optarg, "spi") == 0) {
em->em_db_sp = -1L;
} else if(strcmp(optarg, "radij") == 0) {
em->em_db_rj = -1L;
} else if(strcmp(optarg, "esp") == 0) {
em->em_db_es = -1L;
} else if(strcmp(optarg, "ah") == 0) {
em->em_db_ah = -1L;
} else if(strcmp(optarg, "rcv") == 0) {
em->em_db_rx = -1L;
} else if(strcmp(optarg, "pfkey") == 0) {
em->em_db_ky = -1L;
} else if(strcmp(optarg, "comp") == 0) {
em->em_db_gz = -1L;
} else if(strcmp(optarg, "verbose") == 0) {
em->em_db_vb = -1L;
} else {
usage(program_name);
}
em->em_db_nl |= 1 << (sizeof(em->em_db_nl) * 8 -1);
break;
case 'c':
if(action) {
fprintf(stderr, "%s: Only one of '--set', '--clear', '--all' or '--none' options permitted.\n",
program_name);
exit(1);
}
action = 'c';
for (i = 0; i < (sizeof(em->Eu.Dbg)/sizeof(int)); i++) {
*(bitfieldp++) = -1;
}
if(strcmp(optarg, "tunnel") == 0) {
em->em_db_tn = 0;
} else if(strcmp(optarg, "tunnel-xmit") == 0) {
em->em_db_tn = ~DB_TN_XMIT;
} else if(strcmp(optarg, "netlink") == 0) {
em->em_db_nl = 0;
} else if(strcmp(optarg, "xform") == 0) {
em->em_db_xf = 0;
} else if(strcmp(optarg, "eroute") == 0) {
em->em_db_er = 0;
} else if(strcmp(optarg, "spi") == 0) {
em->em_db_sp = 0;
} else if(strcmp(optarg, "radij") == 0) {
em->em_db_rj = 0;
} else if(strcmp(optarg, "esp") == 0) {
em->em_db_es = 0;
} else if(strcmp(optarg, "ah") == 0) {
em->em_db_ah = 0;
} else if(strcmp(optarg, "rcv") == 0) {
em->em_db_rx = 0;
} else if(strcmp(optarg, "pfkey") == 0) {
em->em_db_ky = 0;
} else if(strcmp(optarg, "comp") == 0) {
em->em_db_gz = 0;
} else if(strcmp(optarg, "verbose") == 0) {
em->em_db_vb = 0;
} else {
usage(program_name);
}
em->em_db_nl &= ~(1 << (sizeof(em->em_db_nl) * 8 -1));
break;
case 'a':
if(action) {
fprintf(stderr, "%s: Only one of '--set', '--clear', '--all' or '--none' options permitted.\n",
program_name);
exit(1);
}
action = 'a';
for (i = 0; i < (sizeof(em->Eu.Dbg)/sizeof(int)) - 1; i++) {
*(bitfieldp++) = -1;
}
*(bitfieldp++) = 0;
break;
case 'n':
if(action) {
fprintf(stderr, "%s: Only one of '--set', '--clear', '--all' or '--none' options permitted.\n",
program_name);
exit(1);
}
action = 'n';
for (i = 0; i < (sizeof(em->Eu.Dbg)/sizeof(int)); i++) {
*(bitfieldp++) = 0;
}
break;
case 'h':
case '?':
usage(program_name);
exit(1);
case 'v':
fprintf(stdout, "klipsdebug (Linux FreeS/WAN %s) %s\n",
ipsec_version_code(), klipsdebug_c_version);
fputs(copyright, stdout);
exit(0);
case 'l':
program_name = malloc(strlen(argv[0])
+ 10 /* update this when changing the sprintf() */
+ strlen(optarg));
sprintf(program_name, "%s --label %s",
argv[0],
optarg);
argcount -= 2;
break;
case '+': /* optionsfrom */
optionsfrom(optarg, &argc, &argv, optind, stderr);
/* no return on error */
break;
default:
break;
}
previous = c;
}
if(argcount == 1) {
system("cat /proc/net/ipsec_klipsdebug");
exit(0);
}
em->em_magic = EM_MAGIC;
em->em_version = 0;
if(action) {
em->em_type = EMT_SETDEBUG;
} else {
#if 0
em->em_type = EMT_GETDEBUG;
#else
usage(program_name);
#endif
}
em->em_msglen = EMT_SETDEBUG_FLEN;
if((pfkey_sock = socket(PF_KEY, SOCK_RAW, PF_KEY_V2) ) < 0) {
fprintf(stderr, "%s: Trouble opening PF_KEY family socket with error: ",
program_name);
switch(errno) {
case ENOENT:
fprintf(stderr, "device does not exist. See FreeS/WAN installation procedure.\n");
break;
case EACCES:
fprintf(stderr, "access denied. ");
if(getuid() == 0) {
fprintf(stderr, "Check permissions. Should be 600.\n");
} else {
fprintf(stderr, "You must be root to open this file.\n");
}
break;
case EUNATCH:
fprintf(stderr, "Netlink not enabled OR KLIPS not loaded.\n");
break;
case ENODEV:
fprintf(stderr, "KLIPS not loaded or enabled.\n");
break;
case EBUSY:
fprintf(stderr, "KLIPS is busy. Most likely a serious internal error occured in a previous command. Please report as much detail as possible to development team.\n");
break;
case EINVAL:
fprintf(stderr, "Invalid argument, KLIPS not loaded or check kernel log messages for specifics.\n");
break;
case ENOBUFS:
fprintf(stderr, "No kernel memory to allocate SA.\n");
break;
case ESOCKTNOSUPPORT:
fprintf(stderr, "Algorithm support not available in the kernel. Please compile in support.\n");
break;
case EEXIST:
fprintf(stderr, "SA already in use. Delete old one first.\n");
break;
case ENXIO:
fprintf(stderr, "SA does not exist. Cannot delete.\n");
break;
case EAFNOSUPPORT:
fprintf(stderr, "KLIPS not loaded or enabled.\n");
break;
default:
fprintf(stderr, "Unknown file open error %d. Please report as much detail as possible to development team.\n", errno);
}
exit(1);
}
pfkey_extensions_init(extensions);
if((error = pfkey_msg_hdr_build(&extensions[0],
SADB_X_DEBUG,
0,
0,
++pfkey_seq,
getpid()))) {
fprintf(stderr, "%s: Trouble building message header, error=%d.\n",
program_name, error);
pfkey_extensions_free(extensions);
exit(1);
}
if((error = pfkey_x_debug_build(&extensions[SADB_X_EXT_DEBUG],
em->em_db_tn,
em->em_db_nl,
em->em_db_xf,
em->em_db_er,
em->em_db_sp,
em->em_db_rj,
em->em_db_es,
em->em_db_ah,
em->em_db_rx,
em->em_db_ky,
em->em_db_gz,
em->em_db_vb))) {
fprintf(stderr, "%s: Trouble building message header, error=%d.\n",
program_name, error);
pfkey_extensions_free(extensions);
exit(1);
}
if((error = pfkey_msg_build(&pfkey_msg, extensions, EXT_BITS_IN))) {
fprintf(stderr, "%s: Trouble building pfkey message, error=%d.\n",
program_name, error);
pfkey_extensions_free(extensions);
pfkey_msg_free(&pfkey_msg);
exit(1);
}
if((error = write(pfkey_sock,
pfkey_msg,
pfkey_msg->sadb_msg_len * IPSEC_PFKEYv2_ALIGN)) !=
(ssize_t)(pfkey_msg->sadb_msg_len * IPSEC_PFKEYv2_ALIGN)) {
fprintf(stderr,
"%s: pfkey write failed, tried to write %u octets, returning %d with errno=%d.\n",
program_name,
(unsigned)(pfkey_msg->sadb_msg_len * IPSEC_PFKEYv2_ALIGN),
error,
errno);
pfkey_extensions_free(extensions);
pfkey_msg_free(&pfkey_msg);
switch(errno) {
case EACCES:
fprintf(stderr, "access denied. ");
if(getuid() == 0) {
fprintf(stderr, "Check permissions. Should be 600.\n");
} else {
fprintf(stderr, "You must be root to open this file.\n");
}
break;
case EUNATCH:
fprintf(stderr, "Netlink not enabled OR KLIPS not loaded.\n");
break;
case EBUSY:
fprintf(stderr, "KLIPS is busy. Most likely a serious internal error occured in a previous command. Please report as much detail as possible to development team.\n");
break;
case EINVAL:
fprintf(stderr, "Invalid argument, check kernel log messages for specifics.\n");
break;
case ENODEV:
fprintf(stderr, "KLIPS not loaded or enabled.\n");
fprintf(stderr, "No device?!?\n");
break;
case ENOBUFS:
fprintf(stderr, "No kernel memory to allocate SA.\n");
break;
case ESOCKTNOSUPPORT:
fprintf(stderr, "Algorithm support not available in the kernel. Please compile in support.\n");
break;
case EEXIST:
fprintf(stderr, "SA already in use. Delete old one first.\n");
break;
case ENOENT:
fprintf(stderr, "device does not exist. See FreeS/WAN installation procedure.\n");
break;
case ENXIO:
fprintf(stderr, "SA does not exist. Cannot delete.\n");
break;
case ENOSPC:
fprintf(stderr, "no room in kernel SAref table. Cannot process request.\n");
break;
case ESPIPE:
fprintf(stderr, "kernel SAref table internal error. Cannot process request.\n");
break;
default:
fprintf(stderr, "Unknown socket write error %d. Please report as much detail as possible to development team.\n", errno);
}
exit(1);
}
if(pfkey_msg) {
pfkey_extensions_free(extensions);
pfkey_msg_free(&pfkey_msg);
}
(void) close(pfkey_sock); /* close the socket */
exit(0);
}
/*
* $Log: klipsdebug.c,v $
* Revision 1.53 2003/09/10 00:01:27 mcr
* fixes for gcc 3.3 from Matthias Bethke <Matthias.Bethke@gmx.net>
*
* Revision 1.52 2003/01/30 02:33:07 rgb
*
* Added ENOSPC for no room in SAref table and ESPIPE for SAref internal error.
*
* Revision 1.51 2002/10/04 03:52:46 dhr
*
* gcc3 now enforces C restriction on placement of labels
*
* Revision 1.50 2002/09/20 05:02:15 rgb
* Cleaned up pfkey_lib_debug usage.
*
* Revision 1.49 2002/07/25 18:59:23 rgb
* Fixed ia64 complaint.
*
* Revision 1.48 2002/07/23 02:58:58 rgb
* Fixed "opening" speeling mistake.
*
* Revision 1.47 2002/04/24 07:55:32 mcr
* #include patches and Makefiles for post-reorg compilation.
*
* Revision 1.46 2002/04/24 07:35:39 mcr
* Moved from ./klips/utils/klipsdebug.c,v
*
* Revision 1.45 2002/03/08 21:44:04 rgb
* Update for all GNU-compliant --version strings.
*
* Revision 1.44 2001/11/23 07:23:14 mcr
* pulled up klips2 Makefile and pf_key code.
*
* Revision 1.43 2001/11/22 05:44:01 henry
* new version stuff
*
* Revision 1.42.2.1 2001/10/13 18:22:21 mcr
* usage string was missing "netlink" and "pf_key" debug options.
*
* Revision 1.42 2001/09/07 22:24:07 rgb
* Added EAFNOSUPPORT socket open error code in case KLIPS is not loaded.
*
* Revision 1.41 2001/06/14 19:35:14 rgb
* Update copyright date.
*
* Revision 1.40 2001/05/21 02:02:54 rgb
* Eliminate 1-letter options.
*
* Revision 1.39 2001/05/16 05:07:19 rgb
* Fixed --label option in KLIPS manual utils to add the label to the
* command name rather than replace it in error text.
* Fix 'print table' non-option in KLIPS manual utils to deal with --label
* and --debug options.
*
* Revision 1.38 2000/10/11 03:56:54 rgb
* Initialise verbose field to zero on --all.
*
* Revision 1.37 2000/10/11 03:48:44 henry
* add a couple of overlooked parameters to a call
*
* Revision 1.36 2000/10/10 20:10:19 rgb
* Added support for debug_ipcomp and debug_verbose to klipsdebug.
*
* Revision 1.35 2000/09/08 19:16:51 rgb
* Change references from DEBUG_IPSEC to CONFIG_IPSEC_DEBUG.
* Removed all references to CONFIG_IPSEC_PFKEYv2.
*
* Revision 1.34 2000/08/27 01:48:30 rgb
* Update copyright.
*
* Revision 1.33 2000/07/26 03:41:46 rgb
* Changed all printf's to fprintf's. Fixed tncfg's usage to stderr.
*
* Revision 1.32 2000/06/28 05:53:09 rgb
* Mention that netlink is obsolete.
*
* Revision 1.31 2000/06/21 16:51:27 rgb
* Added no additional argument option to usage text.
*
* Revision 1.30 2000/03/16 06:40:49 rgb
* Hardcode PF_KEYv2 support.
*
* Revision 1.29 2000/01/21 06:23:34 rgb
* Added pfkeyv2 support to completely avoid netlink.
* Added --debug switch to command line.
* Changed name of debug switch bitfield pointer to avoid name
* conflict with command line debug switch.
*
* Revision 1.28 2000/01/13 08:10:38 rgb
* Added finer-grained 'tunnel-xmit' switch for debugging.
*
* Revision 1.27 1999/12/07 18:28:34 rgb
* Added headers to silence fussy compilers.
* Converted local functions to static to limit scope.
* Removed unused cruft.
* Changed types to unsigned to quiet compiler.
* Changed printf type from Lx to x to quiet compiler.
*
* Revision 1.26 1999/11/25 09:07:59 rgb
* Comment out unused variable.
*
* Revision 1.25 1999/11/23 23:06:26 rgb
* Sort out pfkey and freeswan headers, putting them in a library path.
*
* Revision 1.24 1999/06/10 16:11:15 rgb
* Add autoconf to use pfkey.
* Add argc==1 to use /proc/net/ipsec_klipsdebug output.
* Add error return code description for ECONNREFUSED.
*
* Revision 1.23 1999/05/05 22:02:34 rgb
* Add a quick and dirty port to 2.2 kernels by Marc Boucher <marc@mbsi.ca>.
*
* Revision 1.22 1999/04/29 15:26:15 rgb
* Add pfkey debugging support.
*
* Revision 1.21 1999/04/15 15:37:27 rgb
* Forward check changes from POST1_00 branch.
*
* Revision 1.15.2.2 1999/04/13 20:55:45 rgb
* Add experimental 'getdebug'.
*
* Revision 1.15.2.1 1999/03/30 17:01:37 rgb
* Make main() return type explicit.
*
* Revision 1.20 1999/04/12 01:27:10 henry
* Eric Young waived his advertising clause
*
* Revision 1.19 1999/04/11 01:24:53 henry
* tidy up --version, add copyright notice
*
* Revision 1.18 1999/04/11 00:12:08 henry
* GPL boilerplate
*
* Revision 1.17 1999/04/06 04:54:38 rgb
* Fix/Add RCSID Id: and Log: bits to make PHMDs happy. This includes
* patch shell fixes.
*
* Revision 1.16 1999/03/17 15:40:54 rgb
* Make explicit main() return type of int.
*
* Revision 1.15 1999/01/22 06:35:19 rgb
* 64-bit clean-up.
* Added algorithm switch code.
*
* Revision 1.14 1998/11/12 21:08:04 rgb
* Add --label option to identify caller from scripts.
*
* Revision 1.13 1998/10/31 06:35:16 rgb
* Fixed up comments in #endif directives.
*
* Revision 1.12 1998/10/22 06:36:22 rgb
* Added freeswan.h inclusion.
*
* Revision 1.11 1998/10/09 18:47:30 rgb
* Add 'optionfrom' to get more options from a named file.
*
* Revision 1.10 1998/10/09 04:35:31 rgb
* Changed help output from stderr to stdout.
* Changed error messages from stdout to stderr.
* Deleted old commented out cruft.
*
* Revision 1.9 1998/08/28 03:13:05 rgb
* Tidy up old cruft.
*
* Revision 1.8 1998/08/05 22:24:45 rgb
* Change includes to accomodate RH5.x
*
* Revision 1.7 1998/07/29 21:36:37 rgb
* Converted to long option names.
*
* Revision 1.6 1998/07/14 18:23:11 rgb
* Remove unused skbuff header.
*
* Revision 1.5 1998/07/09 18:14:10 rgb
* Added error checking to IP's and keys.
* Made most error messages more specific rather than spamming usage text.
* Added more descriptive kernel error return codes and messages.
* Converted all spi translations to unsigned.
* Removed all invocations of perror.
*
* Revision 1.4 1998/05/27 18:48:21 rgb
* Adding --help and --version directives.
*
* Revision 1.3 1998/05/18 21:19:09 rgb
* Added options for finer control of debugging switches.
*
* Revision 1.2 1998/05/12 02:26:27 rgb
* Fixed compile errors with IPSEC_DEBUG shut off in the kernel config.
*
* Revision 1.1 1998/04/23 21:07:34 rgb
* Added a userspace utility to change klips kernelspace debug switches.
*
* Revision 1.1.1.1 1998/04/08 05:35:09 henry
* RGB's ipsec-0.8pre2.tar.gz ipsec-0.8
*
* Revision 0.3 1996/11/20 14:51:32 ji
* Fixed problems with #include paths.
* Changed (incorrect) references to ipsp into ipsec.
*
* Revision 0.2 1996/11/08 15:46:29 ji
* First limited release.
*
*
*/
|