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;
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/netfilter.h>
18 #include <linux/netfilter_ipv4.h>
20 #include <net/ip_vs.h>
38 #define PORT_ISAKMP 500
41 static struct ip_vs_conn
*
42 esp_conn_in_get(const struct sk_buff
*skb
,
43 struct ip_vs_protocol
*pp
,
44 const struct iphdr
*iph
,
45 unsigned int proto_off
,
48 struct ip_vs_conn
*cp
;
50 if (likely(!inverse
)) {
51 cp
= ip_vs_conn_in_get(IPPROTO_UDP
,
53 __constant_htons(PORT_ISAKMP
),
55 __constant_htons(PORT_ISAKMP
));
57 cp
= ip_vs_conn_in_get(IPPROTO_UDP
,
59 __constant_htons(PORT_ISAKMP
),
61 __constant_htons(PORT_ISAKMP
));
66 * We are not sure if the packet is from our
67 * service, so our conn_schedule hook should return NF_ACCEPT
69 IP_VS_DBG(12, "Unknown ISAKMP entry for outin packet "
70 "%s%s %u.%u.%u.%u->%u.%u.%u.%u\n",
71 inverse
? "ICMP+" : "",
81 static struct ip_vs_conn
*
82 esp_conn_out_get(const struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
83 const struct iphdr
*iph
, unsigned int proto_off
, int inverse
)
85 struct ip_vs_conn
*cp
;
87 if (likely(!inverse
)) {
88 cp
= ip_vs_conn_out_get(IPPROTO_UDP
,
90 __constant_htons(PORT_ISAKMP
),
92 __constant_htons(PORT_ISAKMP
));
94 cp
= ip_vs_conn_out_get(IPPROTO_UDP
,
96 __constant_htons(PORT_ISAKMP
),
98 __constant_htons(PORT_ISAKMP
));
102 IP_VS_DBG(12, "Unknown ISAKMP entry for inout packet "
103 "%s%s %u.%u.%u.%u->%u.%u.%u.%u\n",
104 inverse
? "ICMP+" : "",
107 NIPQUAD(iph
->daddr
));
115 esp_conn_schedule(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
116 int *verdict
, struct ip_vs_conn
**cpp
)
119 * ESP is only related traffic. Pass the packet to IP stack.
121 *verdict
= NF_ACCEPT
;
127 esp_debug_packet(struct ip_vs_protocol
*pp
, const struct sk_buff
*skb
,
128 int offset
, const char *msg
)
131 struct iphdr _iph
, *ih
;
133 ih
= skb_header_pointer(skb
, offset
, sizeof(_iph
), &_iph
);
135 sprintf(buf
, "%s TRUNCATED", pp
->name
);
137 sprintf(buf
, "%s %u.%u.%u.%u->%u.%u.%u.%u",
138 pp
->name
, NIPQUAD(ih
->saddr
),
141 printk(KERN_DEBUG
"IPVS: %s: %s\n", msg
, buf
);
145 static void esp_init(struct ip_vs_protocol
*pp
)
147 /* nothing to do now */
151 static void esp_exit(struct ip_vs_protocol
*pp
)
153 /* nothing to do now */
157 struct ip_vs_protocol ip_vs_protocol_esp
= {
159 .protocol
= IPPROTO_ESP
,
163 .conn_schedule
= esp_conn_schedule
,
164 .conn_in_get
= esp_conn_in_get
,
165 .conn_out_get
= esp_conn_out_get
,
166 .snat_handler
= NULL
,
167 .dnat_handler
= NULL
,
169 .state_transition
= NULL
,
170 .register_app
= NULL
,
171 .unregister_app
= NULL
,
172 .app_conn_bind
= NULL
,
173 .debug_packet
= esp_debug_packet
,
174 .timeout_change
= NULL
, /* ISAKMP */