]> git.ipfire.org Git - thirdparty/linux.git/blame - net/netfilter/ipvs/ip_vs_sync.c
net: replace calls to sock->ops->connect() with kernel_connect()
[thirdparty/linux.git] / net / netfilter / ipvs / ip_vs_sync.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * IPVS An implementation of the IP virtual server support for the
4 * LINUX operating system. IPVS is now implemented as a module
5 * over the NetFilter framework. IPVS can be used to build a
6 * high-performance and highly available server based on a
7 * cluster of servers.
8 *
b880c1f0
HS
9 * Version 1, is capable of handling both version 0 and 1 messages.
10 * Version 0 is the plain old format.
11 * Note Version 0 receivers will just drop Ver 1 messages.
12 * Version 1 is capable of handle IPv6, Persistence data,
13 * time-outs, and firewall marks.
14 * In ver.1 "ip_vs_sync_conn_options" will be sent in netw. order.
15 * Ver. 0 can be turned on by sysctl -w net.ipv4.vs.sync_version=0
16 *
17 * Definitions Message: is a complete datagram
18 * Sync_conn: is a part of a Message
19 * Param Data is an option to a Sync_conn.
20 *
1da177e4
LT
21 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
22 *
23 * ip_vs_sync: sync connection info from master load balancer to backups
24 * through multicast
25 *
26 * Changes:
27 * Alexandre Cassen : Added master & backup support at a time.
28 * Alexandre Cassen : Added SyncID support for incoming sync
29 * messages filtering.
30 * Justin Ossevoort : Fix endian problem on sync message size.
b880c1f0
HS
31 * Hans Schillstrom : Added Version 1: i.e. IPv6,
32 * Persistence support, fwmark and time-out.
1da177e4
LT
33 */
34
9aada7ac
HE
35#define KMSG_COMPONENT "IPVS"
36#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
37
1da177e4
LT
38#include <linux/module.h>
39#include <linux/slab.h>
14c85021 40#include <linux/inetdevice.h>
1da177e4
LT
41#include <linux/net.h>
42#include <linux/completion.h>
43#include <linux/delay.h>
44#include <linux/skbuff.h>
45#include <linux/in.h>
46#include <linux/igmp.h> /* for ip_mc_join_group */
14c85021 47#include <linux/udp.h>
e6dd731c 48#include <linux/err.h>
998e7a76 49#include <linux/kthread.h>
ba6fd850 50#include <linux/wait.h>
e6f225eb 51#include <linux/kernel.h>
5c64576a 52#include <linux/sched/signal.h>
1da177e4 53
fe5e7a1e
HS
54#include <asm/unaligned.h> /* Used for ntoh_seq and hton_seq */
55
1da177e4
LT
56#include <net/ip.h>
57#include <net/sock.h>
1da177e4
LT
58
59#include <net/ip_vs.h>
60
61#define IP_VS_SYNC_GROUP 0xe0000051 /* multicast addr - 224.0.0.81 */
62#define IP_VS_SYNC_PORT 8848 /* multicast port */
63
2981bc9a 64#define SYNC_PROTO_VER 1 /* Protocol version in header */
1da177e4 65
ae1d48b2 66static struct lock_class_key __ipvs_sync_key;
1da177e4
LT
67/*
68 * IPVS sync connection entry
2981bc9a 69 * Version 0, i.e. original version.
1da177e4 70 */
2981bc9a 71struct ip_vs_sync_conn_v0 {
1da177e4
LT
72 __u8 reserved;
73
74 /* Protocol, addresses and port numbers */
75 __u8 protocol; /* Which protocol (TCP/UDP) */
014d730d
AV
76 __be16 cport;
77 __be16 vport;
78 __be16 dport;
79 __be32 caddr; /* client address */
80 __be32 vaddr; /* virtual address */
81 __be32 daddr; /* destination address */
1da177e4
LT
82
83 /* Flags and state transition */
014d730d
AV
84 __be16 flags; /* status flags */
85 __be16 state; /* state info */
1da177e4
LT
86
87 /* The sequence options start here */
88};
89
90struct ip_vs_sync_conn_options {
91 struct ip_vs_seq in_seq; /* incoming seq. struct */
92 struct ip_vs_seq out_seq; /* outgoing seq. struct */
93};
94
2981bc9a
HS
95/*
96 Sync Connection format (sync_conn)
97
98 0 1 2 3
99 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
100 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
101 | Type | Protocol | Ver. | Size |
102 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
103 | Flags |
104 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
105 | State | cport |
106 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
107 | vport | dport |
108 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
109 | fwmark |
110 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
111 | timeout (in sec.) |
112 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
113 | ... |
114 | IP-Addresses (v4 or v6) |
115 | ... |
116 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117 Optional Parameters.
118 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
119 | Param. Type | Param. Length | Param. data |
120 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |
121 | ... |
122 | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
123 | | Param Type | Param. Length |
124 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
125 | Param data |
126 | Last Param data should be padded for 32 bit alignment |
127 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
128*/
129
130/*
131 * Type 0, IPv4 sync connection format
132 */
133struct ip_vs_sync_v4 {
134 __u8 type;
135 __u8 protocol; /* Which protocol (TCP/UDP) */
136 __be16 ver_size; /* Version msb 4 bits */
137 /* Flags and state transition */
138 __be32 flags; /* status flags */
139 __be16 state; /* state info */
140 /* Protocol, addresses and port numbers */
141 __be16 cport;
142 __be16 vport;
143 __be16 dport;
144 __be32 fwmark; /* Firewall mark from skb */
145 __be32 timeout; /* cp timeout */
146 __be32 caddr; /* client address */
147 __be32 vaddr; /* virtual address */
148 __be32 daddr; /* destination address */
149 /* The sequence options start here */
150 /* PE data padded to 32bit alignment after seq. options */
151};
152/*
153 * Type 2 messages IPv6
154 */
155struct ip_vs_sync_v6 {
156 __u8 type;
157 __u8 protocol; /* Which protocol (TCP/UDP) */
158 __be16 ver_size; /* Version msb 4 bits */
159 /* Flags and state transition */
160 __be32 flags; /* status flags */
161 __be16 state; /* state info */
162 /* Protocol, addresses and port numbers */
163 __be16 cport;
164 __be16 vport;
165 __be16 dport;
166 __be32 fwmark; /* Firewall mark from skb */
167 __be32 timeout; /* cp timeout */
168 struct in6_addr caddr; /* client address */
169 struct in6_addr vaddr; /* virtual address */
170 struct in6_addr daddr; /* destination address */
171 /* The sequence options start here */
172 /* PE data padded to 32bit alignment after seq. options */
173};
174
175union ip_vs_sync_conn {
176 struct ip_vs_sync_v4 v4;
177 struct ip_vs_sync_v6 v6;
178};
179
180/* Bits in Type field in above */
181#define STYPE_INET6 0
182#define STYPE_F_INET6 (1 << STYPE_INET6)
183
184#define SVER_SHIFT 12 /* Shift to get version */
185#define SVER_MASK 0x0fff /* Mask to strip version */
186
187#define IPVS_OPT_SEQ_DATA 1
188#define IPVS_OPT_PE_DATA 2
189#define IPVS_OPT_PE_NAME 3
190#define IPVS_OPT_PARAM 7
191
192#define IPVS_OPT_F_SEQ_DATA (1 << (IPVS_OPT_SEQ_DATA-1))
193#define IPVS_OPT_F_PE_DATA (1 << (IPVS_OPT_PE_DATA-1))
194#define IPVS_OPT_F_PE_NAME (1 << (IPVS_OPT_PE_NAME-1))
195#define IPVS_OPT_F_PARAM (1 << (IPVS_OPT_PARAM-1))
196
cc0191ae 197struct ip_vs_sync_thread_data {
5db7c8b9 198 struct task_struct *task;
37b68e6d 199 struct netns_ipvs *ipvs;
998e7a76
SW
200 struct socket *sock;
201 char *buf;
f73181c8 202 int id;
cc0191ae
NH
203};
204
2981bc9a
HS
205/* Version 0 definition of packet sizes */
206#define SIMPLE_CONN_SIZE (sizeof(struct ip_vs_sync_conn_v0))
1da177e4 207#define FULL_CONN_SIZE \
2981bc9a 208(sizeof(struct ip_vs_sync_conn_v0) + sizeof(struct ip_vs_sync_conn_options))
1da177e4
LT
209
210
211/*
2981bc9a
HS
212 The master mulitcasts messages (Datagrams) to the backup load balancers
213 in the following format.
214
215 Version 1:
216 Note, first byte should be Zero, so ver 0 receivers will drop the packet.
1da177e4
LT
217
218 0 1 2 3
219 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
220 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2981bc9a
HS
221 | 0 | SyncID | Size |
222 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
223 | Count Conns | Version | Reserved, set to Zero |
1da177e4
LT
224 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
225 | |
226 | IPVS Sync Connection (1) |
227 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
228 | . |
2981bc9a 229 ~ . ~
1da177e4
LT
230 | . |
231 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
232 | |
233 | IPVS Sync Connection (n) |
234 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2981bc9a
HS
235
236 Version 0 Header
237 0 1 2 3
238 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
239 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
240 | Count Conns | SyncID | Size |
241 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
242 | IPVS Sync Connection (1) |
1da177e4
LT
243*/
244
2981bc9a 245/* Version 0 header */
986a0757 246struct ip_vs_sync_mesg_v0 {
1da177e4
LT
247 __u8 nr_conns;
248 __u8 syncid;
38561437 249 __be16 size;
1da177e4
LT
250
251 /* ip_vs_sync_conn entries start here */
252};
253
2981bc9a 254/* Version 1 header */
986a0757 255struct ip_vs_sync_mesg {
2981bc9a
HS
256 __u8 reserved; /* must be zero */
257 __u8 syncid;
38561437 258 __be16 size;
2981bc9a
HS
259 __u8 nr_conns;
260 __s8 version; /* SYNC_PROTO_VER */
261 __u16 spare;
262 /* ip_vs_sync_conn entries start here */
263};
264
d3328817
JA
265union ipvs_sockaddr {
266 struct sockaddr_in in;
267 struct sockaddr_in6 in6;
268};
269
1da177e4
LT
270struct ip_vs_sync_buff {
271 struct list_head list;
272 unsigned long firstuse;
273
274 /* pointers for the message data */
275 struct ip_vs_sync_mesg *mesg;
276 unsigned char *head;
277 unsigned char *end;
278};
279
fe5e7a1e
HS
280/*
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{
57476202 286 memset(ho, 0, sizeof(*ho));
fe5e7a1e
HS
287 ho->init_seq = get_unaligned_be32(&no->init_seq);
288 ho->delta = get_unaligned_be32(&no->delta);
289 ho->previous_delta = get_unaligned_be32(&no->previous_delta);
290}
1da177e4 291
986a0757
HS
292/*
293 * Copy of struct ip_vs_seq
294 * From Aligned host order to unaligned network order
295 */
296static void hton_seq(struct ip_vs_seq *ho, struct ip_vs_seq *no)
297{
298 put_unaligned_be32(ho->init_seq, &no->init_seq);
299 put_unaligned_be32(ho->delta, &no->delta);
300 put_unaligned_be32(ho->previous_delta, &no->previous_delta);
301}
302
f73181c8
PNA
303static inline struct ip_vs_sync_buff *
304sb_dequeue(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms)
1da177e4
LT
305{
306 struct ip_vs_sync_buff *sb;
307
f131315f 308 spin_lock_bh(&ipvs->sync_lock);
f73181c8 309 if (list_empty(&ms->sync_queue)) {
1da177e4 310 sb = NULL;
1c003b15 311 __set_current_state(TASK_INTERRUPTIBLE);
1da177e4 312 } else {
f73181c8 313 sb = list_entry(ms->sync_queue.next, struct ip_vs_sync_buff,
1da177e4
LT
314 list);
315 list_del(&sb->list);
f73181c8
PNA
316 ms->sync_queue_len--;
317 if (!ms->sync_queue_len)
318 ms->sync_queue_delay = 0;
1da177e4 319 }
f131315f 320 spin_unlock_bh(&ipvs->sync_lock);
1da177e4
LT
321
322 return sb;
323}
324
986a0757
HS
325/*
326 * Create a new sync buffer for Version 1 proto.
327 */
f131315f 328static inline struct ip_vs_sync_buff *
e4ff6751 329ip_vs_sync_buff_create(struct netns_ipvs *ipvs, unsigned int len)
1da177e4
LT
330{
331 struct ip_vs_sync_buff *sb;
332
333 if (!(sb=kmalloc(sizeof(struct ip_vs_sync_buff), GFP_ATOMIC)))
334 return NULL;
335
e4ff6751
JA
336 len = max_t(unsigned int, len + sizeof(struct ip_vs_sync_mesg),
337 ipvs->mcfg.sync_maxlen);
338 sb->mesg = kmalloc(len, GFP_ATOMIC);
f131315f 339 if (!sb->mesg) {
1da177e4
LT
340 kfree(sb);
341 return NULL;
342 }
f73181c8 343 sb->mesg->reserved = 0; /* old nr_conns i.e. must be zero now */
986a0757 344 sb->mesg->version = SYNC_PROTO_VER;
e4ff6751 345 sb->mesg->syncid = ipvs->mcfg.syncid;
38561437 346 sb->mesg->size = htons(sizeof(struct ip_vs_sync_mesg));
986a0757
HS
347 sb->mesg->nr_conns = 0;
348 sb->mesg->spare = 0;
349 sb->head = (unsigned char *)sb->mesg + sizeof(struct ip_vs_sync_mesg);
e4ff6751 350 sb->end = (unsigned char *)sb->mesg + len;
986a0757 351
1da177e4
LT
352 sb->firstuse = jiffies;
353 return sb;
354}
355
356static inline void ip_vs_sync_buff_release(struct ip_vs_sync_buff *sb)
357{
358 kfree(sb->mesg);
359 kfree(sb);
360}
361
f73181c8
PNA
362static inline void sb_queue_tail(struct netns_ipvs *ipvs,
363 struct ipvs_master_sync_state *ms)
998e7a76 364{
f73181c8 365 struct ip_vs_sync_buff *sb = ms->sync_buff;
f131315f
HS
366
367 spin_lock(&ipvs->sync_lock);
1c003b15 368 if (ipvs->sync_state & IP_VS_STATE_MASTER &&
f73181c8
PNA
369 ms->sync_queue_len < sysctl_sync_qlen_max(ipvs)) {
370 if (!ms->sync_queue_len)
371 schedule_delayed_work(&ms->master_wakeup_work,
1c003b15 372 max(IPVS_SYNC_SEND_DELAY, 1));
f73181c8
PNA
373 ms->sync_queue_len++;
374 list_add_tail(&sb->list, &ms->sync_queue);
5db7c8b9
JA
375 if ((++ms->sync_queue_delay) == IPVS_SYNC_WAKEUP_RATE) {
376 int id = (int)(ms - ipvs->ms);
377
378 wake_up_process(ipvs->master_tinfo[id].task);
379 }
1c003b15 380 } else
998e7a76 381 ip_vs_sync_buff_release(sb);
f131315f 382 spin_unlock(&ipvs->sync_lock);
998e7a76
SW
383}
384
1da177e4
LT
385/*
386 * Get the current sync buffer if it has been created for more
387 * than the specified time or the specified time is zero.
388 */
389static inline struct ip_vs_sync_buff *
f73181c8
PNA
390get_curr_sync_buff(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms,
391 unsigned long time)
1da177e4
LT
392{
393 struct ip_vs_sync_buff *sb;
394
f131315f 395 spin_lock_bh(&ipvs->sync_buff_lock);
f73181c8
PNA
396 sb = ms->sync_buff;
397 if (sb && time_after_eq(jiffies - sb->firstuse, time)) {
398 ms->sync_buff = NULL;
1c003b15 399 __set_current_state(TASK_RUNNING);
1da177e4
LT
400 } else
401 sb = NULL;
f131315f 402 spin_unlock_bh(&ipvs->sync_buff_lock);
1da177e4
LT
403 return sb;
404}
405
f73181c8
PNA
406static inline int
407select_master_thread_id(struct netns_ipvs *ipvs, struct ip_vs_conn *cp)
f131315f 408{
f73181c8 409 return ((long) cp >> (1 + ilog2(sizeof(*cp)))) & ipvs->threads_mask;
b880c1f0
HS
410}
411
412/*
413 * Create a new sync buffer for Version 0 proto.
414 */
f131315f 415static inline struct ip_vs_sync_buff *
e4ff6751 416ip_vs_sync_buff_create_v0(struct netns_ipvs *ipvs, unsigned int len)
b880c1f0
HS
417{
418 struct ip_vs_sync_buff *sb;
419 struct ip_vs_sync_mesg_v0 *mesg;
420
421 if (!(sb=kmalloc(sizeof(struct ip_vs_sync_buff), GFP_ATOMIC)))
422 return NULL;
423
e4ff6751
JA
424 len = max_t(unsigned int, len + sizeof(struct ip_vs_sync_mesg_v0),
425 ipvs->mcfg.sync_maxlen);
426 sb->mesg = kmalloc(len, GFP_ATOMIC);
f131315f 427 if (!sb->mesg) {
b880c1f0
HS
428 kfree(sb);
429 return NULL;
430 }
431 mesg = (struct ip_vs_sync_mesg_v0 *)sb->mesg;
432 mesg->nr_conns = 0;
e4ff6751 433 mesg->syncid = ipvs->mcfg.syncid;
38561437 434 mesg->size = htons(sizeof(struct ip_vs_sync_mesg_v0));
f131315f 435 sb->head = (unsigned char *)mesg + sizeof(struct ip_vs_sync_mesg_v0);
e4ff6751 436 sb->end = (unsigned char *)mesg + len;
b880c1f0
HS
437 sb->firstuse = jiffies;
438 return sb;
439}
440
4d0c875d
JA
441/* Check if connection is controlled by persistence */
442static inline bool in_persistence(struct ip_vs_conn *cp)
443{
444 for (cp = cp->control; cp; cp = cp->control) {
445 if (cp->flags & IP_VS_CONN_F_TEMPLATE)
446 return true;
447 }
448 return false;
449}
450
749c42b6
JA
451/* Check if conn should be synced.
452 * pkts: conn packets, use sysctl_sync_threshold to avoid packet check
453 * - (1) sync_refresh_period: reduce sync rate. Additionally, retry
454 * sync_retries times with period of sync_refresh_period/8
455 * - (2) if both sync_refresh_period and sync_period are 0 send sync only
456 * for state changes or only once when pkts matches sync_threshold
457 * - (3) templates: rate can be reduced only with sync_refresh_period or
458 * with (2)
459 */
460static int ip_vs_sync_conn_needed(struct netns_ipvs *ipvs,
461 struct ip_vs_conn *cp, int pkts)
462{
14cd5d4a 463 unsigned long orig = READ_ONCE(cp->sync_endtime);
749c42b6
JA
464 unsigned long now = jiffies;
465 unsigned long n = (now + cp->timeout) & ~3UL;
466 unsigned int sync_refresh_period;
467 int sync_period;
468 int force;
469
470 /* Check if we sync in current state */
471 if (unlikely(cp->flags & IP_VS_CONN_F_TEMPLATE))
472 force = 0;
4d0c875d
JA
473 else if (unlikely(sysctl_sync_persist_mode(ipvs) && in_persistence(cp)))
474 return 0;
749c42b6
JA
475 else if (likely(cp->protocol == IPPROTO_TCP)) {
476 if (!((1 << cp->state) &
477 ((1 << IP_VS_TCP_S_ESTABLISHED) |
478 (1 << IP_VS_TCP_S_FIN_WAIT) |
479 (1 << IP_VS_TCP_S_CLOSE) |
480 (1 << IP_VS_TCP_S_CLOSE_WAIT) |
481 (1 << IP_VS_TCP_S_TIME_WAIT))))
482 return 0;
483 force = cp->state != cp->old_state;
484 if (force && cp->state != IP_VS_TCP_S_ESTABLISHED)
485 goto set;
486 } else if (unlikely(cp->protocol == IPPROTO_SCTP)) {
487 if (!((1 << cp->state) &
488 ((1 << IP_VS_SCTP_S_ESTABLISHED) |
61e7c420
JA
489 (1 << IP_VS_SCTP_S_SHUTDOWN_SENT) |
490 (1 << IP_VS_SCTP_S_SHUTDOWN_RECEIVED) |
491 (1 << IP_VS_SCTP_S_SHUTDOWN_ACK_SENT) |
492 (1 << IP_VS_SCTP_S_CLOSED))))
749c42b6
JA
493 return 0;
494 force = cp->state != cp->old_state;
495 if (force && cp->state != IP_VS_SCTP_S_ESTABLISHED)
496 goto set;
497 } else {
498 /* UDP or another protocol with single state */
499 force = 0;
500 }
501
502 sync_refresh_period = sysctl_sync_refresh_period(ipvs);
503 if (sync_refresh_period > 0) {
504 long diff = n - orig;
505 long min_diff = max(cp->timeout >> 1, 10UL * HZ);
506
507 /* Avoid sync if difference is below sync_refresh_period
508 * and below the half timeout.
509 */
510 if (abs(diff) < min_t(long, sync_refresh_period, min_diff)) {
511 int retries = orig & 3;
512
513 if (retries >= sysctl_sync_retries(ipvs))
514 return 0;
515 if (time_before(now, orig - cp->timeout +
516 (sync_refresh_period >> 3)))
517 return 0;
518 n |= retries + 1;
519 }
520 }
521 sync_period = sysctl_sync_period(ipvs);
522 if (sync_period > 0) {
523 if (!(cp->flags & IP_VS_CONN_F_TEMPLATE) &&
524 pkts % sync_period != sysctl_sync_threshold(ipvs))
525 return 0;
fb90e8de 526 } else if (!sync_refresh_period &&
749c42b6
JA
527 pkts != sysctl_sync_threshold(ipvs))
528 return 0;
529
530set:
531 cp->old_state = cp->state;
532 n = cmpxchg(&cp->sync_endtime, orig, n);
533 return n == orig || force;
534}
535
b880c1f0
HS
536/*
537 * Version 0 , could be switched in by sys_ctl.
538 * Add an ip_vs_conn information into the current sync_buff.
539 */
72e9481e 540static void ip_vs_sync_conn_v0(struct netns_ipvs *ipvs, struct ip_vs_conn *cp,
749c42b6 541 int pkts)
b880c1f0
HS
542{
543 struct ip_vs_sync_mesg_v0 *m;
544 struct ip_vs_sync_conn_v0 *s;
f73181c8
PNA
545 struct ip_vs_sync_buff *buff;
546 struct ipvs_master_sync_state *ms;
547 int id;
e4ff6751 548 unsigned int len;
b880c1f0
HS
549
550 if (unlikely(cp->af != AF_INET))
551 return;
552 /* Do not sync ONE PACKET */
553 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
554 return;
555
749c42b6
JA
556 if (!ip_vs_sync_conn_needed(ipvs, cp, pkts))
557 return;
558
ac69269a 559 spin_lock_bh(&ipvs->sync_buff_lock);
f73181c8 560 if (!(ipvs->sync_state & IP_VS_STATE_MASTER)) {
ac69269a 561 spin_unlock_bh(&ipvs->sync_buff_lock);
f73181c8
PNA
562 return;
563 }
564
565 id = select_master_thread_id(ipvs, cp);
566 ms = &ipvs->ms[id];
567 buff = ms->sync_buff;
e4ff6751
JA
568 len = (cp->flags & IP_VS_CONN_F_SEQ_MASK) ? FULL_CONN_SIZE :
569 SIMPLE_CONN_SIZE;
f73181c8
PNA
570 if (buff) {
571 m = (struct ip_vs_sync_mesg_v0 *) buff->mesg;
572 /* Send buffer if it is for v1 */
e4ff6751 573 if (buff->head + len > buff->end || !m->nr_conns) {
f73181c8
PNA
574 sb_queue_tail(ipvs, ms);
575 ms->sync_buff = NULL;
576 buff = NULL;
577 }
578 }
579 if (!buff) {
e4ff6751 580 buff = ip_vs_sync_buff_create_v0(ipvs, len);
f73181c8 581 if (!buff) {
ac69269a 582 spin_unlock_bh(&ipvs->sync_buff_lock);
b880c1f0
HS
583 pr_err("ip_vs_sync_buff_create failed.\n");
584 return;
585 }
f73181c8 586 ms->sync_buff = buff;
b880c1f0
HS
587 }
588
f73181c8
PNA
589 m = (struct ip_vs_sync_mesg_v0 *) buff->mesg;
590 s = (struct ip_vs_sync_conn_v0 *) buff->head;
b880c1f0
HS
591
592 /* copy members */
593 s->reserved = 0;
594 s->protocol = cp->protocol;
595 s->cport = cp->cport;
596 s->vport = cp->vport;
597 s->dport = cp->dport;
598 s->caddr = cp->caddr.ip;
599 s->vaddr = cp->vaddr.ip;
600 s->daddr = cp->daddr.ip;
601 s->flags = htons(cp->flags & ~IP_VS_CONN_F_HASHED);
602 s->state = htons(cp->state);
603 if (cp->flags & IP_VS_CONN_F_SEQ_MASK) {
604 struct ip_vs_sync_conn_options *opt =
605 (struct ip_vs_sync_conn_options *)&s[1];
e3478c68 606 memcpy(opt, &cp->sync_conn_opt, sizeof(*opt));
b880c1f0
HS
607 }
608
609 m->nr_conns++;
38561437 610 m->size = htons(ntohs(m->size) + len);
f73181c8 611 buff->head += len;
ac69269a 612 spin_unlock_bh(&ipvs->sync_buff_lock);
b880c1f0
HS
613
614 /* synchronize its controller if it has */
749c42b6
JA
615 cp = cp->control;
616 if (cp) {
617 if (cp->flags & IP_VS_CONN_F_TEMPLATE)
988187e8 618 pkts = atomic_inc_return(&cp->in_pkts);
749c42b6
JA
619 else
620 pkts = sysctl_sync_threshold(ipvs);
b61a8c1a 621 ip_vs_sync_conn(ipvs, cp, pkts);
749c42b6 622 }
b880c1f0
HS
623}
624
1da177e4
LT
625/*
626 * Add an ip_vs_conn information into the current sync_buff.
627 * Called by ip_vs_in.
986a0757 628 * Sending Version 1 messages
1da177e4 629 */
b61a8c1a 630void ip_vs_sync_conn(struct netns_ipvs *ipvs, struct ip_vs_conn *cp, int pkts)
1da177e4
LT
631{
632 struct ip_vs_sync_mesg *m;
986a0757 633 union ip_vs_sync_conn *s;
f73181c8
PNA
634 struct ip_vs_sync_buff *buff;
635 struct ipvs_master_sync_state *ms;
636 int id;
986a0757
HS
637 __u8 *p;
638 unsigned int len, pe_name_len, pad;
639
b880c1f0 640 /* Handle old version of the protocol */
7532e8d4 641 if (sysctl_sync_ver(ipvs) == 0) {
72e9481e 642 ip_vs_sync_conn_v0(ipvs, cp, pkts);
b880c1f0
HS
643 return;
644 }
986a0757
HS
645 /* Do not sync ONE PACKET */
646 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
647 goto control;
648sloop:
749c42b6
JA
649 if (!ip_vs_sync_conn_needed(ipvs, cp, pkts))
650 goto control;
651
986a0757
HS
652 /* Sanity checks */
653 pe_name_len = 0;
654 if (cp->pe_data_len) {
655 if (!cp->pe_data || !cp->dest) {
656 IP_VS_ERR_RL("SYNC, connection pe_data invalid\n");
657 return;
658 }
659 pe_name_len = strnlen(cp->pe->name, IP_VS_PENAME_MAXLEN);
660 }
1da177e4 661
ac69269a 662 spin_lock_bh(&ipvs->sync_buff_lock);
f73181c8 663 if (!(ipvs->sync_state & IP_VS_STATE_MASTER)) {
ac69269a 664 spin_unlock_bh(&ipvs->sync_buff_lock);
f73181c8
PNA
665 return;
666 }
667
668 id = select_master_thread_id(ipvs, cp);
669 ms = &ipvs->ms[id];
986a0757
HS
670
671#ifdef CONFIG_IP_VS_IPV6
672 if (cp->af == AF_INET6)
673 len = sizeof(struct ip_vs_sync_v6);
674 else
675#endif
676 len = sizeof(struct ip_vs_sync_v4);
677
678 if (cp->flags & IP_VS_CONN_F_SEQ_MASK)
679 len += sizeof(struct ip_vs_sync_conn_options) + 2;
680
681 if (cp->pe_data_len)
682 len += cp->pe_data_len + 2; /* + Param hdr field */
683 if (pe_name_len)
684 len += pe_name_len + 2;
685
686 /* check if there is a space for this one */
687 pad = 0;
f73181c8
PNA
688 buff = ms->sync_buff;
689 if (buff) {
690 m = buff->mesg;
691 pad = (4 - (size_t) buff->head) & 3;
692 /* Send buffer if it is for v0 */
693 if (buff->head + len + pad > buff->end || m->reserved) {
694 sb_queue_tail(ipvs, ms);
695 ms->sync_buff = NULL;
696 buff = NULL;
986a0757
HS
697 pad = 0;
698 }
699 }
700
f73181c8 701 if (!buff) {
e4ff6751 702 buff = ip_vs_sync_buff_create(ipvs, len);
f73181c8 703 if (!buff) {
ac69269a 704 spin_unlock_bh(&ipvs->sync_buff_lock);
1e3e238e 705 pr_err("ip_vs_sync_buff_create failed.\n");
1da177e4
LT
706 return;
707 }
f73181c8
PNA
708 ms->sync_buff = buff;
709 m = buff->mesg;
1da177e4
LT
710 }
711
f73181c8
PNA
712 p = buff->head;
713 buff->head += pad + len;
38561437 714 m->size = htons(ntohs(m->size) + pad + len);
986a0757
HS
715 /* Add ev. padding from prev. sync_conn */
716 while (pad--)
717 *(p++) = 0;
718
719 s = (union ip_vs_sync_conn *)p;
720
721 /* Set message type & copy members */
722 s->v4.type = (cp->af == AF_INET6 ? STYPE_F_INET6 : 0);
723 s->v4.ver_size = htons(len & SVER_MASK); /* Version 0 */
724 s->v4.flags = htonl(cp->flags & ~IP_VS_CONN_F_HASHED);
725 s->v4.state = htons(cp->state);
726 s->v4.protocol = cp->protocol;
727 s->v4.cport = cp->cport;
728 s->v4.vport = cp->vport;
729 s->v4.dport = cp->dport;
730 s->v4.fwmark = htonl(cp->fwmark);
731 s->v4.timeout = htonl(cp->timeout / HZ);
1da177e4 732 m->nr_conns++;
1da177e4 733
986a0757
HS
734#ifdef CONFIG_IP_VS_IPV6
735 if (cp->af == AF_INET6) {
736 p += sizeof(struct ip_vs_sync_v6);
4e3fd7a0
AD
737 s->v6.caddr = cp->caddr.in6;
738 s->v6.vaddr = cp->vaddr.in6;
739 s->v6.daddr = cp->daddr.in6;
986a0757
HS
740 } else
741#endif
742 {
743 p += sizeof(struct ip_vs_sync_v4); /* options ptr */
744 s->v4.caddr = cp->caddr.ip;
745 s->v4.vaddr = cp->vaddr.ip;
746 s->v4.daddr = cp->daddr.ip;
747 }
748 if (cp->flags & IP_VS_CONN_F_SEQ_MASK) {
749 *(p++) = IPVS_OPT_SEQ_DATA;
750 *(p++) = sizeof(struct ip_vs_sync_conn_options);
751 hton_seq((struct ip_vs_seq *)p, &cp->in_seq);
752 p += sizeof(struct ip_vs_seq);
753 hton_seq((struct ip_vs_seq *)p, &cp->out_seq);
754 p += sizeof(struct ip_vs_seq);
1da177e4 755 }
986a0757
HS
756 /* Handle pe data */
757 if (cp->pe_data_len && cp->pe_data) {
758 *(p++) = IPVS_OPT_PE_DATA;
759 *(p++) = cp->pe_data_len;
760 memcpy(p, cp->pe_data, cp->pe_data_len);
761 p += cp->pe_data_len;
762 if (pe_name_len) {
763 /* Add PE_NAME */
764 *(p++) = IPVS_OPT_PE_NAME;
765 *(p++) = pe_name_len;
766 memcpy(p, cp->pe->name, pe_name_len);
767 p += pe_name_len;
768 }
769 }
770
ac69269a 771 spin_unlock_bh(&ipvs->sync_buff_lock);
1da177e4 772
986a0757 773control:
1da177e4 774 /* synchronize its controller if it has */
986a0757
HS
775 cp = cp->control;
776 if (!cp)
777 return;
749c42b6 778 if (cp->flags & IP_VS_CONN_F_TEMPLATE)
988187e8 779 pkts = atomic_inc_return(&cp->in_pkts);
749c42b6
JA
780 else
781 pkts = sysctl_sync_threshold(ipvs);
986a0757 782 goto sloop;
1da177e4
LT
783}
784
fe5e7a1e
HS
785/*
786 * fill_param used by version 1
787 */
85999283 788static inline int
19913dec 789ip_vs_conn_fill_param_sync(struct netns_ipvs *ipvs, int af, union ip_vs_sync_conn *sc,
fe5e7a1e
HS
790 struct ip_vs_conn_param *p,
791 __u8 *pe_data, unsigned int pe_data_len,
792 __u8 *pe_name, unsigned int pe_name_len)
85999283 793{
fe5e7a1e
HS
794#ifdef CONFIG_IP_VS_IPV6
795 if (af == AF_INET6)
19913dec 796 ip_vs_conn_fill_param(ipvs, af, sc->v6.protocol,
fe5e7a1e
HS
797 (const union nf_inet_addr *)&sc->v6.caddr,
798 sc->v6.cport,
799 (const union nf_inet_addr *)&sc->v6.vaddr,
800 sc->v6.vport, p);
801 else
802#endif
19913dec 803 ip_vs_conn_fill_param(ipvs, af, sc->v4.protocol,
fe5e7a1e
HS
804 (const union nf_inet_addr *)&sc->v4.caddr,
805 sc->v4.cport,
806 (const union nf_inet_addr *)&sc->v4.vaddr,
807 sc->v4.vport, p);
808 /* Handle pe data */
809 if (pe_data_len) {
810 if (pe_name_len) {
811 char buff[IP_VS_PENAME_MAXLEN+1];
812
813 memcpy(buff, pe_name, pe_name_len);
814 buff[pe_name_len]=0;
815 p->pe = __ip_vs_pe_getbyname(buff);
816 if (!p->pe) {
f131315f
HS
817 IP_VS_DBG(3, "BACKUP, no %s engine found/loaded\n",
818 buff);
fe5e7a1e
HS
819 return 1;
820 }
821 } else {
822 IP_VS_ERR_RL("BACKUP, Invalid PE parameters\n");
823 return 1;
824 }
825
6060c74a 826 p->pe_data = kmemdup(pe_data, pe_data_len, GFP_ATOMIC);
fe5e7a1e 827 if (!p->pe_data) {
982f4051 828 module_put(p->pe->module);
fe5e7a1e
HS
829 return -ENOMEM;
830 }
fe5e7a1e
HS
831 p->pe_data_len = pe_data_len;
832 }
85999283
SH
833 return 0;
834}
1da177e4
LT
835
836/*
fe5e7a1e
HS
837 * Connection Add / Update.
838 * Common for version 0 and 1 reception of backup sync_conns.
839 * Param: ...
840 * timeout is in sec.
1da177e4 841 */
4f30665b 842static void ip_vs_proc_conn(struct netns_ipvs *ipvs, struct ip_vs_conn_param *param,
9bbac6a9
HS
843 unsigned int flags, unsigned int state,
844 unsigned int protocol, unsigned int type,
fe5e7a1e
HS
845 const union nf_inet_addr *daddr, __be16 dport,
846 unsigned long timeout, __u32 fwmark,
9bbac6a9 847 struct ip_vs_sync_conn_options *opt)
fe5e7a1e
HS
848{
849 struct ip_vs_dest *dest;
850 struct ip_vs_conn *cp;
851
d752c364 852 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
fe5e7a1e 853 cp = ip_vs_conn_in_get(param);
d752c364
MRL
854 if (cp && ((cp->dport != dport) ||
855 !ip_vs_addr_equal(cp->daf, &cp->daddr, daddr))) {
856 if (!(flags & IP_VS_CONN_F_INACTIVE)) {
857 ip_vs_conn_expire_now(cp);
858 __ip_vs_conn_put(cp);
859 cp = NULL;
860 } else {
861 /* This is the expiration message for the
862 * connection that was already replaced, so we
863 * just ignore it.
864 */
865 __ip_vs_conn_put(cp);
866 kfree(param->pe_data);
867 return;
868 }
869 }
870 } else {
fe5e7a1e 871 cp = ip_vs_ct_in_get(param);
d752c364 872 }
fe5e7a1e 873
cdcc5e90
JA
874 if (cp) {
875 /* Free pe_data */
fe5e7a1e 876 kfree(param->pe_data);
cdcc5e90
JA
877
878 dest = cp->dest;
ac69269a 879 spin_lock_bh(&cp->lock);
cdcc5e90
JA
880 if ((cp->flags ^ flags) & IP_VS_CONN_F_INACTIVE &&
881 !(flags & IP_VS_CONN_F_TEMPLATE) && dest) {
882 if (flags & IP_VS_CONN_F_INACTIVE) {
883 atomic_dec(&dest->activeconns);
884 atomic_inc(&dest->inactconns);
885 } else {
886 atomic_inc(&dest->activeconns);
887 atomic_dec(&dest->inactconns);
888 }
889 }
890 flags &= IP_VS_CONN_F_BACKUP_UPD_MASK;
891 flags |= cp->flags & ~IP_VS_CONN_F_BACKUP_UPD_MASK;
892 cp->flags = flags;
ac69269a 893 spin_unlock_bh(&cp->lock);
413c2d04
JA
894 if (!dest)
895 ip_vs_try_bind_dest(cp);
cdcc5e90 896 } else {
fe5e7a1e
HS
897 /*
898 * Find the appropriate destination for the connection.
899 * If it is not found the connection will remain unbound
900 * but still handled.
901 */
413c2d04 902 rcu_read_lock();
655eef10
AG
903 /* This function is only invoked by the synchronization
904 * code. We do not currently support heterogeneous pools
905 * with synchronization, so we can make the assumption that
906 * the svc_af is the same as the dest_af
907 */
dc2add6f 908 dest = ip_vs_find_dest(ipvs, type, type, daddr, dport,
655eef10
AG
909 param->vaddr, param->vport, protocol,
910 fwmark, flags);
fe5e7a1e 911
ba38528a
AG
912 cp = ip_vs_conn_new(param, type, daddr, dport, flags, dest,
913 fwmark);
413c2d04 914 rcu_read_unlock();
fe5e7a1e 915 if (!cp) {
b734427a 916 kfree(param->pe_data);
fe5e7a1e
HS
917 IP_VS_DBG(2, "BACKUP, add new conn. failed\n");
918 return;
919 }
528c943f
JA
920 if (!(flags & IP_VS_CONN_F_TEMPLATE))
921 kfree(param->pe_data);
fe5e7a1e
HS
922 }
923
57476202
AB
924 if (opt) {
925 cp->in_seq = opt->in_seq;
926 cp->out_seq = opt->out_seq;
927 }
59e0350e 928 atomic_set(&cp->in_pkts, sysctl_sync_threshold(ipvs));
fe5e7a1e
HS
929 cp->state = state;
930 cp->old_state = cp->state;
931 /*
932 * For Ver 0 messages style
933 * - Not possible to recover the right timeout for templates
934 * - can not find the right fwmark
935 * virtual service. If needed, we can do it for
936 * non-fwmark persistent services.
937 * Ver 1 messages style.
938 * - No problem.
939 */
940 if (timeout) {
941 if (timeout > MAX_SCHEDULE_TIMEOUT / HZ)
942 timeout = MAX_SCHEDULE_TIMEOUT / HZ;
943 cp->timeout = timeout*HZ;
9bbac6a9
HS
944 } else {
945 struct ip_vs_proto_data *pd;
946
18d6ade6 947 pd = ip_vs_proto_data_get(ipvs, protocol);
9bbac6a9
HS
948 if (!(flags & IP_VS_CONN_F_TEMPLATE) && pd && pd->timeout_table)
949 cp->timeout = pd->timeout_table[state];
950 else
951 cp->timeout = (3*60*HZ);
952 }
fe5e7a1e
HS
953 ip_vs_conn_put(cp);
954}
955
956/*
957 * Process received multicast message for Version 0
958 */
19913dec 959static void ip_vs_process_message_v0(struct netns_ipvs *ipvs, const char *buffer,
9bbac6a9 960 const size_t buflen)
1da177e4 961{
986a0757 962 struct ip_vs_sync_mesg_v0 *m = (struct ip_vs_sync_mesg_v0 *)buffer;
2981bc9a 963 struct ip_vs_sync_conn_v0 *s;
1da177e4 964 struct ip_vs_sync_conn_options *opt;
5c81833c 965 struct ip_vs_protocol *pp;
f11017ec 966 struct ip_vs_conn_param param;
1da177e4
LT
967 char *p;
968 int i;
969
986a0757 970 p = (char *)buffer + sizeof(struct ip_vs_sync_mesg_v0);
1da177e4 971 for (i=0; i<m->nr_conns; i++) {
95c96174 972 unsigned int flags, state;
87375ab4 973
2ad17def 974 if (p + SIMPLE_CONN_SIZE > buffer+buflen) {
fe5e7a1e 975 IP_VS_ERR_RL("BACKUP v0, bogus conn\n");
2ad17def
JA
976 return;
977 }
2981bc9a 978 s = (struct ip_vs_sync_conn_v0 *) p;
7a4fbb1f 979 flags = ntohs(s->flags) | IP_VS_CONN_F_SYNC;
2ad17def
JA
980 flags &= ~IP_VS_CONN_F_HASHED;
981 if (flags & IP_VS_CONN_F_SEQ_MASK) {
982 opt = (struct ip_vs_sync_conn_options *)&s[1];
983 p += FULL_CONN_SIZE;
984 if (p > buffer+buflen) {
fe5e7a1e 985 IP_VS_ERR_RL("BACKUP v0, Dropping buffer bogus conn options\n");
2ad17def
JA
986 return;
987 }
988 } else {
989 opt = NULL;
990 p += SIMPLE_CONN_SIZE;
991 }
992
b209639e 993 state = ntohs(s->state);
2ad17def
JA
994 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
995 pp = ip_vs_proto_get(s->protocol);
996 if (!pp) {
fe5e7a1e 997 IP_VS_DBG(2, "BACKUP v0, Unsupported protocol %u\n",
2ad17def
JA
998 s->protocol);
999 continue;
1000 }
1001 if (state >= pp->num_states) {
fe5e7a1e 1002 IP_VS_DBG(2, "BACKUP v0, Invalid %s state %u\n",
2ad17def
JA
1003 pp->name, state);
1004 continue;
1005 }
1006 } else {
27541143
JA
1007 if (state >= IP_VS_CTPL_S_LAST)
1008 IP_VS_DBG(7, "BACKUP v0, Invalid tpl state %u\n",
1009 state);
2ad17def
JA
1010 }
1011
19913dec 1012 ip_vs_conn_fill_param(ipvs, AF_INET, s->protocol,
fe5e7a1e
HS
1013 (const union nf_inet_addr *)&s->caddr,
1014 s->cport,
1015 (const union nf_inet_addr *)&s->vaddr,
1016 s->vport, &param);
1017
1018 /* Send timeout as Zero */
4f30665b 1019 ip_vs_proc_conn(ipvs, &param, flags, state, s->protocol, AF_INET,
fe5e7a1e 1020 (union nf_inet_addr *)&s->daddr, s->dport,
9bbac6a9 1021 0, 0, opt);
fe5e7a1e
HS
1022 }
1023}
1024
1025/*
1026 * Handle options
1027 */
1028static inline int ip_vs_proc_seqopt(__u8 *p, unsigned int plen,
1029 __u32 *opt_flags,
1030 struct ip_vs_sync_conn_options *opt)
1031{
1032 struct ip_vs_sync_conn_options *topt;
1033
1034 topt = (struct ip_vs_sync_conn_options *)p;
1035
1036 if (plen != sizeof(struct ip_vs_sync_conn_options)) {
1037 IP_VS_DBG(2, "BACKUP, bogus conn options length\n");
1038 return -EINVAL;
1039 }
1040 if (*opt_flags & IPVS_OPT_F_SEQ_DATA) {
1041 IP_VS_DBG(2, "BACKUP, conn options found twice\n");
1042 return -EINVAL;
1043 }
1044 ntoh_seq(&topt->in_seq, &opt->in_seq);
1045 ntoh_seq(&topt->out_seq, &opt->out_seq);
1046 *opt_flags |= IPVS_OPT_F_SEQ_DATA;
1047 return 0;
1048}
1049
1050static int ip_vs_proc_str(__u8 *p, unsigned int plen, unsigned int *data_len,
1051 __u8 **data, unsigned int maxlen,
1052 __u32 *opt_flags, __u32 flag)
1053{
1054 if (plen > maxlen) {
1055 IP_VS_DBG(2, "BACKUP, bogus par.data len > %d\n", maxlen);
1056 return -EINVAL;
1057 }
1058 if (*opt_flags & flag) {
1059 IP_VS_DBG(2, "BACKUP, Par.data found twice 0x%x\n", flag);
1060 return -EINVAL;
1061 }
1062 *data_len = plen;
1063 *data = p;
1064 *opt_flags |= flag;
1065 return 0;
1066}
1067/*
1068 * Process a Version 1 sync. connection
1069 */
1fc12004 1070static inline int ip_vs_proc_sync_conn(struct netns_ipvs *ipvs, __u8 *p, __u8 *msg_end)
fe5e7a1e
HS
1071{
1072 struct ip_vs_sync_conn_options opt;
1073 union ip_vs_sync_conn *s;
1074 struct ip_vs_protocol *pp;
1075 struct ip_vs_conn_param param;
1076 __u32 flags;
1077 unsigned int af, state, pe_data_len=0, pe_name_len=0;
1078 __u8 *pe_data=NULL, *pe_name=NULL;
1079 __u32 opt_flags=0;
1080 int retc=0;
1081
1082 s = (union ip_vs_sync_conn *) p;
1083
1084 if (s->v6.type & STYPE_F_INET6) {
1085#ifdef CONFIG_IP_VS_IPV6
1086 af = AF_INET6;
1087 p += sizeof(struct ip_vs_sync_v6);
1088#else
1089 IP_VS_DBG(3,"BACKUP, IPv6 msg received, and IPVS is not compiled for IPv6\n");
1090 retc = 10;
1091 goto out;
1092#endif
1093 } else if (!s->v4.type) {
1094 af = AF_INET;
1095 p += sizeof(struct ip_vs_sync_v4);
1096 } else {
1097 return -10;
1098 }
1099 if (p > msg_end)
1100 return -20;
1101
1102 /* Process optional params check Type & Len. */
1103 while (p < msg_end) {
1104 int ptype;
1105 int plen;
1106
1107 if (p+2 > msg_end)
1108 return -30;
1109 ptype = *(p++);
1110 plen = *(p++);
1111
1112 if (!plen || ((p + plen) > msg_end))
1113 return -40;
1114 /* Handle seq option p = param data */
1115 switch (ptype & ~IPVS_OPT_F_PARAM) {
1116 case IPVS_OPT_SEQ_DATA:
1117 if (ip_vs_proc_seqopt(p, plen, &opt_flags, &opt))
1118 return -50;
1119 break;
1120
1121 case IPVS_OPT_PE_DATA:
1122 if (ip_vs_proc_str(p, plen, &pe_data_len, &pe_data,
1123 IP_VS_PEDATA_MAXLEN, &opt_flags,
1124 IPVS_OPT_F_PE_DATA))
1125 return -60;
1126 break;
1127
1128 case IPVS_OPT_PE_NAME:
1129 if (ip_vs_proc_str(p, plen,&pe_name_len, &pe_name,
1130 IP_VS_PENAME_MAXLEN, &opt_flags,
1131 IPVS_OPT_F_PE_NAME))
1132 return -70;
1133 break;
1134
1135 default:
1136 /* Param data mandatory ? */
1137 if (!(ptype & IPVS_OPT_F_PARAM)) {
1138 IP_VS_DBG(3, "BACKUP, Unknown mandatory param %d found\n",
1139 ptype & ~IPVS_OPT_F_PARAM);
1140 retc = 20;
1141 goto out;
1142 }
f11017ec 1143 }
fe5e7a1e
HS
1144 p += plen; /* Next option */
1145 }
1146
1147 /* Get flags and Mask off unsupported */
1148 flags = ntohl(s->v4.flags) & IP_VS_CONN_F_BACKUP_MASK;
1149 flags |= IP_VS_CONN_F_SYNC;
1150 state = ntohs(s->v4.state);
1151
1152 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
1153 pp = ip_vs_proto_get(s->v4.protocol);
1154 if (!pp) {
1155 IP_VS_DBG(3,"BACKUP, Unsupported protocol %u\n",
1156 s->v4.protocol);
1157 retc = 30;
1158 goto out;
1159 }
1160 if (state >= pp->num_states) {
1161 IP_VS_DBG(3, "BACKUP, Invalid %s state %u\n",
1162 pp->name, state);
1163 retc = 40;
1164 goto out;
1165 }
1166 } else {
27541143
JA
1167 if (state >= IP_VS_CTPL_S_LAST)
1168 IP_VS_DBG(7, "BACKUP, Invalid tpl state %u\n",
1169 state);
fe5e7a1e 1170 }
4f30665b 1171 if (ip_vs_conn_fill_param_sync(ipvs, af, s, &param, pe_data,
6e67e586 1172 pe_data_len, pe_name, pe_name_len)) {
fe5e7a1e
HS
1173 retc = 50;
1174 goto out;
1175 }
1176 /* If only IPv4, just silent skip IPv6 */
1177 if (af == AF_INET)
4f30665b 1178 ip_vs_proc_conn(ipvs, &param, flags, state, s->v4.protocol, af,
fe5e7a1e
HS
1179 (union nf_inet_addr *)&s->v4.daddr, s->v4.dport,
1180 ntohl(s->v4.timeout), ntohl(s->v4.fwmark),
9bbac6a9
HS
1181 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1182 );
fe5e7a1e
HS
1183#ifdef CONFIG_IP_VS_IPV6
1184 else
4f30665b 1185 ip_vs_proc_conn(ipvs, &param, flags, state, s->v6.protocol, af,
fe5e7a1e
HS
1186 (union nf_inet_addr *)&s->v6.daddr, s->v6.dport,
1187 ntohl(s->v6.timeout), ntohl(s->v6.fwmark),
9bbac6a9
HS
1188 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1189 );
fe5e7a1e 1190#endif
528c943f 1191 ip_vs_pe_put(param.pe);
fe5e7a1e
HS
1192 return 0;
1193 /* Error exit */
1194out:
1195 IP_VS_DBG(2, "BACKUP, Single msg dropped err:%d\n", retc);
1196 return retc;
1197
1198}
1199/*
1200 * Process received multicast message and create the corresponding
1201 * ip_vs_conn entries.
1202 * Handles Version 0 & 1
1203 */
7d537f3a 1204static void ip_vs_process_message(struct netns_ipvs *ipvs, __u8 *buffer,
9bbac6a9 1205 const size_t buflen)
fe5e7a1e 1206{
986a0757 1207 struct ip_vs_sync_mesg *m2 = (struct ip_vs_sync_mesg *)buffer;
fe5e7a1e 1208 __u8 *p, *msg_end;
986a0757 1209 int i, nr_conns;
fe5e7a1e 1210
986a0757 1211 if (buflen < sizeof(struct ip_vs_sync_mesg_v0)) {
fe5e7a1e
HS
1212 IP_VS_DBG(2, "BACKUP, message header too short\n");
1213 return;
1214 }
fe5e7a1e 1215
38561437 1216 if (buflen != ntohs(m2->size)) {
fe5e7a1e
HS
1217 IP_VS_DBG(2, "BACKUP, bogus message size\n");
1218 return;
1219 }
1220 /* SyncID sanity check */
e4ff6751 1221 if (ipvs->bcfg.syncid != 0 && m2->syncid != ipvs->bcfg.syncid) {
fe5e7a1e
HS
1222 IP_VS_DBG(7, "BACKUP, Ignoring syncid = %d\n", m2->syncid);
1223 return;
1224 }
1225 /* Handle version 1 message */
1226 if ((m2->version == SYNC_PROTO_VER) && (m2->reserved == 0)
1227 && (m2->spare == 0)) {
1228
986a0757 1229 msg_end = buffer + sizeof(struct ip_vs_sync_mesg);
fe5e7a1e
HS
1230 nr_conns = m2->nr_conns;
1231
1232 for (i=0; i<nr_conns; i++) {
1233 union ip_vs_sync_conn *s;
95c96174 1234 unsigned int size;
fe5e7a1e
HS
1235 int retc;
1236
1237 p = msg_end;
1238 if (p + sizeof(s->v4) > buffer+buflen) {
971485a0 1239 IP_VS_ERR_RL("BACKUP, Dropping buffer, too small\n");
fe5e7a1e 1240 return;
b209639e 1241 }
fe5e7a1e
HS
1242 s = (union ip_vs_sync_conn *)p;
1243 size = ntohs(s->v4.ver_size) & SVER_MASK;
1244 msg_end = p + size;
1245 /* Basic sanity checks */
1246 if (msg_end > buffer+buflen) {
1247 IP_VS_ERR_RL("BACKUP, Dropping buffer, msg > buffer\n");
1da177e4
LT
1248 return;
1249 }
fe5e7a1e
HS
1250 if (ntohs(s->v4.ver_size) >> SVER_SHIFT) {
1251 IP_VS_ERR_RL("BACKUP, Dropping buffer, Unknown version %d\n",
1252 ntohs(s->v4.ver_size) >> SVER_SHIFT);
1253 return;
b209639e 1254 }
fe5e7a1e 1255 /* Process a single sync_conn */
1fc12004 1256 retc = ip_vs_proc_sync_conn(ipvs, p, msg_end);
9bbac6a9 1257 if (retc < 0) {
fe5e7a1e
HS
1258 IP_VS_ERR_RL("BACKUP, Dropping buffer, Err: %d in decoding\n",
1259 retc);
1260 return;
2906f66a 1261 }
fe5e7a1e
HS
1262 /* Make sure we have 32 bit alignment */
1263 msg_end = p + ((size + 3) & ~3);
b209639e 1264 }
fe5e7a1e
HS
1265 } else {
1266 /* Old type of message */
19913dec 1267 ip_vs_process_message_v0(ipvs, buffer, buflen);
fe5e7a1e 1268 return;
1da177e4
LT
1269 }
1270}
1271
1272
1c003b15
PNA
1273/*
1274 * Setup sndbuf (mode=1) or rcvbuf (mode=0)
1275 */
1276static void set_sock_size(struct sock *sk, int mode, int val)
1277{
1278 /* setsockopt(sock, SOL_SOCKET, SO_SNDBUF, &val, sizeof(val)); */
1279 /* setsockopt(sock, SOL_SOCKET, SO_RCVBUF, &val, sizeof(val)); */
1280 lock_sock(sk);
1281 if (mode) {
1282 val = clamp_t(int, val, (SOCK_MIN_SNDBUF + 1) / 2,
1227c177 1283 READ_ONCE(sysctl_wmem_max));
1c003b15
PNA
1284 sk->sk_sndbuf = val * 2;
1285 sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
1286 } else {
1287 val = clamp_t(int, val, (SOCK_MIN_RCVBUF + 1) / 2,
1227c177 1288 READ_ONCE(sysctl_rmem_max));
1c003b15
PNA
1289 sk->sk_rcvbuf = val * 2;
1290 sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
1291 }
1292 release_sock(sk);
1293}
1294
1da177e4
LT
1295/*
1296 * Setup loopback of outgoing multicasts on a sending socket
1297 */
1298static void set_mcast_loop(struct sock *sk, u_char loop)
1299{
1da177e4
LT
1300 /* setsockopt(sock, SOL_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); */
1301 lock_sock(sk);
b09bde5c 1302 inet_assign_bit(MC_LOOP, sk, loop);
d3328817
JA
1303#ifdef CONFIG_IP_VS_IPV6
1304 if (sk->sk_family == AF_INET6) {
1305 struct ipv6_pinfo *np = inet6_sk(sk);
1306
1307 /* IPV6_MULTICAST_LOOP */
1308 np->mc_loop = loop ? 1 : 0;
1309 }
1310#endif
1da177e4
LT
1311 release_sock(sk);
1312}
1313
1314/*
1315 * Specify TTL for outgoing multicasts on a sending socket
1316 */
1317static void set_mcast_ttl(struct sock *sk, u_char ttl)
1318{
1319 struct inet_sock *inet = inet_sk(sk);
1320
1321 /* setsockopt(sock, SOL_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)); */
1322 lock_sock(sk);
1323 inet->mc_ttl = ttl;
d3328817
JA
1324#ifdef CONFIG_IP_VS_IPV6
1325 if (sk->sk_family == AF_INET6) {
1326 struct ipv6_pinfo *np = inet6_sk(sk);
1327
1328 /* IPV6_MULTICAST_HOPS */
1329 np->mcast_hops = ttl;
1330 }
1331#endif
1da177e4
LT
1332 release_sock(sk);
1333}
1334
e4ff6751
JA
1335/* Control fragmentation of messages */
1336static void set_mcast_pmtudisc(struct sock *sk, int val)
1337{
1338 struct inet_sock *inet = inet_sk(sk);
1339
1340 /* setsockopt(sock, SOL_IP, IP_MTU_DISCOVER, &val, sizeof(val)); */
1341 lock_sock(sk);
1342 inet->pmtudisc = val;
d3328817
JA
1343#ifdef CONFIG_IP_VS_IPV6
1344 if (sk->sk_family == AF_INET6) {
1345 struct ipv6_pinfo *np = inet6_sk(sk);
1346
1347 /* IPV6_MTU_DISCOVER */
1348 np->pmtudisc = val;
1349 }
1350#endif
e4ff6751
JA
1351 release_sock(sk);
1352}
1353
1da177e4
LT
1354/*
1355 * Specifiy default interface for outgoing multicasts
1356 */
5c64576a 1357static int set_mcast_if(struct sock *sk, struct net_device *dev)
1da177e4 1358{
1da177e4 1359 struct inet_sock *inet = inet_sk(sk);
1da177e4
LT
1360
1361 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1362 return -EINVAL;
1363
1364 lock_sock(sk);
1365 inet->mc_index = dev->ifindex;
1366 /* inet->mc_addr = 0; */
d3328817
JA
1367#ifdef CONFIG_IP_VS_IPV6
1368 if (sk->sk_family == AF_INET6) {
1369 struct ipv6_pinfo *np = inet6_sk(sk);
1370
1371 /* IPV6_MULTICAST_IF */
1372 np->mcast_oif = dev->ifindex;
1373 }
1374#endif
1da177e4
LT
1375 release_sock(sk);
1376
1377 return 0;
1378}
1379
1380
1da177e4
LT
1381/*
1382 * Join a multicast group.
1383 * the group is specified by a class D multicast address 224.0.0.0/8
1384 * in the in_addr structure passed in as a parameter.
1385 */
1386static int
5c64576a 1387join_mcast_group(struct sock *sk, struct in_addr *addr, struct net_device *dev)
1da177e4
LT
1388{
1389 struct ip_mreqn mreq;
1da177e4
LT
1390 int ret;
1391
1392 memset(&mreq, 0, sizeof(mreq));
1393 memcpy(&mreq.imr_multiaddr, addr, sizeof(struct in_addr));
1394
1da177e4
LT
1395 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1396 return -EINVAL;
1397
1398 mreq.imr_ifindex = dev->ifindex;
1399
1400 lock_sock(sk);
1401 ret = ip_mc_join_group(sk, &mreq);
1402 release_sock(sk);
1403
1404 return ret;
1405}
1406
d3328817
JA
1407#ifdef CONFIG_IP_VS_IPV6
1408static int join_mcast_group6(struct sock *sk, struct in6_addr *addr,
5c64576a 1409 struct net_device *dev)
d3328817 1410{
d3328817
JA
1411 int ret;
1412
d3328817
JA
1413 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1414 return -EINVAL;
1415
1416 lock_sock(sk);
1417 ret = ipv6_sock_mc_join(sk, dev->ifindex, addr);
1418 release_sock(sk);
1419
1420 return ret;
1421}
1422#endif
1da177e4 1423
5c64576a 1424static int bind_mcastif_addr(struct socket *sock, struct net_device *dev)
1da177e4 1425{
a61ced5d 1426 __be32 addr;
1da177e4
LT
1427 struct sockaddr_in sin;
1428
1da177e4
LT
1429 addr = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
1430 if (!addr)
1e3e238e
HE
1431 pr_err("You probably need to specify IP address on "
1432 "multicast interface.\n");
1da177e4 1433
14d5e834 1434 IP_VS_DBG(7, "binding socket with (%s) %pI4\n",
5c64576a 1435 dev->name, &addr);
1da177e4
LT
1436
1437 /* Now bind the socket with the address of multicast interface */
1438 sin.sin_family = AF_INET;
1439 sin.sin_addr.s_addr = addr;
1440 sin.sin_port = 0;
1441
1442 return sock->ops->bind(sock, (struct sockaddr*)&sin, sizeof(sin));
1443}
1444
d3328817
JA
1445static void get_mcast_sockaddr(union ipvs_sockaddr *sa, int *salen,
1446 struct ipvs_sync_daemon_cfg *c, int id)
1447{
1448 if (AF_INET6 == c->mcast_af) {
1449 sa->in6 = (struct sockaddr_in6) {
1450 .sin6_family = AF_INET6,
1451 .sin6_port = htons(c->mcast_port + id),
1452 };
1453 sa->in6.sin6_addr = c->mcast_group.in6;
1454 *salen = sizeof(sa->in6);
1455 } else {
1456 sa->in = (struct sockaddr_in) {
1457 .sin_family = AF_INET,
1458 .sin_port = htons(c->mcast_port + id),
1459 };
1460 sa->in.sin_addr = c->mcast_group.in;
1461 *salen = sizeof(sa->in);
1462 }
1463}
1464
1da177e4
LT
1465/*
1466 * Set up sending multicast socket over UDP
1467 */
5c64576a
JA
1468static int make_send_sock(struct netns_ipvs *ipvs, int id,
1469 struct net_device *dev, struct socket **sock_ret)
1da177e4 1470{
f73181c8 1471 /* multicast addr */
d3328817 1472 union ipvs_sockaddr mcast_addr;
1da177e4 1473 struct socket *sock;
d3328817 1474 int result, salen;
1da177e4 1475
26abe143 1476 /* First create a socket */
68c76b6a 1477 result = sock_create_kern(ipvs->net, ipvs->mcfg.mcast_af, SOCK_DGRAM,
d3328817 1478 IPPROTO_UDP, &sock);
e6dd731c 1479 if (result < 0) {
1e3e238e 1480 pr_err("Error during creation of socket; terminating\n");
5c64576a 1481 goto error;
1da177e4 1482 }
5c64576a
JA
1483 *sock_ret = sock;
1484 result = set_mcast_if(sock->sk, dev);
e6dd731c 1485 if (result < 0) {
1e3e238e 1486 pr_err("Error setting outbound mcast interface\n");
1da177e4
LT
1487 goto error;
1488 }
1489
1490 set_mcast_loop(sock->sk, 0);
d3328817 1491 set_mcast_ttl(sock->sk, ipvs->mcfg.mcast_ttl);
e4ff6751
JA
1492 /* Allow fragmentation if MTU changes */
1493 set_mcast_pmtudisc(sock->sk, IP_PMTUDISC_DONT);
1c003b15
PNA
1494 result = sysctl_sync_sock_size(ipvs);
1495 if (result > 0)
1496 set_sock_size(sock->sk, 1, result);
1da177e4 1497
d3328817 1498 if (AF_INET == ipvs->mcfg.mcast_af)
5c64576a 1499 result = bind_mcastif_addr(sock, dev);
d3328817
JA
1500 else
1501 result = 0;
e6dd731c 1502 if (result < 0) {
1e3e238e 1503 pr_err("Error binding address of the mcast interface\n");
1da177e4
LT
1504 goto error;
1505 }
1506
d3328817 1507 get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->mcfg, id);
26297b4c
JR
1508 result = kernel_connect(sock, (struct sockaddr *)&mcast_addr,
1509 salen, 0);
e6dd731c 1510 if (result < 0) {
1e3e238e 1511 pr_err("Error connecting to the multicast addr\n");
1da177e4
LT
1512 goto error;
1513 }
1514
5c64576a 1515 return 0;
1da177e4 1516
1ae132b0 1517error:
5c64576a 1518 return result;
1da177e4
LT
1519}
1520
1521
1522/*
1523 * Set up receiving multicast socket over UDP
1524 */
5c64576a
JA
1525static int make_receive_sock(struct netns_ipvs *ipvs, int id,
1526 struct net_device *dev, struct socket **sock_ret)
1da177e4 1527{
f73181c8 1528 /* multicast addr */
d3328817 1529 union ipvs_sockaddr mcast_addr;
1da177e4 1530 struct socket *sock;
d3328817 1531 int result, salen;
1da177e4
LT
1532
1533 /* First create a socket */
fd124e2f 1534 result = sock_create_kern(ipvs->net, ipvs->bcfg.mcast_af, SOCK_DGRAM,
d3328817 1535 IPPROTO_UDP, &sock);
e6dd731c 1536 if (result < 0) {
1e3e238e 1537 pr_err("Error during creation of socket; terminating\n");
5c64576a 1538 goto error;
1da177e4 1539 }
5c64576a 1540 *sock_ret = sock;
1da177e4 1541 /* it is equivalent to the REUSEADDR option in user-space */
4a17fd52 1542 sock->sk->sk_reuse = SK_CAN_REUSE;
1c003b15
PNA
1543 result = sysctl_sync_sock_size(ipvs);
1544 if (result > 0)
1545 set_sock_size(sock->sk, 0, result);
1da177e4 1546
d3328817 1547 get_mcast_sockaddr(&mcast_addr, &salen, &ipvs->bcfg, id);
5c64576a 1548 sock->sk->sk_bound_dev_if = dev->ifindex;
d3328817 1549 result = sock->ops->bind(sock, (struct sockaddr *)&mcast_addr, salen);
e6dd731c 1550 if (result < 0) {
1e3e238e 1551 pr_err("Error binding to the multicast addr\n");
1da177e4
LT
1552 goto error;
1553 }
1554
1555 /* join the multicast group */
d3328817
JA
1556#ifdef CONFIG_IP_VS_IPV6
1557 if (ipvs->bcfg.mcast_af == AF_INET6)
1558 result = join_mcast_group6(sock->sk, &mcast_addr.in6.sin6_addr,
5c64576a 1559 dev);
d3328817
JA
1560 else
1561#endif
1562 result = join_mcast_group(sock->sk, &mcast_addr.in.sin_addr,
5c64576a 1563 dev);
e6dd731c 1564 if (result < 0) {
1e3e238e 1565 pr_err("Error joining to the multicast group\n");
1da177e4
LT
1566 goto error;
1567 }
1568
5c64576a 1569 return 0;
1da177e4 1570
1ae132b0 1571error:
5c64576a 1572 return result;
1da177e4
LT
1573}
1574
1575
1576static int
1577ip_vs_send_async(struct socket *sock, const char *buffer, const size_t length)
1578{
1579 struct msghdr msg = {.msg_flags = MSG_DONTWAIT|MSG_NOSIGNAL};
1580 struct kvec iov;
1581 int len;
1582
1da177e4
LT
1583 iov.iov_base = (void *)buffer;
1584 iov.iov_len = length;
1585
1586 len = kernel_sendmsg(sock, &msg, &iov, 1, (size_t)(length));
1587
1da177e4
LT
1588 return len;
1589}
1590
1c003b15 1591static int
1da177e4
LT
1592ip_vs_send_sync_msg(struct socket *sock, struct ip_vs_sync_mesg *msg)
1593{
1594 int msize;
1c003b15 1595 int ret;
1da177e4 1596
38561437 1597 msize = ntohs(msg->size);
1da177e4 1598
1c003b15
PNA
1599 ret = ip_vs_send_async(sock, (char *)msg, msize);
1600 if (ret >= 0 || ret == -EAGAIN)
1601 return ret;
1602 pr_err("ip_vs_send_async error %d\n", ret);
1603 return 0;
1da177e4
LT
1604}
1605
1606static int
1607ip_vs_receive(struct socket *sock, char *buffer, const size_t buflen)
1608{
1609 struct msghdr msg = {NULL,};
7edffd25 1610 struct kvec iov = {buffer, buflen};
1da177e4
LT
1611 int len;
1612
1da177e4 1613 /* Receive a packet */
de4eda9d 1614 iov_iter_kvec(&msg.msg_iter, ITER_DEST, &iov, 1, buflen);
7edffd25 1615 len = sock_recvmsg(sock, &msg, MSG_DONTWAIT);
1da177e4 1616 if (len < 0)
f73181c8 1617 return len;
1da177e4 1618
1da177e4
LT
1619 return len;
1620}
1621
1c003b15
PNA
1622/* Wakeup the master thread for sending */
1623static void master_wakeup_work_handler(struct work_struct *work)
1624{
f73181c8
PNA
1625 struct ipvs_master_sync_state *ms =
1626 container_of(work, struct ipvs_master_sync_state,
1627 master_wakeup_work.work);
1628 struct netns_ipvs *ipvs = ms->ipvs;
1c003b15
PNA
1629
1630 spin_lock_bh(&ipvs->sync_lock);
f73181c8
PNA
1631 if (ms->sync_queue_len &&
1632 ms->sync_queue_delay < IPVS_SYNC_WAKEUP_RATE) {
5db7c8b9
JA
1633 int id = (int)(ms - ipvs->ms);
1634
f73181c8 1635 ms->sync_queue_delay = IPVS_SYNC_WAKEUP_RATE;
5db7c8b9 1636 wake_up_process(ipvs->master_tinfo[id].task);
1c003b15
PNA
1637 }
1638 spin_unlock_bh(&ipvs->sync_lock);
1639}
1640
1641/* Get next buffer to send */
1642static inline struct ip_vs_sync_buff *
f73181c8 1643next_sync_buff(struct netns_ipvs *ipvs, struct ipvs_master_sync_state *ms)
1c003b15
PNA
1644{
1645 struct ip_vs_sync_buff *sb;
1646
f73181c8 1647 sb = sb_dequeue(ipvs, ms);
1c003b15
PNA
1648 if (sb)
1649 return sb;
1650 /* Do not delay entries in buffer for more than 2 seconds */
f73181c8 1651 return get_curr_sync_buff(ipvs, ms, IPVS_SYNC_FLUSH_TIME);
1c003b15 1652}
1da177e4 1653
998e7a76 1654static int sync_thread_master(void *data)
1da177e4 1655{
998e7a76 1656 struct ip_vs_sync_thread_data *tinfo = data;
37b68e6d 1657 struct netns_ipvs *ipvs = tinfo->ipvs;
f73181c8 1658 struct ipvs_master_sync_state *ms = &ipvs->ms[tinfo->id];
1c003b15 1659 struct sock *sk = tinfo->sock->sk;
1da177e4
LT
1660 struct ip_vs_sync_buff *sb;
1661
1e3e238e 1662 pr_info("sync thread started: state = MASTER, mcast_ifn = %s, "
f73181c8 1663 "syncid = %d, id = %d\n",
e4ff6751 1664 ipvs->mcfg.mcast_ifn, ipvs->mcfg.syncid, tinfo->id);
1da177e4 1665
1c003b15 1666 for (;;) {
f73181c8 1667 sb = next_sync_buff(ipvs, ms);
1c003b15
PNA
1668 if (unlikely(kthread_should_stop()))
1669 break;
1670 if (!sb) {
1671 schedule_timeout(IPVS_SYNC_CHECK_PERIOD);
1672 continue;
1da177e4 1673 }
1c003b15 1674 while (ip_vs_send_sync_msg(tinfo->sock, sb->mesg) < 0) {
9dcbe1b8
GU
1675 /* (Ab)use interruptible sleep to avoid increasing
1676 * the load avg.
1677 */
1678 __wait_event_interruptible(*sk_sleep(sk),
1c003b15 1679 sock_writeable(sk) ||
35a2af94 1680 kthread_should_stop());
1c003b15
PNA
1681 if (unlikely(kthread_should_stop()))
1682 goto done;
1da177e4 1683 }
1c003b15 1684 ip_vs_sync_buff_release(sb);
1da177e4
LT
1685 }
1686
1c003b15
PNA
1687done:
1688 __set_current_state(TASK_RUNNING);
1689 if (sb)
1690 ip_vs_sync_buff_release(sb);
1691
1da177e4 1692 /* clean up the sync_buff queue */
f73181c8 1693 while ((sb = sb_dequeue(ipvs, ms)))
1da177e4 1694 ip_vs_sync_buff_release(sb);
1c003b15 1695 __set_current_state(TASK_RUNNING);
1da177e4
LT
1696
1697 /* clean up the current sync_buff */
f73181c8 1698 sb = get_curr_sync_buff(ipvs, ms, 0);
f131315f 1699 if (sb)
1da177e4 1700 ip_vs_sync_buff_release(sb);
1da177e4 1701
998e7a76 1702 return 0;
1da177e4
LT
1703}
1704
1705
998e7a76 1706static int sync_thread_backup(void *data)
1da177e4 1707{
998e7a76 1708 struct ip_vs_sync_thread_data *tinfo = data;
37b68e6d 1709 struct netns_ipvs *ipvs = tinfo->ipvs;
8210e344 1710 struct sock *sk = tinfo->sock->sk;
1711 struct udp_sock *up = udp_sk(sk);
1da177e4
LT
1712 int len;
1713
1e3e238e 1714 pr_info("sync thread started: state = BACKUP, mcast_ifn = %s, "
f73181c8 1715 "syncid = %d, id = %d\n",
e4ff6751 1716 ipvs->bcfg.mcast_ifn, ipvs->bcfg.syncid, tinfo->id);
1da177e4 1717
998e7a76 1718 while (!kthread_should_stop()) {
8210e344 1719 wait_event_interruptible(*sk_sleep(sk),
1720 !skb_queue_empty_lockless(&sk->sk_receive_queue) ||
1721 !skb_queue_empty_lockless(&up->reader_queue) ||
1722 kthread_should_stop());
ba6fd850 1723
998e7a76 1724 /* do we have data now? */
8210e344 1725 while (!skb_queue_empty_lockless(&sk->sk_receive_queue) ||
1726 !skb_queue_empty_lockless(&up->reader_queue)) {
998e7a76 1727 len = ip_vs_receive(tinfo->sock, tinfo->buf,
e4ff6751 1728 ipvs->bcfg.sync_maxlen);
998e7a76 1729 if (len <= 0) {
f73181c8
PNA
1730 if (len != -EAGAIN)
1731 pr_err("receiving message error\n");
1da177e4
LT
1732 break;
1733 }
998e7a76 1734
7d537f3a 1735 ip_vs_process_message(ipvs, tinfo->buf, len);
1da177e4 1736 }
1da177e4
LT
1737 }
1738
998e7a76 1739 return 0;
1da177e4
LT
1740}
1741
1742
6ac121d7 1743int start_sync_thread(struct netns_ipvs *ipvs, struct ipvs_sync_daemon_cfg *c,
e4ff6751 1744 int state)
1da177e4 1745{
5db7c8b9
JA
1746 struct ip_vs_sync_thread_data *ti = NULL, *tinfo;
1747 struct task_struct *task;
e4ff6751 1748 struct net_device *dev;
f73181c8 1749 char *name;
998e7a76 1750 int (*threadfn)(void *data);
5c64576a 1751 int id = 0, count, hlen;
998e7a76 1752 int result = -ENOMEM;
e4ff6751 1753 u16 mtu, min_mtu;
1da177e4 1754
1e3e238e 1755 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
5b5e0928 1756 IP_VS_DBG(7, "Each ip_vs_sync_conn entry needs %zd bytes\n",
2981bc9a 1757 sizeof(struct ip_vs_sync_conn_v0));
1da177e4 1758
62931f59
DC
1759 /* increase the module use count */
1760 if (!ip_vs_use_count_inc())
1761 return -ENOPROTOOPT;
1762
5c64576a
JA
1763 /* Do not hold one mutex and then to block on another */
1764 for (;;) {
1765 rtnl_lock();
1766 if (mutex_trylock(&ipvs->sync_mutex))
1767 break;
1768 rtnl_unlock();
1769 mutex_lock(&ipvs->sync_mutex);
1770 if (rtnl_trylock())
1771 break;
1772 mutex_unlock(&ipvs->sync_mutex);
1773 }
1774
f73181c8
PNA
1775 if (!ipvs->sync_state) {
1776 count = clamp(sysctl_sync_ports(ipvs), 1, IPVS_SYNC_PORTS_MAX);
1777 ipvs->threads_mask = count - 1;
1778 } else
1779 count = ipvs->threads_mask + 1;
ae1d48b2 1780
d3328817
JA
1781 if (c->mcast_af == AF_UNSPEC) {
1782 c->mcast_af = AF_INET;
1783 c->mcast_group.ip = cpu_to_be32(IP_VS_SYNC_GROUP);
1784 }
1785 if (!c->mcast_port)
1786 c->mcast_port = IP_VS_SYNC_PORT;
1787 if (!c->mcast_ttl)
1788 c->mcast_ttl = 1;
1789
6ac121d7 1790 dev = __dev_get_by_name(ipvs->net, c->mcast_ifn);
e4ff6751
JA
1791 if (!dev) {
1792 pr_err("Unknown mcast interface: %s\n", c->mcast_ifn);
5c64576a
JA
1793 result = -ENODEV;
1794 goto out_early;
e4ff6751 1795 }
d3328817
JA
1796 hlen = (AF_INET6 == c->mcast_af) ?
1797 sizeof(struct ipv6hdr) + sizeof(struct udphdr) :
1798 sizeof(struct iphdr) + sizeof(struct udphdr);
e4ff6751
JA
1799 mtu = (state == IP_VS_STATE_BACKUP) ?
1800 clamp(dev->mtu, 1500U, 65535U) : 1500U;
1801 min_mtu = (state == IP_VS_STATE_BACKUP) ? 1024 : 1;
1802
1803 if (c->sync_maxlen)
1804 c->sync_maxlen = clamp_t(unsigned int,
1805 c->sync_maxlen, min_mtu,
1806 65535 - hlen);
1807 else
1808 c->sync_maxlen = mtu - hlen;
1809
998e7a76 1810 if (state == IP_VS_STATE_MASTER) {
5c64576a 1811 result = -EEXIST;
f73181c8 1812 if (ipvs->ms)
5c64576a 1813 goto out_early;
1da177e4 1814
e4ff6751 1815 ipvs->mcfg = *c;
f73181c8 1816 name = "ipvs-m:%d:%d";
998e7a76 1817 threadfn = sync_thread_master;
998e7a76 1818 } else if (state == IP_VS_STATE_BACKUP) {
5c64576a 1819 result = -EEXIST;
5db7c8b9 1820 if (ipvs->backup_tinfo)
5c64576a 1821 goto out_early;
998e7a76 1822
e4ff6751 1823 ipvs->bcfg = *c;
f73181c8 1824 name = "ipvs-b:%d:%d";
998e7a76 1825 threadfn = sync_thread_backup;
1da177e4 1826 } else {
5c64576a
JA
1827 result = -EINVAL;
1828 goto out_early;
1da177e4
LT
1829 }
1830
f73181c8
PNA
1831 if (state == IP_VS_STATE_MASTER) {
1832 struct ipvs_master_sync_state *ms;
1da177e4 1833
5c64576a 1834 result = -ENOMEM;
848850a3 1835 ipvs->ms = kcalloc(count, sizeof(ipvs->ms[0]), GFP_KERNEL);
f73181c8
PNA
1836 if (!ipvs->ms)
1837 goto out;
1838 ms = ipvs->ms;
1839 for (id = 0; id < count; id++, ms++) {
1840 INIT_LIST_HEAD(&ms->sync_queue);
1841 ms->sync_queue_len = 0;
1842 ms->sync_queue_delay = 0;
1843 INIT_DELAYED_WORK(&ms->master_wakeup_work,
1844 master_wakeup_work_handler);
1845 ms->ipvs = ipvs;
1846 }
998e7a76 1847 }
5db7c8b9
JA
1848 result = -ENOMEM;
1849 ti = kcalloc(count, sizeof(struct ip_vs_sync_thread_data),
1850 GFP_KERNEL);
1851 if (!ti)
1852 goto out;
1da177e4 1853
f73181c8 1854 for (id = 0; id < count; id++) {
5db7c8b9 1855 tinfo = &ti[id];
37b68e6d 1856 tinfo->ipvs = ipvs;
f73181c8 1857 if (state == IP_VS_STATE_BACKUP) {
5db7c8b9 1858 result = -ENOMEM;
e4ff6751 1859 tinfo->buf = kmalloc(ipvs->bcfg.sync_maxlen,
f73181c8
PNA
1860 GFP_KERNEL);
1861 if (!tinfo->buf)
5c64576a 1862 goto out;
f73181c8
PNA
1863 }
1864 tinfo->id = id;
5c64576a
JA
1865 if (state == IP_VS_STATE_MASTER)
1866 result = make_send_sock(ipvs, id, dev, &tinfo->sock);
1867 else
1868 result = make_receive_sock(ipvs, id, dev, &tinfo->sock);
1869 if (result < 0)
1870 goto out;
1da177e4 1871
f73181c8
PNA
1872 task = kthread_run(threadfn, tinfo, name, ipvs->gen, id);
1873 if (IS_ERR(task)) {
1874 result = PTR_ERR(task);
5c64576a 1875 goto out;
f73181c8 1876 }
5db7c8b9 1877 tinfo->task = task;
998e7a76 1878 }
1da177e4 1879
998e7a76 1880 /* mark as active */
f73181c8 1881
5db7c8b9
JA
1882 if (state == IP_VS_STATE_MASTER)
1883 ipvs->master_tinfo = ti;
1884 else
1885 ipvs->backup_tinfo = ti;
f73181c8 1886 spin_lock_bh(&ipvs->sync_buff_lock);
f131315f 1887 ipvs->sync_state |= state;
f73181c8 1888 spin_unlock_bh(&ipvs->sync_buff_lock);
1da177e4 1889
5c64576a
JA
1890 mutex_unlock(&ipvs->sync_mutex);
1891 rtnl_unlock();
1892
1da177e4 1893 return 0;
1da177e4 1894
5c64576a
JA
1895out:
1896 /* We do not need RTNL lock anymore, release it here so that
5db7c8b9 1897 * sock_release below can use rtnl_lock to leave the mcast group.
5c64576a
JA
1898 */
1899 rtnl_unlock();
5db7c8b9
JA
1900 id = min(id, count - 1);
1901 if (ti) {
1902 for (tinfo = ti + id; tinfo >= ti; tinfo--) {
1903 if (tinfo->task)
1904 kthread_stop(tinfo->task);
1905 }
f73181c8 1906 }
f73181c8
PNA
1907 if (!(ipvs->sync_state & IP_VS_STATE_MASTER)) {
1908 kfree(ipvs->ms);
1909 ipvs->ms = NULL;
1910 }
5c64576a 1911 mutex_unlock(&ipvs->sync_mutex);
5db7c8b9
JA
1912
1913 /* No more mutexes, release socks */
1914 if (ti) {
1915 for (tinfo = ti + id; tinfo >= ti; tinfo--) {
1916 if (tinfo->sock)
1917 sock_release(tinfo->sock);
1918 kfree(tinfo->buf);
1919 }
1920 kfree(ti);
5c64576a 1921 }
62931f59
DC
1922
1923 /* decrease the module use count */
1924 ip_vs_use_count_dec();
5c64576a
JA
1925 return result;
1926
1927out_early:
1928 mutex_unlock(&ipvs->sync_mutex);
1929 rtnl_unlock();
62931f59
DC
1930
1931 /* decrease the module use count */
1932 ip_vs_use_count_dec();
998e7a76 1933 return result;
1da177e4
LT
1934}
1935
1936
b3cf3cbf 1937int stop_sync_thread(struct netns_ipvs *ipvs, int state)
1da177e4 1938{
5db7c8b9 1939 struct ip_vs_sync_thread_data *ti, *tinfo;
f73181c8 1940 int id;
1ae132b0 1941 int retc = -EINVAL;
f131315f 1942
1e3e238e 1943 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
1da177e4 1944
5db7c8b9 1945 mutex_lock(&ipvs->sync_mutex);
1da177e4 1946 if (state == IP_VS_STATE_MASTER) {
5db7c8b9 1947 retc = -ESRCH;
f73181c8 1948 if (!ipvs->ms)
5db7c8b9
JA
1949 goto err;
1950 ti = ipvs->master_tinfo;
cc0191ae 1951
998e7a76
SW
1952 /*
1953 * The lock synchronizes with sb_queue_tail(), so that we don't
1954 * add sync buffers to the queue, when we are already in
1955 * progress of stopping the master sync daemon.
1956 */
1da177e4 1957
f73181c8
PNA
1958 spin_lock_bh(&ipvs->sync_buff_lock);
1959 spin_lock(&ipvs->sync_lock);
f131315f 1960 ipvs->sync_state &= ~IP_VS_STATE_MASTER;
f73181c8
PNA
1961 spin_unlock(&ipvs->sync_lock);
1962 spin_unlock_bh(&ipvs->sync_buff_lock);
1963
1964 retc = 0;
1965 for (id = ipvs->threads_mask; id >= 0; id--) {
1966 struct ipvs_master_sync_state *ms = &ipvs->ms[id];
1967 int ret;
1968
5db7c8b9 1969 tinfo = &ti[id];
f73181c8 1970 pr_info("stopping master sync thread %d ...\n",
5db7c8b9 1971 task_pid_nr(tinfo->task));
f73181c8 1972 cancel_delayed_work_sync(&ms->master_wakeup_work);
5db7c8b9 1973 ret = kthread_stop(tinfo->task);
f73181c8
PNA
1974 if (retc >= 0)
1975 retc = ret;
1976 }
1977 kfree(ipvs->ms);
1978 ipvs->ms = NULL;
5db7c8b9 1979 ipvs->master_tinfo = NULL;
998e7a76 1980 } else if (state == IP_VS_STATE_BACKUP) {
5db7c8b9
JA
1981 retc = -ESRCH;
1982 if (!ipvs->backup_tinfo)
1983 goto err;
1984 ti = ipvs->backup_tinfo;
998e7a76 1985
f131315f 1986 ipvs->sync_state &= ~IP_VS_STATE_BACKUP;
f73181c8
PNA
1987 retc = 0;
1988 for (id = ipvs->threads_mask; id >= 0; id--) {
1989 int ret;
1990
5db7c8b9 1991 tinfo = &ti[id];
f73181c8 1992 pr_info("stopping backup sync thread %d ...\n",
5db7c8b9
JA
1993 task_pid_nr(tinfo->task));
1994 ret = kthread_stop(tinfo->task);
f73181c8
PNA
1995 if (retc >= 0)
1996 retc = ret;
1997 }
5db7c8b9
JA
1998 ipvs->backup_tinfo = NULL;
1999 } else {
2000 goto err;
998e7a76 2001 }
5db7c8b9
JA
2002 id = ipvs->threads_mask;
2003 mutex_unlock(&ipvs->sync_mutex);
2004
2005 /* No more mutexes, release socks */
2006 for (tinfo = ti + id; tinfo >= ti; tinfo--) {
2007 if (tinfo->sock)
2008 sock_release(tinfo->sock);
2009 kfree(tinfo->buf);
2010 }
2011 kfree(ti);
1da177e4 2012
998e7a76
SW
2013 /* decrease the module use count */
2014 ip_vs_use_count_dec();
5db7c8b9 2015 return retc;
1da177e4 2016
5db7c8b9
JA
2017err:
2018 mutex_unlock(&ipvs->sync_mutex);
1ae132b0 2019 return retc;
1da177e4 2020}
61b1ab45
HS
2021
2022/*
2023 * Initialize data struct for each netns
2024 */
802cb437 2025int __net_init ip_vs_sync_net_init(struct netns_ipvs *ipvs)
61b1ab45 2026{
ae1d48b2 2027 __mutex_init(&ipvs->sync_mutex, "ipvs->sync_mutex", &__ipvs_sync_key);
f131315f
HS
2028 spin_lock_init(&ipvs->sync_lock);
2029 spin_lock_init(&ipvs->sync_buff_lock);
61b1ab45
HS
2030 return 0;
2031}
2032
ebea1f7c 2033void ip_vs_sync_net_cleanup(struct netns_ipvs *ipvs)
61b1ab45 2034{
1ae132b0
HS
2035 int retc;
2036
b3cf3cbf 2037 retc = stop_sync_thread(ipvs, IP_VS_STATE_MASTER);
1ae132b0
HS
2038 if (retc && retc != -ESRCH)
2039 pr_err("Failed to stop Master Daemon\n");
2040
b3cf3cbf 2041 retc = stop_sync_thread(ipvs, IP_VS_STATE_BACKUP);
1ae132b0
HS
2042 if (retc && retc != -ESRCH)
2043 pr_err("Failed to stop Backup Daemon\n");
61b1ab45 2044}