2 * ip_vs_proto_ah.c: AH IPSec load balancing support for IPVS
4 * Version: $Id: ip_vs_proto_ah.c,v 1.1 2003/07/04 15:04:37 wensong Exp $
6 * Authors: Julian Anastasov <ja@ssi.bg>, February 2002
7 * Wensong Zhang <wensong@linuxvirtualserver.org>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation;
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/netfilter.h>
20 #include <linux/netfilter_ipv4.h>
22 #include <net/ip_vs.h>
40 #define PORT_ISAKMP 500
43 static struct ip_vs_conn *
44 ah_conn_in_get(const struct sk_buff *skb,
45 struct ip_vs_protocol *pp,
46 const struct iphdr *iph,
47 unsigned int proto_off,
50 struct ip_vs_conn *cp;
52 if (likely(!inverse)) {
53 cp = ip_vs_conn_in_get(IPPROTO_UDP,
59 cp = ip_vs_conn_in_get(IPPROTO_UDP,
68 * We are not sure if the packet is from our
69 * service, so our conn_schedule hook should return NF_ACCEPT
71 IP_VS_DBG(12, "Unknown ISAKMP entry for outin packet "
72 "%s%s %u.%u.%u.%u->%u.%u.%u.%u\n",
73 inverse ? "ICMP+" : "",
83 static struct ip_vs_conn *
84 ah_conn_out_get(const struct sk_buff *skb, struct ip_vs_protocol *pp,
85 const struct iphdr *iph, unsigned int proto_off, int inverse)
87 struct ip_vs_conn *cp;
89 if (likely(!inverse)) {
90 cp = ip_vs_conn_out_get(IPPROTO_UDP,
96 cp = ip_vs_conn_out_get(IPPROTO_UDP,
104 IP_VS_DBG(12, "Unknown ISAKMP entry for inout packet "
105 "%s%s %u.%u.%u.%u->%u.%u.%u.%u\n",
106 inverse ? "ICMP+" : "",
109 NIPQUAD(iph->daddr));
117 ah_conn_schedule(struct sk_buff *skb,
118 struct ip_vs_protocol *pp,
119 int *verdict, struct ip_vs_conn **cpp)
122 * AH is only related traffic. Pass the packet to IP stack.
124 *verdict = NF_ACCEPT;
130 ah_debug_packet(struct ip_vs_protocol *pp, const struct sk_buff *skb,
131 int offset, const char *msg)
134 struct iphdr _iph, *ih;
136 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
138 sprintf(buf, "%s TRUNCATED", pp->name);
140 sprintf(buf, "%s %u.%u.%u.%u->%u.%u.%u.%u",
141 pp->name, NIPQUAD(ih->saddr),
144 printk(KERN_DEBUG "IPVS: %s: %s\n", msg, buf);
148 static void ah_init(struct ip_vs_protocol *pp)
150 /* nothing to do now */
154 static void ah_exit(struct ip_vs_protocol *pp)
156 /* nothing to do now */
160 struct ip_vs_protocol ip_vs_protocol_ah = {
162 .protocol = IPPROTO_AH,
167 .conn_schedule = ah_conn_schedule,
168 .conn_in_get = ah_conn_in_get,
169 .conn_out_get = ah_conn_out_get,
170 .snat_handler = NULL,
171 .dnat_handler = NULL,
173 .state_transition = NULL,
174 .register_app = NULL,
175 .unregister_app = NULL,
176 .app_conn_bind = NULL,
177 .debug_packet = ah_debug_packet,
178 .timeout_change = NULL, /* ISAKMP */
179 .set_state_timeout = NULL,