⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 klipsdebug.c

📁 网上下到的一个很详细介绍VPN基础知识的资料
💻 C
📖 第 1 页 / 共 2 页
字号:
			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;		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)) !=	   pfkey_msg->sadb_msg_len * IPSEC_PFKEYv2_ALIGN) {		fprintf(stderr, "%s: pfkey write failed, tried to write %d octets, returning %d with errno=%d.\n",			program_name, 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;		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.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. * * */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -