blob: e292e5bddc7000d3fbbb9f1b130dd3039dcee296 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS An implementation of the IP virtual server support for the
3 * LINUX operating system. IPVS is now implemented as a module
4 * over the NetFilter framework. IPVS can be used to build a
5 * high-performance and highly available server based on a
6 * cluster of servers.
7 *
Hans Schillstromb880c1f2010-11-19 14:25:14 +01008 * Version 1, is capable of handling both version 0 and 1 messages.
9 * Version 0 is the plain old format.
10 * Note Version 0 receivers will just drop Ver 1 messages.
11 * Version 1 is capable of handle IPv6, Persistence data,
12 * time-outs, and firewall marks.
13 * In ver.1 "ip_vs_sync_conn_options" will be sent in netw. order.
14 * Ver. 0 can be turned on by sysctl -w net.ipv4.vs.sync_version=0
15 *
16 * Definitions Message: is a complete datagram
17 * Sync_conn: is a part of a Message
18 * Param Data is an option to a Sync_conn.
19 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
21 *
22 * ip_vs_sync: sync connection info from master load balancer to backups
23 * through multicast
24 *
25 * Changes:
26 * Alexandre Cassen : Added master & backup support at a time.
27 * Alexandre Cassen : Added SyncID support for incoming sync
28 * messages filtering.
29 * Justin Ossevoort : Fix endian problem on sync message size.
Hans Schillstromb880c1f2010-11-19 14:25:14 +010030 * Hans Schillstrom : Added Version 1: i.e. IPv6,
31 * Persistence support, fwmark and time-out.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
Hannes Eder9aada7a2009-07-30 14:29:44 -070034#define KMSG_COMPONENT "IPVS"
35#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/slab.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020039#include <linux/inetdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/net.h>
41#include <linux/completion.h>
42#include <linux/delay.h>
43#include <linux/skbuff.h>
44#include <linux/in.h>
45#include <linux/igmp.h> /* for ip_mc_join_group */
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020046#include <linux/udp.h>
Sven Wegenere6dd7312008-07-16 11:13:43 +000047#include <linux/err.h>
Sven Wegener998e7a72008-07-16 11:13:50 +000048#include <linux/kthread.h>
Sven Wegenerba6fd852008-07-16 11:13:56 +000049#include <linux/wait.h>
Sven Wegenere6f225e2008-09-19 20:41:56 +020050#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Hans Schillstromfe5e7a12010-11-19 14:25:12 +010052#include <asm/unaligned.h> /* Used for ntoh_seq and hton_seq */
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/ip.h>
55#include <net/sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#include <net/ip_vs.h>
58
59#define IP_VS_SYNC_GROUP 0xe0000051 /* multicast addr - 224.0.0.81 */
60#define IP_VS_SYNC_PORT 8848 /* multicast port */
61
Hans Schillstrom2981bc92010-11-19 14:25:11 +010062#define SYNC_PROTO_VER 1 /* Protocol version in header */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/*
65 * IPVS sync connection entry
Hans Schillstrom2981bc92010-11-19 14:25:11 +010066 * Version 0, i.e. original version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 */
Hans Schillstrom2981bc92010-11-19 14:25:11 +010068struct ip_vs_sync_conn_v0 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 __u8 reserved;
70
71 /* Protocol, addresses and port numbers */
72 __u8 protocol; /* Which protocol (TCP/UDP) */
Al Viro014d7302006-09-28 14:29:52 -070073 __be16 cport;
74 __be16 vport;
75 __be16 dport;
76 __be32 caddr; /* client address */
77 __be32 vaddr; /* virtual address */
78 __be32 daddr; /* destination address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* Flags and state transition */
Al Viro014d7302006-09-28 14:29:52 -070081 __be16 flags; /* status flags */
82 __be16 state; /* state info */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 /* The sequence options start here */
85};
86
87struct ip_vs_sync_conn_options {
88 struct ip_vs_seq in_seq; /* incoming seq. struct */
89 struct ip_vs_seq out_seq; /* outgoing seq. struct */
90};
91
Hans Schillstrom2981bc92010-11-19 14:25:11 +010092/*
93 Sync Connection format (sync_conn)
94
95 0 1 2 3
96 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
97 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
98 | Type | Protocol | Ver. | Size |
99 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
100 | Flags |
101 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102 | State | cport |
103 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
104 | vport | dport |
105 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106 | fwmark |
107 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
108 | timeout (in sec.) |
109 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
110 | ... |
111 | IP-Addresses (v4 or v6) |
112 | ... |
113 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114 Optional Parameters.
115 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116 | Param. Type | Param. Length | Param. data |
117 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
118 | ... |
119 | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120 | | Param Type | Param. Length |
121 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
122 | Param data |
123 | Last Param data should be padded for 32 bit alignment |
124 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
125*/
126
127/*
128 * Type 0, IPv4 sync connection format
129 */
130struct ip_vs_sync_v4 {
131 __u8 type;
132 __u8 protocol; /* Which protocol (TCP/UDP) */
133 __be16 ver_size; /* Version msb 4 bits */
134 /* Flags and state transition */
135 __be32 flags; /* status flags */
136 __be16 state; /* state info */
137 /* Protocol, addresses and port numbers */
138 __be16 cport;
139 __be16 vport;
140 __be16 dport;
141 __be32 fwmark; /* Firewall mark from skb */
142 __be32 timeout; /* cp timeout */
143 __be32 caddr; /* client address */
144 __be32 vaddr; /* virtual address */
145 __be32 daddr; /* destination address */
146 /* The sequence options start here */
147 /* PE data padded to 32bit alignment after seq. options */
148};
149/*
150 * Type 2 messages IPv6
151 */
152struct ip_vs_sync_v6 {
153 __u8 type;
154 __u8 protocol; /* Which protocol (TCP/UDP) */
155 __be16 ver_size; /* Version msb 4 bits */
156 /* Flags and state transition */
157 __be32 flags; /* status flags */
158 __be16 state; /* state info */
159 /* Protocol, addresses and port numbers */
160 __be16 cport;
161 __be16 vport;
162 __be16 dport;
163 __be32 fwmark; /* Firewall mark from skb */
164 __be32 timeout; /* cp timeout */
165 struct in6_addr caddr; /* client address */
166 struct in6_addr vaddr; /* virtual address */
167 struct in6_addr daddr; /* destination address */
168 /* The sequence options start here */
169 /* PE data padded to 32bit alignment after seq. options */
170};
171
172union ip_vs_sync_conn {
173 struct ip_vs_sync_v4 v4;
174 struct ip_vs_sync_v6 v6;
175};
176
177/* Bits in Type field in above */
178#define STYPE_INET6 0
179#define STYPE_F_INET6 (1 << STYPE_INET6)
180
181#define SVER_SHIFT 12 /* Shift to get version */
182#define SVER_MASK 0x0fff /* Mask to strip version */
183
184#define IPVS_OPT_SEQ_DATA 1
185#define IPVS_OPT_PE_DATA 2
186#define IPVS_OPT_PE_NAME 3
187#define IPVS_OPT_PARAM 7
188
189#define IPVS_OPT_F_SEQ_DATA (1 << (IPVS_OPT_SEQ_DATA-1))
190#define IPVS_OPT_F_PE_DATA (1 << (IPVS_OPT_PE_DATA-1))
191#define IPVS_OPT_F_PE_NAME (1 << (IPVS_OPT_PE_NAME-1))
192#define IPVS_OPT_F_PARAM (1 << (IPVS_OPT_PARAM-1))
193
Neil Hormancc0191a2007-06-18 22:33:20 -0700194struct ip_vs_sync_thread_data {
Hans Schillstromf1313152011-01-03 14:44:55 +0100195 struct net *net;
Sven Wegener998e7a72008-07-16 11:13:50 +0000196 struct socket *sock;
197 char *buf;
Neil Hormancc0191a2007-06-18 22:33:20 -0700198};
199
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100200/* Version 0 definition of packet sizes */
201#define SIMPLE_CONN_SIZE (sizeof(struct ip_vs_sync_conn_v0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define FULL_CONN_SIZE \
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100203(sizeof(struct ip_vs_sync_conn_v0) + sizeof(struct ip_vs_sync_conn_options))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205
206/*
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100207 The master mulitcasts messages (Datagrams) to the backup load balancers
208 in the following format.
209
210 Version 1:
211 Note, first byte should be Zero, so ver 0 receivers will drop the packet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 0 1 2 3
214 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
215 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100216 | 0 | SyncID | Size |
217 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
218 | Count Conns | Version | Reserved, set to Zero |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
220 | |
221 | IPVS Sync Connection (1) |
222 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
223 | . |
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100224 ~ . ~
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 | . |
226 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
227 | |
228 | IPVS Sync Connection (n) |
229 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100230
231 Version 0 Header
232 0 1 2 3
233 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
234 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
235 | Count Conns | SyncID | Size |
236 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
237 | IPVS Sync Connection (1) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238*/
239
240#define SYNC_MESG_HEADER_LEN 4
Sven Wegenere6f225e2008-09-19 20:41:56 +0200241#define MAX_CONNS_PER_SYNCBUFF 255 /* nr_conns in ip_vs_sync_mesg is 8 bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100243/* Version 0 header */
Hans Schillstrom986a0752010-11-19 14:25:13 +0100244struct ip_vs_sync_mesg_v0 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 __u8 nr_conns;
246 __u8 syncid;
247 __u16 size;
248
249 /* ip_vs_sync_conn entries start here */
250};
251
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100252/* Version 1 header */
Hans Schillstrom986a0752010-11-19 14:25:13 +0100253struct ip_vs_sync_mesg {
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100254 __u8 reserved; /* must be zero */
255 __u8 syncid;
256 __u16 size;
257 __u8 nr_conns;
258 __s8 version; /* SYNC_PROTO_VER */
259 __u16 spare;
260 /* ip_vs_sync_conn entries start here */
261};
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263struct ip_vs_sync_buff {
264 struct list_head list;
265 unsigned long firstuse;
266
267 /* pointers for the message data */
268 struct ip_vs_sync_mesg *mesg;
269 unsigned char *head;
270 unsigned char *end;
271};
272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273/* multicast addr */
Sven Wegenerd5640052008-07-16 11:13:35 +0000274static struct sockaddr_in mcast_addr = {
275 .sin_family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800276 .sin_port = cpu_to_be16(IP_VS_SYNC_PORT),
277 .sin_addr.s_addr = cpu_to_be32(IP_VS_SYNC_GROUP),
Sven Wegenerd5640052008-07-16 11:13:35 +0000278};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100280/*
281 * Copy of struct ip_vs_seq
282 * From unaligned network order to aligned host order
283 */
284static void ntoh_seq(struct ip_vs_seq *no, struct ip_vs_seq *ho)
285{
286 ho->init_seq = get_unaligned_be32(&no->init_seq);
287 ho->delta = get_unaligned_be32(&no->delta);
288 ho->previous_delta = get_unaligned_be32(&no->previous_delta);
289}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Hans Schillstrom986a0752010-11-19 14:25:13 +0100291/*
292 * Copy of struct ip_vs_seq
293 * From Aligned host order to unaligned network order
294 */
295static void hton_seq(struct ip_vs_seq *ho, struct ip_vs_seq *no)
296{
297 put_unaligned_be32(ho->init_seq, &no->init_seq);
298 put_unaligned_be32(ho->delta, &no->delta);
299 put_unaligned_be32(ho->previous_delta, &no->previous_delta);
300}
301
Hans Schillstromf1313152011-01-03 14:44:55 +0100302static inline struct ip_vs_sync_buff *sb_dequeue(struct netns_ipvs *ipvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct ip_vs_sync_buff *sb;
305
Hans Schillstromf1313152011-01-03 14:44:55 +0100306 spin_lock_bh(&ipvs->sync_lock);
307 if (list_empty(&ipvs->sync_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 sb = NULL;
309 } else {
Hans Schillstromf1313152011-01-03 14:44:55 +0100310 sb = list_entry(ipvs->sync_queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct ip_vs_sync_buff,
312 list);
313 list_del(&sb->list);
314 }
Hans Schillstromf1313152011-01-03 14:44:55 +0100315 spin_unlock_bh(&ipvs->sync_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return sb;
318}
319
Hans Schillstrom986a0752010-11-19 14:25:13 +0100320/*
321 * Create a new sync buffer for Version 1 proto.
322 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100323static inline struct ip_vs_sync_buff *
324ip_vs_sync_buff_create(struct netns_ipvs *ipvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 struct ip_vs_sync_buff *sb;
327
328 if (!(sb=kmalloc(sizeof(struct ip_vs_sync_buff), GFP_ATOMIC)))
329 return NULL;
330
Hans Schillstromf1313152011-01-03 14:44:55 +0100331 sb->mesg = kmalloc(ipvs->send_mesg_maxlen, GFP_ATOMIC);
332 if (!sb->mesg) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 kfree(sb);
334 return NULL;
335 }
Hans Schillstrom986a0752010-11-19 14:25:13 +0100336 sb->mesg->reserved = 0; /* old nr_conns i.e. must be zeo now */
337 sb->mesg->version = SYNC_PROTO_VER;
Hans Schillstromf1313152011-01-03 14:44:55 +0100338 sb->mesg->syncid = ipvs->master_syncid;
Hans Schillstrom986a0752010-11-19 14:25:13 +0100339 sb->mesg->size = sizeof(struct ip_vs_sync_mesg);
340 sb->mesg->nr_conns = 0;
341 sb->mesg->spare = 0;
342 sb->head = (unsigned char *)sb->mesg + sizeof(struct ip_vs_sync_mesg);
Hans Schillstromf1313152011-01-03 14:44:55 +0100343 sb->end = (unsigned char *)sb->mesg + ipvs->send_mesg_maxlen;
Hans Schillstrom986a0752010-11-19 14:25:13 +0100344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 sb->firstuse = jiffies;
346 return sb;
347}
348
349static inline void ip_vs_sync_buff_release(struct ip_vs_sync_buff *sb)
350{
351 kfree(sb->mesg);
352 kfree(sb);
353}
354
Hans Schillstromf1313152011-01-03 14:44:55 +0100355static inline void sb_queue_tail(struct netns_ipvs *ipvs)
Sven Wegener998e7a72008-07-16 11:13:50 +0000356{
Hans Schillstromf1313152011-01-03 14:44:55 +0100357 struct ip_vs_sync_buff *sb = ipvs->sync_buff;
358
359 spin_lock(&ipvs->sync_lock);
360 if (ipvs->sync_state & IP_VS_STATE_MASTER)
361 list_add_tail(&sb->list, &ipvs->sync_queue);
Sven Wegener998e7a72008-07-16 11:13:50 +0000362 else
363 ip_vs_sync_buff_release(sb);
Hans Schillstromf1313152011-01-03 14:44:55 +0100364 spin_unlock(&ipvs->sync_lock);
Sven Wegener998e7a72008-07-16 11:13:50 +0000365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
368 * Get the current sync buffer if it has been created for more
369 * than the specified time or the specified time is zero.
370 */
371static inline struct ip_vs_sync_buff *
Hans Schillstromf1313152011-01-03 14:44:55 +0100372get_curr_sync_buff(struct netns_ipvs *ipvs, unsigned long time)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 struct ip_vs_sync_buff *sb;
375
Hans Schillstromf1313152011-01-03 14:44:55 +0100376 spin_lock_bh(&ipvs->sync_buff_lock);
Tinggong Wang16a7fd32011-02-09 02:21:59 +0200377 if (ipvs->sync_buff &&
378 time_after_eq(jiffies - ipvs->sync_buff->firstuse, time)) {
Hans Schillstromf1313152011-01-03 14:44:55 +0100379 sb = ipvs->sync_buff;
380 ipvs->sync_buff = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else
382 sb = NULL;
Hans Schillstromf1313152011-01-03 14:44:55 +0100383 spin_unlock_bh(&ipvs->sync_buff_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return sb;
385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100388 * Switch mode from sending version 0 or 1
389 * - must handle sync_buf
390 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100391void ip_vs_sync_switch_mode(struct net *net, int mode)
392{
393 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100394
Dan Carpenter7c9989a2011-02-07 11:38:55 +0300395 if (!(ipvs->sync_state & IP_VS_STATE_MASTER))
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100396 return;
Simon Horman7532e8d2011-02-04 18:33:01 +0900397 if (mode == sysctl_sync_ver(ipvs) || !ipvs->sync_buff)
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100398 return;
399
Hans Schillstromf1313152011-01-03 14:44:55 +0100400 spin_lock_bh(&ipvs->sync_buff_lock);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100401 /* Buffer empty ? then let buf_create do the job */
Hans Schillstromf1313152011-01-03 14:44:55 +0100402 if (ipvs->sync_buff->mesg->size <= sizeof(struct ip_vs_sync_mesg)) {
403 kfree(ipvs->sync_buff);
404 ipvs->sync_buff = NULL;
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100405 } else {
Hans Schillstromf1313152011-01-03 14:44:55 +0100406 spin_lock_bh(&ipvs->sync_lock);
407 if (ipvs->sync_state & IP_VS_STATE_MASTER)
408 list_add_tail(&ipvs->sync_buff->list,
409 &ipvs->sync_queue);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100410 else
Hans Schillstromf1313152011-01-03 14:44:55 +0100411 ip_vs_sync_buff_release(ipvs->sync_buff);
412 spin_unlock_bh(&ipvs->sync_lock);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100413 }
Hans Schillstromf1313152011-01-03 14:44:55 +0100414 spin_unlock_bh(&ipvs->sync_buff_lock);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100415}
416
417/*
418 * Create a new sync buffer for Version 0 proto.
419 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100420static inline struct ip_vs_sync_buff *
421ip_vs_sync_buff_create_v0(struct netns_ipvs *ipvs)
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100422{
423 struct ip_vs_sync_buff *sb;
424 struct ip_vs_sync_mesg_v0 *mesg;
425
426 if (!(sb=kmalloc(sizeof(struct ip_vs_sync_buff), GFP_ATOMIC)))
427 return NULL;
428
Hans Schillstromf1313152011-01-03 14:44:55 +0100429 sb->mesg = kmalloc(ipvs->send_mesg_maxlen, GFP_ATOMIC);
430 if (!sb->mesg) {
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100431 kfree(sb);
432 return NULL;
433 }
434 mesg = (struct ip_vs_sync_mesg_v0 *)sb->mesg;
435 mesg->nr_conns = 0;
Hans Schillstromf1313152011-01-03 14:44:55 +0100436 mesg->syncid = ipvs->master_syncid;
437 mesg->size = sizeof(struct ip_vs_sync_mesg_v0);
438 sb->head = (unsigned char *)mesg + sizeof(struct ip_vs_sync_mesg_v0);
439 sb->end = (unsigned char *)mesg + ipvs->send_mesg_maxlen;
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100440 sb->firstuse = jiffies;
441 return sb;
442}
443
444/*
445 * Version 0 , could be switched in by sys_ctl.
446 * Add an ip_vs_conn information into the current sync_buff.
447 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100448void ip_vs_sync_conn_v0(struct net *net, struct ip_vs_conn *cp)
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100449{
Hans Schillstromf1313152011-01-03 14:44:55 +0100450 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100451 struct ip_vs_sync_mesg_v0 *m;
452 struct ip_vs_sync_conn_v0 *s;
453 int len;
454
455 if (unlikely(cp->af != AF_INET))
456 return;
457 /* Do not sync ONE PACKET */
458 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
459 return;
460
Hans Schillstromf1313152011-01-03 14:44:55 +0100461 spin_lock(&ipvs->sync_buff_lock);
462 if (!ipvs->sync_buff) {
463 ipvs->sync_buff =
464 ip_vs_sync_buff_create_v0(ipvs);
465 if (!ipvs->sync_buff) {
466 spin_unlock(&ipvs->sync_buff_lock);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100467 pr_err("ip_vs_sync_buff_create failed.\n");
468 return;
469 }
470 }
471
472 len = (cp->flags & IP_VS_CONN_F_SEQ_MASK) ? FULL_CONN_SIZE :
473 SIMPLE_CONN_SIZE;
Hans Schillstromf1313152011-01-03 14:44:55 +0100474 m = (struct ip_vs_sync_mesg_v0 *)ipvs->sync_buff->mesg;
475 s = (struct ip_vs_sync_conn_v0 *)ipvs->sync_buff->head;
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100476
477 /* copy members */
478 s->reserved = 0;
479 s->protocol = cp->protocol;
480 s->cport = cp->cport;
481 s->vport = cp->vport;
482 s->dport = cp->dport;
483 s->caddr = cp->caddr.ip;
484 s->vaddr = cp->vaddr.ip;
485 s->daddr = cp->daddr.ip;
486 s->flags = htons(cp->flags & ~IP_VS_CONN_F_HASHED);
487 s->state = htons(cp->state);
488 if (cp->flags & IP_VS_CONN_F_SEQ_MASK) {
489 struct ip_vs_sync_conn_options *opt =
490 (struct ip_vs_sync_conn_options *)&s[1];
491 memcpy(opt, &cp->in_seq, sizeof(*opt));
492 }
493
494 m->nr_conns++;
495 m->size += len;
Hans Schillstromf1313152011-01-03 14:44:55 +0100496 ipvs->sync_buff->head += len;
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100497
498 /* check if there is a space for next one */
Hans Schillstromf1313152011-01-03 14:44:55 +0100499 if (ipvs->sync_buff->head + FULL_CONN_SIZE > ipvs->sync_buff->end) {
500 sb_queue_tail(ipvs);
501 ipvs->sync_buff = NULL;
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100502 }
Hans Schillstromf1313152011-01-03 14:44:55 +0100503 spin_unlock(&ipvs->sync_buff_lock);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100504
505 /* synchronize its controller if it has */
506 if (cp->control)
Hans Schillstromf1313152011-01-03 14:44:55 +0100507 ip_vs_sync_conn(net, cp->control);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100508}
509
510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * Add an ip_vs_conn information into the current sync_buff.
512 * Called by ip_vs_in.
Hans Schillstrom986a0752010-11-19 14:25:13 +0100513 * Sending Version 1 messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100515void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Hans Schillstromf1313152011-01-03 14:44:55 +0100517 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct ip_vs_sync_mesg *m;
Hans Schillstrom986a0752010-11-19 14:25:13 +0100519 union ip_vs_sync_conn *s;
520 __u8 *p;
521 unsigned int len, pe_name_len, pad;
522
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100523 /* Handle old version of the protocol */
Simon Horman7532e8d2011-02-04 18:33:01 +0900524 if (sysctl_sync_ver(ipvs) == 0) {
Hans Schillstromf1313152011-01-03 14:44:55 +0100525 ip_vs_sync_conn_v0(net, cp);
Hans Schillstromb880c1f2010-11-19 14:25:14 +0100526 return;
527 }
Hans Schillstrom986a0752010-11-19 14:25:13 +0100528 /* Do not sync ONE PACKET */
529 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
530 goto control;
531sloop:
532 /* Sanity checks */
533 pe_name_len = 0;
534 if (cp->pe_data_len) {
535 if (!cp->pe_data || !cp->dest) {
536 IP_VS_ERR_RL("SYNC, connection pe_data invalid\n");
537 return;
538 }
539 pe_name_len = strnlen(cp->pe->name, IP_VS_PENAME_MAXLEN);
540 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Hans Schillstromf1313152011-01-03 14:44:55 +0100542 spin_lock(&ipvs->sync_buff_lock);
Hans Schillstrom986a0752010-11-19 14:25:13 +0100543
544#ifdef CONFIG_IP_VS_IPV6
545 if (cp->af == AF_INET6)
546 len = sizeof(struct ip_vs_sync_v6);
547 else
548#endif
549 len = sizeof(struct ip_vs_sync_v4);
550
551 if (cp->flags & IP_VS_CONN_F_SEQ_MASK)
552 len += sizeof(struct ip_vs_sync_conn_options) + 2;
553
554 if (cp->pe_data_len)
555 len += cp->pe_data_len + 2; /* + Param hdr field */
556 if (pe_name_len)
557 len += pe_name_len + 2;
558
559 /* check if there is a space for this one */
560 pad = 0;
Hans Schillstromf1313152011-01-03 14:44:55 +0100561 if (ipvs->sync_buff) {
562 pad = (4 - (size_t)ipvs->sync_buff->head) & 3;
563 if (ipvs->sync_buff->head + len + pad > ipvs->sync_buff->end) {
564 sb_queue_tail(ipvs);
565 ipvs->sync_buff = NULL;
Hans Schillstrom986a0752010-11-19 14:25:13 +0100566 pad = 0;
567 }
568 }
569
Hans Schillstromf1313152011-01-03 14:44:55 +0100570 if (!ipvs->sync_buff) {
571 ipvs->sync_buff = ip_vs_sync_buff_create(ipvs);
572 if (!ipvs->sync_buff) {
573 spin_unlock(&ipvs->sync_buff_lock);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000574 pr_err("ip_vs_sync_buff_create failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return;
576 }
577 }
578
Hans Schillstromf1313152011-01-03 14:44:55 +0100579 m = ipvs->sync_buff->mesg;
580 p = ipvs->sync_buff->head;
581 ipvs->sync_buff->head += pad + len;
Hans Schillstrom986a0752010-11-19 14:25:13 +0100582 m->size += pad + len;
583 /* Add ev. padding from prev. sync_conn */
584 while (pad--)
585 *(p++) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Hans Schillstrom986a0752010-11-19 14:25:13 +0100587 s = (union ip_vs_sync_conn *)p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Hans Schillstrom986a0752010-11-19 14:25:13 +0100589 /* Set message type & copy members */
590 s->v4.type = (cp->af == AF_INET6 ? STYPE_F_INET6 : 0);
591 s->v4.ver_size = htons(len & SVER_MASK); /* Version 0 */
592 s->v4.flags = htonl(cp->flags & ~IP_VS_CONN_F_HASHED);
593 s->v4.state = htons(cp->state);
594 s->v4.protocol = cp->protocol;
595 s->v4.cport = cp->cport;
596 s->v4.vport = cp->vport;
597 s->v4.dport = cp->dport;
598 s->v4.fwmark = htonl(cp->fwmark);
599 s->v4.timeout = htonl(cp->timeout / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 m->nr_conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Hans Schillstrom986a0752010-11-19 14:25:13 +0100602#ifdef CONFIG_IP_VS_IPV6
603 if (cp->af == AF_INET6) {
604 p += sizeof(struct ip_vs_sync_v6);
605 ipv6_addr_copy(&s->v6.caddr, &cp->caddr.in6);
606 ipv6_addr_copy(&s->v6.vaddr, &cp->vaddr.in6);
607 ipv6_addr_copy(&s->v6.daddr, &cp->daddr.in6);
608 } else
609#endif
610 {
611 p += sizeof(struct ip_vs_sync_v4); /* options ptr */
612 s->v4.caddr = cp->caddr.ip;
613 s->v4.vaddr = cp->vaddr.ip;
614 s->v4.daddr = cp->daddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Hans Schillstrom986a0752010-11-19 14:25:13 +0100616 if (cp->flags & IP_VS_CONN_F_SEQ_MASK) {
617 *(p++) = IPVS_OPT_SEQ_DATA;
618 *(p++) = sizeof(struct ip_vs_sync_conn_options);
619 hton_seq((struct ip_vs_seq *)p, &cp->in_seq);
620 p += sizeof(struct ip_vs_seq);
621 hton_seq((struct ip_vs_seq *)p, &cp->out_seq);
622 p += sizeof(struct ip_vs_seq);
623 }
624 /* Handle pe data */
625 if (cp->pe_data_len && cp->pe_data) {
626 *(p++) = IPVS_OPT_PE_DATA;
627 *(p++) = cp->pe_data_len;
628 memcpy(p, cp->pe_data, cp->pe_data_len);
629 p += cp->pe_data_len;
630 if (pe_name_len) {
631 /* Add PE_NAME */
632 *(p++) = IPVS_OPT_PE_NAME;
633 *(p++) = pe_name_len;
634 memcpy(p, cp->pe->name, pe_name_len);
635 p += pe_name_len;
636 }
637 }
638
Hans Schillstromf1313152011-01-03 14:44:55 +0100639 spin_unlock(&ipvs->sync_buff_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Hans Schillstrom986a0752010-11-19 14:25:13 +0100641control:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* synchronize its controller if it has */
Hans Schillstrom986a0752010-11-19 14:25:13 +0100643 cp = cp->control;
644 if (!cp)
645 return;
646 /*
647 * Reduce sync rate for templates
648 * i.e only increment in_pkts for Templates.
649 */
650 if (cp->flags & IP_VS_CONN_F_TEMPLATE) {
651 int pkts = atomic_add_return(1, &cp->in_pkts);
652
Simon Horman59e03502011-02-04 18:33:01 +0900653 if (pkts % sysctl_sync_period(ipvs) != 1)
Hans Schillstrom986a0752010-11-19 14:25:13 +0100654 return;
655 }
656 goto sloop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100659/*
660 * fill_param used by version 1
661 */
Simon Horman85999282010-08-22 21:37:53 +0900662static inline int
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100663ip_vs_conn_fill_param_sync(struct net *net, int af, union ip_vs_sync_conn *sc,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100664 struct ip_vs_conn_param *p,
665 __u8 *pe_data, unsigned int pe_data_len,
666 __u8 *pe_name, unsigned int pe_name_len)
Simon Horman85999282010-08-22 21:37:53 +0900667{
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100668#ifdef CONFIG_IP_VS_IPV6
669 if (af == AF_INET6)
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100670 ip_vs_conn_fill_param(net, af, sc->v6.protocol,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100671 (const union nf_inet_addr *)&sc->v6.caddr,
672 sc->v6.cport,
673 (const union nf_inet_addr *)&sc->v6.vaddr,
674 sc->v6.vport, p);
675 else
676#endif
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100677 ip_vs_conn_fill_param(net, af, sc->v4.protocol,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100678 (const union nf_inet_addr *)&sc->v4.caddr,
679 sc->v4.cport,
680 (const union nf_inet_addr *)&sc->v4.vaddr,
681 sc->v4.vport, p);
682 /* Handle pe data */
683 if (pe_data_len) {
684 if (pe_name_len) {
685 char buff[IP_VS_PENAME_MAXLEN+1];
686
687 memcpy(buff, pe_name, pe_name_len);
688 buff[pe_name_len]=0;
689 p->pe = __ip_vs_pe_getbyname(buff);
690 if (!p->pe) {
Hans Schillstromf1313152011-01-03 14:44:55 +0100691 IP_VS_DBG(3, "BACKUP, no %s engine found/loaded\n",
692 buff);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100693 return 1;
694 }
695 } else {
696 IP_VS_ERR_RL("BACKUP, Invalid PE parameters\n");
697 return 1;
698 }
699
Shan Wei6060c742011-03-07 10:11:34 +0800700 p->pe_data = kmemdup(pe_data, pe_data_len, GFP_ATOMIC);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100701 if (!p->pe_data) {
702 if (p->pe->module)
703 module_put(p->pe->module);
704 return -ENOMEM;
705 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100706 p->pe_data_len = pe_data_len;
707 }
Simon Horman85999282010-08-22 21:37:53 +0900708 return 0;
709}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711/*
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100712 * Connection Add / Update.
713 * Common for version 0 and 1 reception of backup sync_conns.
714 * Param: ...
715 * timeout is in sec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100717static void ip_vs_proc_conn(struct net *net, struct ip_vs_conn_param *param,
718 unsigned int flags, unsigned int state,
719 unsigned int protocol, unsigned int type,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100720 const union nf_inet_addr *daddr, __be16 dport,
721 unsigned long timeout, __u32 fwmark,
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100722 struct ip_vs_sync_conn_options *opt)
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100723{
724 struct ip_vs_dest *dest;
725 struct ip_vs_conn *cp;
Hans Schillstroma0840e22011-01-03 14:44:58 +0100726 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100727
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100728 if (!(flags & IP_VS_CONN_F_TEMPLATE))
729 cp = ip_vs_conn_in_get(param);
730 else
731 cp = ip_vs_ct_in_get(param);
732
733 if (cp && param->pe_data) /* Free pe_data */
734 kfree(param->pe_data);
735 if (!cp) {
736 /*
737 * Find the appropriate destination for the connection.
738 * If it is not found the connection will remain unbound
739 * but still handled.
740 */
Hans Schillstromf1313152011-01-03 14:44:55 +0100741 dest = ip_vs_find_dest(net, type, daddr, dport, param->vaddr,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100742 param->vport, protocol, fwmark);
743
744 /* Set the approprite ativity flag */
745 if (protocol == IPPROTO_TCP) {
746 if (state != IP_VS_TCP_S_ESTABLISHED)
747 flags |= IP_VS_CONN_F_INACTIVE;
748 else
749 flags &= ~IP_VS_CONN_F_INACTIVE;
750 } else if (protocol == IPPROTO_SCTP) {
751 if (state != IP_VS_SCTP_S_ESTABLISHED)
752 flags |= IP_VS_CONN_F_INACTIVE;
753 else
754 flags &= ~IP_VS_CONN_F_INACTIVE;
755 }
756 cp = ip_vs_conn_new(param, daddr, dport, flags, dest, fwmark);
757 if (dest)
758 atomic_dec(&dest->refcnt);
759 if (!cp) {
760 if (param->pe_data)
761 kfree(param->pe_data);
762 IP_VS_DBG(2, "BACKUP, add new conn. failed\n");
763 return;
764 }
765 } else if (!cp->dest) {
766 dest = ip_vs_try_bind_dest(cp);
767 if (dest)
768 atomic_dec(&dest->refcnt);
769 } else if ((cp->dest) && (cp->protocol == IPPROTO_TCP) &&
770 (cp->state != state)) {
771 /* update active/inactive flag for the connection */
772 dest = cp->dest;
773 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) &&
774 (state != IP_VS_TCP_S_ESTABLISHED)) {
775 atomic_dec(&dest->activeconns);
776 atomic_inc(&dest->inactconns);
777 cp->flags |= IP_VS_CONN_F_INACTIVE;
778 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) &&
779 (state == IP_VS_TCP_S_ESTABLISHED)) {
780 atomic_inc(&dest->activeconns);
781 atomic_dec(&dest->inactconns);
782 cp->flags &= ~IP_VS_CONN_F_INACTIVE;
783 }
784 } else if ((cp->dest) && (cp->protocol == IPPROTO_SCTP) &&
785 (cp->state != state)) {
786 dest = cp->dest;
787 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) &&
788 (state != IP_VS_SCTP_S_ESTABLISHED)) {
789 atomic_dec(&dest->activeconns);
790 atomic_inc(&dest->inactconns);
791 cp->flags &= ~IP_VS_CONN_F_INACTIVE;
792 }
793 }
794
795 if (opt)
796 memcpy(&cp->in_seq, opt, sizeof(*opt));
Simon Horman59e03502011-02-04 18:33:01 +0900797 atomic_set(&cp->in_pkts, sysctl_sync_threshold(ipvs));
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100798 cp->state = state;
799 cp->old_state = cp->state;
800 /*
801 * For Ver 0 messages style
802 * - Not possible to recover the right timeout for templates
803 * - can not find the right fwmark
804 * virtual service. If needed, we can do it for
805 * non-fwmark persistent services.
806 * Ver 1 messages style.
807 * - No problem.
808 */
809 if (timeout) {
810 if (timeout > MAX_SCHEDULE_TIMEOUT / HZ)
811 timeout = MAX_SCHEDULE_TIMEOUT / HZ;
812 cp->timeout = timeout*HZ;
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100813 } else {
814 struct ip_vs_proto_data *pd;
815
816 pd = ip_vs_proto_data_get(net, protocol);
817 if (!(flags & IP_VS_CONN_F_TEMPLATE) && pd && pd->timeout_table)
818 cp->timeout = pd->timeout_table[state];
819 else
820 cp->timeout = (3*60*HZ);
821 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100822 ip_vs_conn_put(cp);
823}
824
825/*
826 * Process received multicast message for Version 0
827 */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100828static void ip_vs_process_message_v0(struct net *net, const char *buffer,
829 const size_t buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Hans Schillstrom986a0752010-11-19 14:25:13 +0100831 struct ip_vs_sync_mesg_v0 *m = (struct ip_vs_sync_mesg_v0 *)buffer;
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100832 struct ip_vs_sync_conn_v0 *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct ip_vs_sync_conn_options *opt;
Andy Gospodarek5c818332007-10-29 04:35:45 -0700834 struct ip_vs_protocol *pp;
Simon Hormanf11017e2010-08-22 21:37:52 +0900835 struct ip_vs_conn_param param;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 char *p;
837 int i;
838
Hans Schillstrom986a0752010-11-19 14:25:13 +0100839 p = (char *)buffer + sizeof(struct ip_vs_sync_mesg_v0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 for (i=0; i<m->nr_conns; i++) {
Rumen G. Bogdanovskib2096392007-11-19 21:53:27 -0800841 unsigned flags, state;
Julian Anastasov87375ab2005-09-14 21:08:51 -0700842
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700843 if (p + SIMPLE_CONN_SIZE > buffer+buflen) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100844 IP_VS_ERR_RL("BACKUP v0, bogus conn\n");
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700845 return;
846 }
Hans Schillstrom2981bc92010-11-19 14:25:11 +0100847 s = (struct ip_vs_sync_conn_v0 *) p;
Rumen G. Bogdanovski7a4fbb12007-11-19 21:52:42 -0800848 flags = ntohs(s->flags) | IP_VS_CONN_F_SYNC;
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700849 flags &= ~IP_VS_CONN_F_HASHED;
850 if (flags & IP_VS_CONN_F_SEQ_MASK) {
851 opt = (struct ip_vs_sync_conn_options *)&s[1];
852 p += FULL_CONN_SIZE;
853 if (p > buffer+buflen) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100854 IP_VS_ERR_RL("BACKUP v0, Dropping buffer bogus conn options\n");
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700855 return;
856 }
857 } else {
858 opt = NULL;
859 p += SIMPLE_CONN_SIZE;
860 }
861
Rumen G. Bogdanovskib2096392007-11-19 21:53:27 -0800862 state = ntohs(s->state);
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700863 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
864 pp = ip_vs_proto_get(s->protocol);
865 if (!pp) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100866 IP_VS_DBG(2, "BACKUP v0, Unsupported protocol %u\n",
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700867 s->protocol);
868 continue;
869 }
870 if (state >= pp->num_states) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100871 IP_VS_DBG(2, "BACKUP v0, Invalid %s state %u\n",
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700872 pp->name, state);
873 continue;
874 }
875 } else {
876 /* protocol in templates is not used for state/timeout */
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700877 if (state > 0) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100878 IP_VS_DBG(2, "BACKUP v0, Invalid template state %u\n",
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700879 state);
880 state = 0;
881 }
882 }
883
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100884 ip_vs_conn_fill_param(net, AF_INET, s->protocol,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100885 (const union nf_inet_addr *)&s->caddr,
886 s->cport,
887 (const union nf_inet_addr *)&s->vaddr,
888 s->vport, &param);
889
890 /* Send timeout as Zero */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100891 ip_vs_proc_conn(net, &param, flags, state, s->protocol, AF_INET,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100892 (union nf_inet_addr *)&s->daddr, s->dport,
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100893 0, 0, opt);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100894 }
895}
896
897/*
898 * Handle options
899 */
900static inline int ip_vs_proc_seqopt(__u8 *p, unsigned int plen,
901 __u32 *opt_flags,
902 struct ip_vs_sync_conn_options *opt)
903{
904 struct ip_vs_sync_conn_options *topt;
905
906 topt = (struct ip_vs_sync_conn_options *)p;
907
908 if (plen != sizeof(struct ip_vs_sync_conn_options)) {
909 IP_VS_DBG(2, "BACKUP, bogus conn options length\n");
910 return -EINVAL;
911 }
912 if (*opt_flags & IPVS_OPT_F_SEQ_DATA) {
913 IP_VS_DBG(2, "BACKUP, conn options found twice\n");
914 return -EINVAL;
915 }
916 ntoh_seq(&topt->in_seq, &opt->in_seq);
917 ntoh_seq(&topt->out_seq, &opt->out_seq);
918 *opt_flags |= IPVS_OPT_F_SEQ_DATA;
919 return 0;
920}
921
922static int ip_vs_proc_str(__u8 *p, unsigned int plen, unsigned int *data_len,
923 __u8 **data, unsigned int maxlen,
924 __u32 *opt_flags, __u32 flag)
925{
926 if (plen > maxlen) {
927 IP_VS_DBG(2, "BACKUP, bogus par.data len > %d\n", maxlen);
928 return -EINVAL;
929 }
930 if (*opt_flags & flag) {
931 IP_VS_DBG(2, "BACKUP, Par.data found twice 0x%x\n", flag);
932 return -EINVAL;
933 }
934 *data_len = plen;
935 *data = p;
936 *opt_flags |= flag;
937 return 0;
938}
939/*
940 * Process a Version 1 sync. connection
941 */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +0100942static inline int ip_vs_proc_sync_conn(struct net *net, __u8 *p, __u8 *msg_end)
Hans Schillstromfe5e7a12010-11-19 14:25:12 +0100943{
944 struct ip_vs_sync_conn_options opt;
945 union ip_vs_sync_conn *s;
946 struct ip_vs_protocol *pp;
947 struct ip_vs_conn_param param;
948 __u32 flags;
949 unsigned int af, state, pe_data_len=0, pe_name_len=0;
950 __u8 *pe_data=NULL, *pe_name=NULL;
951 __u32 opt_flags=0;
952 int retc=0;
953
954 s = (union ip_vs_sync_conn *) p;
955
956 if (s->v6.type & STYPE_F_INET6) {
957#ifdef CONFIG_IP_VS_IPV6
958 af = AF_INET6;
959 p += sizeof(struct ip_vs_sync_v6);
960#else
961 IP_VS_DBG(3,"BACKUP, IPv6 msg received, and IPVS is not compiled for IPv6\n");
962 retc = 10;
963 goto out;
964#endif
965 } else if (!s->v4.type) {
966 af = AF_INET;
967 p += sizeof(struct ip_vs_sync_v4);
968 } else {
969 return -10;
970 }
971 if (p > msg_end)
972 return -20;
973
974 /* Process optional params check Type & Len. */
975 while (p < msg_end) {
976 int ptype;
977 int plen;
978
979 if (p+2 > msg_end)
980 return -30;
981 ptype = *(p++);
982 plen = *(p++);
983
984 if (!plen || ((p + plen) > msg_end))
985 return -40;
986 /* Handle seq option p = param data */
987 switch (ptype & ~IPVS_OPT_F_PARAM) {
988 case IPVS_OPT_SEQ_DATA:
989 if (ip_vs_proc_seqopt(p, plen, &opt_flags, &opt))
990 return -50;
991 break;
992
993 case IPVS_OPT_PE_DATA:
994 if (ip_vs_proc_str(p, plen, &pe_data_len, &pe_data,
995 IP_VS_PEDATA_MAXLEN, &opt_flags,
996 IPVS_OPT_F_PE_DATA))
997 return -60;
998 break;
999
1000 case IPVS_OPT_PE_NAME:
1001 if (ip_vs_proc_str(p, plen,&pe_name_len, &pe_name,
1002 IP_VS_PENAME_MAXLEN, &opt_flags,
1003 IPVS_OPT_F_PE_NAME))
1004 return -70;
1005 break;
1006
1007 default:
1008 /* Param data mandatory ? */
1009 if (!(ptype & IPVS_OPT_F_PARAM)) {
1010 IP_VS_DBG(3, "BACKUP, Unknown mandatory param %d found\n",
1011 ptype & ~IPVS_OPT_F_PARAM);
1012 retc = 20;
1013 goto out;
Rumen G. Bogdanovskib2096392007-11-19 21:53:27 -08001014 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001015 }
1016 p += plen; /* Next option */
1017 }
1018
1019 /* Get flags and Mask off unsupported */
1020 flags = ntohl(s->v4.flags) & IP_VS_CONN_F_BACKUP_MASK;
1021 flags |= IP_VS_CONN_F_SYNC;
1022 state = ntohs(s->v4.state);
1023
1024 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
1025 pp = ip_vs_proto_get(s->v4.protocol);
1026 if (!pp) {
1027 IP_VS_DBG(3,"BACKUP, Unsupported protocol %u\n",
1028 s->v4.protocol);
1029 retc = 30;
1030 goto out;
1031 }
1032 if (state >= pp->num_states) {
1033 IP_VS_DBG(3, "BACKUP, Invalid %s state %u\n",
1034 pp->name, state);
1035 retc = 40;
1036 goto out;
1037 }
1038 } else {
1039 /* protocol in templates is not used for state/timeout */
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001040 if (state > 0) {
1041 IP_VS_DBG(3, "BACKUP, Invalid template state %u\n",
1042 state);
1043 state = 0;
1044 }
1045 }
Hans Schillstrom6e67e582011-01-03 14:44:57 +01001046 if (ip_vs_conn_fill_param_sync(net, af, s, &param, pe_data,
1047 pe_data_len, pe_name, pe_name_len)) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001048 retc = 50;
1049 goto out;
1050 }
1051 /* If only IPv4, just silent skip IPv6 */
1052 if (af == AF_INET)
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001053 ip_vs_proc_conn(net, &param, flags, state, s->v4.protocol, af,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001054 (union nf_inet_addr *)&s->v4.daddr, s->v4.dport,
1055 ntohl(s->v4.timeout), ntohl(s->v4.fwmark),
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001056 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1057 );
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001058#ifdef CONFIG_IP_VS_IPV6
1059 else
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001060 ip_vs_proc_conn(net, &param, flags, state, s->v6.protocol, af,
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001061 (union nf_inet_addr *)&s->v6.daddr, s->v6.dport,
1062 ntohl(s->v6.timeout), ntohl(s->v6.fwmark),
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001063 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1064 );
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001065#endif
1066 return 0;
1067 /* Error exit */
1068out:
1069 IP_VS_DBG(2, "BACKUP, Single msg dropped err:%d\n", retc);
1070 return retc;
1071
1072}
1073/*
1074 * Process received multicast message and create the corresponding
1075 * ip_vs_conn entries.
1076 * Handles Version 0 & 1
1077 */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001078static void ip_vs_process_message(struct net *net, __u8 *buffer,
1079 const size_t buflen)
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001080{
Hans Schillstromf1313152011-01-03 14:44:55 +01001081 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstrom986a0752010-11-19 14:25:13 +01001082 struct ip_vs_sync_mesg *m2 = (struct ip_vs_sync_mesg *)buffer;
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001083 __u8 *p, *msg_end;
Hans Schillstrom986a0752010-11-19 14:25:13 +01001084 int i, nr_conns;
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001085
Hans Schillstrom986a0752010-11-19 14:25:13 +01001086 if (buflen < sizeof(struct ip_vs_sync_mesg_v0)) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001087 IP_VS_DBG(2, "BACKUP, message header too short\n");
1088 return;
1089 }
1090 /* Convert size back to host byte order */
1091 m2->size = ntohs(m2->size);
1092
1093 if (buflen != m2->size) {
1094 IP_VS_DBG(2, "BACKUP, bogus message size\n");
1095 return;
1096 }
1097 /* SyncID sanity check */
Hans Schillstromf1313152011-01-03 14:44:55 +01001098 if (ipvs->backup_syncid != 0 && m2->syncid != ipvs->backup_syncid) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001099 IP_VS_DBG(7, "BACKUP, Ignoring syncid = %d\n", m2->syncid);
1100 return;
1101 }
1102 /* Handle version 1 message */
1103 if ((m2->version == SYNC_PROTO_VER) && (m2->reserved == 0)
1104 && (m2->spare == 0)) {
1105
Hans Schillstrom986a0752010-11-19 14:25:13 +01001106 msg_end = buffer + sizeof(struct ip_vs_sync_mesg);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001107 nr_conns = m2->nr_conns;
1108
1109 for (i=0; i<nr_conns; i++) {
1110 union ip_vs_sync_conn *s;
1111 unsigned size;
1112 int retc;
1113
1114 p = msg_end;
1115 if (p + sizeof(s->v4) > buffer+buflen) {
1116 IP_VS_ERR_RL("BACKUP, Dropping buffer, to small\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return;
1118 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001119 s = (union ip_vs_sync_conn *)p;
1120 size = ntohs(s->v4.ver_size) & SVER_MASK;
1121 msg_end = p + size;
1122 /* Basic sanity checks */
1123 if (msg_end > buffer+buflen) {
1124 IP_VS_ERR_RL("BACKUP, Dropping buffer, msg > buffer\n");
1125 return;
Rumen G. Bogdanovskib2096392007-11-19 21:53:27 -08001126 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001127 if (ntohs(s->v4.ver_size) >> SVER_SHIFT) {
1128 IP_VS_ERR_RL("BACKUP, Dropping buffer, Unknown version %d\n",
1129 ntohs(s->v4.ver_size) >> SVER_SHIFT);
1130 return;
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001131 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001132 /* Process a single sync_conn */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001133 retc = ip_vs_proc_sync_conn(net, p, msg_end);
1134 if (retc < 0) {
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001135 IP_VS_ERR_RL("BACKUP, Dropping buffer, Err: %d in decoding\n",
1136 retc);
1137 return;
1138 }
1139 /* Make sure we have 32 bit alignment */
1140 msg_end = p + ((size + 3) & ~3);
Rumen G. Bogdanovskib2096392007-11-19 21:53:27 -08001141 }
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001142 } else {
1143 /* Old type of message */
Hans Schillstrom9bbac6a2011-01-03 14:44:52 +01001144 ip_vs_process_message_v0(net, buffer, buflen);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001145 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147}
1148
1149
1150/*
1151 * Setup loopback of outgoing multicasts on a sending socket
1152 */
1153static void set_mcast_loop(struct sock *sk, u_char loop)
1154{
1155 struct inet_sock *inet = inet_sk(sk);
1156
1157 /* setsockopt(sock, SOL_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); */
1158 lock_sock(sk);
1159 inet->mc_loop = loop ? 1 : 0;
1160 release_sock(sk);
1161}
1162
1163/*
1164 * Specify TTL for outgoing multicasts on a sending socket
1165 */
1166static void set_mcast_ttl(struct sock *sk, u_char ttl)
1167{
1168 struct inet_sock *inet = inet_sk(sk);
1169
1170 /* setsockopt(sock, SOL_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)); */
1171 lock_sock(sk);
1172 inet->mc_ttl = ttl;
1173 release_sock(sk);
1174}
1175
1176/*
1177 * Specifiy default interface for outgoing multicasts
1178 */
1179static int set_mcast_if(struct sock *sk, char *ifname)
1180{
1181 struct net_device *dev;
1182 struct inet_sock *inet = inet_sk(sk);
Hans Schillstromf1313152011-01-03 14:44:55 +01001183 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Hans Schillstromf1313152011-01-03 14:44:55 +01001185 dev = __dev_get_by_name(net, ifname);
1186 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return -ENODEV;
1188
1189 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1190 return -EINVAL;
1191
1192 lock_sock(sk);
1193 inet->mc_index = dev->ifindex;
1194 /* inet->mc_addr = 0; */
1195 release_sock(sk);
1196
1197 return 0;
1198}
1199
1200
1201/*
1202 * Set the maximum length of sync message according to the
1203 * specified interface's MTU.
1204 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001205static int set_sync_mesg_maxlen(struct net *net, int sync_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Hans Schillstromf1313152011-01-03 14:44:55 +01001207 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 struct net_device *dev;
1209 int num;
1210
1211 if (sync_state == IP_VS_STATE_MASTER) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001212 dev = __dev_get_by_name(net, ipvs->master_mcast_ifn);
1213 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return -ENODEV;
1215
1216 num = (dev->mtu - sizeof(struct iphdr) -
1217 sizeof(struct udphdr) -
1218 SYNC_MESG_HEADER_LEN - 20) / SIMPLE_CONN_SIZE;
Hans Schillstromf1313152011-01-03 14:44:55 +01001219 ipvs->send_mesg_maxlen = SYNC_MESG_HEADER_LEN +
Sven Wegenere6f225e2008-09-19 20:41:56 +02001220 SIMPLE_CONN_SIZE * min(num, MAX_CONNS_PER_SYNCBUFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 IP_VS_DBG(7, "setting the maximum length of sync sending "
Hans Schillstromf1313152011-01-03 14:44:55 +01001222 "message %d.\n", ipvs->send_mesg_maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 } else if (sync_state == IP_VS_STATE_BACKUP) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001224 dev = __dev_get_by_name(net, ipvs->backup_mcast_ifn);
1225 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 return -ENODEV;
1227
Hans Schillstromf1313152011-01-03 14:44:55 +01001228 ipvs->recv_mesg_maxlen = dev->mtu -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 sizeof(struct iphdr) - sizeof(struct udphdr);
1230 IP_VS_DBG(7, "setting the maximum length of sync receiving "
Hans Schillstromf1313152011-01-03 14:44:55 +01001231 "message %d.\n", ipvs->recv_mesg_maxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233
1234 return 0;
1235}
1236
1237
1238/*
1239 * Join a multicast group.
1240 * the group is specified by a class D multicast address 224.0.0.0/8
1241 * in the in_addr structure passed in as a parameter.
1242 */
1243static int
1244join_mcast_group(struct sock *sk, struct in_addr *addr, char *ifname)
1245{
Hans Schillstromf1313152011-01-03 14:44:55 +01001246 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 struct ip_mreqn mreq;
1248 struct net_device *dev;
1249 int ret;
1250
1251 memset(&mreq, 0, sizeof(mreq));
1252 memcpy(&mreq.imr_multiaddr, addr, sizeof(struct in_addr));
1253
Hans Schillstromf1313152011-01-03 14:44:55 +01001254 dev = __dev_get_by_name(net, ifname);
1255 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 return -ENODEV;
1257 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1258 return -EINVAL;
1259
1260 mreq.imr_ifindex = dev->ifindex;
1261
1262 lock_sock(sk);
1263 ret = ip_mc_join_group(sk, &mreq);
1264 release_sock(sk);
1265
1266 return ret;
1267}
1268
1269
1270static int bind_mcastif_addr(struct socket *sock, char *ifname)
1271{
Hans Schillstromf1313152011-01-03 14:44:55 +01001272 struct net *net = sock_net(sock->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct net_device *dev;
Al Viroa61ced52006-09-26 21:27:54 -07001274 __be32 addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 struct sockaddr_in sin;
1276
Hans Schillstromf1313152011-01-03 14:44:55 +01001277 dev = __dev_get_by_name(net, ifname);
1278 if (!dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -ENODEV;
1280
1281 addr = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
1282 if (!addr)
Hannes Eder1e3e2382009-08-02 11:05:41 +00001283 pr_err("You probably need to specify IP address on "
1284 "multicast interface.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Harvey Harrison14d5e8342008-10-31 00:54:29 -07001286 IP_VS_DBG(7, "binding socket with (%s) %pI4\n",
1287 ifname, &addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 /* Now bind the socket with the address of multicast interface */
1290 sin.sin_family = AF_INET;
1291 sin.sin_addr.s_addr = addr;
1292 sin.sin_port = 0;
1293
1294 return sock->ops->bind(sock, (struct sockaddr*)&sin, sizeof(sin));
1295}
1296
1297/*
1298 * Set up sending multicast socket over UDP
1299 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001300static struct socket *make_send_sock(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Hans Schillstromf1313152011-01-03 14:44:55 +01001302 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct socket *sock;
Sven Wegenere6dd7312008-07-16 11:13:43 +00001304 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001306 /* First create a socket move it to right name space later */
1307 result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001308 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001309 pr_err("Error during creation of socket; terminating\n");
Sven Wegenere6dd7312008-07-16 11:13:43 +00001310 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001312 /*
1313 * Kernel sockets that are a part of a namespace, should not
1314 * hold a reference to a namespace in order to allow to stop it.
1315 * After sk_change_net should be released using sk_release_kernel.
1316 */
1317 sk_change_net(sock->sk, net);
Hans Schillstromf1313152011-01-03 14:44:55 +01001318 result = set_mcast_if(sock->sk, ipvs->master_mcast_ifn);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001319 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001320 pr_err("Error setting outbound mcast interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 goto error;
1322 }
1323
1324 set_mcast_loop(sock->sk, 0);
1325 set_mcast_ttl(sock->sk, 1);
1326
Hans Schillstromf1313152011-01-03 14:44:55 +01001327 result = bind_mcastif_addr(sock, ipvs->master_mcast_ifn);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001328 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001329 pr_err("Error binding address of the mcast interface\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 goto error;
1331 }
1332
Sven Wegenere6dd7312008-07-16 11:13:43 +00001333 result = sock->ops->connect(sock, (struct sockaddr *) &mcast_addr,
1334 sizeof(struct sockaddr), 0);
1335 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001336 pr_err("Error connecting to the multicast addr\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 goto error;
1338 }
1339
1340 return sock;
1341
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001342error:
1343 sk_release_kernel(sock->sk);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001344 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345}
1346
1347
1348/*
1349 * Set up receiving multicast socket over UDP
1350 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001351static struct socket *make_receive_sock(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Hans Schillstromf1313152011-01-03 14:44:55 +01001353 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct socket *sock;
Sven Wegenere6dd7312008-07-16 11:13:43 +00001355 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /* First create a socket */
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001358 result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001359 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001360 pr_err("Error during creation of socket; terminating\n");
Sven Wegenere6dd7312008-07-16 11:13:43 +00001361 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001363 /*
1364 * Kernel sockets that are a part of a namespace, should not
1365 * hold a reference to a namespace in order to allow to stop it.
1366 * After sk_change_net should be released using sk_release_kernel.
1367 */
1368 sk_change_net(sock->sk, net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /* it is equivalent to the REUSEADDR option in user-space */
1370 sock->sk->sk_reuse = 1;
1371
Sven Wegenere6dd7312008-07-16 11:13:43 +00001372 result = sock->ops->bind(sock, (struct sockaddr *) &mcast_addr,
1373 sizeof(struct sockaddr));
1374 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001375 pr_err("Error binding to the multicast addr\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto error;
1377 }
1378
1379 /* join the multicast group */
Sven Wegenere6dd7312008-07-16 11:13:43 +00001380 result = join_mcast_group(sock->sk,
1381 (struct in_addr *) &mcast_addr.sin_addr,
Hans Schillstromf1313152011-01-03 14:44:55 +01001382 ipvs->backup_mcast_ifn);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001383 if (result < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001384 pr_err("Error joining to the multicast group\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 goto error;
1386 }
1387
1388 return sock;
1389
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001390error:
1391 sk_release_kernel(sock->sk);
Sven Wegenere6dd7312008-07-16 11:13:43 +00001392 return ERR_PTR(result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
1395
1396static int
1397ip_vs_send_async(struct socket *sock, const char *buffer, const size_t length)
1398{
1399 struct msghdr msg = {.msg_flags = MSG_DONTWAIT|MSG_NOSIGNAL};
1400 struct kvec iov;
1401 int len;
1402
1403 EnterFunction(7);
1404 iov.iov_base = (void *)buffer;
1405 iov.iov_len = length;
1406
1407 len = kernel_sendmsg(sock, &msg, &iov, 1, (size_t)(length));
1408
1409 LeaveFunction(7);
1410 return len;
1411}
1412
1413static void
1414ip_vs_send_sync_msg(struct socket *sock, struct ip_vs_sync_mesg *msg)
1415{
1416 int msize;
1417
1418 msize = msg->size;
1419
1420 /* Put size in network byte order */
1421 msg->size = htons(msg->size);
1422
1423 if (ip_vs_send_async(sock, (char *)msg, msize) != msize)
Hannes Eder1e3e2382009-08-02 11:05:41 +00001424 pr_err("ip_vs_send_async error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
1427static int
1428ip_vs_receive(struct socket *sock, char *buffer, const size_t buflen)
1429{
1430 struct msghdr msg = {NULL,};
1431 struct kvec iov;
1432 int len;
1433
1434 EnterFunction(7);
1435
1436 /* Receive a packet */
1437 iov.iov_base = buffer;
1438 iov.iov_len = (size_t)buflen;
1439
1440 len = kernel_recvmsg(sock, &msg, &iov, 1, buflen, 0);
1441
1442 if (len < 0)
1443 return -1;
1444
1445 LeaveFunction(7);
1446 return len;
1447}
1448
1449
Sven Wegener998e7a72008-07-16 11:13:50 +00001450static int sync_thread_master(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Sven Wegener998e7a72008-07-16 11:13:50 +00001452 struct ip_vs_sync_thread_data *tinfo = data;
Hans Schillstromf1313152011-01-03 14:44:55 +01001453 struct netns_ipvs *ipvs = net_ipvs(tinfo->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 struct ip_vs_sync_buff *sb;
1455
Hannes Eder1e3e2382009-08-02 11:05:41 +00001456 pr_info("sync thread started: state = MASTER, mcast_ifn = %s, "
1457 "syncid = %d\n",
Hans Schillstromf1313152011-01-03 14:44:55 +01001458 ipvs->master_mcast_ifn, ipvs->master_syncid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Sven Wegener998e7a72008-07-16 11:13:50 +00001460 while (!kthread_should_stop()) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001461 while ((sb = sb_dequeue(ipvs))) {
Sven Wegener998e7a72008-07-16 11:13:50 +00001462 ip_vs_send_sync_msg(tinfo->sock, sb->mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 ip_vs_sync_buff_release(sb);
1464 }
1465
Hans Schillstromf1313152011-01-03 14:44:55 +01001466 /* check if entries stay in ipvs->sync_buff for 2 seconds */
1467 sb = get_curr_sync_buff(ipvs, 2 * HZ);
Sven Wegener998e7a72008-07-16 11:13:50 +00001468 if (sb) {
1469 ip_vs_send_sync_msg(tinfo->sock, sb->mesg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 ip_vs_sync_buff_release(sb);
1471 }
1472
Sven Wegener375c6bb2008-07-16 11:14:03 +00001473 schedule_timeout_interruptible(HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
1475
1476 /* clean up the sync_buff queue */
Hans Schillstromf1313152011-01-03 14:44:55 +01001477 while ((sb = sb_dequeue(ipvs)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 ip_vs_sync_buff_release(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* clean up the current sync_buff */
Hans Schillstromf1313152011-01-03 14:44:55 +01001481 sb = get_curr_sync_buff(ipvs, 0);
1482 if (sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 ip_vs_sync_buff_release(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 /* release the sending multicast socket */
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001486 sk_release_kernel(tinfo->sock->sk);
Sven Wegener998e7a72008-07-16 11:13:50 +00001487 kfree(tinfo);
1488
1489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492
Sven Wegener998e7a72008-07-16 11:13:50 +00001493static int sync_thread_backup(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Sven Wegener998e7a72008-07-16 11:13:50 +00001495 struct ip_vs_sync_thread_data *tinfo = data;
Hans Schillstromf1313152011-01-03 14:44:55 +01001496 struct netns_ipvs *ipvs = net_ipvs(tinfo->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 int len;
1498
Hannes Eder1e3e2382009-08-02 11:05:41 +00001499 pr_info("sync thread started: state = BACKUP, mcast_ifn = %s, "
1500 "syncid = %d\n",
Hans Schillstromf1313152011-01-03 14:44:55 +01001501 ipvs->backup_mcast_ifn, ipvs->backup_syncid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Sven Wegener998e7a72008-07-16 11:13:50 +00001503 while (!kthread_should_stop()) {
Eric Dumazetaa395142010-04-20 13:03:51 +00001504 wait_event_interruptible(*sk_sleep(tinfo->sock->sk),
Sven Wegenerba6fd852008-07-16 11:13:56 +00001505 !skb_queue_empty(&tinfo->sock->sk->sk_receive_queue)
1506 || kthread_should_stop());
1507
Sven Wegener998e7a72008-07-16 11:13:50 +00001508 /* do we have data now? */
1509 while (!skb_queue_empty(&(tinfo->sock->sk->sk_receive_queue))) {
1510 len = ip_vs_receive(tinfo->sock, tinfo->buf,
Hans Schillstromf1313152011-01-03 14:44:55 +01001511 ipvs->recv_mesg_maxlen);
Sven Wegener998e7a72008-07-16 11:13:50 +00001512 if (len <= 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001513 pr_err("receiving message error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 break;
1515 }
Sven Wegener998e7a72008-07-16 11:13:50 +00001516
1517 /* disable bottom half, because it accesses the data
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 shared by softirq while getting/creating conns */
1519 local_bh_disable();
Hans Schillstromf1313152011-01-03 14:44:55 +01001520 ip_vs_process_message(tinfo->net, tinfo->buf, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 local_bh_enable();
1522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 }
1524
1525 /* release the sending multicast socket */
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001526 sk_release_kernel(tinfo->sock->sk);
Sven Wegener998e7a72008-07-16 11:13:50 +00001527 kfree(tinfo->buf);
Neil Hormancc0191a2007-06-18 22:33:20 -07001528 kfree(tinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 return 0;
1531}
1532
1533
Hans Schillstromf1313152011-01-03 14:44:55 +01001534int start_sync_thread(struct net *net, int state, char *mcast_ifn, __u8 syncid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Neil Hormancc0191a2007-06-18 22:33:20 -07001536 struct ip_vs_sync_thread_data *tinfo;
Sven Wegener998e7a72008-07-16 11:13:50 +00001537 struct task_struct **realtask, *task;
1538 struct socket *sock;
Hans Schillstromf1313152011-01-03 14:44:55 +01001539 struct netns_ipvs *ipvs = net_ipvs(net);
Sven Wegener998e7a72008-07-16 11:13:50 +00001540 char *name, *buf = NULL;
1541 int (*threadfn)(void *data);
1542 int result = -ENOMEM;
Neil Hormancc0191a2007-06-18 22:33:20 -07001543
Hannes Eder1e3e2382009-08-02 11:05:41 +00001544 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
Sven Wegener998e7a72008-07-16 11:13:50 +00001545 IP_VS_DBG(7, "Each ip_vs_sync_conn entry needs %Zd bytes\n",
Hans Schillstrom2981bc92010-11-19 14:25:11 +01001546 sizeof(struct ip_vs_sync_conn_v0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (state == IP_VS_STATE_MASTER) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001549 if (ipvs->master_thread)
Sven Wegener998e7a72008-07-16 11:13:50 +00001550 return -EEXIST;
1551
Hans Schillstromf1313152011-01-03 14:44:55 +01001552 strlcpy(ipvs->master_mcast_ifn, mcast_ifn,
1553 sizeof(ipvs->master_mcast_ifn));
1554 ipvs->master_syncid = syncid;
1555 realtask = &ipvs->master_thread;
1556 name = "ipvs_master:%d";
Sven Wegener998e7a72008-07-16 11:13:50 +00001557 threadfn = sync_thread_master;
Hans Schillstromf1313152011-01-03 14:44:55 +01001558 sock = make_send_sock(net);
Sven Wegener998e7a72008-07-16 11:13:50 +00001559 } else if (state == IP_VS_STATE_BACKUP) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001560 if (ipvs->backup_thread)
Sven Wegener998e7a72008-07-16 11:13:50 +00001561 return -EEXIST;
1562
Hans Schillstromf1313152011-01-03 14:44:55 +01001563 strlcpy(ipvs->backup_mcast_ifn, mcast_ifn,
1564 sizeof(ipvs->backup_mcast_ifn));
1565 ipvs->backup_syncid = syncid;
1566 realtask = &ipvs->backup_thread;
1567 name = "ipvs_backup:%d";
Sven Wegener998e7a72008-07-16 11:13:50 +00001568 threadfn = sync_thread_backup;
Hans Schillstromf1313152011-01-03 14:44:55 +01001569 sock = make_receive_sock(net);
Sven Wegener998e7a72008-07-16 11:13:50 +00001570 } else {
1571 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573
Sven Wegener998e7a72008-07-16 11:13:50 +00001574 if (IS_ERR(sock)) {
1575 result = PTR_ERR(sock);
1576 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
1578
Hans Schillstromf1313152011-01-03 14:44:55 +01001579 set_sync_mesg_maxlen(net, state);
Sven Wegener998e7a72008-07-16 11:13:50 +00001580 if (state == IP_VS_STATE_BACKUP) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001581 buf = kmalloc(ipvs->recv_mesg_maxlen, GFP_KERNEL);
Sven Wegener998e7a72008-07-16 11:13:50 +00001582 if (!buf)
1583 goto outsocket;
1584 }
1585
1586 tinfo = kmalloc(sizeof(*tinfo), GFP_KERNEL);
1587 if (!tinfo)
1588 goto outbuf;
1589
Hans Schillstromf1313152011-01-03 14:44:55 +01001590 tinfo->net = net;
Sven Wegener998e7a72008-07-16 11:13:50 +00001591 tinfo->sock = sock;
1592 tinfo->buf = buf;
1593
Hans Schillstromf1313152011-01-03 14:44:55 +01001594 task = kthread_run(threadfn, tinfo, name, ipvs->gen);
Sven Wegener998e7a72008-07-16 11:13:50 +00001595 if (IS_ERR(task)) {
1596 result = PTR_ERR(task);
1597 goto outtinfo;
1598 }
1599
1600 /* mark as active */
1601 *realtask = task;
Hans Schillstromf1313152011-01-03 14:44:55 +01001602 ipvs->sync_state |= state;
Sven Wegener998e7a72008-07-16 11:13:50 +00001603
1604 /* increase the module use count */
1605 ip_vs_use_count_inc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 return 0;
Sven Wegener998e7a72008-07-16 11:13:50 +00001608
1609outtinfo:
1610 kfree(tinfo);
1611outbuf:
1612 kfree(buf);
1613outsocket:
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001614 sk_release_kernel(sock->sk);
Sven Wegener998e7a72008-07-16 11:13:50 +00001615out:
1616 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619
Hans Schillstromf1313152011-01-03 14:44:55 +01001620int stop_sync_thread(struct net *net, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Hans Schillstromf1313152011-01-03 14:44:55 +01001622 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001623 int retc = -EINVAL;
Hans Schillstromf1313152011-01-03 14:44:55 +01001624
Hannes Eder1e3e2382009-08-02 11:05:41 +00001625 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Sven Wegener998e7a72008-07-16 11:13:50 +00001627 if (state == IP_VS_STATE_MASTER) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001628 if (!ipvs->master_thread)
Sven Wegener998e7a72008-07-16 11:13:50 +00001629 return -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Hannes Eder1e3e2382009-08-02 11:05:41 +00001631 pr_info("stopping master sync thread %d ...\n",
Hans Schillstromf1313152011-01-03 14:44:55 +01001632 task_pid_nr(ipvs->master_thread));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Sven Wegener998e7a72008-07-16 11:13:50 +00001634 /*
1635 * The lock synchronizes with sb_queue_tail(), so that we don't
1636 * add sync buffers to the queue, when we are already in
1637 * progress of stopping the master sync daemon.
1638 */
1639
Hans Schillstromf1313152011-01-03 14:44:55 +01001640 spin_lock_bh(&ipvs->sync_lock);
1641 ipvs->sync_state &= ~IP_VS_STATE_MASTER;
1642 spin_unlock_bh(&ipvs->sync_lock);
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001643 retc = kthread_stop(ipvs->master_thread);
Hans Schillstromf1313152011-01-03 14:44:55 +01001644 ipvs->master_thread = NULL;
Sven Wegener998e7a72008-07-16 11:13:50 +00001645 } else if (state == IP_VS_STATE_BACKUP) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001646 if (!ipvs->backup_thread)
Sven Wegener998e7a72008-07-16 11:13:50 +00001647 return -ESRCH;
1648
Hannes Eder1e3e2382009-08-02 11:05:41 +00001649 pr_info("stopping backup sync thread %d ...\n",
Hans Schillstromf1313152011-01-03 14:44:55 +01001650 task_pid_nr(ipvs->backup_thread));
Sven Wegener998e7a72008-07-16 11:13:50 +00001651
Hans Schillstromf1313152011-01-03 14:44:55 +01001652 ipvs->sync_state &= ~IP_VS_STATE_BACKUP;
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001653 retc = kthread_stop(ipvs->backup_thread);
Hans Schillstromf1313152011-01-03 14:44:55 +01001654 ipvs->backup_thread = NULL;
Sven Wegener998e7a72008-07-16 11:13:50 +00001655 }
1656
1657 /* decrease the module use count */
1658 ip_vs_use_count_dec();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001660 return retc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001662
1663/*
1664 * Initialize data struct for each netns
1665 */
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001666int __net_init __ip_vs_sync_init(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001667{
Hans Schillstromf1313152011-01-03 14:44:55 +01001668 struct netns_ipvs *ipvs = net_ipvs(net);
1669
Hans Schillstromf1313152011-01-03 14:44:55 +01001670 INIT_LIST_HEAD(&ipvs->sync_queue);
1671 spin_lock_init(&ipvs->sync_lock);
1672 spin_lock_init(&ipvs->sync_buff_lock);
1673
1674 ipvs->sync_mcast_addr.sin_family = AF_INET;
1675 ipvs->sync_mcast_addr.sin_port = cpu_to_be16(IP_VS_SYNC_PORT);
1676 ipvs->sync_mcast_addr.sin_addr.s_addr = cpu_to_be32(IP_VS_SYNC_GROUP);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001677 return 0;
1678}
1679
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001680void __ip_vs_sync_cleanup(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001681{
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001682 int retc;
1683
1684 retc = stop_sync_thread(net, IP_VS_STATE_MASTER);
1685 if (retc && retc != -ESRCH)
1686 pr_err("Failed to stop Master Daemon\n");
1687
1688 retc = stop_sync_thread(net, IP_VS_STATE_BACKUP);
1689 if (retc && retc != -ESRCH)
1690 pr_err("Failed to stop Backup Daemon\n");
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001691}
Hans Schillstromf1313152011-01-03 14:44:55 +01001692
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001693int __init ip_vs_sync_init(void)
1694{
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001695 return 0;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001696}
1697
Simon Hormaned3d1e72011-02-01 18:30:26 +01001698void ip_vs_sync_cleanup(void)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001699{
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001700}