188768458SSam Leffler /* $FreeBSD$ */ 288768458SSam Leffler /* $OpenBSD: ip_ah.h,v 1.29 2002/06/09 16:26:10 itojun Exp $ */ 3c398230bSWarner Losh /*- 488768458SSam Leffler * The authors of this code are John Ioannidis (ji@tla.org), 588768458SSam Leffler * Angelos D. Keromytis (kermit@csd.uch.gr) and 688768458SSam Leffler * Niels Provos (provos@physnet.uni-hamburg.de). 788768458SSam Leffler * 888768458SSam Leffler * The original version of this code was written by John Ioannidis 988768458SSam Leffler * for BSD/OS in Athens, Greece, in November 1995. 1088768458SSam Leffler * 1188768458SSam Leffler * Ported to OpenBSD and NetBSD, with additional transforms, in December 1996, 1288768458SSam Leffler * by Angelos D. Keromytis. 1388768458SSam Leffler * 1488768458SSam Leffler * Additional transforms and features in 1997 and 1998 by Angelos D. Keromytis 1588768458SSam Leffler * and Niels Provos. 1688768458SSam Leffler * 1788768458SSam Leffler * Additional features in 1999 by Angelos D. Keromytis. 1888768458SSam Leffler * 1988768458SSam Leffler * Copyright (C) 1995, 1996, 1997, 1998, 1999 John Ioannidis, 2088768458SSam Leffler * Angelos D. Keromytis and Niels Provos. 2188768458SSam Leffler * Copyright (c) 2001 Angelos D. Keromytis. 2288768458SSam Leffler * 2388768458SSam Leffler * Permission to use, copy, and modify this software with or without fee 2488768458SSam Leffler * is hereby granted, provided that this entire notice is included in 2588768458SSam Leffler * all copies of any software which is or includes a copy or 2688768458SSam Leffler * modification of this software. 2788768458SSam Leffler * You may use this code under the GNU public license if you so wish. Please 2888768458SSam Leffler * contribute changes back to the authors under this freer than GPL license 2988768458SSam Leffler * so that we may further the use of strong encryption without limitations to 3088768458SSam Leffler * all. 3188768458SSam Leffler * 3288768458SSam Leffler * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR 3388768458SSam Leffler * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY 3488768458SSam Leffler * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE 3588768458SSam Leffler * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR 3688768458SSam Leffler * PURPOSE. 3788768458SSam Leffler */ 3888768458SSam Leffler 3988768458SSam Leffler #ifndef _NETIPSEC_AH_VAR_H_ 4088768458SSam Leffler #define _NETIPSEC_AH_VAR_H_ 4188768458SSam Leffler 4288768458SSam Leffler /* 4388768458SSam Leffler * These define the algorithm indices into the histogram. They're 4488768458SSam Leffler * presently based on the PF_KEY v2 protocol values which is bogus; 4588768458SSam Leffler * they should be decoupled from the protocol at which time we can 4688768458SSam Leffler * pack them and reduce the size of the array to a minimum. 4788768458SSam Leffler */ 4888768458SSam Leffler #define AH_ALG_MAX 16 4988768458SSam Leffler 5088768458SSam Leffler struct ahstat { 51*c80211e3SAndrey V. Elsukov uint64_t ahs_hdrops; /* Packet shorter than header shows */ 52*c80211e3SAndrey V. Elsukov uint64_t ahs_nopf; /* Protocol family not supported */ 53*c80211e3SAndrey V. Elsukov uint64_t ahs_notdb; 54*c80211e3SAndrey V. Elsukov uint64_t ahs_badkcr; 55*c80211e3SAndrey V. Elsukov uint64_t ahs_badauth; 56*c80211e3SAndrey V. Elsukov uint64_t ahs_noxform; 57*c80211e3SAndrey V. Elsukov uint64_t ahs_qfull; 58*c80211e3SAndrey V. Elsukov uint64_t ahs_wrap; 59*c80211e3SAndrey V. Elsukov uint64_t ahs_replay; 60*c80211e3SAndrey V. Elsukov uint64_t ahs_badauthl; /* Bad authenticator length */ 61*c80211e3SAndrey V. Elsukov uint64_t ahs_input; /* Input AH packets */ 62*c80211e3SAndrey V. Elsukov uint64_t ahs_output; /* Output AH packets */ 63*c80211e3SAndrey V. Elsukov uint64_t ahs_invalid; /* Trying to use an invalid TDB */ 64*c80211e3SAndrey V. Elsukov uint64_t ahs_ibytes; /* Input bytes */ 65*c80211e3SAndrey V. Elsukov uint64_t ahs_obytes; /* Output bytes */ 66*c80211e3SAndrey V. Elsukov uint64_t ahs_toobig; /* Packet got larger than IP_MAXPACKET */ 67*c80211e3SAndrey V. Elsukov uint64_t ahs_pdrops; /* Packet blocked due to policy */ 68*c80211e3SAndrey V. Elsukov uint64_t ahs_crypto; /* Crypto processing failure */ 69*c80211e3SAndrey V. Elsukov uint64_t ahs_tunnel; /* Tunnel sanity check failure */ 70*c80211e3SAndrey V. Elsukov uint64_t ahs_hist[AH_ALG_MAX]; /* Per-algorithm op count */ 7188768458SSam Leffler }; 7288768458SSam Leffler 7388768458SSam Leffler #ifdef _KERNEL 74eddfbb76SRobert Watson VNET_DECLARE(int, ah_enable); 75eddfbb76SRobert Watson VNET_DECLARE(int, ah_cleartos); 76eddfbb76SRobert Watson VNET_DECLARE(struct ahstat, ahstat); 7782cea7e6SBjoern A. Zeeb 78a04d64d8SAndrey V. Elsukov #define AHSTAT_ADD(name, val) V_ahstat.name += (val) 79a04d64d8SAndrey V. Elsukov #define AHSTAT_INC(name) AHSTAT_ADD(name, 1) 8082cea7e6SBjoern A. Zeeb #define V_ah_enable VNET(ah_enable) 8182cea7e6SBjoern A. Zeeb #define V_ah_cleartos VNET(ah_cleartos) 821e77c105SRobert Watson #define V_ahstat VNET(ahstat) 8388768458SSam Leffler #endif /* _KERNEL */ 8488768458SSam Leffler #endif /*_NETIPSEC_AH_VAR_H_*/ 85