| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | #ifndef _XFRM_HASH_H
 | 
					
						
							|  |  |  | #define _XFRM_HASH_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/xfrm.h>
 | 
					
						
							|  |  |  | #include <linux/socket.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __xfrm4_addr_hash(const xfrm_address_t *addr) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return ntohl(addr->a4); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __xfrm6_addr_hash(const xfrm_address_t *addr) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return ntohl(addr->a6[2] ^ addr->a6[3]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __xfrm4_daddr_saddr_hash(const xfrm_address_t *daddr, | 
					
						
							|  |  |  | 						    const xfrm_address_t *saddr) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-04-20 19:06:52 -07:00
										 |  |  | 	u32 sum = (__force u32)daddr->a4 + (__force u32)saddr->a4; | 
					
						
							|  |  |  | 	return ntohl((__force __be32)sum); | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __xfrm6_daddr_saddr_hash(const xfrm_address_t *daddr, | 
					
						
							|  |  |  | 						    const xfrm_address_t *saddr) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return ntohl(daddr->a6[2] ^ daddr->a6[3] ^ | 
					
						
							|  |  |  | 		     saddr->a6[2] ^ saddr->a6[3]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __xfrm_dst_hash(const xfrm_address_t *daddr, | 
					
						
							|  |  |  | 					   const xfrm_address_t *saddr, | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 					   u32 reqid, unsigned short family, | 
					
						
							|  |  |  | 					   unsigned int hmask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int h = family ^ reqid; | 
					
						
							|  |  |  | 	switch (family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							|  |  |  | 		h ^= __xfrm4_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case AF_INET6: | 
					
						
							|  |  |  | 		h ^= __xfrm6_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return (h ^ (h >> 16)) & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned __xfrm_src_hash(const xfrm_address_t *daddr, | 
					
						
							|  |  |  | 				       const xfrm_address_t *saddr, | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 				       unsigned short family, | 
					
						
							|  |  |  | 				       unsigned int hmask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int h = family; | 
					
						
							|  |  |  | 	switch (family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							| 
									
										
										
										
											2006-10-03 15:56:09 -07:00
										 |  |  | 		h ^= __xfrm4_daddr_saddr_hash(daddr, saddr); | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case AF_INET6: | 
					
						
							| 
									
										
										
										
											2006-10-03 15:56:09 -07:00
										 |  |  | 		h ^= __xfrm6_daddr_saddr_hash(daddr, saddr); | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-05-14 10:58:26 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 	return (h ^ (h >> 16)) & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned int | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | __xfrm_spi_hash(const xfrm_address_t *daddr, __be32 spi, u8 proto, | 
					
						
							|  |  |  | 		unsigned short family, unsigned int hmask) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-09-27 18:49:35 -07:00
										 |  |  | 	unsigned int h = (__force u32)spi ^ proto; | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 	switch (family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							|  |  |  | 		h ^= __xfrm4_addr_hash(daddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case AF_INET6: | 
					
						
							|  |  |  | 		h ^= __xfrm6_addr_hash(daddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return (h ^ (h >> 10) ^ (h >> 20)) & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline unsigned int __idx_hash(u32 index, unsigned int hmask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return (index ^ (index >> 8)) & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __sel_hash(const struct xfrm_selector *sel, | 
					
						
							|  |  |  | 				      unsigned short family, unsigned int hmask) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | 	const xfrm_address_t *daddr = &sel->daddr; | 
					
						
							|  |  |  | 	const xfrm_address_t *saddr = &sel->saddr; | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 	unsigned int h = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							|  |  |  | 		if (sel->prefixlen_d != 32 || | 
					
						
							|  |  |  | 		    sel->prefixlen_s != 32) | 
					
						
							|  |  |  | 			return hmask + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		h = __xfrm4_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case AF_INET6: | 
					
						
							|  |  |  | 		if (sel->prefixlen_d != 128 || | 
					
						
							|  |  |  | 		    sel->prefixlen_s != 128) | 
					
						
							|  |  |  | 			return hmask + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		h = __xfrm6_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-05-14 10:58:26 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 	h ^= (h >> 16); | 
					
						
							|  |  |  | 	return h & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 00:33:19 -05:00
										 |  |  | static inline unsigned int __addr_hash(const xfrm_address_t *daddr, | 
					
						
							|  |  |  | 				       const xfrm_address_t *saddr, | 
					
						
							|  |  |  | 				       unsigned short family, unsigned int hmask) | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int h = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (family) { | 
					
						
							|  |  |  | 	case AF_INET: | 
					
						
							|  |  |  | 		h = __xfrm4_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case AF_INET6: | 
					
						
							|  |  |  | 		h = __xfrm6_daddr_saddr_hash(daddr, saddr); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2010-05-14 10:58:26 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-24 04:50:50 -07:00
										 |  |  | 	h ^= (h >> 16); | 
					
						
							|  |  |  | 	return h & hmask; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct hlist_head *xfrm_hash_alloc(unsigned int sz); | 
					
						
							|  |  |  | extern void xfrm_hash_free(struct hlist_head *n, unsigned int sz); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* _XFRM_HASH_H */
 |