]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - net/netfilter/ipvs/ip_vs_sync.c
d1adf988eb082a32e48960c9f9963825f3da177c
[mirror_ubuntu-jammy-kernel.git] / net / netfilter / ipvs / ip_vs_sync.c
1 /*
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 *
8 * 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 *
20 * 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.
30 * Hans Schillstrom : Added Version 1: i.e. IPv6,
31 * Persistence support, fwmark and time-out.
32 */
33
34 #define KMSG_COMPONENT "IPVS"
35 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
36
37 #include <linux/module.h>
38 #include <linux/slab.h>
39 #include <linux/inetdevice.h>
40 #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 */
46 #include <linux/udp.h>
47 #include <linux/err.h>
48 #include <linux/kthread.h>
49 #include <linux/wait.h>
50 #include <linux/kernel.h>
51
52 #include <asm/unaligned.h> /* Used for ntoh_seq and hton_seq */
53
54 #include <net/ip.h>
55 #include <net/sock.h>
56
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
62 #define SYNC_PROTO_VER 1 /* Protocol version in header */
63
64 /*
65 * IPVS sync connection entry
66 * Version 0, i.e. original version.
67 */
68 struct ip_vs_sync_conn_v0 {
69 __u8 reserved;
70
71 /* Protocol, addresses and port numbers */
72 __u8 protocol; /* Which protocol (TCP/UDP) */
73 __be16 cport;
74 __be16 vport;
75 __be16 dport;
76 __be32 caddr; /* client address */
77 __be32 vaddr; /* virtual address */
78 __be32 daddr; /* destination address */
79
80 /* Flags and state transition */
81 __be16 flags; /* status flags */
82 __be16 state; /* state info */
83
84 /* The sequence options start here */
85 };
86
87 struct 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
92 /*
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 */
130 struct 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 */
152 struct 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
172 union 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
194 struct ip_vs_sync_thread_data {
195 struct net *net;
196 struct socket *sock;
197 char *buf;
198 };
199
200 /* Version 0 definition of packet sizes */
201 #define SIMPLE_CONN_SIZE (sizeof(struct ip_vs_sync_conn_v0))
202 #define FULL_CONN_SIZE \
203 (sizeof(struct ip_vs_sync_conn_v0) + sizeof(struct ip_vs_sync_conn_options))
204
205
206 /*
207 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.
212
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 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
216 | 0 | SyncID | Size |
217 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
218 | Count Conns | Version | Reserved, set to Zero |
219 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
220 | |
221 | IPVS Sync Connection (1) |
222 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
223 | . |
224 ~ . ~
225 | . |
226 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
227 | |
228 | IPVS Sync Connection (n) |
229 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
230
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) |
238 */
239
240 #define SYNC_MESG_HEADER_LEN 4
241 #define MAX_CONNS_PER_SYNCBUFF 255 /* nr_conns in ip_vs_sync_mesg is 8 bit */
242
243 /* Version 0 header */
244 struct ip_vs_sync_mesg_v0 {
245 __u8 nr_conns;
246 __u8 syncid;
247 __u16 size;
248
249 /* ip_vs_sync_conn entries start here */
250 };
251
252 /* Version 1 header */
253 struct ip_vs_sync_mesg {
254 __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
263 struct 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
273 /* multicast addr */
274 static struct sockaddr_in mcast_addr = {
275 .sin_family = AF_INET,
276 .sin_port = cpu_to_be16(IP_VS_SYNC_PORT),
277 .sin_addr.s_addr = cpu_to_be32(IP_VS_SYNC_GROUP),
278 };
279
280 /*
281 * Copy of struct ip_vs_seq
282 * From unaligned network order to aligned host order
283 */
284 static 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 }
290
291 /*
292 * Copy of struct ip_vs_seq
293 * From Aligned host order to unaligned network order
294 */
295 static 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
302 static inline struct ip_vs_sync_buff *sb_dequeue(struct netns_ipvs *ipvs)
303 {
304 struct ip_vs_sync_buff *sb;
305
306 spin_lock_bh(&ipvs->sync_lock);
307 if (list_empty(&ipvs->sync_queue)) {
308 sb = NULL;
309 } else {
310 sb = list_entry(ipvs->sync_queue.next,
311 struct ip_vs_sync_buff,
312 list);
313 list_del(&sb->list);
314 }
315 spin_unlock_bh(&ipvs->sync_lock);
316
317 return sb;
318 }
319
320 /*
321 * Create a new sync buffer for Version 1 proto.
322 */
323 static inline struct ip_vs_sync_buff *
324 ip_vs_sync_buff_create(struct netns_ipvs *ipvs)
325 {
326 struct ip_vs_sync_buff *sb;
327
328 if (!(sb=kmalloc(sizeof(struct ip_vs_sync_buff), GFP_ATOMIC)))
329 return NULL;
330
331 sb->mesg = kmalloc(ipvs->send_mesg_maxlen, GFP_ATOMIC);
332 if (!sb->mesg) {
333 kfree(sb);
334 return NULL;
335 }
336 sb->mesg->reserved = 0; /* old nr_conns i.e. must be zeo now */
337 sb->mesg->version = SYNC_PROTO_VER;
338 sb->mesg->syncid = ipvs->master_syncid;
339 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);
343 sb->end = (unsigned char *)sb->mesg + ipvs->send_mesg_maxlen;
344
345 sb->firstuse = jiffies;
346 return sb;
347 }
348
349 static inline void ip_vs_sync_buff_release(struct ip_vs_sync_buff *sb)
350 {
351 kfree(sb->mesg);
352 kfree(sb);
353 }
354
355 static inline void sb_queue_tail(struct netns_ipvs *ipvs)
356 {
357 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);
362 else
363 ip_vs_sync_buff_release(sb);
364 spin_unlock(&ipvs->sync_lock);
365 }
366
367 /*
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 */
371 static inline struct ip_vs_sync_buff *
372 get_curr_sync_buff(struct netns_ipvs *ipvs, unsigned long time)
373 {
374 struct ip_vs_sync_buff *sb;
375
376 spin_lock_bh(&ipvs->sync_buff_lock);
377 if (ipvs->sync_buff && (time == 0 ||
378 time_before(jiffies - ipvs->sync_buff->firstuse, time))) {
379 sb = ipvs->sync_buff;
380 ipvs->sync_buff = NULL;
381 } else
382 sb = NULL;
383 spin_unlock_bh(&ipvs->sync_buff_lock);
384 return sb;
385 }
386
387 /*
388 * Switch mode from sending version 0 or 1
389 * - must handle sync_buf
390 */
391 void ip_vs_sync_switch_mode(struct net *net, int mode)
392 {
393 struct netns_ipvs *ipvs = net_ipvs(net);
394
395 if (!ipvs->sync_state & IP_VS_STATE_MASTER)
396 return;
397 if (mode == ipvs->sysctl_sync_ver || !ipvs->sync_buff)
398 return;
399
400 spin_lock_bh(&ipvs->sync_buff_lock);
401 /* Buffer empty ? then let buf_create do the job */
402 if (ipvs->sync_buff->mesg->size <= sizeof(struct ip_vs_sync_mesg)) {
403 kfree(ipvs->sync_buff);
404 ipvs->sync_buff = NULL;
405 } else {
406 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);
410 else
411 ip_vs_sync_buff_release(ipvs->sync_buff);
412 spin_unlock_bh(&ipvs->sync_lock);
413 }
414 spin_unlock_bh(&ipvs->sync_buff_lock);
415 }
416
417 /*
418 * Create a new sync buffer for Version 0 proto.
419 */
420 static inline struct ip_vs_sync_buff *
421 ip_vs_sync_buff_create_v0(struct netns_ipvs *ipvs)
422 {
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
429 sb->mesg = kmalloc(ipvs->send_mesg_maxlen, GFP_ATOMIC);
430 if (!sb->mesg) {
431 kfree(sb);
432 return NULL;
433 }
434 mesg = (struct ip_vs_sync_mesg_v0 *)sb->mesg;
435 mesg->nr_conns = 0;
436 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;
440 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 */
448 void ip_vs_sync_conn_v0(struct net *net, struct ip_vs_conn *cp)
449 {
450 struct netns_ipvs *ipvs = net_ipvs(net);
451 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
461 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);
467 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;
474 m = (struct ip_vs_sync_mesg_v0 *)ipvs->sync_buff->mesg;
475 s = (struct ip_vs_sync_conn_v0 *)ipvs->sync_buff->head;
476
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;
496 ipvs->sync_buff->head += len;
497
498 /* check if there is a space for next one */
499 if (ipvs->sync_buff->head + FULL_CONN_SIZE > ipvs->sync_buff->end) {
500 sb_queue_tail(ipvs);
501 ipvs->sync_buff = NULL;
502 }
503 spin_unlock(&ipvs->sync_buff_lock);
504
505 /* synchronize its controller if it has */
506 if (cp->control)
507 ip_vs_sync_conn(net, cp->control);
508 }
509
510 /*
511 * Add an ip_vs_conn information into the current sync_buff.
512 * Called by ip_vs_in.
513 * Sending Version 1 messages
514 */
515 void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp)
516 {
517 struct netns_ipvs *ipvs = net_ipvs(net);
518 struct ip_vs_sync_mesg *m;
519 union ip_vs_sync_conn *s;
520 __u8 *p;
521 unsigned int len, pe_name_len, pad;
522
523 /* Handle old version of the protocol */
524 if (ipvs->sysctl_sync_ver == 0) {
525 ip_vs_sync_conn_v0(net, cp);
526 return;
527 }
528 /* Do not sync ONE PACKET */
529 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
530 goto control;
531 sloop:
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 }
541
542 spin_lock(&ipvs->sync_buff_lock);
543
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;
561 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;
566 pad = 0;
567 }
568 }
569
570 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);
574 pr_err("ip_vs_sync_buff_create failed.\n");
575 return;
576 }
577 }
578
579 m = ipvs->sync_buff->mesg;
580 p = ipvs->sync_buff->head;
581 ipvs->sync_buff->head += pad + len;
582 m->size += pad + len;
583 /* Add ev. padding from prev. sync_conn */
584 while (pad--)
585 *(p++) = 0;
586
587 s = (union ip_vs_sync_conn *)p;
588
589 /* 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);
600 m->nr_conns++;
601
602 #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;
615 }
616 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
639 spin_unlock(&ipvs->sync_buff_lock);
640
641 control:
642 /* synchronize its controller if it has */
643 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
653 if (pkts % ipvs->sysctl_sync_threshold[1] != 1)
654 return;
655 }
656 goto sloop;
657 }
658
659 /*
660 * fill_param used by version 1
661 */
662 static inline int
663 ip_vs_conn_fill_param_sync(struct net *net, int af, union ip_vs_sync_conn *sc,
664 struct ip_vs_conn_param *p,
665 __u8 *pe_data, unsigned int pe_data_len,
666 __u8 *pe_name, unsigned int pe_name_len)
667 {
668 #ifdef CONFIG_IP_VS_IPV6
669 if (af == AF_INET6)
670 ip_vs_conn_fill_param(net, af, sc->v6.protocol,
671 (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
677 ip_vs_conn_fill_param(net, af, sc->v4.protocol,
678 (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) {
691 IP_VS_DBG(3, "BACKUP, no %s engine found/loaded\n",
692 buff);
693 return 1;
694 }
695 } else {
696 IP_VS_ERR_RL("BACKUP, Invalid PE parameters\n");
697 return 1;
698 }
699
700 p->pe_data = kmalloc(pe_data_len, GFP_ATOMIC);
701 if (!p->pe_data) {
702 if (p->pe->module)
703 module_put(p->pe->module);
704 return -ENOMEM;
705 }
706 memcpy(p->pe_data, pe_data, pe_data_len);
707 p->pe_data_len = pe_data_len;
708 }
709 return 0;
710 }
711
712 /*
713 * Connection Add / Update.
714 * Common for version 0 and 1 reception of backup sync_conns.
715 * Param: ...
716 * timeout is in sec.
717 */
718 static void ip_vs_proc_conn(struct net *net, struct ip_vs_conn_param *param,
719 unsigned int flags, unsigned int state,
720 unsigned int protocol, unsigned int type,
721 const union nf_inet_addr *daddr, __be16 dport,
722 unsigned long timeout, __u32 fwmark,
723 struct ip_vs_sync_conn_options *opt)
724 {
725 struct ip_vs_dest *dest;
726 struct ip_vs_conn *cp;
727 struct netns_ipvs *ipvs = net_ipvs(net);
728
729 if (!(flags & IP_VS_CONN_F_TEMPLATE))
730 cp = ip_vs_conn_in_get(param);
731 else
732 cp = ip_vs_ct_in_get(param);
733
734 if (cp && param->pe_data) /* Free pe_data */
735 kfree(param->pe_data);
736 if (!cp) {
737 /*
738 * Find the appropriate destination for the connection.
739 * If it is not found the connection will remain unbound
740 * but still handled.
741 */
742 dest = ip_vs_find_dest(net, type, daddr, dport, param->vaddr,
743 param->vport, protocol, fwmark);
744
745 /* Set the approprite ativity flag */
746 if (protocol == IPPROTO_TCP) {
747 if (state != IP_VS_TCP_S_ESTABLISHED)
748 flags |= IP_VS_CONN_F_INACTIVE;
749 else
750 flags &= ~IP_VS_CONN_F_INACTIVE;
751 } else if (protocol == IPPROTO_SCTP) {
752 if (state != IP_VS_SCTP_S_ESTABLISHED)
753 flags |= IP_VS_CONN_F_INACTIVE;
754 else
755 flags &= ~IP_VS_CONN_F_INACTIVE;
756 }
757 cp = ip_vs_conn_new(param, daddr, dport, flags, dest, fwmark);
758 if (dest)
759 atomic_dec(&dest->refcnt);
760 if (!cp) {
761 if (param->pe_data)
762 kfree(param->pe_data);
763 IP_VS_DBG(2, "BACKUP, add new conn. failed\n");
764 return;
765 }
766 } else if (!cp->dest) {
767 dest = ip_vs_try_bind_dest(cp);
768 if (dest)
769 atomic_dec(&dest->refcnt);
770 } else if ((cp->dest) && (cp->protocol == IPPROTO_TCP) &&
771 (cp->state != state)) {
772 /* update active/inactive flag for the connection */
773 dest = cp->dest;
774 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) &&
775 (state != IP_VS_TCP_S_ESTABLISHED)) {
776 atomic_dec(&dest->activeconns);
777 atomic_inc(&dest->inactconns);
778 cp->flags |= IP_VS_CONN_F_INACTIVE;
779 } else if ((cp->flags & IP_VS_CONN_F_INACTIVE) &&
780 (state == IP_VS_TCP_S_ESTABLISHED)) {
781 atomic_inc(&dest->activeconns);
782 atomic_dec(&dest->inactconns);
783 cp->flags &= ~IP_VS_CONN_F_INACTIVE;
784 }
785 } else if ((cp->dest) && (cp->protocol == IPPROTO_SCTP) &&
786 (cp->state != state)) {
787 dest = cp->dest;
788 if (!(cp->flags & IP_VS_CONN_F_INACTIVE) &&
789 (state != IP_VS_SCTP_S_ESTABLISHED)) {
790 atomic_dec(&dest->activeconns);
791 atomic_inc(&dest->inactconns);
792 cp->flags &= ~IP_VS_CONN_F_INACTIVE;
793 }
794 }
795
796 if (opt)
797 memcpy(&cp->in_seq, opt, sizeof(*opt));
798 atomic_set(&cp->in_pkts, ipvs->sysctl_sync_threshold[0]);
799 cp->state = state;
800 cp->old_state = cp->state;
801 /*
802 * For Ver 0 messages style
803 * - Not possible to recover the right timeout for templates
804 * - can not find the right fwmark
805 * virtual service. If needed, we can do it for
806 * non-fwmark persistent services.
807 * Ver 1 messages style.
808 * - No problem.
809 */
810 if (timeout) {
811 if (timeout > MAX_SCHEDULE_TIMEOUT / HZ)
812 timeout = MAX_SCHEDULE_TIMEOUT / HZ;
813 cp->timeout = timeout*HZ;
814 } else {
815 struct ip_vs_proto_data *pd;
816
817 pd = ip_vs_proto_data_get(net, protocol);
818 if (!(flags & IP_VS_CONN_F_TEMPLATE) && pd && pd->timeout_table)
819 cp->timeout = pd->timeout_table[state];
820 else
821 cp->timeout = (3*60*HZ);
822 }
823 ip_vs_conn_put(cp);
824 }
825
826 /*
827 * Process received multicast message for Version 0
828 */
829 static void ip_vs_process_message_v0(struct net *net, const char *buffer,
830 const size_t buflen)
831 {
832 struct ip_vs_sync_mesg_v0 *m = (struct ip_vs_sync_mesg_v0 *)buffer;
833 struct ip_vs_sync_conn_v0 *s;
834 struct ip_vs_sync_conn_options *opt;
835 struct ip_vs_protocol *pp;
836 struct ip_vs_conn_param param;
837 char *p;
838 int i;
839
840 p = (char *)buffer + sizeof(struct ip_vs_sync_mesg_v0);
841 for (i=0; i<m->nr_conns; i++) {
842 unsigned flags, state;
843
844 if (p + SIMPLE_CONN_SIZE > buffer+buflen) {
845 IP_VS_ERR_RL("BACKUP v0, bogus conn\n");
846 return;
847 }
848 s = (struct ip_vs_sync_conn_v0 *) p;
849 flags = ntohs(s->flags) | IP_VS_CONN_F_SYNC;
850 flags &= ~IP_VS_CONN_F_HASHED;
851 if (flags & IP_VS_CONN_F_SEQ_MASK) {
852 opt = (struct ip_vs_sync_conn_options *)&s[1];
853 p += FULL_CONN_SIZE;
854 if (p > buffer+buflen) {
855 IP_VS_ERR_RL("BACKUP v0, Dropping buffer bogus conn options\n");
856 return;
857 }
858 } else {
859 opt = NULL;
860 p += SIMPLE_CONN_SIZE;
861 }
862
863 state = ntohs(s->state);
864 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
865 pp = ip_vs_proto_get(s->protocol);
866 if (!pp) {
867 IP_VS_DBG(2, "BACKUP v0, Unsupported protocol %u\n",
868 s->protocol);
869 continue;
870 }
871 if (state >= pp->num_states) {
872 IP_VS_DBG(2, "BACKUP v0, Invalid %s state %u\n",
873 pp->name, state);
874 continue;
875 }
876 } else {
877 /* protocol in templates is not used for state/timeout */
878 if (state > 0) {
879 IP_VS_DBG(2, "BACKUP v0, Invalid template state %u\n",
880 state);
881 state = 0;
882 }
883 }
884
885 ip_vs_conn_fill_param(net, AF_INET, s->protocol,
886 (const union nf_inet_addr *)&s->caddr,
887 s->cport,
888 (const union nf_inet_addr *)&s->vaddr,
889 s->vport, &param);
890
891 /* Send timeout as Zero */
892 ip_vs_proc_conn(net, &param, flags, state, s->protocol, AF_INET,
893 (union nf_inet_addr *)&s->daddr, s->dport,
894 0, 0, opt);
895 }
896 }
897
898 /*
899 * Handle options
900 */
901 static inline int ip_vs_proc_seqopt(__u8 *p, unsigned int plen,
902 __u32 *opt_flags,
903 struct ip_vs_sync_conn_options *opt)
904 {
905 struct ip_vs_sync_conn_options *topt;
906
907 topt = (struct ip_vs_sync_conn_options *)p;
908
909 if (plen != sizeof(struct ip_vs_sync_conn_options)) {
910 IP_VS_DBG(2, "BACKUP, bogus conn options length\n");
911 return -EINVAL;
912 }
913 if (*opt_flags & IPVS_OPT_F_SEQ_DATA) {
914 IP_VS_DBG(2, "BACKUP, conn options found twice\n");
915 return -EINVAL;
916 }
917 ntoh_seq(&topt->in_seq, &opt->in_seq);
918 ntoh_seq(&topt->out_seq, &opt->out_seq);
919 *opt_flags |= IPVS_OPT_F_SEQ_DATA;
920 return 0;
921 }
922
923 static int ip_vs_proc_str(__u8 *p, unsigned int plen, unsigned int *data_len,
924 __u8 **data, unsigned int maxlen,
925 __u32 *opt_flags, __u32 flag)
926 {
927 if (plen > maxlen) {
928 IP_VS_DBG(2, "BACKUP, bogus par.data len > %d\n", maxlen);
929 return -EINVAL;
930 }
931 if (*opt_flags & flag) {
932 IP_VS_DBG(2, "BACKUP, Par.data found twice 0x%x\n", flag);
933 return -EINVAL;
934 }
935 *data_len = plen;
936 *data = p;
937 *opt_flags |= flag;
938 return 0;
939 }
940 /*
941 * Process a Version 1 sync. connection
942 */
943 static inline int ip_vs_proc_sync_conn(struct net *net, __u8 *p, __u8 *msg_end)
944 {
945 struct ip_vs_sync_conn_options opt;
946 union ip_vs_sync_conn *s;
947 struct ip_vs_protocol *pp;
948 struct ip_vs_conn_param param;
949 __u32 flags;
950 unsigned int af, state, pe_data_len=0, pe_name_len=0;
951 __u8 *pe_data=NULL, *pe_name=NULL;
952 __u32 opt_flags=0;
953 int retc=0;
954
955 s = (union ip_vs_sync_conn *) p;
956
957 if (s->v6.type & STYPE_F_INET6) {
958 #ifdef CONFIG_IP_VS_IPV6
959 af = AF_INET6;
960 p += sizeof(struct ip_vs_sync_v6);
961 #else
962 IP_VS_DBG(3,"BACKUP, IPv6 msg received, and IPVS is not compiled for IPv6\n");
963 retc = 10;
964 goto out;
965 #endif
966 } else if (!s->v4.type) {
967 af = AF_INET;
968 p += sizeof(struct ip_vs_sync_v4);
969 } else {
970 return -10;
971 }
972 if (p > msg_end)
973 return -20;
974
975 /* Process optional params check Type & Len. */
976 while (p < msg_end) {
977 int ptype;
978 int plen;
979
980 if (p+2 > msg_end)
981 return -30;
982 ptype = *(p++);
983 plen = *(p++);
984
985 if (!plen || ((p + plen) > msg_end))
986 return -40;
987 /* Handle seq option p = param data */
988 switch (ptype & ~IPVS_OPT_F_PARAM) {
989 case IPVS_OPT_SEQ_DATA:
990 if (ip_vs_proc_seqopt(p, plen, &opt_flags, &opt))
991 return -50;
992 break;
993
994 case IPVS_OPT_PE_DATA:
995 if (ip_vs_proc_str(p, plen, &pe_data_len, &pe_data,
996 IP_VS_PEDATA_MAXLEN, &opt_flags,
997 IPVS_OPT_F_PE_DATA))
998 return -60;
999 break;
1000
1001 case IPVS_OPT_PE_NAME:
1002 if (ip_vs_proc_str(p, plen,&pe_name_len, &pe_name,
1003 IP_VS_PENAME_MAXLEN, &opt_flags,
1004 IPVS_OPT_F_PE_NAME))
1005 return -70;
1006 break;
1007
1008 default:
1009 /* Param data mandatory ? */
1010 if (!(ptype & IPVS_OPT_F_PARAM)) {
1011 IP_VS_DBG(3, "BACKUP, Unknown mandatory param %d found\n",
1012 ptype & ~IPVS_OPT_F_PARAM);
1013 retc = 20;
1014 goto out;
1015 }
1016 }
1017 p += plen; /* Next option */
1018 }
1019
1020 /* Get flags and Mask off unsupported */
1021 flags = ntohl(s->v4.flags) & IP_VS_CONN_F_BACKUP_MASK;
1022 flags |= IP_VS_CONN_F_SYNC;
1023 state = ntohs(s->v4.state);
1024
1025 if (!(flags & IP_VS_CONN_F_TEMPLATE)) {
1026 pp = ip_vs_proto_get(s->v4.protocol);
1027 if (!pp) {
1028 IP_VS_DBG(3,"BACKUP, Unsupported protocol %u\n",
1029 s->v4.protocol);
1030 retc = 30;
1031 goto out;
1032 }
1033 if (state >= pp->num_states) {
1034 IP_VS_DBG(3, "BACKUP, Invalid %s state %u\n",
1035 pp->name, state);
1036 retc = 40;
1037 goto out;
1038 }
1039 } else {
1040 /* protocol in templates is not used for state/timeout */
1041 if (state > 0) {
1042 IP_VS_DBG(3, "BACKUP, Invalid template state %u\n",
1043 state);
1044 state = 0;
1045 }
1046 }
1047 if (ip_vs_conn_fill_param_sync(net, af, s, &param, pe_data,
1048 pe_data_len, pe_name, pe_name_len)) {
1049 retc = 50;
1050 goto out;
1051 }
1052 /* If only IPv4, just silent skip IPv6 */
1053 if (af == AF_INET)
1054 ip_vs_proc_conn(net, &param, flags, state, s->v4.protocol, af,
1055 (union nf_inet_addr *)&s->v4.daddr, s->v4.dport,
1056 ntohl(s->v4.timeout), ntohl(s->v4.fwmark),
1057 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1058 );
1059 #ifdef CONFIG_IP_VS_IPV6
1060 else
1061 ip_vs_proc_conn(net, &param, flags, state, s->v6.protocol, af,
1062 (union nf_inet_addr *)&s->v6.daddr, s->v6.dport,
1063 ntohl(s->v6.timeout), ntohl(s->v6.fwmark),
1064 (opt_flags & IPVS_OPT_F_SEQ_DATA ? &opt : NULL)
1065 );
1066 #endif
1067 return 0;
1068 /* Error exit */
1069 out:
1070 IP_VS_DBG(2, "BACKUP, Single msg dropped err:%d\n", retc);
1071 return retc;
1072
1073 }
1074 /*
1075 * Process received multicast message and create the corresponding
1076 * ip_vs_conn entries.
1077 * Handles Version 0 & 1
1078 */
1079 static void ip_vs_process_message(struct net *net, __u8 *buffer,
1080 const size_t buflen)
1081 {
1082 struct netns_ipvs *ipvs = net_ipvs(net);
1083 struct ip_vs_sync_mesg *m2 = (struct ip_vs_sync_mesg *)buffer;
1084 __u8 *p, *msg_end;
1085 int i, nr_conns;
1086
1087 if (buflen < sizeof(struct ip_vs_sync_mesg_v0)) {
1088 IP_VS_DBG(2, "BACKUP, message header too short\n");
1089 return;
1090 }
1091 /* Convert size back to host byte order */
1092 m2->size = ntohs(m2->size);
1093
1094 if (buflen != m2->size) {
1095 IP_VS_DBG(2, "BACKUP, bogus message size\n");
1096 return;
1097 }
1098 /* SyncID sanity check */
1099 if (ipvs->backup_syncid != 0 && m2->syncid != ipvs->backup_syncid) {
1100 IP_VS_DBG(7, "BACKUP, Ignoring syncid = %d\n", m2->syncid);
1101 return;
1102 }
1103 /* Handle version 1 message */
1104 if ((m2->version == SYNC_PROTO_VER) && (m2->reserved == 0)
1105 && (m2->spare == 0)) {
1106
1107 msg_end = buffer + sizeof(struct ip_vs_sync_mesg);
1108 nr_conns = m2->nr_conns;
1109
1110 for (i=0; i<nr_conns; i++) {
1111 union ip_vs_sync_conn *s;
1112 unsigned size;
1113 int retc;
1114
1115 p = msg_end;
1116 if (p + sizeof(s->v4) > buffer+buflen) {
1117 IP_VS_ERR_RL("BACKUP, Dropping buffer, to small\n");
1118 return;
1119 }
1120 s = (union ip_vs_sync_conn *)p;
1121 size = ntohs(s->v4.ver_size) & SVER_MASK;
1122 msg_end = p + size;
1123 /* Basic sanity checks */
1124 if (msg_end > buffer+buflen) {
1125 IP_VS_ERR_RL("BACKUP, Dropping buffer, msg > buffer\n");
1126 return;
1127 }
1128 if (ntohs(s->v4.ver_size) >> SVER_SHIFT) {
1129 IP_VS_ERR_RL("BACKUP, Dropping buffer, Unknown version %d\n",
1130 ntohs(s->v4.ver_size) >> SVER_SHIFT);
1131 return;
1132 }
1133 /* Process a single sync_conn */
1134 retc = ip_vs_proc_sync_conn(net, p, msg_end);
1135 if (retc < 0) {
1136 IP_VS_ERR_RL("BACKUP, Dropping buffer, Err: %d in decoding\n",
1137 retc);
1138 return;
1139 }
1140 /* Make sure we have 32 bit alignment */
1141 msg_end = p + ((size + 3) & ~3);
1142 }
1143 } else {
1144 /* Old type of message */
1145 ip_vs_process_message_v0(net, buffer, buflen);
1146 return;
1147 }
1148 }
1149
1150
1151 /*
1152 * Setup loopback of outgoing multicasts on a sending socket
1153 */
1154 static void set_mcast_loop(struct sock *sk, u_char loop)
1155 {
1156 struct inet_sock *inet = inet_sk(sk);
1157
1158 /* setsockopt(sock, SOL_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); */
1159 lock_sock(sk);
1160 inet->mc_loop = loop ? 1 : 0;
1161 release_sock(sk);
1162 }
1163
1164 /*
1165 * Specify TTL for outgoing multicasts on a sending socket
1166 */
1167 static void set_mcast_ttl(struct sock *sk, u_char ttl)
1168 {
1169 struct inet_sock *inet = inet_sk(sk);
1170
1171 /* setsockopt(sock, SOL_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)); */
1172 lock_sock(sk);
1173 inet->mc_ttl = ttl;
1174 release_sock(sk);
1175 }
1176
1177 /*
1178 * Specifiy default interface for outgoing multicasts
1179 */
1180 static int set_mcast_if(struct sock *sk, char *ifname)
1181 {
1182 struct net_device *dev;
1183 struct inet_sock *inet = inet_sk(sk);
1184 struct net *net = sock_net(sk);
1185
1186 dev = __dev_get_by_name(net, ifname);
1187 if (!dev)
1188 return -ENODEV;
1189
1190 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1191 return -EINVAL;
1192
1193 lock_sock(sk);
1194 inet->mc_index = dev->ifindex;
1195 /* inet->mc_addr = 0; */
1196 release_sock(sk);
1197
1198 return 0;
1199 }
1200
1201
1202 /*
1203 * Set the maximum length of sync message according to the
1204 * specified interface's MTU.
1205 */
1206 static int set_sync_mesg_maxlen(struct net *net, int sync_state)
1207 {
1208 struct netns_ipvs *ipvs = net_ipvs(net);
1209 struct net_device *dev;
1210 int num;
1211
1212 if (sync_state == IP_VS_STATE_MASTER) {
1213 dev = __dev_get_by_name(net, ipvs->master_mcast_ifn);
1214 if (!dev)
1215 return -ENODEV;
1216
1217 num = (dev->mtu - sizeof(struct iphdr) -
1218 sizeof(struct udphdr) -
1219 SYNC_MESG_HEADER_LEN - 20) / SIMPLE_CONN_SIZE;
1220 ipvs->send_mesg_maxlen = SYNC_MESG_HEADER_LEN +
1221 SIMPLE_CONN_SIZE * min(num, MAX_CONNS_PER_SYNCBUFF);
1222 IP_VS_DBG(7, "setting the maximum length of sync sending "
1223 "message %d.\n", ipvs->send_mesg_maxlen);
1224 } else if (sync_state == IP_VS_STATE_BACKUP) {
1225 dev = __dev_get_by_name(net, ipvs->backup_mcast_ifn);
1226 if (!dev)
1227 return -ENODEV;
1228
1229 ipvs->recv_mesg_maxlen = dev->mtu -
1230 sizeof(struct iphdr) - sizeof(struct udphdr);
1231 IP_VS_DBG(7, "setting the maximum length of sync receiving "
1232 "message %d.\n", ipvs->recv_mesg_maxlen);
1233 }
1234
1235 return 0;
1236 }
1237
1238
1239 /*
1240 * Join a multicast group.
1241 * the group is specified by a class D multicast address 224.0.0.0/8
1242 * in the in_addr structure passed in as a parameter.
1243 */
1244 static int
1245 join_mcast_group(struct sock *sk, struct in_addr *addr, char *ifname)
1246 {
1247 struct net *net = sock_net(sk);
1248 struct ip_mreqn mreq;
1249 struct net_device *dev;
1250 int ret;
1251
1252 memset(&mreq, 0, sizeof(mreq));
1253 memcpy(&mreq.imr_multiaddr, addr, sizeof(struct in_addr));
1254
1255 dev = __dev_get_by_name(net, ifname);
1256 if (!dev)
1257 return -ENODEV;
1258 if (sk->sk_bound_dev_if && dev->ifindex != sk->sk_bound_dev_if)
1259 return -EINVAL;
1260
1261 mreq.imr_ifindex = dev->ifindex;
1262
1263 lock_sock(sk);
1264 ret = ip_mc_join_group(sk, &mreq);
1265 release_sock(sk);
1266
1267 return ret;
1268 }
1269
1270
1271 static int bind_mcastif_addr(struct socket *sock, char *ifname)
1272 {
1273 struct net *net = sock_net(sock->sk);
1274 struct net_device *dev;
1275 __be32 addr;
1276 struct sockaddr_in sin;
1277
1278 dev = __dev_get_by_name(net, ifname);
1279 if (!dev)
1280 return -ENODEV;
1281
1282 addr = inet_select_addr(dev, 0, RT_SCOPE_UNIVERSE);
1283 if (!addr)
1284 pr_err("You probably need to specify IP address on "
1285 "multicast interface.\n");
1286
1287 IP_VS_DBG(7, "binding socket with (%s) %pI4\n",
1288 ifname, &addr);
1289
1290 /* Now bind the socket with the address of multicast interface */
1291 sin.sin_family = AF_INET;
1292 sin.sin_addr.s_addr = addr;
1293 sin.sin_port = 0;
1294
1295 return sock->ops->bind(sock, (struct sockaddr*)&sin, sizeof(sin));
1296 }
1297
1298 /*
1299 * Set up sending multicast socket over UDP
1300 */
1301 static struct socket *make_send_sock(struct net *net)
1302 {
1303 struct netns_ipvs *ipvs = net_ipvs(net);
1304 struct socket *sock;
1305 int result;
1306
1307 /* First create a socket */
1308 result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
1309 if (result < 0) {
1310 pr_err("Error during creation of socket; terminating\n");
1311 return ERR_PTR(result);
1312 }
1313
1314 result = set_mcast_if(sock->sk, ipvs->master_mcast_ifn);
1315 if (result < 0) {
1316 pr_err("Error setting outbound mcast interface\n");
1317 goto error;
1318 }
1319
1320 set_mcast_loop(sock->sk, 0);
1321 set_mcast_ttl(sock->sk, 1);
1322
1323 result = bind_mcastif_addr(sock, ipvs->master_mcast_ifn);
1324 if (result < 0) {
1325 pr_err("Error binding address of the mcast interface\n");
1326 goto error;
1327 }
1328
1329 result = sock->ops->connect(sock, (struct sockaddr *) &mcast_addr,
1330 sizeof(struct sockaddr), 0);
1331 if (result < 0) {
1332 pr_err("Error connecting to the multicast addr\n");
1333 goto error;
1334 }
1335
1336 return sock;
1337
1338 error:
1339 sock_release(sock);
1340 return ERR_PTR(result);
1341 }
1342
1343
1344 /*
1345 * Set up receiving multicast socket over UDP
1346 */
1347 static struct socket *make_receive_sock(struct net *net)
1348 {
1349 struct netns_ipvs *ipvs = net_ipvs(net);
1350 struct socket *sock;
1351 int result;
1352
1353 /* First create a socket */
1354 result = sock_create_kern(PF_INET, SOCK_DGRAM, IPPROTO_UDP, &sock);
1355 if (result < 0) {
1356 pr_err("Error during creation of socket; terminating\n");
1357 return ERR_PTR(result);
1358 }
1359
1360 /* it is equivalent to the REUSEADDR option in user-space */
1361 sock->sk->sk_reuse = 1;
1362
1363 result = sock->ops->bind(sock, (struct sockaddr *) &mcast_addr,
1364 sizeof(struct sockaddr));
1365 if (result < 0) {
1366 pr_err("Error binding to the multicast addr\n");
1367 goto error;
1368 }
1369
1370 /* join the multicast group */
1371 result = join_mcast_group(sock->sk,
1372 (struct in_addr *) &mcast_addr.sin_addr,
1373 ipvs->backup_mcast_ifn);
1374 if (result < 0) {
1375 pr_err("Error joining to the multicast group\n");
1376 goto error;
1377 }
1378
1379 return sock;
1380
1381 error:
1382 sock_release(sock);
1383 return ERR_PTR(result);
1384 }
1385
1386
1387 static int
1388 ip_vs_send_async(struct socket *sock, const char *buffer, const size_t length)
1389 {
1390 struct msghdr msg = {.msg_flags = MSG_DONTWAIT|MSG_NOSIGNAL};
1391 struct kvec iov;
1392 int len;
1393
1394 EnterFunction(7);
1395 iov.iov_base = (void *)buffer;
1396 iov.iov_len = length;
1397
1398 len = kernel_sendmsg(sock, &msg, &iov, 1, (size_t)(length));
1399
1400 LeaveFunction(7);
1401 return len;
1402 }
1403
1404 static void
1405 ip_vs_send_sync_msg(struct socket *sock, struct ip_vs_sync_mesg *msg)
1406 {
1407 int msize;
1408
1409 msize = msg->size;
1410
1411 /* Put size in network byte order */
1412 msg->size = htons(msg->size);
1413
1414 if (ip_vs_send_async(sock, (char *)msg, msize) != msize)
1415 pr_err("ip_vs_send_async error\n");
1416 }
1417
1418 static int
1419 ip_vs_receive(struct socket *sock, char *buffer, const size_t buflen)
1420 {
1421 struct msghdr msg = {NULL,};
1422 struct kvec iov;
1423 int len;
1424
1425 EnterFunction(7);
1426
1427 /* Receive a packet */
1428 iov.iov_base = buffer;
1429 iov.iov_len = (size_t)buflen;
1430
1431 len = kernel_recvmsg(sock, &msg, &iov, 1, buflen, 0);
1432
1433 if (len < 0)
1434 return -1;
1435
1436 LeaveFunction(7);
1437 return len;
1438 }
1439
1440
1441 static int sync_thread_master(void *data)
1442 {
1443 struct ip_vs_sync_thread_data *tinfo = data;
1444 struct netns_ipvs *ipvs = net_ipvs(tinfo->net);
1445 struct ip_vs_sync_buff *sb;
1446
1447 pr_info("sync thread started: state = MASTER, mcast_ifn = %s, "
1448 "syncid = %d\n",
1449 ipvs->master_mcast_ifn, ipvs->master_syncid);
1450
1451 while (!kthread_should_stop()) {
1452 while ((sb = sb_dequeue(ipvs))) {
1453 ip_vs_send_sync_msg(tinfo->sock, sb->mesg);
1454 ip_vs_sync_buff_release(sb);
1455 }
1456
1457 /* check if entries stay in ipvs->sync_buff for 2 seconds */
1458 sb = get_curr_sync_buff(ipvs, 2 * HZ);
1459 if (sb) {
1460 ip_vs_send_sync_msg(tinfo->sock, sb->mesg);
1461 ip_vs_sync_buff_release(sb);
1462 }
1463
1464 schedule_timeout_interruptible(HZ);
1465 }
1466
1467 /* clean up the sync_buff queue */
1468 while ((sb = sb_dequeue(ipvs)))
1469 ip_vs_sync_buff_release(sb);
1470
1471 /* clean up the current sync_buff */
1472 sb = get_curr_sync_buff(ipvs, 0);
1473 if (sb)
1474 ip_vs_sync_buff_release(sb);
1475
1476 /* release the sending multicast socket */
1477 sock_release(tinfo->sock);
1478 kfree(tinfo);
1479
1480 return 0;
1481 }
1482
1483
1484 static int sync_thread_backup(void *data)
1485 {
1486 struct ip_vs_sync_thread_data *tinfo = data;
1487 struct netns_ipvs *ipvs = net_ipvs(tinfo->net);
1488 int len;
1489
1490 pr_info("sync thread started: state = BACKUP, mcast_ifn = %s, "
1491 "syncid = %d\n",
1492 ipvs->backup_mcast_ifn, ipvs->backup_syncid);
1493
1494 while (!kthread_should_stop()) {
1495 wait_event_interruptible(*sk_sleep(tinfo->sock->sk),
1496 !skb_queue_empty(&tinfo->sock->sk->sk_receive_queue)
1497 || kthread_should_stop());
1498
1499 /* do we have data now? */
1500 while (!skb_queue_empty(&(tinfo->sock->sk->sk_receive_queue))) {
1501 len = ip_vs_receive(tinfo->sock, tinfo->buf,
1502 ipvs->recv_mesg_maxlen);
1503 if (len <= 0) {
1504 pr_err("receiving message error\n");
1505 break;
1506 }
1507
1508 /* disable bottom half, because it accesses the data
1509 shared by softirq while getting/creating conns */
1510 local_bh_disable();
1511 ip_vs_process_message(tinfo->net, tinfo->buf, len);
1512 local_bh_enable();
1513 }
1514 }
1515
1516 /* release the sending multicast socket */
1517 sock_release(tinfo->sock);
1518 kfree(tinfo->buf);
1519 kfree(tinfo);
1520
1521 return 0;
1522 }
1523
1524
1525 int start_sync_thread(struct net *net, int state, char *mcast_ifn, __u8 syncid)
1526 {
1527 struct ip_vs_sync_thread_data *tinfo;
1528 struct task_struct **realtask, *task;
1529 struct socket *sock;
1530 struct netns_ipvs *ipvs = net_ipvs(net);
1531 char *name, *buf = NULL;
1532 int (*threadfn)(void *data);
1533 int result = -ENOMEM;
1534
1535 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
1536 IP_VS_DBG(7, "Each ip_vs_sync_conn entry needs %Zd bytes\n",
1537 sizeof(struct ip_vs_sync_conn_v0));
1538
1539 if (state == IP_VS_STATE_MASTER) {
1540 if (ipvs->master_thread)
1541 return -EEXIST;
1542
1543 strlcpy(ipvs->master_mcast_ifn, mcast_ifn,
1544 sizeof(ipvs->master_mcast_ifn));
1545 ipvs->master_syncid = syncid;
1546 realtask = &ipvs->master_thread;
1547 name = "ipvs_master:%d";
1548 threadfn = sync_thread_master;
1549 sock = make_send_sock(net);
1550 } else if (state == IP_VS_STATE_BACKUP) {
1551 if (ipvs->backup_thread)
1552 return -EEXIST;
1553
1554 strlcpy(ipvs->backup_mcast_ifn, mcast_ifn,
1555 sizeof(ipvs->backup_mcast_ifn));
1556 ipvs->backup_syncid = syncid;
1557 realtask = &ipvs->backup_thread;
1558 name = "ipvs_backup:%d";
1559 threadfn = sync_thread_backup;
1560 sock = make_receive_sock(net);
1561 } else {
1562 return -EINVAL;
1563 }
1564
1565 if (IS_ERR(sock)) {
1566 result = PTR_ERR(sock);
1567 goto out;
1568 }
1569
1570 set_sync_mesg_maxlen(net, state);
1571 if (state == IP_VS_STATE_BACKUP) {
1572 buf = kmalloc(ipvs->recv_mesg_maxlen, GFP_KERNEL);
1573 if (!buf)
1574 goto outsocket;
1575 }
1576
1577 tinfo = kmalloc(sizeof(*tinfo), GFP_KERNEL);
1578 if (!tinfo)
1579 goto outbuf;
1580
1581 tinfo->net = net;
1582 tinfo->sock = sock;
1583 tinfo->buf = buf;
1584
1585 task = kthread_run(threadfn, tinfo, name, ipvs->gen);
1586 if (IS_ERR(task)) {
1587 result = PTR_ERR(task);
1588 goto outtinfo;
1589 }
1590
1591 /* mark as active */
1592 *realtask = task;
1593 ipvs->sync_state |= state;
1594
1595 /* increase the module use count */
1596 ip_vs_use_count_inc();
1597
1598 return 0;
1599
1600 outtinfo:
1601 kfree(tinfo);
1602 outbuf:
1603 kfree(buf);
1604 outsocket:
1605 sock_release(sock);
1606 out:
1607 return result;
1608 }
1609
1610
1611 int stop_sync_thread(struct net *net, int state)
1612 {
1613 struct netns_ipvs *ipvs = net_ipvs(net);
1614
1615 IP_VS_DBG(7, "%s(): pid %d\n", __func__, task_pid_nr(current));
1616
1617 if (state == IP_VS_STATE_MASTER) {
1618 if (!ipvs->master_thread)
1619 return -ESRCH;
1620
1621 pr_info("stopping master sync thread %d ...\n",
1622 task_pid_nr(ipvs->master_thread));
1623
1624 /*
1625 * The lock synchronizes with sb_queue_tail(), so that we don't
1626 * add sync buffers to the queue, when we are already in
1627 * progress of stopping the master sync daemon.
1628 */
1629
1630 spin_lock_bh(&ipvs->sync_lock);
1631 ipvs->sync_state &= ~IP_VS_STATE_MASTER;
1632 spin_unlock_bh(&ipvs->sync_lock);
1633 kthread_stop(ipvs->master_thread);
1634 ipvs->master_thread = NULL;
1635 } else if (state == IP_VS_STATE_BACKUP) {
1636 if (!ipvs->backup_thread)
1637 return -ESRCH;
1638
1639 pr_info("stopping backup sync thread %d ...\n",
1640 task_pid_nr(ipvs->backup_thread));
1641
1642 ipvs->sync_state &= ~IP_VS_STATE_BACKUP;
1643 kthread_stop(ipvs->backup_thread);
1644 ipvs->backup_thread = NULL;
1645 } else {
1646 return -EINVAL;
1647 }
1648
1649 /* decrease the module use count */
1650 ip_vs_use_count_dec();
1651
1652 return 0;
1653 }
1654
1655 /*
1656 * Initialize data struct for each netns
1657 */
1658 static int __net_init __ip_vs_sync_init(struct net *net)
1659 {
1660 struct netns_ipvs *ipvs = net_ipvs(net);
1661
1662 INIT_LIST_HEAD(&ipvs->sync_queue);
1663 spin_lock_init(&ipvs->sync_lock);
1664 spin_lock_init(&ipvs->sync_buff_lock);
1665
1666 ipvs->sync_mcast_addr.sin_family = AF_INET;
1667 ipvs->sync_mcast_addr.sin_port = cpu_to_be16(IP_VS_SYNC_PORT);
1668 ipvs->sync_mcast_addr.sin_addr.s_addr = cpu_to_be32(IP_VS_SYNC_GROUP);
1669 return 0;
1670 }
1671
1672 static void __ip_vs_sync_cleanup(struct net *net)
1673 {
1674 stop_sync_thread(net, IP_VS_STATE_MASTER);
1675 stop_sync_thread(net, IP_VS_STATE_BACKUP);
1676 }
1677
1678 static struct pernet_operations ipvs_sync_ops = {
1679 .init = __ip_vs_sync_init,
1680 .exit = __ip_vs_sync_cleanup,
1681 };
1682
1683
1684 int __init ip_vs_sync_init(void)
1685 {
1686 return register_pernet_subsys(&ipvs_sync_ops);
1687 }
1688
1689 void __exit ip_vs_sync_cleanup(void)
1690 {
1691 unregister_pernet_subsys(&ipvs_sync_ops);
1692 }