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