| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | #include <linux/err.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							|  |  |  | #include <net/ip.h>
 | 
					
						
							|  |  |  | #include <net/xfrm.h>
 | 
					
						
							|  |  |  | #include <net/ah.h>
 | 
					
						
							|  |  |  | #include <linux/crypto.h>
 | 
					
						
							|  |  |  | #include <linux/pfkeyv2.h>
 | 
					
						
							| 
									
										
										
										
											2007-10-09 13:33:35 -07:00
										 |  |  | #include <linux/spinlock.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <net/icmp.h>
 | 
					
						
							| 
									
										
										
										
											2005-12-27 02:43:12 -02:00
										 |  |  | #include <net/protocol.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Clear mutable options and find final destination to substitute
 | 
					
						
							|  |  |  |  * into IP header for icv calculation. Options are already checked | 
					
						
							|  |  |  |  * for validity, so paranoia is not required. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-11-08 00:23:14 -08:00
										 |  |  | static int ip_clear_mutable_options(struct iphdr *iph, __be32 *daddr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned char * optptr = (unsigned char*)(iph+1); | 
					
						
							|  |  |  | 	int  l = iph->ihl*4 - sizeof(struct iphdr); | 
					
						
							|  |  |  | 	int  optlen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (l > 0) { | 
					
						
							|  |  |  | 		switch (*optptr) { | 
					
						
							|  |  |  | 		case IPOPT_END: | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		case IPOPT_NOOP: | 
					
						
							|  |  |  | 			l--; | 
					
						
							|  |  |  | 			optptr++; | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		optlen = optptr[1]; | 
					
						
							|  |  |  | 		if (optlen<2 || optlen>l) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 		switch (*optptr) { | 
					
						
							|  |  |  | 		case IPOPT_SEC: | 
					
						
							|  |  |  | 		case 0x85:	/* Some "Extended Security" crap. */ | 
					
						
							| 
									
										
										
										
											2006-08-03 16:46:20 -07:00
										 |  |  | 		case IPOPT_CIPSO: | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		case IPOPT_RA: | 
					
						
							|  |  |  | 		case 0x80|21:	/* RFC1770 */ | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case IPOPT_LSRR: | 
					
						
							|  |  |  | 		case IPOPT_SSRR: | 
					
						
							|  |  |  | 			if (optlen < 6) | 
					
						
							|  |  |  | 				return -EINVAL; | 
					
						
							|  |  |  | 			memcpy(daddr, optptr+optlen-4, 4); | 
					
						
							|  |  |  | 			/* Fall through */ | 
					
						
							|  |  |  | 		default: | 
					
						
							| 
									
										
											  
											
												[IPSEC] AH4: Update IPv4 options handling to conform to RFC 4302.
In testing our ESP/AH offload hardware, I discovered an issue with how
AH handles mutable fields in IPv4.  RFC 4302 (AH) states the following
on the subject:
        For IPv4, the entire option is viewed as a unit; so even
        though the type and length fields within most options are immutable
        in transit, if an option is classified as mutable, the entire option
        is zeroed for ICV computation purposes.
The current implementation does not zero the type and length fields,
resulting in authentication failures when communicating with hosts
that do (i.e. FreeBSD).
I have tested record route and timestamp options (ping -R and ping -T)
on a small network involving Windows XP, FreeBSD 6.2, and Linux hosts,
with one router.  In the presence of these options, the FreeBSD and
Linux hosts (with the patch or with the hardware) can communicate.
The Windows XP host simply fails to accept these packets with or
without the patch.
I have also been trying to test source routing options (using
traceroute -g), but haven't had much luck getting this option to work
*without* AH, let alone with.
Signed-off-by: Nick Bowler <nbowler@ellipticsemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
											
										 
											2007-08-22 12:33:51 -07:00
										 |  |  | 			memset(optptr, 0, optlen); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		l -= optlen; | 
					
						
							|  |  |  | 		optptr += optlen; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int ah_output(struct xfrm_state *x, struct sk_buff *skb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 	struct iphdr *iph, *top_iph; | 
					
						
							|  |  |  | 	struct ip_auth_hdr *ah; | 
					
						
							|  |  |  | 	struct ah_data *ahp; | 
					
						
							|  |  |  | 	union { | 
					
						
							|  |  |  | 		struct iphdr	iph; | 
					
						
							|  |  |  | 		char 		buf[60]; | 
					
						
							|  |  |  | 	} tmp_iph; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:44:06 -07:00
										 |  |  | 	skb_push(skb, -skb_network_offset(skb)); | 
					
						
							| 
									
										
										
										
											2007-04-20 22:47:35 -07:00
										 |  |  | 	top_iph = ip_hdr(skb); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	iph = &tmp_iph.iph; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	iph->tos = top_iph->tos; | 
					
						
							|  |  |  | 	iph->ttl = top_iph->ttl; | 
					
						
							|  |  |  | 	iph->frag_off = top_iph->frag_off; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (top_iph->ihl != 5) { | 
					
						
							|  |  |  | 		iph->daddr = top_iph->daddr; | 
					
						
							|  |  |  | 		memcpy(iph+1, top_iph+1, top_iph->ihl*4 - sizeof(struct iphdr)); | 
					
						
							|  |  |  | 		err = ip_clear_mutable_options(top_iph, &top_iph->daddr); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							|  |  |  | 			goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	ah = ip_auth_hdr(skb); | 
					
						
							| 
									
										
										
										
											2007-10-10 15:44:44 -07:00
										 |  |  | 	ah->nexthdr = *skb_mac_header(skb); | 
					
						
							|  |  |  | 	*skb_mac_header(skb) = IPPROTO_AH; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	top_iph->tos = 0; | 
					
						
							|  |  |  | 	top_iph->tot_len = htons(skb->len); | 
					
						
							|  |  |  | 	top_iph->frag_off = 0; | 
					
						
							|  |  |  | 	top_iph->ttl = 0; | 
					
						
							|  |  |  | 	top_iph->check = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ahp = x->data; | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	ah->hdrlen  = (XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len) >> 2) - 2; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ah->reserved = 0; | 
					
						
							|  |  |  | 	ah->spi = x->id.spi; | 
					
						
							| 
									
										
										
										
											2008-02-12 22:50:35 -08:00
										 |  |  | 	ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq.output); | 
					
						
							| 
									
										
										
										
											2007-10-09 13:33:35 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_bh(&x->lock); | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	err = ah_mac_digest(ahp, skb, ah->auth_data); | 
					
						
							| 
									
										
										
										
											2007-10-09 13:33:35 -07:00
										 |  |  | 	memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len); | 
					
						
							|  |  |  | 	spin_unlock_bh(&x->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	top_iph->tos = iph->tos; | 
					
						
							|  |  |  | 	top_iph->ttl = iph->ttl; | 
					
						
							|  |  |  | 	top_iph->frag_off = iph->frag_off; | 
					
						
							|  |  |  | 	if (top_iph->ihl != 5) { | 
					
						
							|  |  |  | 		top_iph->daddr = iph->daddr; | 
					
						
							|  |  |  | 		memcpy(top_iph+1, iph+1, top_iph->ihl*4 - sizeof(struct iphdr)); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | error: | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-01 00:52:46 -08:00
										 |  |  | static int ah_input(struct xfrm_state *x, struct sk_buff *skb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ah_hlen; | 
					
						
							| 
									
										
										
										
											2006-05-27 23:06:13 -07:00
										 |  |  | 	int ihl; | 
					
						
							| 
									
										
										
										
											2007-10-10 15:46:21 -07:00
										 |  |  | 	int nexthdr; | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	int err = -EINVAL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct iphdr *iph; | 
					
						
							|  |  |  | 	struct ip_auth_hdr *ah; | 
					
						
							|  |  |  | 	struct ah_data *ahp; | 
					
						
							|  |  |  | 	char work_buf[60]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	if (!pskb_may_pull(skb, sizeof(*ah))) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	ah = (struct ip_auth_hdr *)skb->data; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ahp = x->data; | 
					
						
							| 
									
										
										
										
											2007-10-10 15:46:21 -07:00
										 |  |  | 	nexthdr = ah->nexthdr; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ah_hlen = (ah->hdrlen + 2) << 2; | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	if (ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_full_len) && | 
					
						
							|  |  |  | 	    ah_hlen != XFRM_ALIGN8(sizeof(*ah) + ahp->icv_trunc_len)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!pskb_may_pull(skb, ah_hlen)) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* We are going to _remove_ AH header to keep sockets happy,
 | 
					
						
							|  |  |  | 	 * so... Later this can change. */ | 
					
						
							|  |  |  | 	if (skb_cloned(skb) && | 
					
						
							|  |  |  | 	    pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	skb->ip_summed = CHECKSUM_NONE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	ah = (struct ip_auth_hdr *)skb->data; | 
					
						
							| 
									
										
										
										
											2007-04-20 22:47:35 -07:00
										 |  |  | 	iph = ip_hdr(skb); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-10 20:50:43 -07:00
										 |  |  | 	ihl = skb->data - skb_network_header(skb); | 
					
						
							| 
									
										
										
										
											2006-05-27 23:06:13 -07:00
										 |  |  | 	memcpy(work_buf, iph, ihl); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	iph->ttl = 0; | 
					
						
							|  |  |  | 	iph->tos = 0; | 
					
						
							|  |  |  | 	iph->frag_off = 0; | 
					
						
							|  |  |  | 	iph->check = 0; | 
					
						
							| 
									
										
										
										
											2006-05-27 23:06:13 -07:00
										 |  |  | 	if (ihl > sizeof(*iph)) { | 
					
						
							| 
									
										
										
										
											2006-11-08 00:23:14 -08:00
										 |  |  | 		__be32 dummy; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (ip_clear_mutable_options(iph, &dummy)) | 
					
						
							|  |  |  | 			goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-11-13 21:45:58 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock(&x->lock); | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		u8 auth_data[MAX_AH_AUTH_LEN]; | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len); | 
					
						
							| 
									
										
										
										
											2006-05-27 23:06:13 -07:00
										 |  |  | 		skb_push(skb, ihl); | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 		err = ah_mac_digest(ahp, skb, ah->auth_data); | 
					
						
							|  |  |  | 		if (err) | 
					
						
							| 
									
										
										
										
											2007-11-13 21:45:58 -08:00
										 |  |  | 			goto unlock; | 
					
						
							| 
									
										
										
										
											2007-12-30 21:10:30 -08:00
										 |  |  | 		if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) | 
					
						
							| 
									
										
										
										
											2007-12-16 15:55:02 -08:00
										 |  |  | 			err = -EBADMSG; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-11-13 21:45:58 -08:00
										 |  |  | unlock: | 
					
						
							|  |  |  | 	spin_unlock(&x->lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (err) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-10 21:21:55 -07:00
										 |  |  | 	skb->network_header += ah_hlen; | 
					
						
							| 
									
										
										
										
											2007-03-13 13:06:52 -03:00
										 |  |  | 	memcpy(skb_network_header(skb), work_buf, ihl); | 
					
						
							| 
									
										
										
										
											2007-04-10 21:21:55 -07:00
										 |  |  | 	skb->transport_header = skb->network_header; | 
					
						
							| 
									
										
										
										
											2006-05-27 23:06:13 -07:00
										 |  |  | 	__skb_pull(skb, ah_hlen + ihl); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:46:21 -07:00
										 |  |  | 	return nexthdr; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | out: | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	return err; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ah4_err(struct sk_buff *skb, u32 info) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-25 17:59:27 -08:00
										 |  |  | 	struct net *net = dev_net(skb->dev); | 
					
						
							| 
									
										
										
										
											2008-11-03 00:23:42 -08:00
										 |  |  | 	struct iphdr *iph = (struct iphdr *)skb->data; | 
					
						
							|  |  |  | 	struct ip_auth_hdr *ah = (struct ip_auth_hdr *)(skb->data+(iph->ihl<<2)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct xfrm_state *x; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-03-13 14:43:18 -03:00
										 |  |  | 	if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH || | 
					
						
							|  |  |  | 	    icmp_hdr(skb)->code != ICMP_FRAG_NEEDED) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-25 17:59:27 -08:00
										 |  |  | 	x = xfrm_state_lookup(net, (xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (!x) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n", | 
					
						
							|  |  |  | 	       ntohl(ah->spi), ntohl(iph->daddr)); | 
					
						
							|  |  |  | 	xfrm_state_put(x); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-06-20 13:18:08 -07:00
										 |  |  | static int ah_init_state(struct xfrm_state *x) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct ah_data *ahp = NULL; | 
					
						
							|  |  |  | 	struct xfrm_algo_desc *aalg_desc; | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	struct crypto_hash *tfm; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!x->aalg) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (x->encap) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-07-21 14:51:30 -07:00
										 |  |  | 	ahp = kzalloc(sizeof(*ahp), GFP_KERNEL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (ahp == NULL) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC); | 
					
						
							|  |  |  | 	if (IS_ERR(tfm)) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ahp->tfm = tfm; | 
					
						
							| 
									
										
										
										
											2007-10-08 17:14:34 -07:00
										 |  |  | 	if (crypto_hash_setkey(tfm, x->aalg->alg_key, | 
					
						
							|  |  |  | 			       (x->aalg->alg_key_len + 7) / 8)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Lookup the algorithm description maintained by xfrm_algo, | 
					
						
							|  |  |  | 	 * verify crypto transform properties, and store information | 
					
						
							|  |  |  | 	 * we need for AH processing.  This lookup cannot fail here | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	 * after a successful crypto_alloc_hash(). | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0); | 
					
						
							|  |  |  | 	BUG_ON(!aalg_desc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (aalg_desc->uinfo.auth.icv_fullbits/8 != | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	    crypto_hash_digestsize(tfm)) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		printk(KERN_INFO "AH: %s digestsize %u != %hu\n", | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 		       x->aalg->alg_name, crypto_hash_digestsize(tfm), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       aalg_desc->uinfo.auth.icv_fullbits/8); | 
					
						
							|  |  |  | 		goto error; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8; | 
					
						
							|  |  |  | 	ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8; | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN); | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!ahp->work_icv) | 
					
						
							|  |  |  | 		goto error; | 
					
						
							| 
									
										
										
										
											2007-02-09 23:24:47 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 15:45:25 -07:00
										 |  |  | 	x->props.header_len = XFRM_ALIGN8(sizeof(struct ip_auth_hdr) + | 
					
						
							|  |  |  | 					  ahp->icv_trunc_len); | 
					
						
							| 
									
										
										
										
											2006-09-22 15:05:15 -07:00
										 |  |  | 	if (x->props.mode == XFRM_MODE_TUNNEL) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		x->props.header_len += sizeof(struct iphdr); | 
					
						
							|  |  |  | 	x->data = ahp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | error: | 
					
						
							|  |  |  | 	if (ahp) { | 
					
						
							| 
									
										
										
										
											2005-09-01 17:44:29 -07:00
										 |  |  | 		kfree(ahp->work_icv); | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 		crypto_free_hash(ahp->tfm); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		kfree(ahp); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return -EINVAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ah_destroy(struct xfrm_state *x) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ah_data *ahp = x->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ahp) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-09-01 17:44:29 -07:00
										 |  |  | 	kfree(ahp->work_icv); | 
					
						
							| 
									
										
										
										
											2006-08-20 14:24:50 +10:00
										 |  |  | 	crypto_free_hash(ahp->tfm); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	kfree(ahp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-30 19:11:50 -08:00
										 |  |  | static const struct xfrm_type ah_type = | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	.description	= "AH4", | 
					
						
							|  |  |  | 	.owner		= THIS_MODULE, | 
					
						
							|  |  |  | 	.proto	     	= IPPROTO_AH, | 
					
						
							| 
									
										
										
										
											2007-10-08 17:25:53 -07:00
										 |  |  | 	.flags		= XFRM_TYPE_REPLAY_PROT, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.init_state	= ah_init_state, | 
					
						
							|  |  |  | 	.destructor	= ah_destroy, | 
					
						
							|  |  |  | 	.input		= ah_input, | 
					
						
							|  |  |  | 	.output		= ah_output | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-14 12:21:47 +00:00
										 |  |  | static const struct net_protocol ah4_protocol = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.handler	=	xfrm4_rcv, | 
					
						
							|  |  |  | 	.err_handler	=	ah4_err, | 
					
						
							|  |  |  | 	.no_policy	=	1, | 
					
						
							| 
									
										
										
										
											2008-11-25 17:59:27 -08:00
										 |  |  | 	.netns_ok	=	1, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init ah4_init(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (xfrm_register_type(&ah_type, AF_INET) < 0) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "ip ah init: can't add xfrm type\n"); | 
					
						
							|  |  |  | 		return -EAGAIN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (inet_add_protocol(&ah4_protocol, IPPROTO_AH) < 0) { | 
					
						
							|  |  |  | 		printk(KERN_INFO "ip ah init: can't add protocol\n"); | 
					
						
							|  |  |  | 		xfrm_unregister_type(&ah_type, AF_INET); | 
					
						
							|  |  |  | 		return -EAGAIN; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __exit ah4_fini(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (inet_del_protocol(&ah4_protocol, IPPROTO_AH) < 0) | 
					
						
							|  |  |  | 		printk(KERN_INFO "ip ah close: can't remove protocol\n"); | 
					
						
							|  |  |  | 	if (xfrm_unregister_type(&ah_type, AF_INET) < 0) | 
					
						
							|  |  |  | 		printk(KERN_INFO "ip ah close: can't remove xfrm type\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module_init(ah4_init); | 
					
						
							|  |  |  | module_exit(ah4_fini); | 
					
						
							|  |  |  | MODULE_LICENSE("GPL"); | 
					
						
							| 
									
										
										
										
											2007-06-26 23:57:49 -07:00
										 |  |  | MODULE_ALIAS_XFRM_TYPE(AF_INET, XFRM_PROTO_AH); |