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