2 * ip_vs_proto_esp.c: ESP IPSec load balancing support for IPVS
4 * Version: $Id: ip_vs_proto_esp.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 esp_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 esp_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 esp_conn_schedule(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
118 int *verdict
, struct ip_vs_conn
**cpp
)
121 * ESP is only related traffic. Pass the packet to IP stack.
123 *verdict
= NF_ACCEPT
;
129 esp_debug_packet(struct ip_vs_protocol
*pp
, const struct sk_buff
*skb
,
130 int offset
, const char *msg
)
133 struct iphdr _iph
, *ih
;
135 ih
= skb_header_pointer(skb
, offset
, sizeof(_iph
), &_iph
);
137 sprintf(buf
, "%s TRUNCATED", pp
->name
);
139 sprintf(buf
, "%s %u.%u.%u.%u->%u.%u.%u.%u",
140 pp
->name
, NIPQUAD(ih
->saddr
),
143 printk(KERN_DEBUG
"IPVS: %s: %s\n", msg
, buf
);
147 static void esp_init(struct ip_vs_protocol
*pp
)
149 /* nothing to do now */
153 static void esp_exit(struct ip_vs_protocol
*pp
)
155 /* nothing to do now */
159 struct ip_vs_protocol ip_vs_protocol_esp
= {
161 .protocol
= IPPROTO_ESP
,
165 .conn_schedule
= esp_conn_schedule
,
166 .conn_in_get
= esp_conn_in_get
,
167 .conn_out_get
= esp_conn_out_get
,
168 .snat_handler
= NULL
,
169 .dnat_handler
= NULL
,
171 .state_transition
= NULL
,
172 .register_app
= NULL
,
173 .unregister_app
= NULL
,
174 .app_conn_bind
= NULL
,
175 .debug_packet
= esp_debug_packet
,
176 .timeout_change
= NULL
, /* ISAKMP */