]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - net/netfilter/ipvs/ip_vs_ctl.c
Merge branch 'misc' into for-linus
[mirror_ubuntu-hirsute-kernel.git] / net / netfilter / ipvs / ip_vs_ctl.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 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
9 * Peter Kese <peter.kese@ijs.si>
10 * Julian Anastasov <ja@ssi.bg>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * Changes:
18 *
19 */
20
21 #define KMSG_COMPONENT "IPVS"
22 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
23
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/types.h>
27 #include <linux/capability.h>
28 #include <linux/fs.h>
29 #include <linux/sysctl.h>
30 #include <linux/proc_fs.h>
31 #include <linux/workqueue.h>
32 #include <linux/swap.h>
33 #include <linux/seq_file.h>
34 #include <linux/slab.h>
35
36 #include <linux/netfilter.h>
37 #include <linux/netfilter_ipv4.h>
38 #include <linux/mutex.h>
39
40 #include <net/net_namespace.h>
41 #include <linux/nsproxy.h>
42 #include <net/ip.h>
43 #ifdef CONFIG_IP_VS_IPV6
44 #include <net/ipv6.h>
45 #include <net/ip6_route.h>
46 #endif
47 #include <net/route.h>
48 #include <net/sock.h>
49 #include <net/genetlink.h>
50
51 #include <asm/uaccess.h>
52
53 #include <net/ip_vs.h>
54
55 /* semaphore for IPVS sockopts. And, [gs]etsockopt may sleep. */
56 static DEFINE_MUTEX(__ip_vs_mutex);
57
58 /* sysctl variables */
59
60 #ifdef CONFIG_IP_VS_DEBUG
61 static int sysctl_ip_vs_debug_level = 0;
62
63 int ip_vs_get_debug_level(void)
64 {
65 return sysctl_ip_vs_debug_level;
66 }
67 #endif
68
69
70 /* Protos */
71 static void __ip_vs_del_service(struct ip_vs_service *svc, bool cleanup);
72
73
74 #ifdef CONFIG_IP_VS_IPV6
75 /* Taken from rt6_fill_node() in net/ipv6/route.c, is there a better way? */
76 static bool __ip_vs_addr_is_local_v6(struct net *net,
77 const struct in6_addr *addr)
78 {
79 struct flowi6 fl6 = {
80 .daddr = *addr,
81 };
82 struct dst_entry *dst = ip6_route_output(net, NULL, &fl6);
83 bool is_local;
84
85 is_local = !dst->error && dst->dev && (dst->dev->flags & IFF_LOOPBACK);
86
87 dst_release(dst);
88 return is_local;
89 }
90 #endif
91
92 #ifdef CONFIG_SYSCTL
93 /*
94 * update_defense_level is called from keventd and from sysctl,
95 * so it needs to protect itself from softirqs
96 */
97 static void update_defense_level(struct netns_ipvs *ipvs)
98 {
99 struct sysinfo i;
100 static int old_secure_tcp = 0;
101 int availmem;
102 int nomem;
103 int to_change = -1;
104
105 /* we only count free and buffered memory (in pages) */
106 si_meminfo(&i);
107 availmem = i.freeram + i.bufferram;
108 /* however in linux 2.5 the i.bufferram is total page cache size,
109 we need adjust it */
110 /* si_swapinfo(&i); */
111 /* availmem = availmem - (i.totalswap - i.freeswap); */
112
113 nomem = (availmem < ipvs->sysctl_amemthresh);
114
115 local_bh_disable();
116
117 /* drop_entry */
118 spin_lock(&ipvs->dropentry_lock);
119 switch (ipvs->sysctl_drop_entry) {
120 case 0:
121 atomic_set(&ipvs->dropentry, 0);
122 break;
123 case 1:
124 if (nomem) {
125 atomic_set(&ipvs->dropentry, 1);
126 ipvs->sysctl_drop_entry = 2;
127 } else {
128 atomic_set(&ipvs->dropentry, 0);
129 }
130 break;
131 case 2:
132 if (nomem) {
133 atomic_set(&ipvs->dropentry, 1);
134 } else {
135 atomic_set(&ipvs->dropentry, 0);
136 ipvs->sysctl_drop_entry = 1;
137 };
138 break;
139 case 3:
140 atomic_set(&ipvs->dropentry, 1);
141 break;
142 }
143 spin_unlock(&ipvs->dropentry_lock);
144
145 /* drop_packet */
146 spin_lock(&ipvs->droppacket_lock);
147 switch (ipvs->sysctl_drop_packet) {
148 case 0:
149 ipvs->drop_rate = 0;
150 break;
151 case 1:
152 if (nomem) {
153 ipvs->drop_rate = ipvs->drop_counter
154 = ipvs->sysctl_amemthresh /
155 (ipvs->sysctl_amemthresh-availmem);
156 ipvs->sysctl_drop_packet = 2;
157 } else {
158 ipvs->drop_rate = 0;
159 }
160 break;
161 case 2:
162 if (nomem) {
163 ipvs->drop_rate = ipvs->drop_counter
164 = ipvs->sysctl_amemthresh /
165 (ipvs->sysctl_amemthresh-availmem);
166 } else {
167 ipvs->drop_rate = 0;
168 ipvs->sysctl_drop_packet = 1;
169 }
170 break;
171 case 3:
172 ipvs->drop_rate = ipvs->sysctl_am_droprate;
173 break;
174 }
175 spin_unlock(&ipvs->droppacket_lock);
176
177 /* secure_tcp */
178 spin_lock(&ipvs->securetcp_lock);
179 switch (ipvs->sysctl_secure_tcp) {
180 case 0:
181 if (old_secure_tcp >= 2)
182 to_change = 0;
183 break;
184 case 1:
185 if (nomem) {
186 if (old_secure_tcp < 2)
187 to_change = 1;
188 ipvs->sysctl_secure_tcp = 2;
189 } else {
190 if (old_secure_tcp >= 2)
191 to_change = 0;
192 }
193 break;
194 case 2:
195 if (nomem) {
196 if (old_secure_tcp < 2)
197 to_change = 1;
198 } else {
199 if (old_secure_tcp >= 2)
200 to_change = 0;
201 ipvs->sysctl_secure_tcp = 1;
202 }
203 break;
204 case 3:
205 if (old_secure_tcp < 2)
206 to_change = 1;
207 break;
208 }
209 old_secure_tcp = ipvs->sysctl_secure_tcp;
210 if (to_change >= 0)
211 ip_vs_protocol_timeout_change(ipvs,
212 ipvs->sysctl_secure_tcp > 1);
213 spin_unlock(&ipvs->securetcp_lock);
214
215 local_bh_enable();
216 }
217
218
219 /*
220 * Timer for checking the defense
221 */
222 #define DEFENSE_TIMER_PERIOD 1*HZ
223
224 static void defense_work_handler(struct work_struct *work)
225 {
226 struct netns_ipvs *ipvs =
227 container_of(work, struct netns_ipvs, defense_work.work);
228
229 update_defense_level(ipvs);
230 if (atomic_read(&ipvs->dropentry))
231 ip_vs_random_dropentry(ipvs);
232 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
233 }
234 #endif
235
236 int
237 ip_vs_use_count_inc(void)
238 {
239 return try_module_get(THIS_MODULE);
240 }
241
242 void
243 ip_vs_use_count_dec(void)
244 {
245 module_put(THIS_MODULE);
246 }
247
248
249 /*
250 * Hash table: for virtual service lookups
251 */
252 #define IP_VS_SVC_TAB_BITS 8
253 #define IP_VS_SVC_TAB_SIZE (1 << IP_VS_SVC_TAB_BITS)
254 #define IP_VS_SVC_TAB_MASK (IP_VS_SVC_TAB_SIZE - 1)
255
256 /* the service table hashed by <protocol, addr, port> */
257 static struct hlist_head ip_vs_svc_table[IP_VS_SVC_TAB_SIZE];
258 /* the service table hashed by fwmark */
259 static struct hlist_head ip_vs_svc_fwm_table[IP_VS_SVC_TAB_SIZE];
260
261
262 /*
263 * Returns hash value for virtual service
264 */
265 static inline unsigned int
266 ip_vs_svc_hashkey(struct netns_ipvs *ipvs, int af, unsigned int proto,
267 const union nf_inet_addr *addr, __be16 port)
268 {
269 register unsigned int porth = ntohs(port);
270 __be32 addr_fold = addr->ip;
271 __u32 ahash;
272
273 #ifdef CONFIG_IP_VS_IPV6
274 if (af == AF_INET6)
275 addr_fold = addr->ip6[0]^addr->ip6[1]^
276 addr->ip6[2]^addr->ip6[3];
277 #endif
278 ahash = ntohl(addr_fold);
279 ahash ^= ((size_t) ipvs >> 8);
280
281 return (proto ^ ahash ^ (porth >> IP_VS_SVC_TAB_BITS) ^ porth) &
282 IP_VS_SVC_TAB_MASK;
283 }
284
285 /*
286 * Returns hash value of fwmark for virtual service lookup
287 */
288 static inline unsigned int ip_vs_svc_fwm_hashkey(struct netns_ipvs *ipvs, __u32 fwmark)
289 {
290 return (((size_t)ipvs>>8) ^ fwmark) & IP_VS_SVC_TAB_MASK;
291 }
292
293 /*
294 * Hashes a service in the ip_vs_svc_table by <netns,proto,addr,port>
295 * or in the ip_vs_svc_fwm_table by fwmark.
296 * Should be called with locked tables.
297 */
298 static int ip_vs_svc_hash(struct ip_vs_service *svc)
299 {
300 unsigned int hash;
301
302 if (svc->flags & IP_VS_SVC_F_HASHED) {
303 pr_err("%s(): request for already hashed, called from %pF\n",
304 __func__, __builtin_return_address(0));
305 return 0;
306 }
307
308 if (svc->fwmark == 0) {
309 /*
310 * Hash it by <netns,protocol,addr,port> in ip_vs_svc_table
311 */
312 hash = ip_vs_svc_hashkey(svc->ipvs, svc->af, svc->protocol,
313 &svc->addr, svc->port);
314 hlist_add_head_rcu(&svc->s_list, &ip_vs_svc_table[hash]);
315 } else {
316 /*
317 * Hash it by fwmark in svc_fwm_table
318 */
319 hash = ip_vs_svc_fwm_hashkey(svc->ipvs, svc->fwmark);
320 hlist_add_head_rcu(&svc->f_list, &ip_vs_svc_fwm_table[hash]);
321 }
322
323 svc->flags |= IP_VS_SVC_F_HASHED;
324 /* increase its refcnt because it is referenced by the svc table */
325 atomic_inc(&svc->refcnt);
326 return 1;
327 }
328
329
330 /*
331 * Unhashes a service from svc_table / svc_fwm_table.
332 * Should be called with locked tables.
333 */
334 static int ip_vs_svc_unhash(struct ip_vs_service *svc)
335 {
336 if (!(svc->flags & IP_VS_SVC_F_HASHED)) {
337 pr_err("%s(): request for unhash flagged, called from %pF\n",
338 __func__, __builtin_return_address(0));
339 return 0;
340 }
341
342 if (svc->fwmark == 0) {
343 /* Remove it from the svc_table table */
344 hlist_del_rcu(&svc->s_list);
345 } else {
346 /* Remove it from the svc_fwm_table table */
347 hlist_del_rcu(&svc->f_list);
348 }
349
350 svc->flags &= ~IP_VS_SVC_F_HASHED;
351 atomic_dec(&svc->refcnt);
352 return 1;
353 }
354
355
356 /*
357 * Get service by {netns, proto,addr,port} in the service table.
358 */
359 static inline struct ip_vs_service *
360 __ip_vs_service_find(struct netns_ipvs *ipvs, int af, __u16 protocol,
361 const union nf_inet_addr *vaddr, __be16 vport)
362 {
363 unsigned int hash;
364 struct ip_vs_service *svc;
365
366 /* Check for "full" addressed entries */
367 hash = ip_vs_svc_hashkey(ipvs, af, protocol, vaddr, vport);
368
369 hlist_for_each_entry_rcu(svc, &ip_vs_svc_table[hash], s_list) {
370 if ((svc->af == af)
371 && ip_vs_addr_equal(af, &svc->addr, vaddr)
372 && (svc->port == vport)
373 && (svc->protocol == protocol)
374 && (svc->ipvs == ipvs)) {
375 /* HIT */
376 return svc;
377 }
378 }
379
380 return NULL;
381 }
382
383
384 /*
385 * Get service by {fwmark} in the service table.
386 */
387 static inline struct ip_vs_service *
388 __ip_vs_svc_fwm_find(struct netns_ipvs *ipvs, int af, __u32 fwmark)
389 {
390 unsigned int hash;
391 struct ip_vs_service *svc;
392
393 /* Check for fwmark addressed entries */
394 hash = ip_vs_svc_fwm_hashkey(ipvs, fwmark);
395
396 hlist_for_each_entry_rcu(svc, &ip_vs_svc_fwm_table[hash], f_list) {
397 if (svc->fwmark == fwmark && svc->af == af
398 && (svc->ipvs == ipvs)) {
399 /* HIT */
400 return svc;
401 }
402 }
403
404 return NULL;
405 }
406
407 /* Find service, called under RCU lock */
408 struct ip_vs_service *
409 ip_vs_service_find(struct netns_ipvs *ipvs, int af, __u32 fwmark, __u16 protocol,
410 const union nf_inet_addr *vaddr, __be16 vport)
411 {
412 struct ip_vs_service *svc;
413
414 /*
415 * Check the table hashed by fwmark first
416 */
417 if (fwmark) {
418 svc = __ip_vs_svc_fwm_find(ipvs, af, fwmark);
419 if (svc)
420 goto out;
421 }
422
423 /*
424 * Check the table hashed by <protocol,addr,port>
425 * for "full" addressed entries
426 */
427 svc = __ip_vs_service_find(ipvs, af, protocol, vaddr, vport);
428
429 if (svc == NULL
430 && protocol == IPPROTO_TCP
431 && atomic_read(&ipvs->ftpsvc_counter)
432 && (vport == FTPDATA || ntohs(vport) >= PROT_SOCK)) {
433 /*
434 * Check if ftp service entry exists, the packet
435 * might belong to FTP data connections.
436 */
437 svc = __ip_vs_service_find(ipvs, af, protocol, vaddr, FTPPORT);
438 }
439
440 if (svc == NULL
441 && atomic_read(&ipvs->nullsvc_counter)) {
442 /*
443 * Check if the catch-all port (port zero) exists
444 */
445 svc = __ip_vs_service_find(ipvs, af, protocol, vaddr, 0);
446 }
447
448 out:
449 IP_VS_DBG_BUF(9, "lookup service: fwm %u %s %s:%u %s\n",
450 fwmark, ip_vs_proto_name(protocol),
451 IP_VS_DBG_ADDR(af, vaddr), ntohs(vport),
452 svc ? "hit" : "not hit");
453
454 return svc;
455 }
456
457
458 static inline void
459 __ip_vs_bind_svc(struct ip_vs_dest *dest, struct ip_vs_service *svc)
460 {
461 atomic_inc(&svc->refcnt);
462 rcu_assign_pointer(dest->svc, svc);
463 }
464
465 static void ip_vs_service_free(struct ip_vs_service *svc)
466 {
467 free_percpu(svc->stats.cpustats);
468 kfree(svc);
469 }
470
471 static void ip_vs_service_rcu_free(struct rcu_head *head)
472 {
473 struct ip_vs_service *svc;
474
475 svc = container_of(head, struct ip_vs_service, rcu_head);
476 ip_vs_service_free(svc);
477 }
478
479 static void __ip_vs_svc_put(struct ip_vs_service *svc, bool do_delay)
480 {
481 if (atomic_dec_and_test(&svc->refcnt)) {
482 IP_VS_DBG_BUF(3, "Removing service %u/%s:%u\n",
483 svc->fwmark,
484 IP_VS_DBG_ADDR(svc->af, &svc->addr),
485 ntohs(svc->port));
486 if (do_delay)
487 call_rcu(&svc->rcu_head, ip_vs_service_rcu_free);
488 else
489 ip_vs_service_free(svc);
490 }
491 }
492
493
494 /*
495 * Returns hash value for real service
496 */
497 static inline unsigned int ip_vs_rs_hashkey(int af,
498 const union nf_inet_addr *addr,
499 __be16 port)
500 {
501 register unsigned int porth = ntohs(port);
502 __be32 addr_fold = addr->ip;
503
504 #ifdef CONFIG_IP_VS_IPV6
505 if (af == AF_INET6)
506 addr_fold = addr->ip6[0]^addr->ip6[1]^
507 addr->ip6[2]^addr->ip6[3];
508 #endif
509
510 return (ntohl(addr_fold)^(porth>>IP_VS_RTAB_BITS)^porth)
511 & IP_VS_RTAB_MASK;
512 }
513
514 /* Hash ip_vs_dest in rs_table by <proto,addr,port>. */
515 static void ip_vs_rs_hash(struct netns_ipvs *ipvs, struct ip_vs_dest *dest)
516 {
517 unsigned int hash;
518
519 if (dest->in_rs_table)
520 return;
521
522 /*
523 * Hash by proto,addr,port,
524 * which are the parameters of the real service.
525 */
526 hash = ip_vs_rs_hashkey(dest->af, &dest->addr, dest->port);
527
528 hlist_add_head_rcu(&dest->d_list, &ipvs->rs_table[hash]);
529 dest->in_rs_table = 1;
530 }
531
532 /* Unhash ip_vs_dest from rs_table. */
533 static void ip_vs_rs_unhash(struct ip_vs_dest *dest)
534 {
535 /*
536 * Remove it from the rs_table table.
537 */
538 if (dest->in_rs_table) {
539 hlist_del_rcu(&dest->d_list);
540 dest->in_rs_table = 0;
541 }
542 }
543
544 /* Check if real service by <proto,addr,port> is present */
545 bool ip_vs_has_real_service(struct netns_ipvs *ipvs, int af, __u16 protocol,
546 const union nf_inet_addr *daddr, __be16 dport)
547 {
548 unsigned int hash;
549 struct ip_vs_dest *dest;
550
551 /* Check for "full" addressed entries */
552 hash = ip_vs_rs_hashkey(af, daddr, dport);
553
554 rcu_read_lock();
555 hlist_for_each_entry_rcu(dest, &ipvs->rs_table[hash], d_list) {
556 if (dest->port == dport &&
557 dest->af == af &&
558 ip_vs_addr_equal(af, &dest->addr, daddr) &&
559 (dest->protocol == protocol || dest->vfwmark)) {
560 /* HIT */
561 rcu_read_unlock();
562 return true;
563 }
564 }
565 rcu_read_unlock();
566
567 return false;
568 }
569
570 /* Find real service record by <proto,addr,port>.
571 * In case of multiple records with the same <proto,addr,port>, only
572 * the first found record is returned.
573 *
574 * To be called under RCU lock.
575 */
576 struct ip_vs_dest *ip_vs_find_real_service(struct netns_ipvs *ipvs, int af,
577 __u16 protocol,
578 const union nf_inet_addr *daddr,
579 __be16 dport)
580 {
581 unsigned int hash;
582 struct ip_vs_dest *dest;
583
584 /* Check for "full" addressed entries */
585 hash = ip_vs_rs_hashkey(af, daddr, dport);
586
587 hlist_for_each_entry_rcu(dest, &ipvs->rs_table[hash], d_list) {
588 if (dest->port == dport &&
589 dest->af == af &&
590 ip_vs_addr_equal(af, &dest->addr, daddr) &&
591 (dest->protocol == protocol || dest->vfwmark)) {
592 /* HIT */
593 return dest;
594 }
595 }
596
597 return NULL;
598 }
599
600 /* Lookup destination by {addr,port} in the given service
601 * Called under RCU lock.
602 */
603 static struct ip_vs_dest *
604 ip_vs_lookup_dest(struct ip_vs_service *svc, int dest_af,
605 const union nf_inet_addr *daddr, __be16 dport)
606 {
607 struct ip_vs_dest *dest;
608
609 /*
610 * Find the destination for the given service
611 */
612 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
613 if ((dest->af == dest_af) &&
614 ip_vs_addr_equal(dest_af, &dest->addr, daddr) &&
615 (dest->port == dport)) {
616 /* HIT */
617 return dest;
618 }
619 }
620
621 return NULL;
622 }
623
624 /*
625 * Find destination by {daddr,dport,vaddr,protocol}
626 * Created to be used in ip_vs_process_message() in
627 * the backup synchronization daemon. It finds the
628 * destination to be bound to the received connection
629 * on the backup.
630 * Called under RCU lock, no refcnt is returned.
631 */
632 struct ip_vs_dest *ip_vs_find_dest(struct netns_ipvs *ipvs, int svc_af, int dest_af,
633 const union nf_inet_addr *daddr,
634 __be16 dport,
635 const union nf_inet_addr *vaddr,
636 __be16 vport, __u16 protocol, __u32 fwmark,
637 __u32 flags)
638 {
639 struct ip_vs_dest *dest;
640 struct ip_vs_service *svc;
641 __be16 port = dport;
642
643 svc = ip_vs_service_find(ipvs, svc_af, fwmark, protocol, vaddr, vport);
644 if (!svc)
645 return NULL;
646 if (fwmark && (flags & IP_VS_CONN_F_FWD_MASK) != IP_VS_CONN_F_MASQ)
647 port = 0;
648 dest = ip_vs_lookup_dest(svc, dest_af, daddr, port);
649 if (!dest)
650 dest = ip_vs_lookup_dest(svc, dest_af, daddr, port ^ dport);
651 return dest;
652 }
653
654 void ip_vs_dest_dst_rcu_free(struct rcu_head *head)
655 {
656 struct ip_vs_dest_dst *dest_dst = container_of(head,
657 struct ip_vs_dest_dst,
658 rcu_head);
659
660 dst_release(dest_dst->dst_cache);
661 kfree(dest_dst);
662 }
663
664 /* Release dest_dst and dst_cache for dest in user context */
665 static void __ip_vs_dst_cache_reset(struct ip_vs_dest *dest)
666 {
667 struct ip_vs_dest_dst *old;
668
669 old = rcu_dereference_protected(dest->dest_dst, 1);
670 if (old) {
671 RCU_INIT_POINTER(dest->dest_dst, NULL);
672 call_rcu(&old->rcu_head, ip_vs_dest_dst_rcu_free);
673 }
674 }
675
676 /*
677 * Lookup dest by {svc,addr,port} in the destination trash.
678 * The destination trash is used to hold the destinations that are removed
679 * from the service table but are still referenced by some conn entries.
680 * The reason to add the destination trash is when the dest is temporary
681 * down (either by administrator or by monitor program), the dest can be
682 * picked back from the trash, the remaining connections to the dest can
683 * continue, and the counting information of the dest is also useful for
684 * scheduling.
685 */
686 static struct ip_vs_dest *
687 ip_vs_trash_get_dest(struct ip_vs_service *svc, int dest_af,
688 const union nf_inet_addr *daddr, __be16 dport)
689 {
690 struct ip_vs_dest *dest;
691 struct netns_ipvs *ipvs = svc->ipvs;
692
693 /*
694 * Find the destination in trash
695 */
696 spin_lock_bh(&ipvs->dest_trash_lock);
697 list_for_each_entry(dest, &ipvs->dest_trash, t_list) {
698 IP_VS_DBG_BUF(3, "Destination %u/%s:%u still in trash, "
699 "dest->refcnt=%d\n",
700 dest->vfwmark,
701 IP_VS_DBG_ADDR(dest->af, &dest->addr),
702 ntohs(dest->port),
703 atomic_read(&dest->refcnt));
704 if (dest->af == dest_af &&
705 ip_vs_addr_equal(dest_af, &dest->addr, daddr) &&
706 dest->port == dport &&
707 dest->vfwmark == svc->fwmark &&
708 dest->protocol == svc->protocol &&
709 (svc->fwmark ||
710 (ip_vs_addr_equal(svc->af, &dest->vaddr, &svc->addr) &&
711 dest->vport == svc->port))) {
712 /* HIT */
713 list_del(&dest->t_list);
714 ip_vs_dest_hold(dest);
715 goto out;
716 }
717 }
718
719 dest = NULL;
720
721 out:
722 spin_unlock_bh(&ipvs->dest_trash_lock);
723
724 return dest;
725 }
726
727 static void ip_vs_dest_free(struct ip_vs_dest *dest)
728 {
729 struct ip_vs_service *svc = rcu_dereference_protected(dest->svc, 1);
730
731 __ip_vs_dst_cache_reset(dest);
732 __ip_vs_svc_put(svc, false);
733 free_percpu(dest->stats.cpustats);
734 ip_vs_dest_put_and_free(dest);
735 }
736
737 /*
738 * Clean up all the destinations in the trash
739 * Called by the ip_vs_control_cleanup()
740 *
741 * When the ip_vs_control_clearup is activated by ipvs module exit,
742 * the service tables must have been flushed and all the connections
743 * are expired, and the refcnt of each destination in the trash must
744 * be 0, so we simply release them here.
745 */
746 static void ip_vs_trash_cleanup(struct netns_ipvs *ipvs)
747 {
748 struct ip_vs_dest *dest, *nxt;
749
750 del_timer_sync(&ipvs->dest_trash_timer);
751 /* No need to use dest_trash_lock */
752 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, t_list) {
753 list_del(&dest->t_list);
754 ip_vs_dest_free(dest);
755 }
756 }
757
758 static void
759 ip_vs_copy_stats(struct ip_vs_kstats *dst, struct ip_vs_stats *src)
760 {
761 #define IP_VS_SHOW_STATS_COUNTER(c) dst->c = src->kstats.c - src->kstats0.c
762
763 spin_lock_bh(&src->lock);
764
765 IP_VS_SHOW_STATS_COUNTER(conns);
766 IP_VS_SHOW_STATS_COUNTER(inpkts);
767 IP_VS_SHOW_STATS_COUNTER(outpkts);
768 IP_VS_SHOW_STATS_COUNTER(inbytes);
769 IP_VS_SHOW_STATS_COUNTER(outbytes);
770
771 ip_vs_read_estimator(dst, src);
772
773 spin_unlock_bh(&src->lock);
774 }
775
776 static void
777 ip_vs_export_stats_user(struct ip_vs_stats_user *dst, struct ip_vs_kstats *src)
778 {
779 dst->conns = (u32)src->conns;
780 dst->inpkts = (u32)src->inpkts;
781 dst->outpkts = (u32)src->outpkts;
782 dst->inbytes = src->inbytes;
783 dst->outbytes = src->outbytes;
784 dst->cps = (u32)src->cps;
785 dst->inpps = (u32)src->inpps;
786 dst->outpps = (u32)src->outpps;
787 dst->inbps = (u32)src->inbps;
788 dst->outbps = (u32)src->outbps;
789 }
790
791 static void
792 ip_vs_zero_stats(struct ip_vs_stats *stats)
793 {
794 spin_lock_bh(&stats->lock);
795
796 /* get current counters as zero point, rates are zeroed */
797
798 #define IP_VS_ZERO_STATS_COUNTER(c) stats->kstats0.c = stats->kstats.c
799
800 IP_VS_ZERO_STATS_COUNTER(conns);
801 IP_VS_ZERO_STATS_COUNTER(inpkts);
802 IP_VS_ZERO_STATS_COUNTER(outpkts);
803 IP_VS_ZERO_STATS_COUNTER(inbytes);
804 IP_VS_ZERO_STATS_COUNTER(outbytes);
805
806 ip_vs_zero_estimator(stats);
807
808 spin_unlock_bh(&stats->lock);
809 }
810
811 /*
812 * Update a destination in the given service
813 */
814 static void
815 __ip_vs_update_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest,
816 struct ip_vs_dest_user_kern *udest, int add)
817 {
818 struct netns_ipvs *ipvs = svc->ipvs;
819 struct ip_vs_service *old_svc;
820 struct ip_vs_scheduler *sched;
821 int conn_flags;
822
823 /* We cannot modify an address and change the address family */
824 BUG_ON(!add && udest->af != dest->af);
825
826 if (add && udest->af != svc->af)
827 ipvs->mixed_address_family_dests++;
828
829 /* set the weight and the flags */
830 atomic_set(&dest->weight, udest->weight);
831 conn_flags = udest->conn_flags & IP_VS_CONN_F_DEST_MASK;
832 conn_flags |= IP_VS_CONN_F_INACTIVE;
833
834 /* set the IP_VS_CONN_F_NOOUTPUT flag if not masquerading/NAT */
835 if ((conn_flags & IP_VS_CONN_F_FWD_MASK) != IP_VS_CONN_F_MASQ) {
836 conn_flags |= IP_VS_CONN_F_NOOUTPUT;
837 } else {
838 /*
839 * Put the real service in rs_table if not present.
840 * For now only for NAT!
841 */
842 ip_vs_rs_hash(ipvs, dest);
843 }
844 atomic_set(&dest->conn_flags, conn_flags);
845
846 /* bind the service */
847 old_svc = rcu_dereference_protected(dest->svc, 1);
848 if (!old_svc) {
849 __ip_vs_bind_svc(dest, svc);
850 } else {
851 if (old_svc != svc) {
852 ip_vs_zero_stats(&dest->stats);
853 __ip_vs_bind_svc(dest, svc);
854 __ip_vs_svc_put(old_svc, true);
855 }
856 }
857
858 /* set the dest status flags */
859 dest->flags |= IP_VS_DEST_F_AVAILABLE;
860
861 if (udest->u_threshold == 0 || udest->u_threshold > dest->u_threshold)
862 dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
863 dest->u_threshold = udest->u_threshold;
864 dest->l_threshold = udest->l_threshold;
865
866 dest->af = udest->af;
867
868 spin_lock_bh(&dest->dst_lock);
869 __ip_vs_dst_cache_reset(dest);
870 spin_unlock_bh(&dest->dst_lock);
871
872 if (add) {
873 ip_vs_start_estimator(svc->ipvs, &dest->stats);
874 list_add_rcu(&dest->n_list, &svc->destinations);
875 svc->num_dests++;
876 sched = rcu_dereference_protected(svc->scheduler, 1);
877 if (sched && sched->add_dest)
878 sched->add_dest(svc, dest);
879 } else {
880 sched = rcu_dereference_protected(svc->scheduler, 1);
881 if (sched && sched->upd_dest)
882 sched->upd_dest(svc, dest);
883 }
884 }
885
886
887 /*
888 * Create a destination for the given service
889 */
890 static int
891 ip_vs_new_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest,
892 struct ip_vs_dest **dest_p)
893 {
894 struct ip_vs_dest *dest;
895 unsigned int atype, i;
896
897 EnterFunction(2);
898
899 #ifdef CONFIG_IP_VS_IPV6
900 if (udest->af == AF_INET6) {
901 atype = ipv6_addr_type(&udest->addr.in6);
902 if ((!(atype & IPV6_ADDR_UNICAST) ||
903 atype & IPV6_ADDR_LINKLOCAL) &&
904 !__ip_vs_addr_is_local_v6(svc->ipvs->net, &udest->addr.in6))
905 return -EINVAL;
906 } else
907 #endif
908 {
909 atype = inet_addr_type(svc->ipvs->net, udest->addr.ip);
910 if (atype != RTN_LOCAL && atype != RTN_UNICAST)
911 return -EINVAL;
912 }
913
914 dest = kzalloc(sizeof(struct ip_vs_dest), GFP_KERNEL);
915 if (dest == NULL)
916 return -ENOMEM;
917
918 dest->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
919 if (!dest->stats.cpustats)
920 goto err_alloc;
921
922 for_each_possible_cpu(i) {
923 struct ip_vs_cpu_stats *ip_vs_dest_stats;
924 ip_vs_dest_stats = per_cpu_ptr(dest->stats.cpustats, i);
925 u64_stats_init(&ip_vs_dest_stats->syncp);
926 }
927
928 dest->af = udest->af;
929 dest->protocol = svc->protocol;
930 dest->vaddr = svc->addr;
931 dest->vport = svc->port;
932 dest->vfwmark = svc->fwmark;
933 ip_vs_addr_copy(udest->af, &dest->addr, &udest->addr);
934 dest->port = udest->port;
935
936 atomic_set(&dest->activeconns, 0);
937 atomic_set(&dest->inactconns, 0);
938 atomic_set(&dest->persistconns, 0);
939 atomic_set(&dest->refcnt, 1);
940
941 INIT_HLIST_NODE(&dest->d_list);
942 spin_lock_init(&dest->dst_lock);
943 spin_lock_init(&dest->stats.lock);
944 __ip_vs_update_dest(svc, dest, udest, 1);
945
946 *dest_p = dest;
947
948 LeaveFunction(2);
949 return 0;
950
951 err_alloc:
952 kfree(dest);
953 return -ENOMEM;
954 }
955
956
957 /*
958 * Add a destination into an existing service
959 */
960 static int
961 ip_vs_add_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
962 {
963 struct ip_vs_dest *dest;
964 union nf_inet_addr daddr;
965 __be16 dport = udest->port;
966 int ret;
967
968 EnterFunction(2);
969
970 if (udest->weight < 0) {
971 pr_err("%s(): server weight less than zero\n", __func__);
972 return -ERANGE;
973 }
974
975 if (udest->l_threshold > udest->u_threshold) {
976 pr_err("%s(): lower threshold is higher than upper threshold\n",
977 __func__);
978 return -ERANGE;
979 }
980
981 ip_vs_addr_copy(udest->af, &daddr, &udest->addr);
982
983 /* We use function that requires RCU lock */
984 rcu_read_lock();
985 dest = ip_vs_lookup_dest(svc, udest->af, &daddr, dport);
986 rcu_read_unlock();
987
988 if (dest != NULL) {
989 IP_VS_DBG(1, "%s(): dest already exists\n", __func__);
990 return -EEXIST;
991 }
992
993 /*
994 * Check if the dest already exists in the trash and
995 * is from the same service
996 */
997 dest = ip_vs_trash_get_dest(svc, udest->af, &daddr, dport);
998
999 if (dest != NULL) {
1000 IP_VS_DBG_BUF(3, "Get destination %s:%u from trash, "
1001 "dest->refcnt=%d, service %u/%s:%u\n",
1002 IP_VS_DBG_ADDR(udest->af, &daddr), ntohs(dport),
1003 atomic_read(&dest->refcnt),
1004 dest->vfwmark,
1005 IP_VS_DBG_ADDR(svc->af, &dest->vaddr),
1006 ntohs(dest->vport));
1007
1008 __ip_vs_update_dest(svc, dest, udest, 1);
1009 ret = 0;
1010 } else {
1011 /*
1012 * Allocate and initialize the dest structure
1013 */
1014 ret = ip_vs_new_dest(svc, udest, &dest);
1015 }
1016 LeaveFunction(2);
1017
1018 return ret;
1019 }
1020
1021
1022 /*
1023 * Edit a destination in the given service
1024 */
1025 static int
1026 ip_vs_edit_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
1027 {
1028 struct ip_vs_dest *dest;
1029 union nf_inet_addr daddr;
1030 __be16 dport = udest->port;
1031
1032 EnterFunction(2);
1033
1034 if (udest->weight < 0) {
1035 pr_err("%s(): server weight less than zero\n", __func__);
1036 return -ERANGE;
1037 }
1038
1039 if (udest->l_threshold > udest->u_threshold) {
1040 pr_err("%s(): lower threshold is higher than upper threshold\n",
1041 __func__);
1042 return -ERANGE;
1043 }
1044
1045 ip_vs_addr_copy(udest->af, &daddr, &udest->addr);
1046
1047 /* We use function that requires RCU lock */
1048 rcu_read_lock();
1049 dest = ip_vs_lookup_dest(svc, udest->af, &daddr, dport);
1050 rcu_read_unlock();
1051
1052 if (dest == NULL) {
1053 IP_VS_DBG(1, "%s(): dest doesn't exist\n", __func__);
1054 return -ENOENT;
1055 }
1056
1057 __ip_vs_update_dest(svc, dest, udest, 0);
1058 LeaveFunction(2);
1059
1060 return 0;
1061 }
1062
1063 /*
1064 * Delete a destination (must be already unlinked from the service)
1065 */
1066 static void __ip_vs_del_dest(struct netns_ipvs *ipvs, struct ip_vs_dest *dest,
1067 bool cleanup)
1068 {
1069 ip_vs_stop_estimator(ipvs, &dest->stats);
1070
1071 /*
1072 * Remove it from the d-linked list with the real services.
1073 */
1074 ip_vs_rs_unhash(dest);
1075
1076 spin_lock_bh(&ipvs->dest_trash_lock);
1077 IP_VS_DBG_BUF(3, "Moving dest %s:%u into trash, dest->refcnt=%d\n",
1078 IP_VS_DBG_ADDR(dest->af, &dest->addr), ntohs(dest->port),
1079 atomic_read(&dest->refcnt));
1080 if (list_empty(&ipvs->dest_trash) && !cleanup)
1081 mod_timer(&ipvs->dest_trash_timer,
1082 jiffies + (IP_VS_DEST_TRASH_PERIOD >> 1));
1083 /* dest lives in trash without reference */
1084 list_add(&dest->t_list, &ipvs->dest_trash);
1085 dest->idle_start = 0;
1086 spin_unlock_bh(&ipvs->dest_trash_lock);
1087 ip_vs_dest_put(dest);
1088 }
1089
1090
1091 /*
1092 * Unlink a destination from the given service
1093 */
1094 static void __ip_vs_unlink_dest(struct ip_vs_service *svc,
1095 struct ip_vs_dest *dest,
1096 int svcupd)
1097 {
1098 dest->flags &= ~IP_VS_DEST_F_AVAILABLE;
1099
1100 /*
1101 * Remove it from the d-linked destination list.
1102 */
1103 list_del_rcu(&dest->n_list);
1104 svc->num_dests--;
1105
1106 if (dest->af != svc->af)
1107 svc->ipvs->mixed_address_family_dests--;
1108
1109 if (svcupd) {
1110 struct ip_vs_scheduler *sched;
1111
1112 sched = rcu_dereference_protected(svc->scheduler, 1);
1113 if (sched && sched->del_dest)
1114 sched->del_dest(svc, dest);
1115 }
1116 }
1117
1118
1119 /*
1120 * Delete a destination server in the given service
1121 */
1122 static int
1123 ip_vs_del_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
1124 {
1125 struct ip_vs_dest *dest;
1126 __be16 dport = udest->port;
1127
1128 EnterFunction(2);
1129
1130 /* We use function that requires RCU lock */
1131 rcu_read_lock();
1132 dest = ip_vs_lookup_dest(svc, udest->af, &udest->addr, dport);
1133 rcu_read_unlock();
1134
1135 if (dest == NULL) {
1136 IP_VS_DBG(1, "%s(): destination not found!\n", __func__);
1137 return -ENOENT;
1138 }
1139
1140 /*
1141 * Unlink dest from the service
1142 */
1143 __ip_vs_unlink_dest(svc, dest, 1);
1144
1145 /*
1146 * Delete the destination
1147 */
1148 __ip_vs_del_dest(svc->ipvs, dest, false);
1149
1150 LeaveFunction(2);
1151
1152 return 0;
1153 }
1154
1155 static void ip_vs_dest_trash_expire(unsigned long data)
1156 {
1157 struct netns_ipvs *ipvs = (struct netns_ipvs *)data;
1158 struct ip_vs_dest *dest, *next;
1159 unsigned long now = jiffies;
1160
1161 spin_lock(&ipvs->dest_trash_lock);
1162 list_for_each_entry_safe(dest, next, &ipvs->dest_trash, t_list) {
1163 if (atomic_read(&dest->refcnt) > 0)
1164 continue;
1165 if (dest->idle_start) {
1166 if (time_before(now, dest->idle_start +
1167 IP_VS_DEST_TRASH_PERIOD))
1168 continue;
1169 } else {
1170 dest->idle_start = max(1UL, now);
1171 continue;
1172 }
1173 IP_VS_DBG_BUF(3, "Removing destination %u/%s:%u from trash\n",
1174 dest->vfwmark,
1175 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1176 ntohs(dest->port));
1177 list_del(&dest->t_list);
1178 ip_vs_dest_free(dest);
1179 }
1180 if (!list_empty(&ipvs->dest_trash))
1181 mod_timer(&ipvs->dest_trash_timer,
1182 jiffies + (IP_VS_DEST_TRASH_PERIOD >> 1));
1183 spin_unlock(&ipvs->dest_trash_lock);
1184 }
1185
1186 /*
1187 * Add a service into the service hash table
1188 */
1189 static int
1190 ip_vs_add_service(struct netns_ipvs *ipvs, struct ip_vs_service_user_kern *u,
1191 struct ip_vs_service **svc_p)
1192 {
1193 int ret = 0, i;
1194 struct ip_vs_scheduler *sched = NULL;
1195 struct ip_vs_pe *pe = NULL;
1196 struct ip_vs_service *svc = NULL;
1197
1198 /* increase the module use count */
1199 ip_vs_use_count_inc();
1200
1201 /* Lookup the scheduler by 'u->sched_name' */
1202 if (strcmp(u->sched_name, "none")) {
1203 sched = ip_vs_scheduler_get(u->sched_name);
1204 if (!sched) {
1205 pr_info("Scheduler module ip_vs_%s not found\n",
1206 u->sched_name);
1207 ret = -ENOENT;
1208 goto out_err;
1209 }
1210 }
1211
1212 if (u->pe_name && *u->pe_name) {
1213 pe = ip_vs_pe_getbyname(u->pe_name);
1214 if (pe == NULL) {
1215 pr_info("persistence engine module ip_vs_pe_%s "
1216 "not found\n", u->pe_name);
1217 ret = -ENOENT;
1218 goto out_err;
1219 }
1220 }
1221
1222 #ifdef CONFIG_IP_VS_IPV6
1223 if (u->af == AF_INET6) {
1224 __u32 plen = (__force __u32) u->netmask;
1225
1226 if (plen < 1 || plen > 128) {
1227 ret = -EINVAL;
1228 goto out_err;
1229 }
1230 }
1231 #endif
1232
1233 svc = kzalloc(sizeof(struct ip_vs_service), GFP_KERNEL);
1234 if (svc == NULL) {
1235 IP_VS_DBG(1, "%s(): no memory\n", __func__);
1236 ret = -ENOMEM;
1237 goto out_err;
1238 }
1239 svc->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
1240 if (!svc->stats.cpustats) {
1241 ret = -ENOMEM;
1242 goto out_err;
1243 }
1244
1245 for_each_possible_cpu(i) {
1246 struct ip_vs_cpu_stats *ip_vs_stats;
1247 ip_vs_stats = per_cpu_ptr(svc->stats.cpustats, i);
1248 u64_stats_init(&ip_vs_stats->syncp);
1249 }
1250
1251
1252 /* I'm the first user of the service */
1253 atomic_set(&svc->refcnt, 0);
1254
1255 svc->af = u->af;
1256 svc->protocol = u->protocol;
1257 ip_vs_addr_copy(svc->af, &svc->addr, &u->addr);
1258 svc->port = u->port;
1259 svc->fwmark = u->fwmark;
1260 svc->flags = u->flags;
1261 svc->timeout = u->timeout * HZ;
1262 svc->netmask = u->netmask;
1263 svc->ipvs = ipvs;
1264
1265 INIT_LIST_HEAD(&svc->destinations);
1266 spin_lock_init(&svc->sched_lock);
1267 spin_lock_init(&svc->stats.lock);
1268
1269 /* Bind the scheduler */
1270 if (sched) {
1271 ret = ip_vs_bind_scheduler(svc, sched);
1272 if (ret)
1273 goto out_err;
1274 sched = NULL;
1275 }
1276
1277 /* Bind the ct retriever */
1278 RCU_INIT_POINTER(svc->pe, pe);
1279 pe = NULL;
1280
1281 /* Update the virtual service counters */
1282 if (svc->port == FTPPORT)
1283 atomic_inc(&ipvs->ftpsvc_counter);
1284 else if (svc->port == 0)
1285 atomic_inc(&ipvs->nullsvc_counter);
1286 if (svc->pe && svc->pe->conn_out)
1287 atomic_inc(&ipvs->conn_out_counter);
1288
1289 ip_vs_start_estimator(ipvs, &svc->stats);
1290
1291 /* Count only IPv4 services for old get/setsockopt interface */
1292 if (svc->af == AF_INET)
1293 ipvs->num_services++;
1294
1295 /* Hash the service into the service table */
1296 ip_vs_svc_hash(svc);
1297
1298 *svc_p = svc;
1299 /* Now there is a service - full throttle */
1300 ipvs->enable = 1;
1301 return 0;
1302
1303
1304 out_err:
1305 if (svc != NULL) {
1306 ip_vs_unbind_scheduler(svc, sched);
1307 ip_vs_service_free(svc);
1308 }
1309 ip_vs_scheduler_put(sched);
1310 ip_vs_pe_put(pe);
1311
1312 /* decrease the module use count */
1313 ip_vs_use_count_dec();
1314
1315 return ret;
1316 }
1317
1318
1319 /*
1320 * Edit a service and bind it with a new scheduler
1321 */
1322 static int
1323 ip_vs_edit_service(struct ip_vs_service *svc, struct ip_vs_service_user_kern *u)
1324 {
1325 struct ip_vs_scheduler *sched = NULL, *old_sched;
1326 struct ip_vs_pe *pe = NULL, *old_pe = NULL;
1327 int ret = 0;
1328 bool new_pe_conn_out, old_pe_conn_out;
1329
1330 /*
1331 * Lookup the scheduler, by 'u->sched_name'
1332 */
1333 if (strcmp(u->sched_name, "none")) {
1334 sched = ip_vs_scheduler_get(u->sched_name);
1335 if (!sched) {
1336 pr_info("Scheduler module ip_vs_%s not found\n",
1337 u->sched_name);
1338 return -ENOENT;
1339 }
1340 }
1341 old_sched = sched;
1342
1343 if (u->pe_name && *u->pe_name) {
1344 pe = ip_vs_pe_getbyname(u->pe_name);
1345 if (pe == NULL) {
1346 pr_info("persistence engine module ip_vs_pe_%s "
1347 "not found\n", u->pe_name);
1348 ret = -ENOENT;
1349 goto out;
1350 }
1351 old_pe = pe;
1352 }
1353
1354 #ifdef CONFIG_IP_VS_IPV6
1355 if (u->af == AF_INET6) {
1356 __u32 plen = (__force __u32) u->netmask;
1357
1358 if (plen < 1 || plen > 128) {
1359 ret = -EINVAL;
1360 goto out;
1361 }
1362 }
1363 #endif
1364
1365 old_sched = rcu_dereference_protected(svc->scheduler, 1);
1366 if (sched != old_sched) {
1367 if (old_sched) {
1368 ip_vs_unbind_scheduler(svc, old_sched);
1369 RCU_INIT_POINTER(svc->scheduler, NULL);
1370 /* Wait all svc->sched_data users */
1371 synchronize_rcu();
1372 }
1373 /* Bind the new scheduler */
1374 if (sched) {
1375 ret = ip_vs_bind_scheduler(svc, sched);
1376 if (ret) {
1377 ip_vs_scheduler_put(sched);
1378 goto out;
1379 }
1380 }
1381 }
1382
1383 /*
1384 * Set the flags and timeout value
1385 */
1386 svc->flags = u->flags | IP_VS_SVC_F_HASHED;
1387 svc->timeout = u->timeout * HZ;
1388 svc->netmask = u->netmask;
1389
1390 old_pe = rcu_dereference_protected(svc->pe, 1);
1391 if (pe != old_pe) {
1392 rcu_assign_pointer(svc->pe, pe);
1393 /* check for optional methods in new pe */
1394 new_pe_conn_out = (pe && pe->conn_out) ? true : false;
1395 old_pe_conn_out = (old_pe && old_pe->conn_out) ? true : false;
1396 if (new_pe_conn_out && !old_pe_conn_out)
1397 atomic_inc(&svc->ipvs->conn_out_counter);
1398 if (old_pe_conn_out && !new_pe_conn_out)
1399 atomic_dec(&svc->ipvs->conn_out_counter);
1400 }
1401
1402 out:
1403 ip_vs_scheduler_put(old_sched);
1404 ip_vs_pe_put(old_pe);
1405 return ret;
1406 }
1407
1408 /*
1409 * Delete a service from the service list
1410 * - The service must be unlinked, unlocked and not referenced!
1411 * - We are called under _bh lock
1412 */
1413 static void __ip_vs_del_service(struct ip_vs_service *svc, bool cleanup)
1414 {
1415 struct ip_vs_dest *dest, *nxt;
1416 struct ip_vs_scheduler *old_sched;
1417 struct ip_vs_pe *old_pe;
1418 struct netns_ipvs *ipvs = svc->ipvs;
1419
1420 /* Count only IPv4 services for old get/setsockopt interface */
1421 if (svc->af == AF_INET)
1422 ipvs->num_services--;
1423
1424 ip_vs_stop_estimator(svc->ipvs, &svc->stats);
1425
1426 /* Unbind scheduler */
1427 old_sched = rcu_dereference_protected(svc->scheduler, 1);
1428 ip_vs_unbind_scheduler(svc, old_sched);
1429 ip_vs_scheduler_put(old_sched);
1430
1431 /* Unbind persistence engine, keep svc->pe */
1432 old_pe = rcu_dereference_protected(svc->pe, 1);
1433 if (old_pe && old_pe->conn_out)
1434 atomic_dec(&ipvs->conn_out_counter);
1435 ip_vs_pe_put(old_pe);
1436
1437 /*
1438 * Unlink the whole destination list
1439 */
1440 list_for_each_entry_safe(dest, nxt, &svc->destinations, n_list) {
1441 __ip_vs_unlink_dest(svc, dest, 0);
1442 __ip_vs_del_dest(svc->ipvs, dest, cleanup);
1443 }
1444
1445 /*
1446 * Update the virtual service counters
1447 */
1448 if (svc->port == FTPPORT)
1449 atomic_dec(&ipvs->ftpsvc_counter);
1450 else if (svc->port == 0)
1451 atomic_dec(&ipvs->nullsvc_counter);
1452
1453 /*
1454 * Free the service if nobody refers to it
1455 */
1456 __ip_vs_svc_put(svc, true);
1457
1458 /* decrease the module use count */
1459 ip_vs_use_count_dec();
1460 }
1461
1462 /*
1463 * Unlink a service from list and try to delete it if its refcnt reached 0
1464 */
1465 static void ip_vs_unlink_service(struct ip_vs_service *svc, bool cleanup)
1466 {
1467 /* Hold svc to avoid double release from dest_trash */
1468 atomic_inc(&svc->refcnt);
1469 /*
1470 * Unhash it from the service table
1471 */
1472 ip_vs_svc_unhash(svc);
1473
1474 __ip_vs_del_service(svc, cleanup);
1475 }
1476
1477 /*
1478 * Delete a service from the service list
1479 */
1480 static int ip_vs_del_service(struct ip_vs_service *svc)
1481 {
1482 if (svc == NULL)
1483 return -EEXIST;
1484 ip_vs_unlink_service(svc, false);
1485
1486 return 0;
1487 }
1488
1489
1490 /*
1491 * Flush all the virtual services
1492 */
1493 static int ip_vs_flush(struct netns_ipvs *ipvs, bool cleanup)
1494 {
1495 int idx;
1496 struct ip_vs_service *svc;
1497 struct hlist_node *n;
1498
1499 /*
1500 * Flush the service table hashed by <netns,protocol,addr,port>
1501 */
1502 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1503 hlist_for_each_entry_safe(svc, n, &ip_vs_svc_table[idx],
1504 s_list) {
1505 if (svc->ipvs == ipvs)
1506 ip_vs_unlink_service(svc, cleanup);
1507 }
1508 }
1509
1510 /*
1511 * Flush the service table hashed by fwmark
1512 */
1513 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1514 hlist_for_each_entry_safe(svc, n, &ip_vs_svc_fwm_table[idx],
1515 f_list) {
1516 if (svc->ipvs == ipvs)
1517 ip_vs_unlink_service(svc, cleanup);
1518 }
1519 }
1520
1521 return 0;
1522 }
1523
1524 /*
1525 * Delete service by {netns} in the service table.
1526 * Called by __ip_vs_cleanup()
1527 */
1528 void ip_vs_service_net_cleanup(struct netns_ipvs *ipvs)
1529 {
1530 EnterFunction(2);
1531 /* Check for "full" addressed entries */
1532 mutex_lock(&__ip_vs_mutex);
1533 ip_vs_flush(ipvs, true);
1534 mutex_unlock(&__ip_vs_mutex);
1535 LeaveFunction(2);
1536 }
1537
1538 /* Put all references for device (dst_cache) */
1539 static inline void
1540 ip_vs_forget_dev(struct ip_vs_dest *dest, struct net_device *dev)
1541 {
1542 struct ip_vs_dest_dst *dest_dst;
1543
1544 spin_lock_bh(&dest->dst_lock);
1545 dest_dst = rcu_dereference_protected(dest->dest_dst, 1);
1546 if (dest_dst && dest_dst->dst_cache->dev == dev) {
1547 IP_VS_DBG_BUF(3, "Reset dev:%s dest %s:%u ,dest->refcnt=%d\n",
1548 dev->name,
1549 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1550 ntohs(dest->port),
1551 atomic_read(&dest->refcnt));
1552 __ip_vs_dst_cache_reset(dest);
1553 }
1554 spin_unlock_bh(&dest->dst_lock);
1555
1556 }
1557 /* Netdev event receiver
1558 * Currently only NETDEV_DOWN is handled to release refs to cached dsts
1559 */
1560 static int ip_vs_dst_event(struct notifier_block *this, unsigned long event,
1561 void *ptr)
1562 {
1563 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1564 struct net *net = dev_net(dev);
1565 struct netns_ipvs *ipvs = net_ipvs(net);
1566 struct ip_vs_service *svc;
1567 struct ip_vs_dest *dest;
1568 unsigned int idx;
1569
1570 if (event != NETDEV_DOWN || !ipvs)
1571 return NOTIFY_DONE;
1572 IP_VS_DBG(3, "%s() dev=%s\n", __func__, dev->name);
1573 EnterFunction(2);
1574 mutex_lock(&__ip_vs_mutex);
1575 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1576 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
1577 if (svc->ipvs == ipvs) {
1578 list_for_each_entry(dest, &svc->destinations,
1579 n_list) {
1580 ip_vs_forget_dev(dest, dev);
1581 }
1582 }
1583 }
1584
1585 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
1586 if (svc->ipvs == ipvs) {
1587 list_for_each_entry(dest, &svc->destinations,
1588 n_list) {
1589 ip_vs_forget_dev(dest, dev);
1590 }
1591 }
1592
1593 }
1594 }
1595
1596 spin_lock_bh(&ipvs->dest_trash_lock);
1597 list_for_each_entry(dest, &ipvs->dest_trash, t_list) {
1598 ip_vs_forget_dev(dest, dev);
1599 }
1600 spin_unlock_bh(&ipvs->dest_trash_lock);
1601 mutex_unlock(&__ip_vs_mutex);
1602 LeaveFunction(2);
1603 return NOTIFY_DONE;
1604 }
1605
1606 /*
1607 * Zero counters in a service or all services
1608 */
1609 static int ip_vs_zero_service(struct ip_vs_service *svc)
1610 {
1611 struct ip_vs_dest *dest;
1612
1613 list_for_each_entry(dest, &svc->destinations, n_list) {
1614 ip_vs_zero_stats(&dest->stats);
1615 }
1616 ip_vs_zero_stats(&svc->stats);
1617 return 0;
1618 }
1619
1620 static int ip_vs_zero_all(struct netns_ipvs *ipvs)
1621 {
1622 int idx;
1623 struct ip_vs_service *svc;
1624
1625 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1626 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
1627 if (svc->ipvs == ipvs)
1628 ip_vs_zero_service(svc);
1629 }
1630 }
1631
1632 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1633 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
1634 if (svc->ipvs == ipvs)
1635 ip_vs_zero_service(svc);
1636 }
1637 }
1638
1639 ip_vs_zero_stats(&ipvs->tot_stats);
1640 return 0;
1641 }
1642
1643 #ifdef CONFIG_SYSCTL
1644
1645 static int zero;
1646 static int three = 3;
1647
1648 static int
1649 proc_do_defense_mode(struct ctl_table *table, int write,
1650 void __user *buffer, size_t *lenp, loff_t *ppos)
1651 {
1652 struct netns_ipvs *ipvs = table->extra2;
1653 int *valp = table->data;
1654 int val = *valp;
1655 int rc;
1656
1657 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1658 if (write && (*valp != val)) {
1659 if ((*valp < 0) || (*valp > 3)) {
1660 /* Restore the correct value */
1661 *valp = val;
1662 } else {
1663 update_defense_level(ipvs);
1664 }
1665 }
1666 return rc;
1667 }
1668
1669 static int
1670 proc_do_sync_threshold(struct ctl_table *table, int write,
1671 void __user *buffer, size_t *lenp, loff_t *ppos)
1672 {
1673 int *valp = table->data;
1674 int val[2];
1675 int rc;
1676
1677 /* backup the value first */
1678 memcpy(val, valp, sizeof(val));
1679
1680 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1681 if (write && (valp[0] < 0 || valp[1] < 0 ||
1682 (valp[0] >= valp[1] && valp[1]))) {
1683 /* Restore the correct value */
1684 memcpy(valp, val, sizeof(val));
1685 }
1686 return rc;
1687 }
1688
1689 static int
1690 proc_do_sync_mode(struct ctl_table *table, int write,
1691 void __user *buffer, size_t *lenp, loff_t *ppos)
1692 {
1693 int *valp = table->data;
1694 int val = *valp;
1695 int rc;
1696
1697 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1698 if (write && (*valp != val)) {
1699 if ((*valp < 0) || (*valp > 1)) {
1700 /* Restore the correct value */
1701 *valp = val;
1702 }
1703 }
1704 return rc;
1705 }
1706
1707 static int
1708 proc_do_sync_ports(struct ctl_table *table, int write,
1709 void __user *buffer, size_t *lenp, loff_t *ppos)
1710 {
1711 int *valp = table->data;
1712 int val = *valp;
1713 int rc;
1714
1715 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1716 if (write && (*valp != val)) {
1717 if (*valp < 1 || !is_power_of_2(*valp)) {
1718 /* Restore the correct value */
1719 *valp = val;
1720 }
1721 }
1722 return rc;
1723 }
1724
1725 /*
1726 * IPVS sysctl table (under the /proc/sys/net/ipv4/vs/)
1727 * Do not change order or insert new entries without
1728 * align with netns init in ip_vs_control_net_init()
1729 */
1730
1731 static struct ctl_table vs_vars[] = {
1732 {
1733 .procname = "amemthresh",
1734 .maxlen = sizeof(int),
1735 .mode = 0644,
1736 .proc_handler = proc_dointvec,
1737 },
1738 {
1739 .procname = "am_droprate",
1740 .maxlen = sizeof(int),
1741 .mode = 0644,
1742 .proc_handler = proc_dointvec,
1743 },
1744 {
1745 .procname = "drop_entry",
1746 .maxlen = sizeof(int),
1747 .mode = 0644,
1748 .proc_handler = proc_do_defense_mode,
1749 },
1750 {
1751 .procname = "drop_packet",
1752 .maxlen = sizeof(int),
1753 .mode = 0644,
1754 .proc_handler = proc_do_defense_mode,
1755 },
1756 #ifdef CONFIG_IP_VS_NFCT
1757 {
1758 .procname = "conntrack",
1759 .maxlen = sizeof(int),
1760 .mode = 0644,
1761 .proc_handler = &proc_dointvec,
1762 },
1763 #endif
1764 {
1765 .procname = "secure_tcp",
1766 .maxlen = sizeof(int),
1767 .mode = 0644,
1768 .proc_handler = proc_do_defense_mode,
1769 },
1770 {
1771 .procname = "snat_reroute",
1772 .maxlen = sizeof(int),
1773 .mode = 0644,
1774 .proc_handler = &proc_dointvec,
1775 },
1776 {
1777 .procname = "sync_version",
1778 .maxlen = sizeof(int),
1779 .mode = 0644,
1780 .proc_handler = &proc_do_sync_mode,
1781 },
1782 {
1783 .procname = "sync_ports",
1784 .maxlen = sizeof(int),
1785 .mode = 0644,
1786 .proc_handler = &proc_do_sync_ports,
1787 },
1788 {
1789 .procname = "sync_persist_mode",
1790 .maxlen = sizeof(int),
1791 .mode = 0644,
1792 .proc_handler = proc_dointvec,
1793 },
1794 {
1795 .procname = "sync_qlen_max",
1796 .maxlen = sizeof(unsigned long),
1797 .mode = 0644,
1798 .proc_handler = proc_doulongvec_minmax,
1799 },
1800 {
1801 .procname = "sync_sock_size",
1802 .maxlen = sizeof(int),
1803 .mode = 0644,
1804 .proc_handler = proc_dointvec,
1805 },
1806 {
1807 .procname = "cache_bypass",
1808 .maxlen = sizeof(int),
1809 .mode = 0644,
1810 .proc_handler = proc_dointvec,
1811 },
1812 {
1813 .procname = "expire_nodest_conn",
1814 .maxlen = sizeof(int),
1815 .mode = 0644,
1816 .proc_handler = proc_dointvec,
1817 },
1818 {
1819 .procname = "sloppy_tcp",
1820 .maxlen = sizeof(int),
1821 .mode = 0644,
1822 .proc_handler = proc_dointvec,
1823 },
1824 {
1825 .procname = "sloppy_sctp",
1826 .maxlen = sizeof(int),
1827 .mode = 0644,
1828 .proc_handler = proc_dointvec,
1829 },
1830 {
1831 .procname = "expire_quiescent_template",
1832 .maxlen = sizeof(int),
1833 .mode = 0644,
1834 .proc_handler = proc_dointvec,
1835 },
1836 {
1837 .procname = "sync_threshold",
1838 .maxlen =
1839 sizeof(((struct netns_ipvs *)0)->sysctl_sync_threshold),
1840 .mode = 0644,
1841 .proc_handler = proc_do_sync_threshold,
1842 },
1843 {
1844 .procname = "sync_refresh_period",
1845 .maxlen = sizeof(int),
1846 .mode = 0644,
1847 .proc_handler = proc_dointvec_jiffies,
1848 },
1849 {
1850 .procname = "sync_retries",
1851 .maxlen = sizeof(int),
1852 .mode = 0644,
1853 .proc_handler = proc_dointvec_minmax,
1854 .extra1 = &zero,
1855 .extra2 = &three,
1856 },
1857 {
1858 .procname = "nat_icmp_send",
1859 .maxlen = sizeof(int),
1860 .mode = 0644,
1861 .proc_handler = proc_dointvec,
1862 },
1863 {
1864 .procname = "pmtu_disc",
1865 .maxlen = sizeof(int),
1866 .mode = 0644,
1867 .proc_handler = proc_dointvec,
1868 },
1869 {
1870 .procname = "backup_only",
1871 .maxlen = sizeof(int),
1872 .mode = 0644,
1873 .proc_handler = proc_dointvec,
1874 },
1875 {
1876 .procname = "conn_reuse_mode",
1877 .maxlen = sizeof(int),
1878 .mode = 0644,
1879 .proc_handler = proc_dointvec,
1880 },
1881 {
1882 .procname = "schedule_icmp",
1883 .maxlen = sizeof(int),
1884 .mode = 0644,
1885 .proc_handler = proc_dointvec,
1886 },
1887 {
1888 .procname = "ignore_tunneled",
1889 .maxlen = sizeof(int),
1890 .mode = 0644,
1891 .proc_handler = proc_dointvec,
1892 },
1893 #ifdef CONFIG_IP_VS_DEBUG
1894 {
1895 .procname = "debug_level",
1896 .data = &sysctl_ip_vs_debug_level,
1897 .maxlen = sizeof(int),
1898 .mode = 0644,
1899 .proc_handler = proc_dointvec,
1900 },
1901 #endif
1902 { }
1903 };
1904
1905 #endif
1906
1907 #ifdef CONFIG_PROC_FS
1908
1909 struct ip_vs_iter {
1910 struct seq_net_private p; /* Do not move this, netns depends upon it*/
1911 struct hlist_head *table;
1912 int bucket;
1913 };
1914
1915 /*
1916 * Write the contents of the VS rule table to a PROCfs file.
1917 * (It is kept just for backward compatibility)
1918 */
1919 static inline const char *ip_vs_fwd_name(unsigned int flags)
1920 {
1921 switch (flags & IP_VS_CONN_F_FWD_MASK) {
1922 case IP_VS_CONN_F_LOCALNODE:
1923 return "Local";
1924 case IP_VS_CONN_F_TUNNEL:
1925 return "Tunnel";
1926 case IP_VS_CONN_F_DROUTE:
1927 return "Route";
1928 default:
1929 return "Masq";
1930 }
1931 }
1932
1933
1934 /* Get the Nth entry in the two lists */
1935 static struct ip_vs_service *ip_vs_info_array(struct seq_file *seq, loff_t pos)
1936 {
1937 struct net *net = seq_file_net(seq);
1938 struct netns_ipvs *ipvs = net_ipvs(net);
1939 struct ip_vs_iter *iter = seq->private;
1940 int idx;
1941 struct ip_vs_service *svc;
1942
1943 /* look in hash by protocol */
1944 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1945 hlist_for_each_entry_rcu(svc, &ip_vs_svc_table[idx], s_list) {
1946 if ((svc->ipvs == ipvs) && pos-- == 0) {
1947 iter->table = ip_vs_svc_table;
1948 iter->bucket = idx;
1949 return svc;
1950 }
1951 }
1952 }
1953
1954 /* keep looking in fwmark */
1955 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1956 hlist_for_each_entry_rcu(svc, &ip_vs_svc_fwm_table[idx],
1957 f_list) {
1958 if ((svc->ipvs == ipvs) && pos-- == 0) {
1959 iter->table = ip_vs_svc_fwm_table;
1960 iter->bucket = idx;
1961 return svc;
1962 }
1963 }
1964 }
1965
1966 return NULL;
1967 }
1968
1969 static void *ip_vs_info_seq_start(struct seq_file *seq, loff_t *pos)
1970 __acquires(RCU)
1971 {
1972 rcu_read_lock();
1973 return *pos ? ip_vs_info_array(seq, *pos - 1) : SEQ_START_TOKEN;
1974 }
1975
1976
1977 static void *ip_vs_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1978 {
1979 struct hlist_node *e;
1980 struct ip_vs_iter *iter;
1981 struct ip_vs_service *svc;
1982
1983 ++*pos;
1984 if (v == SEQ_START_TOKEN)
1985 return ip_vs_info_array(seq,0);
1986
1987 svc = v;
1988 iter = seq->private;
1989
1990 if (iter->table == ip_vs_svc_table) {
1991 /* next service in table hashed by protocol */
1992 e = rcu_dereference(hlist_next_rcu(&svc->s_list));
1993 if (e)
1994 return hlist_entry(e, struct ip_vs_service, s_list);
1995
1996 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
1997 hlist_for_each_entry_rcu(svc,
1998 &ip_vs_svc_table[iter->bucket],
1999 s_list) {
2000 return svc;
2001 }
2002 }
2003
2004 iter->table = ip_vs_svc_fwm_table;
2005 iter->bucket = -1;
2006 goto scan_fwmark;
2007 }
2008
2009 /* next service in hashed by fwmark */
2010 e = rcu_dereference(hlist_next_rcu(&svc->f_list));
2011 if (e)
2012 return hlist_entry(e, struct ip_vs_service, f_list);
2013
2014 scan_fwmark:
2015 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
2016 hlist_for_each_entry_rcu(svc,
2017 &ip_vs_svc_fwm_table[iter->bucket],
2018 f_list)
2019 return svc;
2020 }
2021
2022 return NULL;
2023 }
2024
2025 static void ip_vs_info_seq_stop(struct seq_file *seq, void *v)
2026 __releases(RCU)
2027 {
2028 rcu_read_unlock();
2029 }
2030
2031
2032 static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
2033 {
2034 if (v == SEQ_START_TOKEN) {
2035 seq_printf(seq,
2036 "IP Virtual Server version %d.%d.%d (size=%d)\n",
2037 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
2038 seq_puts(seq,
2039 "Prot LocalAddress:Port Scheduler Flags\n");
2040 seq_puts(seq,
2041 " -> RemoteAddress:Port Forward Weight ActiveConn InActConn\n");
2042 } else {
2043 const struct ip_vs_service *svc = v;
2044 const struct ip_vs_iter *iter = seq->private;
2045 const struct ip_vs_dest *dest;
2046 struct ip_vs_scheduler *sched = rcu_dereference(svc->scheduler);
2047 char *sched_name = sched ? sched->name : "none";
2048
2049 if (iter->table == ip_vs_svc_table) {
2050 #ifdef CONFIG_IP_VS_IPV6
2051 if (svc->af == AF_INET6)
2052 seq_printf(seq, "%s [%pI6]:%04X %s ",
2053 ip_vs_proto_name(svc->protocol),
2054 &svc->addr.in6,
2055 ntohs(svc->port),
2056 sched_name);
2057 else
2058 #endif
2059 seq_printf(seq, "%s %08X:%04X %s %s ",
2060 ip_vs_proto_name(svc->protocol),
2061 ntohl(svc->addr.ip),
2062 ntohs(svc->port),
2063 sched_name,
2064 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
2065 } else {
2066 seq_printf(seq, "FWM %08X %s %s",
2067 svc->fwmark, sched_name,
2068 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
2069 }
2070
2071 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
2072 seq_printf(seq, "persistent %d %08X\n",
2073 svc->timeout,
2074 ntohl(svc->netmask));
2075 else
2076 seq_putc(seq, '\n');
2077
2078 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
2079 #ifdef CONFIG_IP_VS_IPV6
2080 if (dest->af == AF_INET6)
2081 seq_printf(seq,
2082 " -> [%pI6]:%04X"
2083 " %-7s %-6d %-10d %-10d\n",
2084 &dest->addr.in6,
2085 ntohs(dest->port),
2086 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
2087 atomic_read(&dest->weight),
2088 atomic_read(&dest->activeconns),
2089 atomic_read(&dest->inactconns));
2090 else
2091 #endif
2092 seq_printf(seq,
2093 " -> %08X:%04X "
2094 "%-7s %-6d %-10d %-10d\n",
2095 ntohl(dest->addr.ip),
2096 ntohs(dest->port),
2097 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
2098 atomic_read(&dest->weight),
2099 atomic_read(&dest->activeconns),
2100 atomic_read(&dest->inactconns));
2101
2102 }
2103 }
2104 return 0;
2105 }
2106
2107 static const struct seq_operations ip_vs_info_seq_ops = {
2108 .start = ip_vs_info_seq_start,
2109 .next = ip_vs_info_seq_next,
2110 .stop = ip_vs_info_seq_stop,
2111 .show = ip_vs_info_seq_show,
2112 };
2113
2114 static int ip_vs_info_open(struct inode *inode, struct file *file)
2115 {
2116 return seq_open_net(inode, file, &ip_vs_info_seq_ops,
2117 sizeof(struct ip_vs_iter));
2118 }
2119
2120 static const struct file_operations ip_vs_info_fops = {
2121 .owner = THIS_MODULE,
2122 .open = ip_vs_info_open,
2123 .read = seq_read,
2124 .llseek = seq_lseek,
2125 .release = seq_release_net,
2126 };
2127
2128 static int ip_vs_stats_show(struct seq_file *seq, void *v)
2129 {
2130 struct net *net = seq_file_single_net(seq);
2131 struct ip_vs_kstats show;
2132
2133 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2134 seq_puts(seq,
2135 " Total Incoming Outgoing Incoming Outgoing\n");
2136 seq_printf(seq,
2137 " Conns Packets Packets Bytes Bytes\n");
2138
2139 ip_vs_copy_stats(&show, &net_ipvs(net)->tot_stats);
2140 seq_printf(seq, "%8LX %8LX %8LX %16LX %16LX\n\n",
2141 (unsigned long long)show.conns,
2142 (unsigned long long)show.inpkts,
2143 (unsigned long long)show.outpkts,
2144 (unsigned long long)show.inbytes,
2145 (unsigned long long)show.outbytes);
2146
2147 /* 01234567 01234567 01234567 0123456701234567 0123456701234567*/
2148 seq_puts(seq,
2149 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
2150 seq_printf(seq, "%8LX %8LX %8LX %16LX %16LX\n",
2151 (unsigned long long)show.cps,
2152 (unsigned long long)show.inpps,
2153 (unsigned long long)show.outpps,
2154 (unsigned long long)show.inbps,
2155 (unsigned long long)show.outbps);
2156
2157 return 0;
2158 }
2159
2160 static int ip_vs_stats_seq_open(struct inode *inode, struct file *file)
2161 {
2162 return single_open_net(inode, file, ip_vs_stats_show);
2163 }
2164
2165 static const struct file_operations ip_vs_stats_fops = {
2166 .owner = THIS_MODULE,
2167 .open = ip_vs_stats_seq_open,
2168 .read = seq_read,
2169 .llseek = seq_lseek,
2170 .release = single_release_net,
2171 };
2172
2173 static int ip_vs_stats_percpu_show(struct seq_file *seq, void *v)
2174 {
2175 struct net *net = seq_file_single_net(seq);
2176 struct ip_vs_stats *tot_stats = &net_ipvs(net)->tot_stats;
2177 struct ip_vs_cpu_stats __percpu *cpustats = tot_stats->cpustats;
2178 struct ip_vs_kstats kstats;
2179 int i;
2180
2181 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2182 seq_puts(seq,
2183 " Total Incoming Outgoing Incoming Outgoing\n");
2184 seq_printf(seq,
2185 "CPU Conns Packets Packets Bytes Bytes\n");
2186
2187 for_each_possible_cpu(i) {
2188 struct ip_vs_cpu_stats *u = per_cpu_ptr(cpustats, i);
2189 unsigned int start;
2190 u64 conns, inpkts, outpkts, inbytes, outbytes;
2191
2192 do {
2193 start = u64_stats_fetch_begin_irq(&u->syncp);
2194 conns = u->cnt.conns;
2195 inpkts = u->cnt.inpkts;
2196 outpkts = u->cnt.outpkts;
2197 inbytes = u->cnt.inbytes;
2198 outbytes = u->cnt.outbytes;
2199 } while (u64_stats_fetch_retry_irq(&u->syncp, start));
2200
2201 seq_printf(seq, "%3X %8LX %8LX %8LX %16LX %16LX\n",
2202 i, (u64)conns, (u64)inpkts,
2203 (u64)outpkts, (u64)inbytes,
2204 (u64)outbytes);
2205 }
2206
2207 ip_vs_copy_stats(&kstats, tot_stats);
2208
2209 seq_printf(seq, " ~ %8LX %8LX %8LX %16LX %16LX\n\n",
2210 (unsigned long long)kstats.conns,
2211 (unsigned long long)kstats.inpkts,
2212 (unsigned long long)kstats.outpkts,
2213 (unsigned long long)kstats.inbytes,
2214 (unsigned long long)kstats.outbytes);
2215
2216 /* ... 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2217 seq_puts(seq,
2218 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
2219 seq_printf(seq, " %8LX %8LX %8LX %16LX %16LX\n",
2220 kstats.cps,
2221 kstats.inpps,
2222 kstats.outpps,
2223 kstats.inbps,
2224 kstats.outbps);
2225
2226 return 0;
2227 }
2228
2229 static int ip_vs_stats_percpu_seq_open(struct inode *inode, struct file *file)
2230 {
2231 return single_open_net(inode, file, ip_vs_stats_percpu_show);
2232 }
2233
2234 static const struct file_operations ip_vs_stats_percpu_fops = {
2235 .owner = THIS_MODULE,
2236 .open = ip_vs_stats_percpu_seq_open,
2237 .read = seq_read,
2238 .llseek = seq_lseek,
2239 .release = single_release_net,
2240 };
2241 #endif
2242
2243 /*
2244 * Set timeout values for tcp tcpfin udp in the timeout_table.
2245 */
2246 static int ip_vs_set_timeout(struct netns_ipvs *ipvs, struct ip_vs_timeout_user *u)
2247 {
2248 #if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
2249 struct ip_vs_proto_data *pd;
2250 #endif
2251
2252 IP_VS_DBG(2, "Setting timeout tcp:%d tcpfin:%d udp:%d\n",
2253 u->tcp_timeout,
2254 u->tcp_fin_timeout,
2255 u->udp_timeout);
2256
2257 #ifdef CONFIG_IP_VS_PROTO_TCP
2258 if (u->tcp_timeout) {
2259 pd = ip_vs_proto_data_get(ipvs, IPPROTO_TCP);
2260 pd->timeout_table[IP_VS_TCP_S_ESTABLISHED]
2261 = u->tcp_timeout * HZ;
2262 }
2263
2264 if (u->tcp_fin_timeout) {
2265 pd = ip_vs_proto_data_get(ipvs, IPPROTO_TCP);
2266 pd->timeout_table[IP_VS_TCP_S_FIN_WAIT]
2267 = u->tcp_fin_timeout * HZ;
2268 }
2269 #endif
2270
2271 #ifdef CONFIG_IP_VS_PROTO_UDP
2272 if (u->udp_timeout) {
2273 pd = ip_vs_proto_data_get(ipvs, IPPROTO_UDP);
2274 pd->timeout_table[IP_VS_UDP_S_NORMAL]
2275 = u->udp_timeout * HZ;
2276 }
2277 #endif
2278 return 0;
2279 }
2280
2281 #define CMDID(cmd) (cmd - IP_VS_BASE_CTL)
2282
2283 struct ip_vs_svcdest_user {
2284 struct ip_vs_service_user s;
2285 struct ip_vs_dest_user d;
2286 };
2287
2288 static const unsigned char set_arglen[CMDID(IP_VS_SO_SET_MAX) + 1] = {
2289 [CMDID(IP_VS_SO_SET_ADD)] = sizeof(struct ip_vs_service_user),
2290 [CMDID(IP_VS_SO_SET_EDIT)] = sizeof(struct ip_vs_service_user),
2291 [CMDID(IP_VS_SO_SET_DEL)] = sizeof(struct ip_vs_service_user),
2292 [CMDID(IP_VS_SO_SET_ADDDEST)] = sizeof(struct ip_vs_svcdest_user),
2293 [CMDID(IP_VS_SO_SET_DELDEST)] = sizeof(struct ip_vs_svcdest_user),
2294 [CMDID(IP_VS_SO_SET_EDITDEST)] = sizeof(struct ip_vs_svcdest_user),
2295 [CMDID(IP_VS_SO_SET_TIMEOUT)] = sizeof(struct ip_vs_timeout_user),
2296 [CMDID(IP_VS_SO_SET_STARTDAEMON)] = sizeof(struct ip_vs_daemon_user),
2297 [CMDID(IP_VS_SO_SET_STOPDAEMON)] = sizeof(struct ip_vs_daemon_user),
2298 [CMDID(IP_VS_SO_SET_ZERO)] = sizeof(struct ip_vs_service_user),
2299 };
2300
2301 union ip_vs_set_arglen {
2302 struct ip_vs_service_user field_IP_VS_SO_SET_ADD;
2303 struct ip_vs_service_user field_IP_VS_SO_SET_EDIT;
2304 struct ip_vs_service_user field_IP_VS_SO_SET_DEL;
2305 struct ip_vs_svcdest_user field_IP_VS_SO_SET_ADDDEST;
2306 struct ip_vs_svcdest_user field_IP_VS_SO_SET_DELDEST;
2307 struct ip_vs_svcdest_user field_IP_VS_SO_SET_EDITDEST;
2308 struct ip_vs_timeout_user field_IP_VS_SO_SET_TIMEOUT;
2309 struct ip_vs_daemon_user field_IP_VS_SO_SET_STARTDAEMON;
2310 struct ip_vs_daemon_user field_IP_VS_SO_SET_STOPDAEMON;
2311 struct ip_vs_service_user field_IP_VS_SO_SET_ZERO;
2312 };
2313
2314 #define MAX_SET_ARGLEN sizeof(union ip_vs_set_arglen)
2315
2316 static void ip_vs_copy_usvc_compat(struct ip_vs_service_user_kern *usvc,
2317 struct ip_vs_service_user *usvc_compat)
2318 {
2319 memset(usvc, 0, sizeof(*usvc));
2320
2321 usvc->af = AF_INET;
2322 usvc->protocol = usvc_compat->protocol;
2323 usvc->addr.ip = usvc_compat->addr;
2324 usvc->port = usvc_compat->port;
2325 usvc->fwmark = usvc_compat->fwmark;
2326
2327 /* Deep copy of sched_name is not needed here */
2328 usvc->sched_name = usvc_compat->sched_name;
2329
2330 usvc->flags = usvc_compat->flags;
2331 usvc->timeout = usvc_compat->timeout;
2332 usvc->netmask = usvc_compat->netmask;
2333 }
2334
2335 static void ip_vs_copy_udest_compat(struct ip_vs_dest_user_kern *udest,
2336 struct ip_vs_dest_user *udest_compat)
2337 {
2338 memset(udest, 0, sizeof(*udest));
2339
2340 udest->addr.ip = udest_compat->addr;
2341 udest->port = udest_compat->port;
2342 udest->conn_flags = udest_compat->conn_flags;
2343 udest->weight = udest_compat->weight;
2344 udest->u_threshold = udest_compat->u_threshold;
2345 udest->l_threshold = udest_compat->l_threshold;
2346 udest->af = AF_INET;
2347 }
2348
2349 static int
2350 do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2351 {
2352 struct net *net = sock_net(sk);
2353 int ret;
2354 unsigned char arg[MAX_SET_ARGLEN];
2355 struct ip_vs_service_user *usvc_compat;
2356 struct ip_vs_service_user_kern usvc;
2357 struct ip_vs_service *svc;
2358 struct ip_vs_dest_user *udest_compat;
2359 struct ip_vs_dest_user_kern udest;
2360 struct netns_ipvs *ipvs = net_ipvs(net);
2361
2362 BUILD_BUG_ON(sizeof(arg) > 255);
2363 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
2364 return -EPERM;
2365
2366 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX)
2367 return -EINVAL;
2368 if (len != set_arglen[CMDID(cmd)]) {
2369 IP_VS_DBG(1, "set_ctl: len %u != %u\n",
2370 len, set_arglen[CMDID(cmd)]);
2371 return -EINVAL;
2372 }
2373
2374 if (copy_from_user(arg, user, len) != 0)
2375 return -EFAULT;
2376
2377 /* increase the module use count */
2378 ip_vs_use_count_inc();
2379
2380 /* Handle daemons since they have another lock */
2381 if (cmd == IP_VS_SO_SET_STARTDAEMON ||
2382 cmd == IP_VS_SO_SET_STOPDAEMON) {
2383 struct ip_vs_daemon_user *dm = (struct ip_vs_daemon_user *)arg;
2384
2385 if (cmd == IP_VS_SO_SET_STARTDAEMON) {
2386 struct ipvs_sync_daemon_cfg cfg;
2387
2388 memset(&cfg, 0, sizeof(cfg));
2389 strlcpy(cfg.mcast_ifn, dm->mcast_ifn,
2390 sizeof(cfg.mcast_ifn));
2391 cfg.syncid = dm->syncid;
2392 rtnl_lock();
2393 mutex_lock(&ipvs->sync_mutex);
2394 ret = start_sync_thread(ipvs, &cfg, dm->state);
2395 mutex_unlock(&ipvs->sync_mutex);
2396 rtnl_unlock();
2397 } else {
2398 mutex_lock(&ipvs->sync_mutex);
2399 ret = stop_sync_thread(ipvs, dm->state);
2400 mutex_unlock(&ipvs->sync_mutex);
2401 }
2402 goto out_dec;
2403 }
2404
2405 mutex_lock(&__ip_vs_mutex);
2406 if (cmd == IP_VS_SO_SET_FLUSH) {
2407 /* Flush the virtual service */
2408 ret = ip_vs_flush(ipvs, false);
2409 goto out_unlock;
2410 } else if (cmd == IP_VS_SO_SET_TIMEOUT) {
2411 /* Set timeout values for (tcp tcpfin udp) */
2412 ret = ip_vs_set_timeout(ipvs, (struct ip_vs_timeout_user *)arg);
2413 goto out_unlock;
2414 }
2415
2416 usvc_compat = (struct ip_vs_service_user *)arg;
2417 udest_compat = (struct ip_vs_dest_user *)(usvc_compat + 1);
2418
2419 /* We only use the new structs internally, so copy userspace compat
2420 * structs to extended internal versions */
2421 ip_vs_copy_usvc_compat(&usvc, usvc_compat);
2422 ip_vs_copy_udest_compat(&udest, udest_compat);
2423
2424 if (cmd == IP_VS_SO_SET_ZERO) {
2425 /* if no service address is set, zero counters in all */
2426 if (!usvc.fwmark && !usvc.addr.ip && !usvc.port) {
2427 ret = ip_vs_zero_all(ipvs);
2428 goto out_unlock;
2429 }
2430 }
2431
2432 /* Check for valid protocol: TCP or UDP or SCTP, even for fwmark!=0 */
2433 if (usvc.protocol != IPPROTO_TCP && usvc.protocol != IPPROTO_UDP &&
2434 usvc.protocol != IPPROTO_SCTP) {
2435 pr_err("set_ctl: invalid protocol: %d %pI4:%d %s\n",
2436 usvc.protocol, &usvc.addr.ip,
2437 ntohs(usvc.port), usvc.sched_name);
2438 ret = -EFAULT;
2439 goto out_unlock;
2440 }
2441
2442 /* Lookup the exact service by <protocol, addr, port> or fwmark */
2443 rcu_read_lock();
2444 if (usvc.fwmark == 0)
2445 svc = __ip_vs_service_find(ipvs, usvc.af, usvc.protocol,
2446 &usvc.addr, usvc.port);
2447 else
2448 svc = __ip_vs_svc_fwm_find(ipvs, usvc.af, usvc.fwmark);
2449 rcu_read_unlock();
2450
2451 if (cmd != IP_VS_SO_SET_ADD
2452 && (svc == NULL || svc->protocol != usvc.protocol)) {
2453 ret = -ESRCH;
2454 goto out_unlock;
2455 }
2456
2457 switch (cmd) {
2458 case IP_VS_SO_SET_ADD:
2459 if (svc != NULL)
2460 ret = -EEXIST;
2461 else
2462 ret = ip_vs_add_service(ipvs, &usvc, &svc);
2463 break;
2464 case IP_VS_SO_SET_EDIT:
2465 ret = ip_vs_edit_service(svc, &usvc);
2466 break;
2467 case IP_VS_SO_SET_DEL:
2468 ret = ip_vs_del_service(svc);
2469 if (!ret)
2470 goto out_unlock;
2471 break;
2472 case IP_VS_SO_SET_ZERO:
2473 ret = ip_vs_zero_service(svc);
2474 break;
2475 case IP_VS_SO_SET_ADDDEST:
2476 ret = ip_vs_add_dest(svc, &udest);
2477 break;
2478 case IP_VS_SO_SET_EDITDEST:
2479 ret = ip_vs_edit_dest(svc, &udest);
2480 break;
2481 case IP_VS_SO_SET_DELDEST:
2482 ret = ip_vs_del_dest(svc, &udest);
2483 break;
2484 default:
2485 ret = -EINVAL;
2486 }
2487
2488 out_unlock:
2489 mutex_unlock(&__ip_vs_mutex);
2490 out_dec:
2491 /* decrease the module use count */
2492 ip_vs_use_count_dec();
2493
2494 return ret;
2495 }
2496
2497
2498 static void
2499 ip_vs_copy_service(struct ip_vs_service_entry *dst, struct ip_vs_service *src)
2500 {
2501 struct ip_vs_scheduler *sched;
2502 struct ip_vs_kstats kstats;
2503 char *sched_name;
2504
2505 sched = rcu_dereference_protected(src->scheduler, 1);
2506 sched_name = sched ? sched->name : "none";
2507 dst->protocol = src->protocol;
2508 dst->addr = src->addr.ip;
2509 dst->port = src->port;
2510 dst->fwmark = src->fwmark;
2511 strlcpy(dst->sched_name, sched_name, sizeof(dst->sched_name));
2512 dst->flags = src->flags;
2513 dst->timeout = src->timeout / HZ;
2514 dst->netmask = src->netmask;
2515 dst->num_dests = src->num_dests;
2516 ip_vs_copy_stats(&kstats, &src->stats);
2517 ip_vs_export_stats_user(&dst->stats, &kstats);
2518 }
2519
2520 static inline int
2521 __ip_vs_get_service_entries(struct netns_ipvs *ipvs,
2522 const struct ip_vs_get_services *get,
2523 struct ip_vs_get_services __user *uptr)
2524 {
2525 int idx, count=0;
2526 struct ip_vs_service *svc;
2527 struct ip_vs_service_entry entry;
2528 int ret = 0;
2529
2530 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
2531 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
2532 /* Only expose IPv4 entries to old interface */
2533 if (svc->af != AF_INET || (svc->ipvs != ipvs))
2534 continue;
2535
2536 if (count >= get->num_services)
2537 goto out;
2538 memset(&entry, 0, sizeof(entry));
2539 ip_vs_copy_service(&entry, svc);
2540 if (copy_to_user(&uptr->entrytable[count],
2541 &entry, sizeof(entry))) {
2542 ret = -EFAULT;
2543 goto out;
2544 }
2545 count++;
2546 }
2547 }
2548
2549 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
2550 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
2551 /* Only expose IPv4 entries to old interface */
2552 if (svc->af != AF_INET || (svc->ipvs != ipvs))
2553 continue;
2554
2555 if (count >= get->num_services)
2556 goto out;
2557 memset(&entry, 0, sizeof(entry));
2558 ip_vs_copy_service(&entry, svc);
2559 if (copy_to_user(&uptr->entrytable[count],
2560 &entry, sizeof(entry))) {
2561 ret = -EFAULT;
2562 goto out;
2563 }
2564 count++;
2565 }
2566 }
2567 out:
2568 return ret;
2569 }
2570
2571 static inline int
2572 __ip_vs_get_dest_entries(struct netns_ipvs *ipvs, const struct ip_vs_get_dests *get,
2573 struct ip_vs_get_dests __user *uptr)
2574 {
2575 struct ip_vs_service *svc;
2576 union nf_inet_addr addr = { .ip = get->addr };
2577 int ret = 0;
2578
2579 rcu_read_lock();
2580 if (get->fwmark)
2581 svc = __ip_vs_svc_fwm_find(ipvs, AF_INET, get->fwmark);
2582 else
2583 svc = __ip_vs_service_find(ipvs, AF_INET, get->protocol, &addr,
2584 get->port);
2585 rcu_read_unlock();
2586
2587 if (svc) {
2588 int count = 0;
2589 struct ip_vs_dest *dest;
2590 struct ip_vs_dest_entry entry;
2591 struct ip_vs_kstats kstats;
2592
2593 memset(&entry, 0, sizeof(entry));
2594 list_for_each_entry(dest, &svc->destinations, n_list) {
2595 if (count >= get->num_dests)
2596 break;
2597
2598 /* Cannot expose heterogeneous members via sockopt
2599 * interface
2600 */
2601 if (dest->af != svc->af)
2602 continue;
2603
2604 entry.addr = dest->addr.ip;
2605 entry.port = dest->port;
2606 entry.conn_flags = atomic_read(&dest->conn_flags);
2607 entry.weight = atomic_read(&dest->weight);
2608 entry.u_threshold = dest->u_threshold;
2609 entry.l_threshold = dest->l_threshold;
2610 entry.activeconns = atomic_read(&dest->activeconns);
2611 entry.inactconns = atomic_read(&dest->inactconns);
2612 entry.persistconns = atomic_read(&dest->persistconns);
2613 ip_vs_copy_stats(&kstats, &dest->stats);
2614 ip_vs_export_stats_user(&entry.stats, &kstats);
2615 if (copy_to_user(&uptr->entrytable[count],
2616 &entry, sizeof(entry))) {
2617 ret = -EFAULT;
2618 break;
2619 }
2620 count++;
2621 }
2622 } else
2623 ret = -ESRCH;
2624 return ret;
2625 }
2626
2627 static inline void
2628 __ip_vs_get_timeouts(struct netns_ipvs *ipvs, struct ip_vs_timeout_user *u)
2629 {
2630 #if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
2631 struct ip_vs_proto_data *pd;
2632 #endif
2633
2634 memset(u, 0, sizeof (*u));
2635
2636 #ifdef CONFIG_IP_VS_PROTO_TCP
2637 pd = ip_vs_proto_data_get(ipvs, IPPROTO_TCP);
2638 u->tcp_timeout = pd->timeout_table[IP_VS_TCP_S_ESTABLISHED] / HZ;
2639 u->tcp_fin_timeout = pd->timeout_table[IP_VS_TCP_S_FIN_WAIT] / HZ;
2640 #endif
2641 #ifdef CONFIG_IP_VS_PROTO_UDP
2642 pd = ip_vs_proto_data_get(ipvs, IPPROTO_UDP);
2643 u->udp_timeout =
2644 pd->timeout_table[IP_VS_UDP_S_NORMAL] / HZ;
2645 #endif
2646 }
2647
2648 static const unsigned char get_arglen[CMDID(IP_VS_SO_GET_MAX) + 1] = {
2649 [CMDID(IP_VS_SO_GET_VERSION)] = 64,
2650 [CMDID(IP_VS_SO_GET_INFO)] = sizeof(struct ip_vs_getinfo),
2651 [CMDID(IP_VS_SO_GET_SERVICES)] = sizeof(struct ip_vs_get_services),
2652 [CMDID(IP_VS_SO_GET_SERVICE)] = sizeof(struct ip_vs_service_entry),
2653 [CMDID(IP_VS_SO_GET_DESTS)] = sizeof(struct ip_vs_get_dests),
2654 [CMDID(IP_VS_SO_GET_TIMEOUT)] = sizeof(struct ip_vs_timeout_user),
2655 [CMDID(IP_VS_SO_GET_DAEMON)] = 2 * sizeof(struct ip_vs_daemon_user),
2656 };
2657
2658 union ip_vs_get_arglen {
2659 char field_IP_VS_SO_GET_VERSION[64];
2660 struct ip_vs_getinfo field_IP_VS_SO_GET_INFO;
2661 struct ip_vs_get_services field_IP_VS_SO_GET_SERVICES;
2662 struct ip_vs_service_entry field_IP_VS_SO_GET_SERVICE;
2663 struct ip_vs_get_dests field_IP_VS_SO_GET_DESTS;
2664 struct ip_vs_timeout_user field_IP_VS_SO_GET_TIMEOUT;
2665 struct ip_vs_daemon_user field_IP_VS_SO_GET_DAEMON[2];
2666 };
2667
2668 #define MAX_GET_ARGLEN sizeof(union ip_vs_get_arglen)
2669
2670 static int
2671 do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2672 {
2673 unsigned char arg[MAX_GET_ARGLEN];
2674 int ret = 0;
2675 unsigned int copylen;
2676 struct net *net = sock_net(sk);
2677 struct netns_ipvs *ipvs = net_ipvs(net);
2678
2679 BUG_ON(!net);
2680 BUILD_BUG_ON(sizeof(arg) > 255);
2681 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
2682 return -EPERM;
2683
2684 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX)
2685 return -EINVAL;
2686
2687 copylen = get_arglen[CMDID(cmd)];
2688 if (*len < (int) copylen) {
2689 IP_VS_DBG(1, "get_ctl: len %d < %u\n", *len, copylen);
2690 return -EINVAL;
2691 }
2692
2693 if (copy_from_user(arg, user, copylen) != 0)
2694 return -EFAULT;
2695 /*
2696 * Handle daemons first since it has its own locking
2697 */
2698 if (cmd == IP_VS_SO_GET_DAEMON) {
2699 struct ip_vs_daemon_user d[2];
2700
2701 memset(&d, 0, sizeof(d));
2702 mutex_lock(&ipvs->sync_mutex);
2703 if (ipvs->sync_state & IP_VS_STATE_MASTER) {
2704 d[0].state = IP_VS_STATE_MASTER;
2705 strlcpy(d[0].mcast_ifn, ipvs->mcfg.mcast_ifn,
2706 sizeof(d[0].mcast_ifn));
2707 d[0].syncid = ipvs->mcfg.syncid;
2708 }
2709 if (ipvs->sync_state & IP_VS_STATE_BACKUP) {
2710 d[1].state = IP_VS_STATE_BACKUP;
2711 strlcpy(d[1].mcast_ifn, ipvs->bcfg.mcast_ifn,
2712 sizeof(d[1].mcast_ifn));
2713 d[1].syncid = ipvs->bcfg.syncid;
2714 }
2715 if (copy_to_user(user, &d, sizeof(d)) != 0)
2716 ret = -EFAULT;
2717 mutex_unlock(&ipvs->sync_mutex);
2718 return ret;
2719 }
2720
2721 mutex_lock(&__ip_vs_mutex);
2722 switch (cmd) {
2723 case IP_VS_SO_GET_VERSION:
2724 {
2725 char buf[64];
2726
2727 sprintf(buf, "IP Virtual Server version %d.%d.%d (size=%d)",
2728 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
2729 if (copy_to_user(user, buf, strlen(buf)+1) != 0) {
2730 ret = -EFAULT;
2731 goto out;
2732 }
2733 *len = strlen(buf)+1;
2734 }
2735 break;
2736
2737 case IP_VS_SO_GET_INFO:
2738 {
2739 struct ip_vs_getinfo info;
2740 info.version = IP_VS_VERSION_CODE;
2741 info.size = ip_vs_conn_tab_size;
2742 info.num_services = ipvs->num_services;
2743 if (copy_to_user(user, &info, sizeof(info)) != 0)
2744 ret = -EFAULT;
2745 }
2746 break;
2747
2748 case IP_VS_SO_GET_SERVICES:
2749 {
2750 struct ip_vs_get_services *get;
2751 int size;
2752
2753 get = (struct ip_vs_get_services *)arg;
2754 size = sizeof(*get) +
2755 sizeof(struct ip_vs_service_entry) * get->num_services;
2756 if (*len != size) {
2757 pr_err("length: %u != %u\n", *len, size);
2758 ret = -EINVAL;
2759 goto out;
2760 }
2761 ret = __ip_vs_get_service_entries(ipvs, get, user);
2762 }
2763 break;
2764
2765 case IP_VS_SO_GET_SERVICE:
2766 {
2767 struct ip_vs_service_entry *entry;
2768 struct ip_vs_service *svc;
2769 union nf_inet_addr addr;
2770
2771 entry = (struct ip_vs_service_entry *)arg;
2772 addr.ip = entry->addr;
2773 rcu_read_lock();
2774 if (entry->fwmark)
2775 svc = __ip_vs_svc_fwm_find(ipvs, AF_INET, entry->fwmark);
2776 else
2777 svc = __ip_vs_service_find(ipvs, AF_INET,
2778 entry->protocol, &addr,
2779 entry->port);
2780 rcu_read_unlock();
2781 if (svc) {
2782 ip_vs_copy_service(entry, svc);
2783 if (copy_to_user(user, entry, sizeof(*entry)) != 0)
2784 ret = -EFAULT;
2785 } else
2786 ret = -ESRCH;
2787 }
2788 break;
2789
2790 case IP_VS_SO_GET_DESTS:
2791 {
2792 struct ip_vs_get_dests *get;
2793 int size;
2794
2795 get = (struct ip_vs_get_dests *)arg;
2796 size = sizeof(*get) +
2797 sizeof(struct ip_vs_dest_entry) * get->num_dests;
2798 if (*len != size) {
2799 pr_err("length: %u != %u\n", *len, size);
2800 ret = -EINVAL;
2801 goto out;
2802 }
2803 ret = __ip_vs_get_dest_entries(ipvs, get, user);
2804 }
2805 break;
2806
2807 case IP_VS_SO_GET_TIMEOUT:
2808 {
2809 struct ip_vs_timeout_user t;
2810
2811 __ip_vs_get_timeouts(ipvs, &t);
2812 if (copy_to_user(user, &t, sizeof(t)) != 0)
2813 ret = -EFAULT;
2814 }
2815 break;
2816
2817 default:
2818 ret = -EINVAL;
2819 }
2820
2821 out:
2822 mutex_unlock(&__ip_vs_mutex);
2823 return ret;
2824 }
2825
2826
2827 static struct nf_sockopt_ops ip_vs_sockopts = {
2828 .pf = PF_INET,
2829 .set_optmin = IP_VS_BASE_CTL,
2830 .set_optmax = IP_VS_SO_SET_MAX+1,
2831 .set = do_ip_vs_set_ctl,
2832 .get_optmin = IP_VS_BASE_CTL,
2833 .get_optmax = IP_VS_SO_GET_MAX+1,
2834 .get = do_ip_vs_get_ctl,
2835 .owner = THIS_MODULE,
2836 };
2837
2838 /*
2839 * Generic Netlink interface
2840 */
2841
2842 /* IPVS genetlink family */
2843 static struct genl_family ip_vs_genl_family;
2844
2845 /* Policy used for first-level command attributes */
2846 static const struct nla_policy ip_vs_cmd_policy[IPVS_CMD_ATTR_MAX + 1] = {
2847 [IPVS_CMD_ATTR_SERVICE] = { .type = NLA_NESTED },
2848 [IPVS_CMD_ATTR_DEST] = { .type = NLA_NESTED },
2849 [IPVS_CMD_ATTR_DAEMON] = { .type = NLA_NESTED },
2850 [IPVS_CMD_ATTR_TIMEOUT_TCP] = { .type = NLA_U32 },
2851 [IPVS_CMD_ATTR_TIMEOUT_TCP_FIN] = { .type = NLA_U32 },
2852 [IPVS_CMD_ATTR_TIMEOUT_UDP] = { .type = NLA_U32 },
2853 };
2854
2855 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DAEMON */
2856 static const struct nla_policy ip_vs_daemon_policy[IPVS_DAEMON_ATTR_MAX + 1] = {
2857 [IPVS_DAEMON_ATTR_STATE] = { .type = NLA_U32 },
2858 [IPVS_DAEMON_ATTR_MCAST_IFN] = { .type = NLA_NUL_STRING,
2859 .len = IP_VS_IFNAME_MAXLEN },
2860 [IPVS_DAEMON_ATTR_SYNC_ID] = { .type = NLA_U32 },
2861 [IPVS_DAEMON_ATTR_SYNC_MAXLEN] = { .type = NLA_U16 },
2862 [IPVS_DAEMON_ATTR_MCAST_GROUP] = { .type = NLA_U32 },
2863 [IPVS_DAEMON_ATTR_MCAST_GROUP6] = { .len = sizeof(struct in6_addr) },
2864 [IPVS_DAEMON_ATTR_MCAST_PORT] = { .type = NLA_U16 },
2865 [IPVS_DAEMON_ATTR_MCAST_TTL] = { .type = NLA_U8 },
2866 };
2867
2868 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_SERVICE */
2869 static const struct nla_policy ip_vs_svc_policy[IPVS_SVC_ATTR_MAX + 1] = {
2870 [IPVS_SVC_ATTR_AF] = { .type = NLA_U16 },
2871 [IPVS_SVC_ATTR_PROTOCOL] = { .type = NLA_U16 },
2872 [IPVS_SVC_ATTR_ADDR] = { .type = NLA_BINARY,
2873 .len = sizeof(union nf_inet_addr) },
2874 [IPVS_SVC_ATTR_PORT] = { .type = NLA_U16 },
2875 [IPVS_SVC_ATTR_FWMARK] = { .type = NLA_U32 },
2876 [IPVS_SVC_ATTR_SCHED_NAME] = { .type = NLA_NUL_STRING,
2877 .len = IP_VS_SCHEDNAME_MAXLEN },
2878 [IPVS_SVC_ATTR_PE_NAME] = { .type = NLA_NUL_STRING,
2879 .len = IP_VS_PENAME_MAXLEN },
2880 [IPVS_SVC_ATTR_FLAGS] = { .type = NLA_BINARY,
2881 .len = sizeof(struct ip_vs_flags) },
2882 [IPVS_SVC_ATTR_TIMEOUT] = { .type = NLA_U32 },
2883 [IPVS_SVC_ATTR_NETMASK] = { .type = NLA_U32 },
2884 [IPVS_SVC_ATTR_STATS] = { .type = NLA_NESTED },
2885 };
2886
2887 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DEST */
2888 static const struct nla_policy ip_vs_dest_policy[IPVS_DEST_ATTR_MAX + 1] = {
2889 [IPVS_DEST_ATTR_ADDR] = { .type = NLA_BINARY,
2890 .len = sizeof(union nf_inet_addr) },
2891 [IPVS_DEST_ATTR_PORT] = { .type = NLA_U16 },
2892 [IPVS_DEST_ATTR_FWD_METHOD] = { .type = NLA_U32 },
2893 [IPVS_DEST_ATTR_WEIGHT] = { .type = NLA_U32 },
2894 [IPVS_DEST_ATTR_U_THRESH] = { .type = NLA_U32 },
2895 [IPVS_DEST_ATTR_L_THRESH] = { .type = NLA_U32 },
2896 [IPVS_DEST_ATTR_ACTIVE_CONNS] = { .type = NLA_U32 },
2897 [IPVS_DEST_ATTR_INACT_CONNS] = { .type = NLA_U32 },
2898 [IPVS_DEST_ATTR_PERSIST_CONNS] = { .type = NLA_U32 },
2899 [IPVS_DEST_ATTR_STATS] = { .type = NLA_NESTED },
2900 [IPVS_DEST_ATTR_ADDR_FAMILY] = { .type = NLA_U16 },
2901 };
2902
2903 static int ip_vs_genl_fill_stats(struct sk_buff *skb, int container_type,
2904 struct ip_vs_kstats *kstats)
2905 {
2906 struct nlattr *nl_stats = nla_nest_start(skb, container_type);
2907
2908 if (!nl_stats)
2909 return -EMSGSIZE;
2910
2911 if (nla_put_u32(skb, IPVS_STATS_ATTR_CONNS, (u32)kstats->conns) ||
2912 nla_put_u32(skb, IPVS_STATS_ATTR_INPKTS, (u32)kstats->inpkts) ||
2913 nla_put_u32(skb, IPVS_STATS_ATTR_OUTPKTS, (u32)kstats->outpkts) ||
2914 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_INBYTES, kstats->inbytes,
2915 IPVS_STATS_ATTR_PAD) ||
2916 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_OUTBYTES, kstats->outbytes,
2917 IPVS_STATS_ATTR_PAD) ||
2918 nla_put_u32(skb, IPVS_STATS_ATTR_CPS, (u32)kstats->cps) ||
2919 nla_put_u32(skb, IPVS_STATS_ATTR_INPPS, (u32)kstats->inpps) ||
2920 nla_put_u32(skb, IPVS_STATS_ATTR_OUTPPS, (u32)kstats->outpps) ||
2921 nla_put_u32(skb, IPVS_STATS_ATTR_INBPS, (u32)kstats->inbps) ||
2922 nla_put_u32(skb, IPVS_STATS_ATTR_OUTBPS, (u32)kstats->outbps))
2923 goto nla_put_failure;
2924 nla_nest_end(skb, nl_stats);
2925
2926 return 0;
2927
2928 nla_put_failure:
2929 nla_nest_cancel(skb, nl_stats);
2930 return -EMSGSIZE;
2931 }
2932
2933 static int ip_vs_genl_fill_stats64(struct sk_buff *skb, int container_type,
2934 struct ip_vs_kstats *kstats)
2935 {
2936 struct nlattr *nl_stats = nla_nest_start(skb, container_type);
2937
2938 if (!nl_stats)
2939 return -EMSGSIZE;
2940
2941 if (nla_put_u64_64bit(skb, IPVS_STATS_ATTR_CONNS, kstats->conns,
2942 IPVS_STATS_ATTR_PAD) ||
2943 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_INPKTS, kstats->inpkts,
2944 IPVS_STATS_ATTR_PAD) ||
2945 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_OUTPKTS, kstats->outpkts,
2946 IPVS_STATS_ATTR_PAD) ||
2947 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_INBYTES, kstats->inbytes,
2948 IPVS_STATS_ATTR_PAD) ||
2949 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_OUTBYTES, kstats->outbytes,
2950 IPVS_STATS_ATTR_PAD) ||
2951 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_CPS, kstats->cps,
2952 IPVS_STATS_ATTR_PAD) ||
2953 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_INPPS, kstats->inpps,
2954 IPVS_STATS_ATTR_PAD) ||
2955 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_OUTPPS, kstats->outpps,
2956 IPVS_STATS_ATTR_PAD) ||
2957 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_INBPS, kstats->inbps,
2958 IPVS_STATS_ATTR_PAD) ||
2959 nla_put_u64_64bit(skb, IPVS_STATS_ATTR_OUTBPS, kstats->outbps,
2960 IPVS_STATS_ATTR_PAD))
2961 goto nla_put_failure;
2962 nla_nest_end(skb, nl_stats);
2963
2964 return 0;
2965
2966 nla_put_failure:
2967 nla_nest_cancel(skb, nl_stats);
2968 return -EMSGSIZE;
2969 }
2970
2971 static int ip_vs_genl_fill_service(struct sk_buff *skb,
2972 struct ip_vs_service *svc)
2973 {
2974 struct ip_vs_scheduler *sched;
2975 struct ip_vs_pe *pe;
2976 struct nlattr *nl_service;
2977 struct ip_vs_flags flags = { .flags = svc->flags,
2978 .mask = ~0 };
2979 struct ip_vs_kstats kstats;
2980 char *sched_name;
2981
2982 nl_service = nla_nest_start(skb, IPVS_CMD_ATTR_SERVICE);
2983 if (!nl_service)
2984 return -EMSGSIZE;
2985
2986 if (nla_put_u16(skb, IPVS_SVC_ATTR_AF, svc->af))
2987 goto nla_put_failure;
2988 if (svc->fwmark) {
2989 if (nla_put_u32(skb, IPVS_SVC_ATTR_FWMARK, svc->fwmark))
2990 goto nla_put_failure;
2991 } else {
2992 if (nla_put_u16(skb, IPVS_SVC_ATTR_PROTOCOL, svc->protocol) ||
2993 nla_put(skb, IPVS_SVC_ATTR_ADDR, sizeof(svc->addr), &svc->addr) ||
2994 nla_put_be16(skb, IPVS_SVC_ATTR_PORT, svc->port))
2995 goto nla_put_failure;
2996 }
2997
2998 sched = rcu_dereference_protected(svc->scheduler, 1);
2999 sched_name = sched ? sched->name : "none";
3000 pe = rcu_dereference_protected(svc->pe, 1);
3001 if (nla_put_string(skb, IPVS_SVC_ATTR_SCHED_NAME, sched_name) ||
3002 (pe && nla_put_string(skb, IPVS_SVC_ATTR_PE_NAME, pe->name)) ||
3003 nla_put(skb, IPVS_SVC_ATTR_FLAGS, sizeof(flags), &flags) ||
3004 nla_put_u32(skb, IPVS_SVC_ATTR_TIMEOUT, svc->timeout / HZ) ||
3005 nla_put_be32(skb, IPVS_SVC_ATTR_NETMASK, svc->netmask))
3006 goto nla_put_failure;
3007 ip_vs_copy_stats(&kstats, &svc->stats);
3008 if (ip_vs_genl_fill_stats(skb, IPVS_SVC_ATTR_STATS, &kstats))
3009 goto nla_put_failure;
3010 if (ip_vs_genl_fill_stats64(skb, IPVS_SVC_ATTR_STATS64, &kstats))
3011 goto nla_put_failure;
3012
3013 nla_nest_end(skb, nl_service);
3014
3015 return 0;
3016
3017 nla_put_failure:
3018 nla_nest_cancel(skb, nl_service);
3019 return -EMSGSIZE;
3020 }
3021
3022 static int ip_vs_genl_dump_service(struct sk_buff *skb,
3023 struct ip_vs_service *svc,
3024 struct netlink_callback *cb)
3025 {
3026 void *hdr;
3027
3028 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
3029 &ip_vs_genl_family, NLM_F_MULTI,
3030 IPVS_CMD_NEW_SERVICE);
3031 if (!hdr)
3032 return -EMSGSIZE;
3033
3034 if (ip_vs_genl_fill_service(skb, svc) < 0)
3035 goto nla_put_failure;
3036
3037 genlmsg_end(skb, hdr);
3038 return 0;
3039
3040 nla_put_failure:
3041 genlmsg_cancel(skb, hdr);
3042 return -EMSGSIZE;
3043 }
3044
3045 static int ip_vs_genl_dump_services(struct sk_buff *skb,
3046 struct netlink_callback *cb)
3047 {
3048 int idx = 0, i;
3049 int start = cb->args[0];
3050 struct ip_vs_service *svc;
3051 struct net *net = sock_net(skb->sk);
3052 struct netns_ipvs *ipvs = net_ipvs(net);
3053
3054 mutex_lock(&__ip_vs_mutex);
3055 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
3056 hlist_for_each_entry(svc, &ip_vs_svc_table[i], s_list) {
3057 if (++idx <= start || (svc->ipvs != ipvs))
3058 continue;
3059 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
3060 idx--;
3061 goto nla_put_failure;
3062 }
3063 }
3064 }
3065
3066 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
3067 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[i], f_list) {
3068 if (++idx <= start || (svc->ipvs != ipvs))
3069 continue;
3070 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
3071 idx--;
3072 goto nla_put_failure;
3073 }
3074 }
3075 }
3076
3077 nla_put_failure:
3078 mutex_unlock(&__ip_vs_mutex);
3079 cb->args[0] = idx;
3080
3081 return skb->len;
3082 }
3083
3084 static int ip_vs_genl_parse_service(struct netns_ipvs *ipvs,
3085 struct ip_vs_service_user_kern *usvc,
3086 struct nlattr *nla, int full_entry,
3087 struct ip_vs_service **ret_svc)
3088 {
3089 struct nlattr *attrs[IPVS_SVC_ATTR_MAX + 1];
3090 struct nlattr *nla_af, *nla_port, *nla_fwmark, *nla_protocol, *nla_addr;
3091 struct ip_vs_service *svc;
3092
3093 /* Parse mandatory identifying service fields first */
3094 if (nla == NULL ||
3095 nla_parse_nested(attrs, IPVS_SVC_ATTR_MAX, nla, ip_vs_svc_policy))
3096 return -EINVAL;
3097
3098 nla_af = attrs[IPVS_SVC_ATTR_AF];
3099 nla_protocol = attrs[IPVS_SVC_ATTR_PROTOCOL];
3100 nla_addr = attrs[IPVS_SVC_ATTR_ADDR];
3101 nla_port = attrs[IPVS_SVC_ATTR_PORT];
3102 nla_fwmark = attrs[IPVS_SVC_ATTR_FWMARK];
3103
3104 if (!(nla_af && (nla_fwmark || (nla_port && nla_protocol && nla_addr))))
3105 return -EINVAL;
3106
3107 memset(usvc, 0, sizeof(*usvc));
3108
3109 usvc->af = nla_get_u16(nla_af);
3110 #ifdef CONFIG_IP_VS_IPV6
3111 if (usvc->af != AF_INET && usvc->af != AF_INET6)
3112 #else
3113 if (usvc->af != AF_INET)
3114 #endif
3115 return -EAFNOSUPPORT;
3116
3117 if (nla_fwmark) {
3118 usvc->protocol = IPPROTO_TCP;
3119 usvc->fwmark = nla_get_u32(nla_fwmark);
3120 } else {
3121 usvc->protocol = nla_get_u16(nla_protocol);
3122 nla_memcpy(&usvc->addr, nla_addr, sizeof(usvc->addr));
3123 usvc->port = nla_get_be16(nla_port);
3124 usvc->fwmark = 0;
3125 }
3126
3127 rcu_read_lock();
3128 if (usvc->fwmark)
3129 svc = __ip_vs_svc_fwm_find(ipvs, usvc->af, usvc->fwmark);
3130 else
3131 svc = __ip_vs_service_find(ipvs, usvc->af, usvc->protocol,
3132 &usvc->addr, usvc->port);
3133 rcu_read_unlock();
3134 *ret_svc = svc;
3135
3136 /* If a full entry was requested, check for the additional fields */
3137 if (full_entry) {
3138 struct nlattr *nla_sched, *nla_flags, *nla_pe, *nla_timeout,
3139 *nla_netmask;
3140 struct ip_vs_flags flags;
3141
3142 nla_sched = attrs[IPVS_SVC_ATTR_SCHED_NAME];
3143 nla_pe = attrs[IPVS_SVC_ATTR_PE_NAME];
3144 nla_flags = attrs[IPVS_SVC_ATTR_FLAGS];
3145 nla_timeout = attrs[IPVS_SVC_ATTR_TIMEOUT];
3146 nla_netmask = attrs[IPVS_SVC_ATTR_NETMASK];
3147
3148 if (!(nla_sched && nla_flags && nla_timeout && nla_netmask))
3149 return -EINVAL;
3150
3151 nla_memcpy(&flags, nla_flags, sizeof(flags));
3152
3153 /* prefill flags from service if it already exists */
3154 if (svc)
3155 usvc->flags = svc->flags;
3156
3157 /* set new flags from userland */
3158 usvc->flags = (usvc->flags & ~flags.mask) |
3159 (flags.flags & flags.mask);
3160 usvc->sched_name = nla_data(nla_sched);
3161 usvc->pe_name = nla_pe ? nla_data(nla_pe) : NULL;
3162 usvc->timeout = nla_get_u32(nla_timeout);
3163 usvc->netmask = nla_get_be32(nla_netmask);
3164 }
3165
3166 return 0;
3167 }
3168
3169 static struct ip_vs_service *ip_vs_genl_find_service(struct netns_ipvs *ipvs,
3170 struct nlattr *nla)
3171 {
3172 struct ip_vs_service_user_kern usvc;
3173 struct ip_vs_service *svc;
3174 int ret;
3175
3176 ret = ip_vs_genl_parse_service(ipvs, &usvc, nla, 0, &svc);
3177 return ret ? ERR_PTR(ret) : svc;
3178 }
3179
3180 static int ip_vs_genl_fill_dest(struct sk_buff *skb, struct ip_vs_dest *dest)
3181 {
3182 struct nlattr *nl_dest;
3183 struct ip_vs_kstats kstats;
3184
3185 nl_dest = nla_nest_start(skb, IPVS_CMD_ATTR_DEST);
3186 if (!nl_dest)
3187 return -EMSGSIZE;
3188
3189 if (nla_put(skb, IPVS_DEST_ATTR_ADDR, sizeof(dest->addr), &dest->addr) ||
3190 nla_put_be16(skb, IPVS_DEST_ATTR_PORT, dest->port) ||
3191 nla_put_u32(skb, IPVS_DEST_ATTR_FWD_METHOD,
3192 (atomic_read(&dest->conn_flags) &
3193 IP_VS_CONN_F_FWD_MASK)) ||
3194 nla_put_u32(skb, IPVS_DEST_ATTR_WEIGHT,
3195 atomic_read(&dest->weight)) ||
3196 nla_put_u32(skb, IPVS_DEST_ATTR_U_THRESH, dest->u_threshold) ||
3197 nla_put_u32(skb, IPVS_DEST_ATTR_L_THRESH, dest->l_threshold) ||
3198 nla_put_u32(skb, IPVS_DEST_ATTR_ACTIVE_CONNS,
3199 atomic_read(&dest->activeconns)) ||
3200 nla_put_u32(skb, IPVS_DEST_ATTR_INACT_CONNS,
3201 atomic_read(&dest->inactconns)) ||
3202 nla_put_u32(skb, IPVS_DEST_ATTR_PERSIST_CONNS,
3203 atomic_read(&dest->persistconns)) ||
3204 nla_put_u16(skb, IPVS_DEST_ATTR_ADDR_FAMILY, dest->af))
3205 goto nla_put_failure;
3206 ip_vs_copy_stats(&kstats, &dest->stats);
3207 if (ip_vs_genl_fill_stats(skb, IPVS_DEST_ATTR_STATS, &kstats))
3208 goto nla_put_failure;
3209 if (ip_vs_genl_fill_stats64(skb, IPVS_DEST_ATTR_STATS64, &kstats))
3210 goto nla_put_failure;
3211
3212 nla_nest_end(skb, nl_dest);
3213
3214 return 0;
3215
3216 nla_put_failure:
3217 nla_nest_cancel(skb, nl_dest);
3218 return -EMSGSIZE;
3219 }
3220
3221 static int ip_vs_genl_dump_dest(struct sk_buff *skb, struct ip_vs_dest *dest,
3222 struct netlink_callback *cb)
3223 {
3224 void *hdr;
3225
3226 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
3227 &ip_vs_genl_family, NLM_F_MULTI,
3228 IPVS_CMD_NEW_DEST);
3229 if (!hdr)
3230 return -EMSGSIZE;
3231
3232 if (ip_vs_genl_fill_dest(skb, dest) < 0)
3233 goto nla_put_failure;
3234
3235 genlmsg_end(skb, hdr);
3236 return 0;
3237
3238 nla_put_failure:
3239 genlmsg_cancel(skb, hdr);
3240 return -EMSGSIZE;
3241 }
3242
3243 static int ip_vs_genl_dump_dests(struct sk_buff *skb,
3244 struct netlink_callback *cb)
3245 {
3246 int idx = 0;
3247 int start = cb->args[0];
3248 struct ip_vs_service *svc;
3249 struct ip_vs_dest *dest;
3250 struct nlattr *attrs[IPVS_CMD_ATTR_MAX + 1];
3251 struct net *net = sock_net(skb->sk);
3252 struct netns_ipvs *ipvs = net_ipvs(net);
3253
3254 mutex_lock(&__ip_vs_mutex);
3255
3256 /* Try to find the service for which to dump destinations */
3257 if (nlmsg_parse(cb->nlh, GENL_HDRLEN, attrs,
3258 IPVS_CMD_ATTR_MAX, ip_vs_cmd_policy))
3259 goto out_err;
3260
3261
3262 svc = ip_vs_genl_find_service(ipvs, attrs[IPVS_CMD_ATTR_SERVICE]);
3263 if (IS_ERR_OR_NULL(svc))
3264 goto out_err;
3265
3266 /* Dump the destinations */
3267 list_for_each_entry(dest, &svc->destinations, n_list) {
3268 if (++idx <= start)
3269 continue;
3270 if (ip_vs_genl_dump_dest(skb, dest, cb) < 0) {
3271 idx--;
3272 goto nla_put_failure;
3273 }
3274 }
3275
3276 nla_put_failure:
3277 cb->args[0] = idx;
3278
3279 out_err:
3280 mutex_unlock(&__ip_vs_mutex);
3281
3282 return skb->len;
3283 }
3284
3285 static int ip_vs_genl_parse_dest(struct ip_vs_dest_user_kern *udest,
3286 struct nlattr *nla, int full_entry)
3287 {
3288 struct nlattr *attrs[IPVS_DEST_ATTR_MAX + 1];
3289 struct nlattr *nla_addr, *nla_port;
3290 struct nlattr *nla_addr_family;
3291
3292 /* Parse mandatory identifying destination fields first */
3293 if (nla == NULL ||
3294 nla_parse_nested(attrs, IPVS_DEST_ATTR_MAX, nla, ip_vs_dest_policy))
3295 return -EINVAL;
3296
3297 nla_addr = attrs[IPVS_DEST_ATTR_ADDR];
3298 nla_port = attrs[IPVS_DEST_ATTR_PORT];
3299 nla_addr_family = attrs[IPVS_DEST_ATTR_ADDR_FAMILY];
3300
3301 if (!(nla_addr && nla_port))
3302 return -EINVAL;
3303
3304 memset(udest, 0, sizeof(*udest));
3305
3306 nla_memcpy(&udest->addr, nla_addr, sizeof(udest->addr));
3307 udest->port = nla_get_be16(nla_port);
3308
3309 if (nla_addr_family)
3310 udest->af = nla_get_u16(nla_addr_family);
3311 else
3312 udest->af = 0;
3313
3314 /* If a full entry was requested, check for the additional fields */
3315 if (full_entry) {
3316 struct nlattr *nla_fwd, *nla_weight, *nla_u_thresh,
3317 *nla_l_thresh;
3318
3319 nla_fwd = attrs[IPVS_DEST_ATTR_FWD_METHOD];
3320 nla_weight = attrs[IPVS_DEST_ATTR_WEIGHT];
3321 nla_u_thresh = attrs[IPVS_DEST_ATTR_U_THRESH];
3322 nla_l_thresh = attrs[IPVS_DEST_ATTR_L_THRESH];
3323
3324 if (!(nla_fwd && nla_weight && nla_u_thresh && nla_l_thresh))
3325 return -EINVAL;
3326
3327 udest->conn_flags = nla_get_u32(nla_fwd)
3328 & IP_VS_CONN_F_FWD_MASK;
3329 udest->weight = nla_get_u32(nla_weight);
3330 udest->u_threshold = nla_get_u32(nla_u_thresh);
3331 udest->l_threshold = nla_get_u32(nla_l_thresh);
3332 }
3333
3334 return 0;
3335 }
3336
3337 static int ip_vs_genl_fill_daemon(struct sk_buff *skb, __u32 state,
3338 struct ipvs_sync_daemon_cfg *c)
3339 {
3340 struct nlattr *nl_daemon;
3341
3342 nl_daemon = nla_nest_start(skb, IPVS_CMD_ATTR_DAEMON);
3343 if (!nl_daemon)
3344 return -EMSGSIZE;
3345
3346 if (nla_put_u32(skb, IPVS_DAEMON_ATTR_STATE, state) ||
3347 nla_put_string(skb, IPVS_DAEMON_ATTR_MCAST_IFN, c->mcast_ifn) ||
3348 nla_put_u32(skb, IPVS_DAEMON_ATTR_SYNC_ID, c->syncid) ||
3349 nla_put_u16(skb, IPVS_DAEMON_ATTR_SYNC_MAXLEN, c->sync_maxlen) ||
3350 nla_put_u16(skb, IPVS_DAEMON_ATTR_MCAST_PORT, c->mcast_port) ||
3351 nla_put_u8(skb, IPVS_DAEMON_ATTR_MCAST_TTL, c->mcast_ttl))
3352 goto nla_put_failure;
3353 #ifdef CONFIG_IP_VS_IPV6
3354 if (c->mcast_af == AF_INET6) {
3355 if (nla_put_in6_addr(skb, IPVS_DAEMON_ATTR_MCAST_GROUP6,
3356 &c->mcast_group.in6))
3357 goto nla_put_failure;
3358 } else
3359 #endif
3360 if (c->mcast_af == AF_INET &&
3361 nla_put_in_addr(skb, IPVS_DAEMON_ATTR_MCAST_GROUP,
3362 c->mcast_group.ip))
3363 goto nla_put_failure;
3364 nla_nest_end(skb, nl_daemon);
3365
3366 return 0;
3367
3368 nla_put_failure:
3369 nla_nest_cancel(skb, nl_daemon);
3370 return -EMSGSIZE;
3371 }
3372
3373 static int ip_vs_genl_dump_daemon(struct sk_buff *skb, __u32 state,
3374 struct ipvs_sync_daemon_cfg *c,
3375 struct netlink_callback *cb)
3376 {
3377 void *hdr;
3378 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
3379 &ip_vs_genl_family, NLM_F_MULTI,
3380 IPVS_CMD_NEW_DAEMON);
3381 if (!hdr)
3382 return -EMSGSIZE;
3383
3384 if (ip_vs_genl_fill_daemon(skb, state, c))
3385 goto nla_put_failure;
3386
3387 genlmsg_end(skb, hdr);
3388 return 0;
3389
3390 nla_put_failure:
3391 genlmsg_cancel(skb, hdr);
3392 return -EMSGSIZE;
3393 }
3394
3395 static int ip_vs_genl_dump_daemons(struct sk_buff *skb,
3396 struct netlink_callback *cb)
3397 {
3398 struct net *net = sock_net(skb->sk);
3399 struct netns_ipvs *ipvs = net_ipvs(net);
3400
3401 mutex_lock(&ipvs->sync_mutex);
3402 if ((ipvs->sync_state & IP_VS_STATE_MASTER) && !cb->args[0]) {
3403 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_MASTER,
3404 &ipvs->mcfg, cb) < 0)
3405 goto nla_put_failure;
3406
3407 cb->args[0] = 1;
3408 }
3409
3410 if ((ipvs->sync_state & IP_VS_STATE_BACKUP) && !cb->args[1]) {
3411 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_BACKUP,
3412 &ipvs->bcfg, cb) < 0)
3413 goto nla_put_failure;
3414
3415 cb->args[1] = 1;
3416 }
3417
3418 nla_put_failure:
3419 mutex_unlock(&ipvs->sync_mutex);
3420
3421 return skb->len;
3422 }
3423
3424 static int ip_vs_genl_new_daemon(struct netns_ipvs *ipvs, struct nlattr **attrs)
3425 {
3426 struct ipvs_sync_daemon_cfg c;
3427 struct nlattr *a;
3428 int ret;
3429
3430 memset(&c, 0, sizeof(c));
3431 if (!(attrs[IPVS_DAEMON_ATTR_STATE] &&
3432 attrs[IPVS_DAEMON_ATTR_MCAST_IFN] &&
3433 attrs[IPVS_DAEMON_ATTR_SYNC_ID]))
3434 return -EINVAL;
3435 strlcpy(c.mcast_ifn, nla_data(attrs[IPVS_DAEMON_ATTR_MCAST_IFN]),
3436 sizeof(c.mcast_ifn));
3437 c.syncid = nla_get_u32(attrs[IPVS_DAEMON_ATTR_SYNC_ID]);
3438
3439 a = attrs[IPVS_DAEMON_ATTR_SYNC_MAXLEN];
3440 if (a)
3441 c.sync_maxlen = nla_get_u16(a);
3442
3443 a = attrs[IPVS_DAEMON_ATTR_MCAST_GROUP];
3444 if (a) {
3445 c.mcast_af = AF_INET;
3446 c.mcast_group.ip = nla_get_in_addr(a);
3447 if (!ipv4_is_multicast(c.mcast_group.ip))
3448 return -EINVAL;
3449 } else {
3450 a = attrs[IPVS_DAEMON_ATTR_MCAST_GROUP6];
3451 if (a) {
3452 #ifdef CONFIG_IP_VS_IPV6
3453 int addr_type;
3454
3455 c.mcast_af = AF_INET6;
3456 c.mcast_group.in6 = nla_get_in6_addr(a);
3457 addr_type = ipv6_addr_type(&c.mcast_group.in6);
3458 if (!(addr_type & IPV6_ADDR_MULTICAST))
3459 return -EINVAL;
3460 #else
3461 return -EAFNOSUPPORT;
3462 #endif
3463 }
3464 }
3465
3466 a = attrs[IPVS_DAEMON_ATTR_MCAST_PORT];
3467 if (a)
3468 c.mcast_port = nla_get_u16(a);
3469
3470 a = attrs[IPVS_DAEMON_ATTR_MCAST_TTL];
3471 if (a)
3472 c.mcast_ttl = nla_get_u8(a);
3473
3474 /* The synchronization protocol is incompatible with mixed family
3475 * services
3476 */
3477 if (ipvs->mixed_address_family_dests > 0)
3478 return -EINVAL;
3479
3480 rtnl_lock();
3481 mutex_lock(&ipvs->sync_mutex);
3482 ret = start_sync_thread(ipvs, &c,
3483 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]));
3484 mutex_unlock(&ipvs->sync_mutex);
3485 rtnl_unlock();
3486 return ret;
3487 }
3488
3489 static int ip_vs_genl_del_daemon(struct netns_ipvs *ipvs, struct nlattr **attrs)
3490 {
3491 int ret;
3492
3493 if (!attrs[IPVS_DAEMON_ATTR_STATE])
3494 return -EINVAL;
3495
3496 mutex_lock(&ipvs->sync_mutex);
3497 ret = stop_sync_thread(ipvs,
3498 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]));
3499 mutex_unlock(&ipvs->sync_mutex);
3500 return ret;
3501 }
3502
3503 static int ip_vs_genl_set_config(struct netns_ipvs *ipvs, struct nlattr **attrs)
3504 {
3505 struct ip_vs_timeout_user t;
3506
3507 __ip_vs_get_timeouts(ipvs, &t);
3508
3509 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP])
3510 t.tcp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP]);
3511
3512 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN])
3513 t.tcp_fin_timeout =
3514 nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN]);
3515
3516 if (attrs[IPVS_CMD_ATTR_TIMEOUT_UDP])
3517 t.udp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_UDP]);
3518
3519 return ip_vs_set_timeout(ipvs, &t);
3520 }
3521
3522 static int ip_vs_genl_set_daemon(struct sk_buff *skb, struct genl_info *info)
3523 {
3524 int ret = -EINVAL, cmd;
3525 struct net *net = sock_net(skb->sk);
3526 struct netns_ipvs *ipvs = net_ipvs(net);
3527
3528 cmd = info->genlhdr->cmd;
3529
3530 if (cmd == IPVS_CMD_NEW_DAEMON || cmd == IPVS_CMD_DEL_DAEMON) {
3531 struct nlattr *daemon_attrs[IPVS_DAEMON_ATTR_MAX + 1];
3532
3533 if (!info->attrs[IPVS_CMD_ATTR_DAEMON] ||
3534 nla_parse_nested(daemon_attrs, IPVS_DAEMON_ATTR_MAX,
3535 info->attrs[IPVS_CMD_ATTR_DAEMON],
3536 ip_vs_daemon_policy))
3537 goto out;
3538
3539 if (cmd == IPVS_CMD_NEW_DAEMON)
3540 ret = ip_vs_genl_new_daemon(ipvs, daemon_attrs);
3541 else
3542 ret = ip_vs_genl_del_daemon(ipvs, daemon_attrs);
3543 }
3544
3545 out:
3546 return ret;
3547 }
3548
3549 static int ip_vs_genl_set_cmd(struct sk_buff *skb, struct genl_info *info)
3550 {
3551 struct ip_vs_service *svc = NULL;
3552 struct ip_vs_service_user_kern usvc;
3553 struct ip_vs_dest_user_kern udest;
3554 int ret = 0, cmd;
3555 int need_full_svc = 0, need_full_dest = 0;
3556 struct net *net = sock_net(skb->sk);
3557 struct netns_ipvs *ipvs = net_ipvs(net);
3558
3559 cmd = info->genlhdr->cmd;
3560
3561 mutex_lock(&__ip_vs_mutex);
3562
3563 if (cmd == IPVS_CMD_FLUSH) {
3564 ret = ip_vs_flush(ipvs, false);
3565 goto out;
3566 } else if (cmd == IPVS_CMD_SET_CONFIG) {
3567 ret = ip_vs_genl_set_config(ipvs, info->attrs);
3568 goto out;
3569 } else if (cmd == IPVS_CMD_ZERO &&
3570 !info->attrs[IPVS_CMD_ATTR_SERVICE]) {
3571 ret = ip_vs_zero_all(ipvs);
3572 goto out;
3573 }
3574
3575 /* All following commands require a service argument, so check if we
3576 * received a valid one. We need a full service specification when
3577 * adding / editing a service. Only identifying members otherwise. */
3578 if (cmd == IPVS_CMD_NEW_SERVICE || cmd == IPVS_CMD_SET_SERVICE)
3579 need_full_svc = 1;
3580
3581 ret = ip_vs_genl_parse_service(ipvs, &usvc,
3582 info->attrs[IPVS_CMD_ATTR_SERVICE],
3583 need_full_svc, &svc);
3584 if (ret)
3585 goto out;
3586
3587 /* Unless we're adding a new service, the service must already exist */
3588 if ((cmd != IPVS_CMD_NEW_SERVICE) && (svc == NULL)) {
3589 ret = -ESRCH;
3590 goto out;
3591 }
3592
3593 /* Destination commands require a valid destination argument. For
3594 * adding / editing a destination, we need a full destination
3595 * specification. */
3596 if (cmd == IPVS_CMD_NEW_DEST || cmd == IPVS_CMD_SET_DEST ||
3597 cmd == IPVS_CMD_DEL_DEST) {
3598 if (cmd != IPVS_CMD_DEL_DEST)
3599 need_full_dest = 1;
3600
3601 ret = ip_vs_genl_parse_dest(&udest,
3602 info->attrs[IPVS_CMD_ATTR_DEST],
3603 need_full_dest);
3604 if (ret)
3605 goto out;
3606
3607 /* Old protocols did not allow the user to specify address
3608 * family, so we set it to zero instead. We also didn't
3609 * allow heterogeneous pools in the old code, so it's safe
3610 * to assume that this will have the same address family as
3611 * the service.
3612 */
3613 if (udest.af == 0)
3614 udest.af = svc->af;
3615
3616 if (udest.af != svc->af && cmd != IPVS_CMD_DEL_DEST) {
3617 /* The synchronization protocol is incompatible
3618 * with mixed family services
3619 */
3620 if (ipvs->sync_state) {
3621 ret = -EINVAL;
3622 goto out;
3623 }
3624
3625 /* Which connection types do we support? */
3626 switch (udest.conn_flags) {
3627 case IP_VS_CONN_F_TUNNEL:
3628 /* We are able to forward this */
3629 break;
3630 default:
3631 ret = -EINVAL;
3632 goto out;
3633 }
3634 }
3635 }
3636
3637 switch (cmd) {
3638 case IPVS_CMD_NEW_SERVICE:
3639 if (svc == NULL)
3640 ret = ip_vs_add_service(ipvs, &usvc, &svc);
3641 else
3642 ret = -EEXIST;
3643 break;
3644 case IPVS_CMD_SET_SERVICE:
3645 ret = ip_vs_edit_service(svc, &usvc);
3646 break;
3647 case IPVS_CMD_DEL_SERVICE:
3648 ret = ip_vs_del_service(svc);
3649 /* do not use svc, it can be freed */
3650 break;
3651 case IPVS_CMD_NEW_DEST:
3652 ret = ip_vs_add_dest(svc, &udest);
3653 break;
3654 case IPVS_CMD_SET_DEST:
3655 ret = ip_vs_edit_dest(svc, &udest);
3656 break;
3657 case IPVS_CMD_DEL_DEST:
3658 ret = ip_vs_del_dest(svc, &udest);
3659 break;
3660 case IPVS_CMD_ZERO:
3661 ret = ip_vs_zero_service(svc);
3662 break;
3663 default:
3664 ret = -EINVAL;
3665 }
3666
3667 out:
3668 mutex_unlock(&__ip_vs_mutex);
3669
3670 return ret;
3671 }
3672
3673 static int ip_vs_genl_get_cmd(struct sk_buff *skb, struct genl_info *info)
3674 {
3675 struct sk_buff *msg;
3676 void *reply;
3677 int ret, cmd, reply_cmd;
3678 struct net *net = sock_net(skb->sk);
3679 struct netns_ipvs *ipvs = net_ipvs(net);
3680
3681 cmd = info->genlhdr->cmd;
3682
3683 if (cmd == IPVS_CMD_GET_SERVICE)
3684 reply_cmd = IPVS_CMD_NEW_SERVICE;
3685 else if (cmd == IPVS_CMD_GET_INFO)
3686 reply_cmd = IPVS_CMD_SET_INFO;
3687 else if (cmd == IPVS_CMD_GET_CONFIG)
3688 reply_cmd = IPVS_CMD_SET_CONFIG;
3689 else {
3690 pr_err("unknown Generic Netlink command\n");
3691 return -EINVAL;
3692 }
3693
3694 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3695 if (!msg)
3696 return -ENOMEM;
3697
3698 mutex_lock(&__ip_vs_mutex);
3699
3700 reply = genlmsg_put_reply(msg, info, &ip_vs_genl_family, 0, reply_cmd);
3701 if (reply == NULL)
3702 goto nla_put_failure;
3703
3704 switch (cmd) {
3705 case IPVS_CMD_GET_SERVICE:
3706 {
3707 struct ip_vs_service *svc;
3708
3709 svc = ip_vs_genl_find_service(ipvs,
3710 info->attrs[IPVS_CMD_ATTR_SERVICE]);
3711 if (IS_ERR(svc)) {
3712 ret = PTR_ERR(svc);
3713 goto out_err;
3714 } else if (svc) {
3715 ret = ip_vs_genl_fill_service(msg, svc);
3716 if (ret)
3717 goto nla_put_failure;
3718 } else {
3719 ret = -ESRCH;
3720 goto out_err;
3721 }
3722
3723 break;
3724 }
3725
3726 case IPVS_CMD_GET_CONFIG:
3727 {
3728 struct ip_vs_timeout_user t;
3729
3730 __ip_vs_get_timeouts(ipvs, &t);
3731 #ifdef CONFIG_IP_VS_PROTO_TCP
3732 if (nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP,
3733 t.tcp_timeout) ||
3734 nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP_FIN,
3735 t.tcp_fin_timeout))
3736 goto nla_put_failure;
3737 #endif
3738 #ifdef CONFIG_IP_VS_PROTO_UDP
3739 if (nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_UDP, t.udp_timeout))
3740 goto nla_put_failure;
3741 #endif
3742
3743 break;
3744 }
3745
3746 case IPVS_CMD_GET_INFO:
3747 if (nla_put_u32(msg, IPVS_INFO_ATTR_VERSION,
3748 IP_VS_VERSION_CODE) ||
3749 nla_put_u32(msg, IPVS_INFO_ATTR_CONN_TAB_SIZE,
3750 ip_vs_conn_tab_size))
3751 goto nla_put_failure;
3752 break;
3753 }
3754
3755 genlmsg_end(msg, reply);
3756 ret = genlmsg_reply(msg, info);
3757 goto out;
3758
3759 nla_put_failure:
3760 pr_err("not enough space in Netlink message\n");
3761 ret = -EMSGSIZE;
3762
3763 out_err:
3764 nlmsg_free(msg);
3765 out:
3766 mutex_unlock(&__ip_vs_mutex);
3767
3768 return ret;
3769 }
3770
3771
3772 static const struct genl_ops ip_vs_genl_ops[] = {
3773 {
3774 .cmd = IPVS_CMD_NEW_SERVICE,
3775 .flags = GENL_ADMIN_PERM,
3776 .policy = ip_vs_cmd_policy,
3777 .doit = ip_vs_genl_set_cmd,
3778 },
3779 {
3780 .cmd = IPVS_CMD_SET_SERVICE,
3781 .flags = GENL_ADMIN_PERM,
3782 .policy = ip_vs_cmd_policy,
3783 .doit = ip_vs_genl_set_cmd,
3784 },
3785 {
3786 .cmd = IPVS_CMD_DEL_SERVICE,
3787 .flags = GENL_ADMIN_PERM,
3788 .policy = ip_vs_cmd_policy,
3789 .doit = ip_vs_genl_set_cmd,
3790 },
3791 {
3792 .cmd = IPVS_CMD_GET_SERVICE,
3793 .flags = GENL_ADMIN_PERM,
3794 .doit = ip_vs_genl_get_cmd,
3795 .dumpit = ip_vs_genl_dump_services,
3796 .policy = ip_vs_cmd_policy,
3797 },
3798 {
3799 .cmd = IPVS_CMD_NEW_DEST,
3800 .flags = GENL_ADMIN_PERM,
3801 .policy = ip_vs_cmd_policy,
3802 .doit = ip_vs_genl_set_cmd,
3803 },
3804 {
3805 .cmd = IPVS_CMD_SET_DEST,
3806 .flags = GENL_ADMIN_PERM,
3807 .policy = ip_vs_cmd_policy,
3808 .doit = ip_vs_genl_set_cmd,
3809 },
3810 {
3811 .cmd = IPVS_CMD_DEL_DEST,
3812 .flags = GENL_ADMIN_PERM,
3813 .policy = ip_vs_cmd_policy,
3814 .doit = ip_vs_genl_set_cmd,
3815 },
3816 {
3817 .cmd = IPVS_CMD_GET_DEST,
3818 .flags = GENL_ADMIN_PERM,
3819 .policy = ip_vs_cmd_policy,
3820 .dumpit = ip_vs_genl_dump_dests,
3821 },
3822 {
3823 .cmd = IPVS_CMD_NEW_DAEMON,
3824 .flags = GENL_ADMIN_PERM,
3825 .policy = ip_vs_cmd_policy,
3826 .doit = ip_vs_genl_set_daemon,
3827 },
3828 {
3829 .cmd = IPVS_CMD_DEL_DAEMON,
3830 .flags = GENL_ADMIN_PERM,
3831 .policy = ip_vs_cmd_policy,
3832 .doit = ip_vs_genl_set_daemon,
3833 },
3834 {
3835 .cmd = IPVS_CMD_GET_DAEMON,
3836 .flags = GENL_ADMIN_PERM,
3837 .dumpit = ip_vs_genl_dump_daemons,
3838 },
3839 {
3840 .cmd = IPVS_CMD_SET_CONFIG,
3841 .flags = GENL_ADMIN_PERM,
3842 .policy = ip_vs_cmd_policy,
3843 .doit = ip_vs_genl_set_cmd,
3844 },
3845 {
3846 .cmd = IPVS_CMD_GET_CONFIG,
3847 .flags = GENL_ADMIN_PERM,
3848 .doit = ip_vs_genl_get_cmd,
3849 },
3850 {
3851 .cmd = IPVS_CMD_GET_INFO,
3852 .flags = GENL_ADMIN_PERM,
3853 .doit = ip_vs_genl_get_cmd,
3854 },
3855 {
3856 .cmd = IPVS_CMD_ZERO,
3857 .flags = GENL_ADMIN_PERM,
3858 .policy = ip_vs_cmd_policy,
3859 .doit = ip_vs_genl_set_cmd,
3860 },
3861 {
3862 .cmd = IPVS_CMD_FLUSH,
3863 .flags = GENL_ADMIN_PERM,
3864 .doit = ip_vs_genl_set_cmd,
3865 },
3866 };
3867
3868 static struct genl_family ip_vs_genl_family __ro_after_init = {
3869 .hdrsize = 0,
3870 .name = IPVS_GENL_NAME,
3871 .version = IPVS_GENL_VERSION,
3872 .maxattr = IPVS_CMD_ATTR_MAX,
3873 .netnsok = true, /* Make ipvsadm to work on netns */
3874 .module = THIS_MODULE,
3875 .ops = ip_vs_genl_ops,
3876 .n_ops = ARRAY_SIZE(ip_vs_genl_ops),
3877 };
3878
3879 static int __init ip_vs_genl_register(void)
3880 {
3881 return genl_register_family(&ip_vs_genl_family);
3882 }
3883
3884 static void ip_vs_genl_unregister(void)
3885 {
3886 genl_unregister_family(&ip_vs_genl_family);
3887 }
3888
3889 /* End of Generic Netlink interface definitions */
3890
3891 /*
3892 * per netns intit/exit func.
3893 */
3894 #ifdef CONFIG_SYSCTL
3895 static int __net_init ip_vs_control_net_init_sysctl(struct netns_ipvs *ipvs)
3896 {
3897 struct net *net = ipvs->net;
3898 int idx;
3899 struct ctl_table *tbl;
3900
3901 atomic_set(&ipvs->dropentry, 0);
3902 spin_lock_init(&ipvs->dropentry_lock);
3903 spin_lock_init(&ipvs->droppacket_lock);
3904 spin_lock_init(&ipvs->securetcp_lock);
3905
3906 if (!net_eq(net, &init_net)) {
3907 tbl = kmemdup(vs_vars, sizeof(vs_vars), GFP_KERNEL);
3908 if (tbl == NULL)
3909 return -ENOMEM;
3910
3911 /* Don't export sysctls to unprivileged users */
3912 if (net->user_ns != &init_user_ns)
3913 tbl[0].procname = NULL;
3914 } else
3915 tbl = vs_vars;
3916 /* Initialize sysctl defaults */
3917 for (idx = 0; idx < ARRAY_SIZE(vs_vars); idx++) {
3918 if (tbl[idx].proc_handler == proc_do_defense_mode)
3919 tbl[idx].extra2 = ipvs;
3920 }
3921 idx = 0;
3922 ipvs->sysctl_amemthresh = 1024;
3923 tbl[idx++].data = &ipvs->sysctl_amemthresh;
3924 ipvs->sysctl_am_droprate = 10;
3925 tbl[idx++].data = &ipvs->sysctl_am_droprate;
3926 tbl[idx++].data = &ipvs->sysctl_drop_entry;
3927 tbl[idx++].data = &ipvs->sysctl_drop_packet;
3928 #ifdef CONFIG_IP_VS_NFCT
3929 tbl[idx++].data = &ipvs->sysctl_conntrack;
3930 #endif
3931 tbl[idx++].data = &ipvs->sysctl_secure_tcp;
3932 ipvs->sysctl_snat_reroute = 1;
3933 tbl[idx++].data = &ipvs->sysctl_snat_reroute;
3934 ipvs->sysctl_sync_ver = 1;
3935 tbl[idx++].data = &ipvs->sysctl_sync_ver;
3936 ipvs->sysctl_sync_ports = 1;
3937 tbl[idx++].data = &ipvs->sysctl_sync_ports;
3938 tbl[idx++].data = &ipvs->sysctl_sync_persist_mode;
3939 ipvs->sysctl_sync_qlen_max = nr_free_buffer_pages() / 32;
3940 tbl[idx++].data = &ipvs->sysctl_sync_qlen_max;
3941 ipvs->sysctl_sync_sock_size = 0;
3942 tbl[idx++].data = &ipvs->sysctl_sync_sock_size;
3943 tbl[idx++].data = &ipvs->sysctl_cache_bypass;
3944 tbl[idx++].data = &ipvs->sysctl_expire_nodest_conn;
3945 tbl[idx++].data = &ipvs->sysctl_sloppy_tcp;
3946 tbl[idx++].data = &ipvs->sysctl_sloppy_sctp;
3947 tbl[idx++].data = &ipvs->sysctl_expire_quiescent_template;
3948 ipvs->sysctl_sync_threshold[0] = DEFAULT_SYNC_THRESHOLD;
3949 ipvs->sysctl_sync_threshold[1] = DEFAULT_SYNC_PERIOD;
3950 tbl[idx].data = &ipvs->sysctl_sync_threshold;
3951 tbl[idx++].maxlen = sizeof(ipvs->sysctl_sync_threshold);
3952 ipvs->sysctl_sync_refresh_period = DEFAULT_SYNC_REFRESH_PERIOD;
3953 tbl[idx++].data = &ipvs->sysctl_sync_refresh_period;
3954 ipvs->sysctl_sync_retries = clamp_t(int, DEFAULT_SYNC_RETRIES, 0, 3);
3955 tbl[idx++].data = &ipvs->sysctl_sync_retries;
3956 tbl[idx++].data = &ipvs->sysctl_nat_icmp_send;
3957 ipvs->sysctl_pmtu_disc = 1;
3958 tbl[idx++].data = &ipvs->sysctl_pmtu_disc;
3959 tbl[idx++].data = &ipvs->sysctl_backup_only;
3960 ipvs->sysctl_conn_reuse_mode = 1;
3961 tbl[idx++].data = &ipvs->sysctl_conn_reuse_mode;
3962 tbl[idx++].data = &ipvs->sysctl_schedule_icmp;
3963 tbl[idx++].data = &ipvs->sysctl_ignore_tunneled;
3964
3965 ipvs->sysctl_hdr = register_net_sysctl(net, "net/ipv4/vs", tbl);
3966 if (ipvs->sysctl_hdr == NULL) {
3967 if (!net_eq(net, &init_net))
3968 kfree(tbl);
3969 return -ENOMEM;
3970 }
3971 ip_vs_start_estimator(ipvs, &ipvs->tot_stats);
3972 ipvs->sysctl_tbl = tbl;
3973 /* Schedule defense work */
3974 INIT_DELAYED_WORK(&ipvs->defense_work, defense_work_handler);
3975 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
3976
3977 return 0;
3978 }
3979
3980 static void __net_exit ip_vs_control_net_cleanup_sysctl(struct netns_ipvs *ipvs)
3981 {
3982 struct net *net = ipvs->net;
3983
3984 cancel_delayed_work_sync(&ipvs->defense_work);
3985 cancel_work_sync(&ipvs->defense_work.work);
3986 unregister_net_sysctl_table(ipvs->sysctl_hdr);
3987 ip_vs_stop_estimator(ipvs, &ipvs->tot_stats);
3988
3989 if (!net_eq(net, &init_net))
3990 kfree(ipvs->sysctl_tbl);
3991 }
3992
3993 #else
3994
3995 static int __net_init ip_vs_control_net_init_sysctl(struct netns_ipvs *ipvs) { return 0; }
3996 static void __net_exit ip_vs_control_net_cleanup_sysctl(struct netns_ipvs *ipvs) { }
3997
3998 #endif
3999
4000 static struct notifier_block ip_vs_dst_notifier = {
4001 .notifier_call = ip_vs_dst_event,
4002 };
4003
4004 int __net_init ip_vs_control_net_init(struct netns_ipvs *ipvs)
4005 {
4006 int i, idx;
4007
4008 /* Initialize rs_table */
4009 for (idx = 0; idx < IP_VS_RTAB_SIZE; idx++)
4010 INIT_HLIST_HEAD(&ipvs->rs_table[idx]);
4011
4012 INIT_LIST_HEAD(&ipvs->dest_trash);
4013 spin_lock_init(&ipvs->dest_trash_lock);
4014 setup_timer(&ipvs->dest_trash_timer, ip_vs_dest_trash_expire,
4015 (unsigned long) ipvs);
4016 atomic_set(&ipvs->ftpsvc_counter, 0);
4017 atomic_set(&ipvs->nullsvc_counter, 0);
4018 atomic_set(&ipvs->conn_out_counter, 0);
4019
4020 /* procfs stats */
4021 ipvs->tot_stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
4022 if (!ipvs->tot_stats.cpustats)
4023 return -ENOMEM;
4024
4025 for_each_possible_cpu(i) {
4026 struct ip_vs_cpu_stats *ipvs_tot_stats;
4027 ipvs_tot_stats = per_cpu_ptr(ipvs->tot_stats.cpustats, i);
4028 u64_stats_init(&ipvs_tot_stats->syncp);
4029 }
4030
4031 spin_lock_init(&ipvs->tot_stats.lock);
4032
4033 proc_create("ip_vs", 0, ipvs->net->proc_net, &ip_vs_info_fops);
4034 proc_create("ip_vs_stats", 0, ipvs->net->proc_net, &ip_vs_stats_fops);
4035 proc_create("ip_vs_stats_percpu", 0, ipvs->net->proc_net,
4036 &ip_vs_stats_percpu_fops);
4037
4038 if (ip_vs_control_net_init_sysctl(ipvs))
4039 goto err;
4040
4041 return 0;
4042
4043 err:
4044 free_percpu(ipvs->tot_stats.cpustats);
4045 return -ENOMEM;
4046 }
4047
4048 void __net_exit ip_vs_control_net_cleanup(struct netns_ipvs *ipvs)
4049 {
4050 ip_vs_trash_cleanup(ipvs);
4051 ip_vs_control_net_cleanup_sysctl(ipvs);
4052 remove_proc_entry("ip_vs_stats_percpu", ipvs->net->proc_net);
4053 remove_proc_entry("ip_vs_stats", ipvs->net->proc_net);
4054 remove_proc_entry("ip_vs", ipvs->net->proc_net);
4055 free_percpu(ipvs->tot_stats.cpustats);
4056 }
4057
4058 int __init ip_vs_register_nl_ioctl(void)
4059 {
4060 int ret;
4061
4062 ret = nf_register_sockopt(&ip_vs_sockopts);
4063 if (ret) {
4064 pr_err("cannot register sockopt.\n");
4065 goto err_sock;
4066 }
4067
4068 ret = ip_vs_genl_register();
4069 if (ret) {
4070 pr_err("cannot register Generic Netlink interface.\n");
4071 goto err_genl;
4072 }
4073 return 0;
4074
4075 err_genl:
4076 nf_unregister_sockopt(&ip_vs_sockopts);
4077 err_sock:
4078 return ret;
4079 }
4080
4081 void ip_vs_unregister_nl_ioctl(void)
4082 {
4083 ip_vs_genl_unregister();
4084 nf_unregister_sockopt(&ip_vs_sockopts);
4085 }
4086
4087 int __init ip_vs_control_init(void)
4088 {
4089 int idx;
4090 int ret;
4091
4092 EnterFunction(2);
4093
4094 /* Initialize svc_table, ip_vs_svc_fwm_table */
4095 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
4096 INIT_HLIST_HEAD(&ip_vs_svc_table[idx]);
4097 INIT_HLIST_HEAD(&ip_vs_svc_fwm_table[idx]);
4098 }
4099
4100 smp_wmb(); /* Do we really need it now ? */
4101
4102 ret = register_netdevice_notifier(&ip_vs_dst_notifier);
4103 if (ret < 0)
4104 return ret;
4105
4106 LeaveFunction(2);
4107 return 0;
4108 }
4109
4110
4111 void ip_vs_control_cleanup(void)
4112 {
4113 EnterFunction(2);
4114 unregister_netdevice_notifier(&ip_vs_dst_notifier);
4115 LeaveFunction(2);
4116 }