ARM: 6988/1: multi-cpu: remove arguments from CPU proc macros
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / netfilter / ipvs / ip_vs_ctl.c
blob699c79a556573cb707e85eeab0b194e474f4ac79
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.
8 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
9 * Peter Kese <peter.kese@ijs.si>
10 * Julian Anastasov <ja@ssi.bg>
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.
17 * Changes:
21 #define KMSG_COMPONENT "IPVS"
22 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
24 #include <linux/module.h>
25 #include <linux/init.h>
26 #include <linux/types.h>
27 #include <linux/capability.h>
28 #include <linux/fs.h>
29 #include <linux/sysctl.h>
30 #include <linux/proc_fs.h>
31 #include <linux/workqueue.h>
32 #include <linux/swap.h>
33 #include <linux/seq_file.h>
34 #include <linux/slab.h>
36 #include <linux/netfilter.h>
37 #include <linux/netfilter_ipv4.h>
38 #include <linux/mutex.h>
40 #include <net/net_namespace.h>
41 #include <linux/nsproxy.h>
42 #include <net/ip.h>
43 #ifdef CONFIG_IP_VS_IPV6
44 #include <net/ipv6.h>
45 #include <net/ip6_route.h>
46 #endif
47 #include <net/route.h>
48 #include <net/sock.h>
49 #include <net/genetlink.h>
51 #include <asm/uaccess.h>
53 #include <net/ip_vs.h>
55 /* semaphore for IPVS sockopts. And, [gs]etsockopt may sleep. */
56 static DEFINE_MUTEX(__ip_vs_mutex);
58 /* lock for service table */
59 static DEFINE_RWLOCK(__ip_vs_svc_lock);
61 /* sysctl variables */
63 #ifdef CONFIG_IP_VS_DEBUG
64 static int sysctl_ip_vs_debug_level = 0;
66 int ip_vs_get_debug_level(void)
68 return sysctl_ip_vs_debug_level;
70 #endif
73 /* Protos */
74 static void __ip_vs_del_service(struct ip_vs_service *svc);
77 #ifdef CONFIG_IP_VS_IPV6
78 /* Taken from rt6_fill_node() in net/ipv6/route.c, is there a better way? */
79 static int __ip_vs_addr_is_local_v6(struct net *net,
80 const struct in6_addr *addr)
82 struct rt6_info *rt;
83 struct flowi6 fl6 = {
84 .daddr = *addr,
87 rt = (struct rt6_info *)ip6_route_output(net, NULL, &fl6);
88 if (rt && rt->rt6i_dev && (rt->rt6i_dev->flags & IFF_LOOPBACK))
89 return 1;
91 return 0;
93 #endif
95 #ifdef CONFIG_SYSCTL
97 * update_defense_level is called from keventd and from sysctl,
98 * so it needs to protect itself from softirqs
100 static void update_defense_level(struct netns_ipvs *ipvs)
102 struct sysinfo i;
103 static int old_secure_tcp = 0;
104 int availmem;
105 int nomem;
106 int to_change = -1;
108 /* we only count free and buffered memory (in pages) */
109 si_meminfo(&i);
110 availmem = i.freeram + i.bufferram;
111 /* however in linux 2.5 the i.bufferram is total page cache size,
112 we need adjust it */
113 /* si_swapinfo(&i); */
114 /* availmem = availmem - (i.totalswap - i.freeswap); */
116 nomem = (availmem < ipvs->sysctl_amemthresh);
118 local_bh_disable();
120 /* drop_entry */
121 spin_lock(&ipvs->dropentry_lock);
122 switch (ipvs->sysctl_drop_entry) {
123 case 0:
124 atomic_set(&ipvs->dropentry, 0);
125 break;
126 case 1:
127 if (nomem) {
128 atomic_set(&ipvs->dropentry, 1);
129 ipvs->sysctl_drop_entry = 2;
130 } else {
131 atomic_set(&ipvs->dropentry, 0);
133 break;
134 case 2:
135 if (nomem) {
136 atomic_set(&ipvs->dropentry, 1);
137 } else {
138 atomic_set(&ipvs->dropentry, 0);
139 ipvs->sysctl_drop_entry = 1;
141 break;
142 case 3:
143 atomic_set(&ipvs->dropentry, 1);
144 break;
146 spin_unlock(&ipvs->dropentry_lock);
148 /* drop_packet */
149 spin_lock(&ipvs->droppacket_lock);
150 switch (ipvs->sysctl_drop_packet) {
151 case 0:
152 ipvs->drop_rate = 0;
153 break;
154 case 1:
155 if (nomem) {
156 ipvs->drop_rate = ipvs->drop_counter
157 = ipvs->sysctl_amemthresh /
158 (ipvs->sysctl_amemthresh-availmem);
159 ipvs->sysctl_drop_packet = 2;
160 } else {
161 ipvs->drop_rate = 0;
163 break;
164 case 2:
165 if (nomem) {
166 ipvs->drop_rate = ipvs->drop_counter
167 = ipvs->sysctl_amemthresh /
168 (ipvs->sysctl_amemthresh-availmem);
169 } else {
170 ipvs->drop_rate = 0;
171 ipvs->sysctl_drop_packet = 1;
173 break;
174 case 3:
175 ipvs->drop_rate = ipvs->sysctl_am_droprate;
176 break;
178 spin_unlock(&ipvs->droppacket_lock);
180 /* secure_tcp */
181 spin_lock(&ipvs->securetcp_lock);
182 switch (ipvs->sysctl_secure_tcp) {
183 case 0:
184 if (old_secure_tcp >= 2)
185 to_change = 0;
186 break;
187 case 1:
188 if (nomem) {
189 if (old_secure_tcp < 2)
190 to_change = 1;
191 ipvs->sysctl_secure_tcp = 2;
192 } else {
193 if (old_secure_tcp >= 2)
194 to_change = 0;
196 break;
197 case 2:
198 if (nomem) {
199 if (old_secure_tcp < 2)
200 to_change = 1;
201 } else {
202 if (old_secure_tcp >= 2)
203 to_change = 0;
204 ipvs->sysctl_secure_tcp = 1;
206 break;
207 case 3:
208 if (old_secure_tcp < 2)
209 to_change = 1;
210 break;
212 old_secure_tcp = ipvs->sysctl_secure_tcp;
213 if (to_change >= 0)
214 ip_vs_protocol_timeout_change(ipvs,
215 ipvs->sysctl_secure_tcp > 1);
216 spin_unlock(&ipvs->securetcp_lock);
218 local_bh_enable();
223 * Timer for checking the defense
225 #define DEFENSE_TIMER_PERIOD 1*HZ
227 static void defense_work_handler(struct work_struct *work)
229 struct netns_ipvs *ipvs =
230 container_of(work, struct netns_ipvs, defense_work.work);
232 update_defense_level(ipvs);
233 if (atomic_read(&ipvs->dropentry))
234 ip_vs_random_dropentry(ipvs->net);
235 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
237 #endif
240 ip_vs_use_count_inc(void)
242 return try_module_get(THIS_MODULE);
245 void
246 ip_vs_use_count_dec(void)
248 module_put(THIS_MODULE);
253 * Hash table: for virtual service lookups
255 #define IP_VS_SVC_TAB_BITS 8
256 #define IP_VS_SVC_TAB_SIZE (1 << IP_VS_SVC_TAB_BITS)
257 #define IP_VS_SVC_TAB_MASK (IP_VS_SVC_TAB_SIZE - 1)
259 /* the service table hashed by <protocol, addr, port> */
260 static struct list_head ip_vs_svc_table[IP_VS_SVC_TAB_SIZE];
261 /* the service table hashed by fwmark */
262 static struct list_head ip_vs_svc_fwm_table[IP_VS_SVC_TAB_SIZE];
266 * Returns hash value for virtual service
268 static inline unsigned
269 ip_vs_svc_hashkey(struct net *net, int af, unsigned proto,
270 const union nf_inet_addr *addr, __be16 port)
272 register unsigned porth = ntohs(port);
273 __be32 addr_fold = addr->ip;
275 #ifdef CONFIG_IP_VS_IPV6
276 if (af == AF_INET6)
277 addr_fold = addr->ip6[0]^addr->ip6[1]^
278 addr->ip6[2]^addr->ip6[3];
279 #endif
280 addr_fold ^= ((size_t)net>>8);
282 return (proto^ntohl(addr_fold)^(porth>>IP_VS_SVC_TAB_BITS)^porth)
283 & IP_VS_SVC_TAB_MASK;
287 * Returns hash value of fwmark for virtual service lookup
289 static inline unsigned ip_vs_svc_fwm_hashkey(struct net *net, __u32 fwmark)
291 return (((size_t)net>>8) ^ fwmark) & IP_VS_SVC_TAB_MASK;
295 * Hashes a service in the ip_vs_svc_table by <netns,proto,addr,port>
296 * or in the ip_vs_svc_fwm_table by fwmark.
297 * Should be called with locked tables.
299 static int ip_vs_svc_hash(struct ip_vs_service *svc)
301 unsigned hash;
303 if (svc->flags & IP_VS_SVC_F_HASHED) {
304 pr_err("%s(): request for already hashed, called from %pF\n",
305 __func__, __builtin_return_address(0));
306 return 0;
309 if (svc->fwmark == 0) {
311 * Hash it by <netns,protocol,addr,port> in ip_vs_svc_table
313 hash = ip_vs_svc_hashkey(svc->net, svc->af, svc->protocol,
314 &svc->addr, svc->port);
315 list_add(&svc->s_list, &ip_vs_svc_table[hash]);
316 } else {
318 * Hash it by fwmark in svc_fwm_table
320 hash = ip_vs_svc_fwm_hashkey(svc->net, svc->fwmark);
321 list_add(&svc->f_list, &ip_vs_svc_fwm_table[hash]);
324 svc->flags |= IP_VS_SVC_F_HASHED;
325 /* increase its refcnt because it is referenced by the svc table */
326 atomic_inc(&svc->refcnt);
327 return 1;
332 * Unhashes a service from svc_table / svc_fwm_table.
333 * Should be called with locked tables.
335 static int ip_vs_svc_unhash(struct ip_vs_service *svc)
337 if (!(svc->flags & IP_VS_SVC_F_HASHED)) {
338 pr_err("%s(): request for unhash flagged, called from %pF\n",
339 __func__, __builtin_return_address(0));
340 return 0;
343 if (svc->fwmark == 0) {
344 /* Remove it from the svc_table table */
345 list_del(&svc->s_list);
346 } else {
347 /* Remove it from the svc_fwm_table table */
348 list_del(&svc->f_list);
351 svc->flags &= ~IP_VS_SVC_F_HASHED;
352 atomic_dec(&svc->refcnt);
353 return 1;
358 * Get service by {netns, proto,addr,port} in the service table.
360 static inline struct ip_vs_service *
361 __ip_vs_service_find(struct net *net, int af, __u16 protocol,
362 const union nf_inet_addr *vaddr, __be16 vport)
364 unsigned hash;
365 struct ip_vs_service *svc;
367 /* Check for "full" addressed entries */
368 hash = ip_vs_svc_hashkey(net, af, protocol, vaddr, vport);
370 list_for_each_entry(svc, &ip_vs_svc_table[hash], s_list){
371 if ((svc->af == af)
372 && ip_vs_addr_equal(af, &svc->addr, vaddr)
373 && (svc->port == vport)
374 && (svc->protocol == protocol)
375 && net_eq(svc->net, net)) {
376 /* HIT */
377 return svc;
381 return NULL;
386 * Get service by {fwmark} in the service table.
388 static inline struct ip_vs_service *
389 __ip_vs_svc_fwm_find(struct net *net, int af, __u32 fwmark)
391 unsigned hash;
392 struct ip_vs_service *svc;
394 /* Check for fwmark addressed entries */
395 hash = ip_vs_svc_fwm_hashkey(net, fwmark);
397 list_for_each_entry(svc, &ip_vs_svc_fwm_table[hash], f_list) {
398 if (svc->fwmark == fwmark && svc->af == af
399 && net_eq(svc->net, net)) {
400 /* HIT */
401 return svc;
405 return NULL;
408 struct ip_vs_service *
409 ip_vs_service_get(struct net *net, int af, __u32 fwmark, __u16 protocol,
410 const union nf_inet_addr *vaddr, __be16 vport)
412 struct ip_vs_service *svc;
413 struct netns_ipvs *ipvs = net_ipvs(net);
415 read_lock(&__ip_vs_svc_lock);
418 * Check the table hashed by fwmark first
420 if (fwmark) {
421 svc = __ip_vs_svc_fwm_find(net, af, fwmark);
422 if (svc)
423 goto out;
427 * Check the table hashed by <protocol,addr,port>
428 * for "full" addressed entries
430 svc = __ip_vs_service_find(net, af, protocol, vaddr, vport);
432 if (svc == NULL
433 && protocol == IPPROTO_TCP
434 && atomic_read(&ipvs->ftpsvc_counter)
435 && (vport == FTPDATA || ntohs(vport) >= PROT_SOCK)) {
437 * Check if ftp service entry exists, the packet
438 * might belong to FTP data connections.
440 svc = __ip_vs_service_find(net, af, protocol, vaddr, FTPPORT);
443 if (svc == NULL
444 && atomic_read(&ipvs->nullsvc_counter)) {
446 * Check if the catch-all port (port zero) exists
448 svc = __ip_vs_service_find(net, af, protocol, vaddr, 0);
451 out:
452 if (svc)
453 atomic_inc(&svc->usecnt);
454 read_unlock(&__ip_vs_svc_lock);
456 IP_VS_DBG_BUF(9, "lookup service: fwm %u %s %s:%u %s\n",
457 fwmark, ip_vs_proto_name(protocol),
458 IP_VS_DBG_ADDR(af, vaddr), ntohs(vport),
459 svc ? "hit" : "not hit");
461 return svc;
465 static inline void
466 __ip_vs_bind_svc(struct ip_vs_dest *dest, struct ip_vs_service *svc)
468 atomic_inc(&svc->refcnt);
469 dest->svc = svc;
472 static void
473 __ip_vs_unbind_svc(struct ip_vs_dest *dest)
475 struct ip_vs_service *svc = dest->svc;
477 dest->svc = NULL;
478 if (atomic_dec_and_test(&svc->refcnt)) {
479 IP_VS_DBG_BUF(3, "Removing service %u/%s:%u usecnt=%d\n",
480 svc->fwmark,
481 IP_VS_DBG_ADDR(svc->af, &svc->addr),
482 ntohs(svc->port), atomic_read(&svc->usecnt));
483 free_percpu(svc->stats.cpustats);
484 kfree(svc);
490 * Returns hash value for real service
492 static inline unsigned ip_vs_rs_hashkey(int af,
493 const union nf_inet_addr *addr,
494 __be16 port)
496 register unsigned porth = ntohs(port);
497 __be32 addr_fold = addr->ip;
499 #ifdef CONFIG_IP_VS_IPV6
500 if (af == AF_INET6)
501 addr_fold = addr->ip6[0]^addr->ip6[1]^
502 addr->ip6[2]^addr->ip6[3];
503 #endif
505 return (ntohl(addr_fold)^(porth>>IP_VS_RTAB_BITS)^porth)
506 & IP_VS_RTAB_MASK;
510 * Hashes ip_vs_dest in rs_table by <proto,addr,port>.
511 * should be called with locked tables.
513 static int ip_vs_rs_hash(struct netns_ipvs *ipvs, struct ip_vs_dest *dest)
515 unsigned hash;
517 if (!list_empty(&dest->d_list)) {
518 return 0;
522 * Hash by proto,addr,port,
523 * which are the parameters of the real service.
525 hash = ip_vs_rs_hashkey(dest->af, &dest->addr, dest->port);
527 list_add(&dest->d_list, &ipvs->rs_table[hash]);
529 return 1;
533 * UNhashes ip_vs_dest from rs_table.
534 * should be called with locked tables.
536 static int ip_vs_rs_unhash(struct ip_vs_dest *dest)
539 * Remove it from the rs_table table.
541 if (!list_empty(&dest->d_list)) {
542 list_del(&dest->d_list);
543 INIT_LIST_HEAD(&dest->d_list);
546 return 1;
550 * Lookup real service by <proto,addr,port> in the real service table.
552 struct ip_vs_dest *
553 ip_vs_lookup_real_service(struct net *net, int af, __u16 protocol,
554 const union nf_inet_addr *daddr,
555 __be16 dport)
557 struct netns_ipvs *ipvs = net_ipvs(net);
558 unsigned hash;
559 struct ip_vs_dest *dest;
562 * Check for "full" addressed entries
563 * Return the first found entry
565 hash = ip_vs_rs_hashkey(af, daddr, dport);
567 read_lock(&ipvs->rs_lock);
568 list_for_each_entry(dest, &ipvs->rs_table[hash], d_list) {
569 if ((dest->af == af)
570 && ip_vs_addr_equal(af, &dest->addr, daddr)
571 && (dest->port == dport)
572 && ((dest->protocol == protocol) ||
573 dest->vfwmark)) {
574 /* HIT */
575 read_unlock(&ipvs->rs_lock);
576 return dest;
579 read_unlock(&ipvs->rs_lock);
581 return NULL;
585 * Lookup destination by {addr,port} in the given service
587 static struct ip_vs_dest *
588 ip_vs_lookup_dest(struct ip_vs_service *svc, const union nf_inet_addr *daddr,
589 __be16 dport)
591 struct ip_vs_dest *dest;
594 * Find the destination for the given service
596 list_for_each_entry(dest, &svc->destinations, n_list) {
597 if ((dest->af == svc->af)
598 && ip_vs_addr_equal(svc->af, &dest->addr, daddr)
599 && (dest->port == dport)) {
600 /* HIT */
601 return dest;
605 return NULL;
609 * Find destination by {daddr,dport,vaddr,protocol}
610 * Cretaed to be used in ip_vs_process_message() in
611 * the backup synchronization daemon. It finds the
612 * destination to be bound to the received connection
613 * on the backup.
615 * ip_vs_lookup_real_service() looked promissing, but
616 * seems not working as expected.
618 struct ip_vs_dest *ip_vs_find_dest(struct net *net, int af,
619 const union nf_inet_addr *daddr,
620 __be16 dport,
621 const union nf_inet_addr *vaddr,
622 __be16 vport, __u16 protocol, __u32 fwmark)
624 struct ip_vs_dest *dest;
625 struct ip_vs_service *svc;
627 svc = ip_vs_service_get(net, af, fwmark, protocol, vaddr, vport);
628 if (!svc)
629 return NULL;
630 dest = ip_vs_lookup_dest(svc, daddr, dport);
631 if (dest)
632 atomic_inc(&dest->refcnt);
633 ip_vs_service_put(svc);
634 return dest;
638 * Lookup dest by {svc,addr,port} in the destination trash.
639 * The destination trash is used to hold the destinations that are removed
640 * from the service table but are still referenced by some conn entries.
641 * The reason to add the destination trash is when the dest is temporary
642 * down (either by administrator or by monitor program), the dest can be
643 * picked back from the trash, the remaining connections to the dest can
644 * continue, and the counting information of the dest is also useful for
645 * scheduling.
647 static struct ip_vs_dest *
648 ip_vs_trash_get_dest(struct ip_vs_service *svc, const union nf_inet_addr *daddr,
649 __be16 dport)
651 struct ip_vs_dest *dest, *nxt;
652 struct netns_ipvs *ipvs = net_ipvs(svc->net);
655 * Find the destination in trash
657 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, n_list) {
658 IP_VS_DBG_BUF(3, "Destination %u/%s:%u still in trash, "
659 "dest->refcnt=%d\n",
660 dest->vfwmark,
661 IP_VS_DBG_ADDR(svc->af, &dest->addr),
662 ntohs(dest->port),
663 atomic_read(&dest->refcnt));
664 if (dest->af == svc->af &&
665 ip_vs_addr_equal(svc->af, &dest->addr, daddr) &&
666 dest->port == dport &&
667 dest->vfwmark == svc->fwmark &&
668 dest->protocol == svc->protocol &&
669 (svc->fwmark ||
670 (ip_vs_addr_equal(svc->af, &dest->vaddr, &svc->addr) &&
671 dest->vport == svc->port))) {
672 /* HIT */
673 return dest;
677 * Try to purge the destination from trash if not referenced
679 if (atomic_read(&dest->refcnt) == 1) {
680 IP_VS_DBG_BUF(3, "Removing destination %u/%s:%u "
681 "from trash\n",
682 dest->vfwmark,
683 IP_VS_DBG_ADDR(svc->af, &dest->addr),
684 ntohs(dest->port));
685 list_del(&dest->n_list);
686 ip_vs_dst_reset(dest);
687 __ip_vs_unbind_svc(dest);
688 free_percpu(dest->stats.cpustats);
689 kfree(dest);
693 return NULL;
698 * Clean up all the destinations in the trash
699 * Called by the ip_vs_control_cleanup()
701 * When the ip_vs_control_clearup is activated by ipvs module exit,
702 * the service tables must have been flushed and all the connections
703 * are expired, and the refcnt of each destination in the trash must
704 * be 1, so we simply release them here.
706 static void ip_vs_trash_cleanup(struct net *net)
708 struct ip_vs_dest *dest, *nxt;
709 struct netns_ipvs *ipvs = net_ipvs(net);
711 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, n_list) {
712 list_del(&dest->n_list);
713 ip_vs_dst_reset(dest);
714 __ip_vs_unbind_svc(dest);
715 free_percpu(dest->stats.cpustats);
716 kfree(dest);
720 static void
721 ip_vs_copy_stats(struct ip_vs_stats_user *dst, struct ip_vs_stats *src)
723 #define IP_VS_SHOW_STATS_COUNTER(c) dst->c = src->ustats.c - src->ustats0.c
725 spin_lock_bh(&src->lock);
727 IP_VS_SHOW_STATS_COUNTER(conns);
728 IP_VS_SHOW_STATS_COUNTER(inpkts);
729 IP_VS_SHOW_STATS_COUNTER(outpkts);
730 IP_VS_SHOW_STATS_COUNTER(inbytes);
731 IP_VS_SHOW_STATS_COUNTER(outbytes);
733 ip_vs_read_estimator(dst, src);
735 spin_unlock_bh(&src->lock);
738 static void
739 ip_vs_zero_stats(struct ip_vs_stats *stats)
741 spin_lock_bh(&stats->lock);
743 /* get current counters as zero point, rates are zeroed */
745 #define IP_VS_ZERO_STATS_COUNTER(c) stats->ustats0.c = stats->ustats.c
747 IP_VS_ZERO_STATS_COUNTER(conns);
748 IP_VS_ZERO_STATS_COUNTER(inpkts);
749 IP_VS_ZERO_STATS_COUNTER(outpkts);
750 IP_VS_ZERO_STATS_COUNTER(inbytes);
751 IP_VS_ZERO_STATS_COUNTER(outbytes);
753 ip_vs_zero_estimator(stats);
755 spin_unlock_bh(&stats->lock);
759 * Update a destination in the given service
761 static void
762 __ip_vs_update_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest,
763 struct ip_vs_dest_user_kern *udest, int add)
765 struct netns_ipvs *ipvs = net_ipvs(svc->net);
766 int conn_flags;
768 /* set the weight and the flags */
769 atomic_set(&dest->weight, udest->weight);
770 conn_flags = udest->conn_flags & IP_VS_CONN_F_DEST_MASK;
771 conn_flags |= IP_VS_CONN_F_INACTIVE;
773 /* set the IP_VS_CONN_F_NOOUTPUT flag if not masquerading/NAT */
774 if ((conn_flags & IP_VS_CONN_F_FWD_MASK) != IP_VS_CONN_F_MASQ) {
775 conn_flags |= IP_VS_CONN_F_NOOUTPUT;
776 } else {
778 * Put the real service in rs_table if not present.
779 * For now only for NAT!
781 write_lock_bh(&ipvs->rs_lock);
782 ip_vs_rs_hash(ipvs, dest);
783 write_unlock_bh(&ipvs->rs_lock);
785 atomic_set(&dest->conn_flags, conn_flags);
787 /* bind the service */
788 if (!dest->svc) {
789 __ip_vs_bind_svc(dest, svc);
790 } else {
791 if (dest->svc != svc) {
792 __ip_vs_unbind_svc(dest);
793 ip_vs_zero_stats(&dest->stats);
794 __ip_vs_bind_svc(dest, svc);
798 /* set the dest status flags */
799 dest->flags |= IP_VS_DEST_F_AVAILABLE;
801 if (udest->u_threshold == 0 || udest->u_threshold > dest->u_threshold)
802 dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
803 dest->u_threshold = udest->u_threshold;
804 dest->l_threshold = udest->l_threshold;
806 spin_lock_bh(&dest->dst_lock);
807 ip_vs_dst_reset(dest);
808 spin_unlock_bh(&dest->dst_lock);
810 if (add)
811 ip_vs_start_estimator(svc->net, &dest->stats);
813 write_lock_bh(&__ip_vs_svc_lock);
815 /* Wait until all other svc users go away */
816 IP_VS_WAIT_WHILE(atomic_read(&svc->usecnt) > 0);
818 if (add) {
819 list_add(&dest->n_list, &svc->destinations);
820 svc->num_dests++;
823 /* call the update_service, because server weight may be changed */
824 if (svc->scheduler->update_service)
825 svc->scheduler->update_service(svc);
827 write_unlock_bh(&__ip_vs_svc_lock);
832 * Create a destination for the given service
834 static int
835 ip_vs_new_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest,
836 struct ip_vs_dest **dest_p)
838 struct ip_vs_dest *dest;
839 unsigned atype;
841 EnterFunction(2);
843 #ifdef CONFIG_IP_VS_IPV6
844 if (svc->af == AF_INET6) {
845 atype = ipv6_addr_type(&udest->addr.in6);
846 if ((!(atype & IPV6_ADDR_UNICAST) ||
847 atype & IPV6_ADDR_LINKLOCAL) &&
848 !__ip_vs_addr_is_local_v6(svc->net, &udest->addr.in6))
849 return -EINVAL;
850 } else
851 #endif
853 atype = inet_addr_type(svc->net, udest->addr.ip);
854 if (atype != RTN_LOCAL && atype != RTN_UNICAST)
855 return -EINVAL;
858 dest = kzalloc(sizeof(struct ip_vs_dest), GFP_KERNEL);
859 if (dest == NULL) {
860 pr_err("%s(): no memory.\n", __func__);
861 return -ENOMEM;
863 dest->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
864 if (!dest->stats.cpustats) {
865 pr_err("%s() alloc_percpu failed\n", __func__);
866 goto err_alloc;
869 dest->af = svc->af;
870 dest->protocol = svc->protocol;
871 dest->vaddr = svc->addr;
872 dest->vport = svc->port;
873 dest->vfwmark = svc->fwmark;
874 ip_vs_addr_copy(svc->af, &dest->addr, &udest->addr);
875 dest->port = udest->port;
877 atomic_set(&dest->activeconns, 0);
878 atomic_set(&dest->inactconns, 0);
879 atomic_set(&dest->persistconns, 0);
880 atomic_set(&dest->refcnt, 1);
882 INIT_LIST_HEAD(&dest->d_list);
883 spin_lock_init(&dest->dst_lock);
884 spin_lock_init(&dest->stats.lock);
885 __ip_vs_update_dest(svc, dest, udest, 1);
887 *dest_p = dest;
889 LeaveFunction(2);
890 return 0;
892 err_alloc:
893 kfree(dest);
894 return -ENOMEM;
899 * Add a destination into an existing service
901 static int
902 ip_vs_add_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
904 struct ip_vs_dest *dest;
905 union nf_inet_addr daddr;
906 __be16 dport = udest->port;
907 int ret;
909 EnterFunction(2);
911 if (udest->weight < 0) {
912 pr_err("%s(): server weight less than zero\n", __func__);
913 return -ERANGE;
916 if (udest->l_threshold > udest->u_threshold) {
917 pr_err("%s(): lower threshold is higher than upper threshold\n",
918 __func__);
919 return -ERANGE;
922 ip_vs_addr_copy(svc->af, &daddr, &udest->addr);
925 * Check if the dest already exists in the list
927 dest = ip_vs_lookup_dest(svc, &daddr, dport);
929 if (dest != NULL) {
930 IP_VS_DBG(1, "%s(): dest already exists\n", __func__);
931 return -EEXIST;
935 * Check if the dest already exists in the trash and
936 * is from the same service
938 dest = ip_vs_trash_get_dest(svc, &daddr, dport);
940 if (dest != NULL) {
941 IP_VS_DBG_BUF(3, "Get destination %s:%u from trash, "
942 "dest->refcnt=%d, service %u/%s:%u\n",
943 IP_VS_DBG_ADDR(svc->af, &daddr), ntohs(dport),
944 atomic_read(&dest->refcnt),
945 dest->vfwmark,
946 IP_VS_DBG_ADDR(svc->af, &dest->vaddr),
947 ntohs(dest->vport));
950 * Get the destination from the trash
952 list_del(&dest->n_list);
954 __ip_vs_update_dest(svc, dest, udest, 1);
955 ret = 0;
956 } else {
958 * Allocate and initialize the dest structure
960 ret = ip_vs_new_dest(svc, udest, &dest);
962 LeaveFunction(2);
964 return ret;
969 * Edit a destination in the given service
971 static int
972 ip_vs_edit_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
974 struct ip_vs_dest *dest;
975 union nf_inet_addr daddr;
976 __be16 dport = udest->port;
978 EnterFunction(2);
980 if (udest->weight < 0) {
981 pr_err("%s(): server weight less than zero\n", __func__);
982 return -ERANGE;
985 if (udest->l_threshold > udest->u_threshold) {
986 pr_err("%s(): lower threshold is higher than upper threshold\n",
987 __func__);
988 return -ERANGE;
991 ip_vs_addr_copy(svc->af, &daddr, &udest->addr);
994 * Lookup the destination list
996 dest = ip_vs_lookup_dest(svc, &daddr, dport);
998 if (dest == NULL) {
999 IP_VS_DBG(1, "%s(): dest doesn't exist\n", __func__);
1000 return -ENOENT;
1003 __ip_vs_update_dest(svc, dest, udest, 0);
1004 LeaveFunction(2);
1006 return 0;
1011 * Delete a destination (must be already unlinked from the service)
1013 static void __ip_vs_del_dest(struct net *net, struct ip_vs_dest *dest)
1015 struct netns_ipvs *ipvs = net_ipvs(net);
1017 ip_vs_stop_estimator(net, &dest->stats);
1020 * Remove it from the d-linked list with the real services.
1022 write_lock_bh(&ipvs->rs_lock);
1023 ip_vs_rs_unhash(dest);
1024 write_unlock_bh(&ipvs->rs_lock);
1027 * Decrease the refcnt of the dest, and free the dest
1028 * if nobody refers to it (refcnt=0). Otherwise, throw
1029 * the destination into the trash.
1031 if (atomic_dec_and_test(&dest->refcnt)) {
1032 IP_VS_DBG_BUF(3, "Removing destination %u/%s:%u\n",
1033 dest->vfwmark,
1034 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1035 ntohs(dest->port));
1036 ip_vs_dst_reset(dest);
1037 /* simply decrease svc->refcnt here, let the caller check
1038 and release the service if nobody refers to it.
1039 Only user context can release destination and service,
1040 and only one user context can update virtual service at a
1041 time, so the operation here is OK */
1042 atomic_dec(&dest->svc->refcnt);
1043 free_percpu(dest->stats.cpustats);
1044 kfree(dest);
1045 } else {
1046 IP_VS_DBG_BUF(3, "Moving dest %s:%u into trash, "
1047 "dest->refcnt=%d\n",
1048 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1049 ntohs(dest->port),
1050 atomic_read(&dest->refcnt));
1051 list_add(&dest->n_list, &ipvs->dest_trash);
1052 atomic_inc(&dest->refcnt);
1058 * Unlink a destination from the given service
1060 static void __ip_vs_unlink_dest(struct ip_vs_service *svc,
1061 struct ip_vs_dest *dest,
1062 int svcupd)
1064 dest->flags &= ~IP_VS_DEST_F_AVAILABLE;
1067 * Remove it from the d-linked destination list.
1069 list_del(&dest->n_list);
1070 svc->num_dests--;
1073 * Call the update_service function of its scheduler
1075 if (svcupd && svc->scheduler->update_service)
1076 svc->scheduler->update_service(svc);
1081 * Delete a destination server in the given service
1083 static int
1084 ip_vs_del_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
1086 struct ip_vs_dest *dest;
1087 __be16 dport = udest->port;
1089 EnterFunction(2);
1091 dest = ip_vs_lookup_dest(svc, &udest->addr, dport);
1093 if (dest == NULL) {
1094 IP_VS_DBG(1, "%s(): destination not found!\n", __func__);
1095 return -ENOENT;
1098 write_lock_bh(&__ip_vs_svc_lock);
1101 * Wait until all other svc users go away.
1103 IP_VS_WAIT_WHILE(atomic_read(&svc->usecnt) > 0);
1106 * Unlink dest from the service
1108 __ip_vs_unlink_dest(svc, dest, 1);
1110 write_unlock_bh(&__ip_vs_svc_lock);
1113 * Delete the destination
1115 __ip_vs_del_dest(svc->net, dest);
1117 LeaveFunction(2);
1119 return 0;
1124 * Add a service into the service hash table
1126 static int
1127 ip_vs_add_service(struct net *net, struct ip_vs_service_user_kern *u,
1128 struct ip_vs_service **svc_p)
1130 int ret = 0;
1131 struct ip_vs_scheduler *sched = NULL;
1132 struct ip_vs_pe *pe = NULL;
1133 struct ip_vs_service *svc = NULL;
1134 struct netns_ipvs *ipvs = net_ipvs(net);
1136 /* increase the module use count */
1137 ip_vs_use_count_inc();
1139 /* Lookup the scheduler by 'u->sched_name' */
1140 sched = ip_vs_scheduler_get(u->sched_name);
1141 if (sched == NULL) {
1142 pr_info("Scheduler module ip_vs_%s not found\n", u->sched_name);
1143 ret = -ENOENT;
1144 goto out_err;
1147 if (u->pe_name && *u->pe_name) {
1148 pe = ip_vs_pe_getbyname(u->pe_name);
1149 if (pe == NULL) {
1150 pr_info("persistence engine module ip_vs_pe_%s "
1151 "not found\n", u->pe_name);
1152 ret = -ENOENT;
1153 goto out_err;
1157 #ifdef CONFIG_IP_VS_IPV6
1158 if (u->af == AF_INET6 && (u->netmask < 1 || u->netmask > 128)) {
1159 ret = -EINVAL;
1160 goto out_err;
1162 #endif
1164 svc = kzalloc(sizeof(struct ip_vs_service), GFP_KERNEL);
1165 if (svc == NULL) {
1166 IP_VS_DBG(1, "%s(): no memory\n", __func__);
1167 ret = -ENOMEM;
1168 goto out_err;
1170 svc->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
1171 if (!svc->stats.cpustats) {
1172 pr_err("%s() alloc_percpu failed\n", __func__);
1173 goto out_err;
1176 /* I'm the first user of the service */
1177 atomic_set(&svc->usecnt, 0);
1178 atomic_set(&svc->refcnt, 0);
1180 svc->af = u->af;
1181 svc->protocol = u->protocol;
1182 ip_vs_addr_copy(svc->af, &svc->addr, &u->addr);
1183 svc->port = u->port;
1184 svc->fwmark = u->fwmark;
1185 svc->flags = u->flags;
1186 svc->timeout = u->timeout * HZ;
1187 svc->netmask = u->netmask;
1188 svc->net = net;
1190 INIT_LIST_HEAD(&svc->destinations);
1191 rwlock_init(&svc->sched_lock);
1192 spin_lock_init(&svc->stats.lock);
1194 /* Bind the scheduler */
1195 ret = ip_vs_bind_scheduler(svc, sched);
1196 if (ret)
1197 goto out_err;
1198 sched = NULL;
1200 /* Bind the ct retriever */
1201 ip_vs_bind_pe(svc, pe);
1202 pe = NULL;
1204 /* Update the virtual service counters */
1205 if (svc->port == FTPPORT)
1206 atomic_inc(&ipvs->ftpsvc_counter);
1207 else if (svc->port == 0)
1208 atomic_inc(&ipvs->nullsvc_counter);
1210 ip_vs_start_estimator(net, &svc->stats);
1212 /* Count only IPv4 services for old get/setsockopt interface */
1213 if (svc->af == AF_INET)
1214 ipvs->num_services++;
1216 /* Hash the service into the service table */
1217 write_lock_bh(&__ip_vs_svc_lock);
1218 ip_vs_svc_hash(svc);
1219 write_unlock_bh(&__ip_vs_svc_lock);
1221 *svc_p = svc;
1222 /* Now there is a service - full throttle */
1223 ipvs->enable = 1;
1224 return 0;
1227 out_err:
1228 if (svc != NULL) {
1229 ip_vs_unbind_scheduler(svc);
1230 if (svc->inc) {
1231 local_bh_disable();
1232 ip_vs_app_inc_put(svc->inc);
1233 local_bh_enable();
1235 if (svc->stats.cpustats)
1236 free_percpu(svc->stats.cpustats);
1237 kfree(svc);
1239 ip_vs_scheduler_put(sched);
1240 ip_vs_pe_put(pe);
1242 /* decrease the module use count */
1243 ip_vs_use_count_dec();
1245 return ret;
1250 * Edit a service and bind it with a new scheduler
1252 static int
1253 ip_vs_edit_service(struct ip_vs_service *svc, struct ip_vs_service_user_kern *u)
1255 struct ip_vs_scheduler *sched, *old_sched;
1256 struct ip_vs_pe *pe = NULL, *old_pe = NULL;
1257 int ret = 0;
1260 * Lookup the scheduler, by 'u->sched_name'
1262 sched = ip_vs_scheduler_get(u->sched_name);
1263 if (sched == NULL) {
1264 pr_info("Scheduler module ip_vs_%s not found\n", u->sched_name);
1265 return -ENOENT;
1267 old_sched = sched;
1269 if (u->pe_name && *u->pe_name) {
1270 pe = ip_vs_pe_getbyname(u->pe_name);
1271 if (pe == NULL) {
1272 pr_info("persistence engine module ip_vs_pe_%s "
1273 "not found\n", u->pe_name);
1274 ret = -ENOENT;
1275 goto out;
1277 old_pe = pe;
1280 #ifdef CONFIG_IP_VS_IPV6
1281 if (u->af == AF_INET6 && (u->netmask < 1 || u->netmask > 128)) {
1282 ret = -EINVAL;
1283 goto out;
1285 #endif
1287 write_lock_bh(&__ip_vs_svc_lock);
1290 * Wait until all other svc users go away.
1292 IP_VS_WAIT_WHILE(atomic_read(&svc->usecnt) > 0);
1295 * Set the flags and timeout value
1297 svc->flags = u->flags | IP_VS_SVC_F_HASHED;
1298 svc->timeout = u->timeout * HZ;
1299 svc->netmask = u->netmask;
1301 old_sched = svc->scheduler;
1302 if (sched != old_sched) {
1304 * Unbind the old scheduler
1306 if ((ret = ip_vs_unbind_scheduler(svc))) {
1307 old_sched = sched;
1308 goto out_unlock;
1312 * Bind the new scheduler
1314 if ((ret = ip_vs_bind_scheduler(svc, sched))) {
1316 * If ip_vs_bind_scheduler fails, restore the old
1317 * scheduler.
1318 * The main reason of failure is out of memory.
1320 * The question is if the old scheduler can be
1321 * restored all the time. TODO: if it cannot be
1322 * restored some time, we must delete the service,
1323 * otherwise the system may crash.
1325 ip_vs_bind_scheduler(svc, old_sched);
1326 old_sched = sched;
1327 goto out_unlock;
1331 old_pe = svc->pe;
1332 if (pe != old_pe) {
1333 ip_vs_unbind_pe(svc);
1334 ip_vs_bind_pe(svc, pe);
1337 out_unlock:
1338 write_unlock_bh(&__ip_vs_svc_lock);
1339 out:
1340 ip_vs_scheduler_put(old_sched);
1341 ip_vs_pe_put(old_pe);
1342 return ret;
1347 * Delete a service from the service list
1348 * - The service must be unlinked, unlocked and not referenced!
1349 * - We are called under _bh lock
1351 static void __ip_vs_del_service(struct ip_vs_service *svc)
1353 struct ip_vs_dest *dest, *nxt;
1354 struct ip_vs_scheduler *old_sched;
1355 struct ip_vs_pe *old_pe;
1356 struct netns_ipvs *ipvs = net_ipvs(svc->net);
1358 pr_info("%s: enter\n", __func__);
1360 /* Count only IPv4 services for old get/setsockopt interface */
1361 if (svc->af == AF_INET)
1362 ipvs->num_services--;
1364 ip_vs_stop_estimator(svc->net, &svc->stats);
1366 /* Unbind scheduler */
1367 old_sched = svc->scheduler;
1368 ip_vs_unbind_scheduler(svc);
1369 ip_vs_scheduler_put(old_sched);
1371 /* Unbind persistence engine */
1372 old_pe = svc->pe;
1373 ip_vs_unbind_pe(svc);
1374 ip_vs_pe_put(old_pe);
1376 /* Unbind app inc */
1377 if (svc->inc) {
1378 ip_vs_app_inc_put(svc->inc);
1379 svc->inc = NULL;
1383 * Unlink the whole destination list
1385 list_for_each_entry_safe(dest, nxt, &svc->destinations, n_list) {
1386 __ip_vs_unlink_dest(svc, dest, 0);
1387 __ip_vs_del_dest(svc->net, dest);
1391 * Update the virtual service counters
1393 if (svc->port == FTPPORT)
1394 atomic_dec(&ipvs->ftpsvc_counter);
1395 else if (svc->port == 0)
1396 atomic_dec(&ipvs->nullsvc_counter);
1399 * Free the service if nobody refers to it
1401 if (atomic_read(&svc->refcnt) == 0) {
1402 IP_VS_DBG_BUF(3, "Removing service %u/%s:%u usecnt=%d\n",
1403 svc->fwmark,
1404 IP_VS_DBG_ADDR(svc->af, &svc->addr),
1405 ntohs(svc->port), atomic_read(&svc->usecnt));
1406 free_percpu(svc->stats.cpustats);
1407 kfree(svc);
1410 /* decrease the module use count */
1411 ip_vs_use_count_dec();
1415 * Unlink a service from list and try to delete it if its refcnt reached 0
1417 static void ip_vs_unlink_service(struct ip_vs_service *svc)
1420 * Unhash it from the service table
1422 write_lock_bh(&__ip_vs_svc_lock);
1424 ip_vs_svc_unhash(svc);
1427 * Wait until all the svc users go away.
1429 IP_VS_WAIT_WHILE(atomic_read(&svc->usecnt) > 0);
1431 __ip_vs_del_service(svc);
1433 write_unlock_bh(&__ip_vs_svc_lock);
1437 * Delete a service from the service list
1439 static int ip_vs_del_service(struct ip_vs_service *svc)
1441 if (svc == NULL)
1442 return -EEXIST;
1443 ip_vs_unlink_service(svc);
1445 return 0;
1450 * Flush all the virtual services
1452 static int ip_vs_flush(struct net *net)
1454 int idx;
1455 struct ip_vs_service *svc, *nxt;
1458 * Flush the service table hashed by <netns,protocol,addr,port>
1460 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1461 list_for_each_entry_safe(svc, nxt, &ip_vs_svc_table[idx],
1462 s_list) {
1463 if (net_eq(svc->net, net))
1464 ip_vs_unlink_service(svc);
1469 * Flush the service table hashed by fwmark
1471 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1472 list_for_each_entry_safe(svc, nxt,
1473 &ip_vs_svc_fwm_table[idx], f_list) {
1474 if (net_eq(svc->net, net))
1475 ip_vs_unlink_service(svc);
1479 return 0;
1483 * Delete service by {netns} in the service table.
1484 * Called by __ip_vs_cleanup()
1486 void __ip_vs_service_cleanup(struct net *net)
1488 EnterFunction(2);
1489 /* Check for "full" addressed entries */
1490 mutex_lock(&__ip_vs_mutex);
1491 ip_vs_flush(net);
1492 mutex_unlock(&__ip_vs_mutex);
1493 LeaveFunction(2);
1496 * Release dst hold by dst_cache
1498 static inline void
1499 __ip_vs_dev_reset(struct ip_vs_dest *dest, struct net_device *dev)
1501 spin_lock_bh(&dest->dst_lock);
1502 if (dest->dst_cache && dest->dst_cache->dev == dev) {
1503 IP_VS_DBG_BUF(3, "Reset dev:%s dest %s:%u ,dest->refcnt=%d\n",
1504 dev->name,
1505 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1506 ntohs(dest->port),
1507 atomic_read(&dest->refcnt));
1508 ip_vs_dst_reset(dest);
1510 spin_unlock_bh(&dest->dst_lock);
1514 * Netdev event receiver
1515 * Currently only NETDEV_UNREGISTER is handled, i.e. if we hold a reference to
1516 * a device that is "unregister" it must be released.
1518 static int ip_vs_dst_event(struct notifier_block *this, unsigned long event,
1519 void *ptr)
1521 struct net_device *dev = ptr;
1522 struct net *net = dev_net(dev);
1523 struct ip_vs_service *svc;
1524 struct ip_vs_dest *dest;
1525 unsigned int idx;
1527 if (event != NETDEV_UNREGISTER)
1528 return NOTIFY_DONE;
1529 IP_VS_DBG(3, "%s() dev=%s\n", __func__, dev->name);
1530 EnterFunction(2);
1531 mutex_lock(&__ip_vs_mutex);
1532 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1533 list_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
1534 if (net_eq(svc->net, net)) {
1535 list_for_each_entry(dest, &svc->destinations,
1536 n_list) {
1537 __ip_vs_dev_reset(dest, dev);
1542 list_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
1543 if (net_eq(svc->net, net)) {
1544 list_for_each_entry(dest, &svc->destinations,
1545 n_list) {
1546 __ip_vs_dev_reset(dest, dev);
1553 list_for_each_entry(dest, &net_ipvs(net)->dest_trash, n_list) {
1554 __ip_vs_dev_reset(dest, dev);
1556 mutex_unlock(&__ip_vs_mutex);
1557 LeaveFunction(2);
1558 return NOTIFY_DONE;
1562 * Zero counters in a service or all services
1564 static int ip_vs_zero_service(struct ip_vs_service *svc)
1566 struct ip_vs_dest *dest;
1568 write_lock_bh(&__ip_vs_svc_lock);
1569 list_for_each_entry(dest, &svc->destinations, n_list) {
1570 ip_vs_zero_stats(&dest->stats);
1572 ip_vs_zero_stats(&svc->stats);
1573 write_unlock_bh(&__ip_vs_svc_lock);
1574 return 0;
1577 static int ip_vs_zero_all(struct net *net)
1579 int idx;
1580 struct ip_vs_service *svc;
1582 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1583 list_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
1584 if (net_eq(svc->net, net))
1585 ip_vs_zero_service(svc);
1589 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1590 list_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
1591 if (net_eq(svc->net, net))
1592 ip_vs_zero_service(svc);
1596 ip_vs_zero_stats(&net_ipvs(net)->tot_stats);
1597 return 0;
1600 #ifdef CONFIG_SYSCTL
1601 static int
1602 proc_do_defense_mode(ctl_table *table, int write,
1603 void __user *buffer, size_t *lenp, loff_t *ppos)
1605 struct net *net = current->nsproxy->net_ns;
1606 int *valp = table->data;
1607 int val = *valp;
1608 int rc;
1610 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1611 if (write && (*valp != val)) {
1612 if ((*valp < 0) || (*valp > 3)) {
1613 /* Restore the correct value */
1614 *valp = val;
1615 } else {
1616 update_defense_level(net_ipvs(net));
1619 return rc;
1622 static int
1623 proc_do_sync_threshold(ctl_table *table, int write,
1624 void __user *buffer, size_t *lenp, loff_t *ppos)
1626 int *valp = table->data;
1627 int val[2];
1628 int rc;
1630 /* backup the value first */
1631 memcpy(val, valp, sizeof(val));
1633 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1634 if (write && (valp[0] < 0 || valp[1] < 0 || valp[0] >= valp[1])) {
1635 /* Restore the correct value */
1636 memcpy(valp, val, sizeof(val));
1638 return rc;
1641 static int
1642 proc_do_sync_mode(ctl_table *table, int write,
1643 void __user *buffer, size_t *lenp, loff_t *ppos)
1645 int *valp = table->data;
1646 int val = *valp;
1647 int rc;
1649 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1650 if (write && (*valp != val)) {
1651 if ((*valp < 0) || (*valp > 1)) {
1652 /* Restore the correct value */
1653 *valp = val;
1654 } else {
1655 struct net *net = current->nsproxy->net_ns;
1656 ip_vs_sync_switch_mode(net, val);
1659 return rc;
1663 * IPVS sysctl table (under the /proc/sys/net/ipv4/vs/)
1664 * Do not change order or insert new entries without
1665 * align with netns init in __ip_vs_control_init()
1668 static struct ctl_table vs_vars[] = {
1670 .procname = "amemthresh",
1671 .maxlen = sizeof(int),
1672 .mode = 0644,
1673 .proc_handler = proc_dointvec,
1676 .procname = "am_droprate",
1677 .maxlen = sizeof(int),
1678 .mode = 0644,
1679 .proc_handler = proc_dointvec,
1682 .procname = "drop_entry",
1683 .maxlen = sizeof(int),
1684 .mode = 0644,
1685 .proc_handler = proc_do_defense_mode,
1688 .procname = "drop_packet",
1689 .maxlen = sizeof(int),
1690 .mode = 0644,
1691 .proc_handler = proc_do_defense_mode,
1693 #ifdef CONFIG_IP_VS_NFCT
1695 .procname = "conntrack",
1696 .maxlen = sizeof(int),
1697 .mode = 0644,
1698 .proc_handler = &proc_dointvec,
1700 #endif
1702 .procname = "secure_tcp",
1703 .maxlen = sizeof(int),
1704 .mode = 0644,
1705 .proc_handler = proc_do_defense_mode,
1708 .procname = "snat_reroute",
1709 .maxlen = sizeof(int),
1710 .mode = 0644,
1711 .proc_handler = &proc_dointvec,
1714 .procname = "sync_version",
1715 .maxlen = sizeof(int),
1716 .mode = 0644,
1717 .proc_handler = &proc_do_sync_mode,
1720 .procname = "cache_bypass",
1721 .maxlen = sizeof(int),
1722 .mode = 0644,
1723 .proc_handler = proc_dointvec,
1726 .procname = "expire_nodest_conn",
1727 .maxlen = sizeof(int),
1728 .mode = 0644,
1729 .proc_handler = proc_dointvec,
1732 .procname = "expire_quiescent_template",
1733 .maxlen = sizeof(int),
1734 .mode = 0644,
1735 .proc_handler = proc_dointvec,
1738 .procname = "sync_threshold",
1739 .maxlen =
1740 sizeof(((struct netns_ipvs *)0)->sysctl_sync_threshold),
1741 .mode = 0644,
1742 .proc_handler = proc_do_sync_threshold,
1745 .procname = "nat_icmp_send",
1746 .maxlen = sizeof(int),
1747 .mode = 0644,
1748 .proc_handler = proc_dointvec,
1750 #ifdef CONFIG_IP_VS_DEBUG
1752 .procname = "debug_level",
1753 .data = &sysctl_ip_vs_debug_level,
1754 .maxlen = sizeof(int),
1755 .mode = 0644,
1756 .proc_handler = proc_dointvec,
1758 #endif
1759 #if 0
1761 .procname = "timeout_established",
1762 .data = &vs_timeout_table_dos.timeout[IP_VS_S_ESTABLISHED],
1763 .maxlen = sizeof(int),
1764 .mode = 0644,
1765 .proc_handler = proc_dointvec_jiffies,
1768 .procname = "timeout_synsent",
1769 .data = &vs_timeout_table_dos.timeout[IP_VS_S_SYN_SENT],
1770 .maxlen = sizeof(int),
1771 .mode = 0644,
1772 .proc_handler = proc_dointvec_jiffies,
1775 .procname = "timeout_synrecv",
1776 .data = &vs_timeout_table_dos.timeout[IP_VS_S_SYN_RECV],
1777 .maxlen = sizeof(int),
1778 .mode = 0644,
1779 .proc_handler = proc_dointvec_jiffies,
1782 .procname = "timeout_finwait",
1783 .data = &vs_timeout_table_dos.timeout[IP_VS_S_FIN_WAIT],
1784 .maxlen = sizeof(int),
1785 .mode = 0644,
1786 .proc_handler = proc_dointvec_jiffies,
1789 .procname = "timeout_timewait",
1790 .data = &vs_timeout_table_dos.timeout[IP_VS_S_TIME_WAIT],
1791 .maxlen = sizeof(int),
1792 .mode = 0644,
1793 .proc_handler = proc_dointvec_jiffies,
1796 .procname = "timeout_close",
1797 .data = &vs_timeout_table_dos.timeout[IP_VS_S_CLOSE],
1798 .maxlen = sizeof(int),
1799 .mode = 0644,
1800 .proc_handler = proc_dointvec_jiffies,
1803 .procname = "timeout_closewait",
1804 .data = &vs_timeout_table_dos.timeout[IP_VS_S_CLOSE_WAIT],
1805 .maxlen = sizeof(int),
1806 .mode = 0644,
1807 .proc_handler = proc_dointvec_jiffies,
1810 .procname = "timeout_lastack",
1811 .data = &vs_timeout_table_dos.timeout[IP_VS_S_LAST_ACK],
1812 .maxlen = sizeof(int),
1813 .mode = 0644,
1814 .proc_handler = proc_dointvec_jiffies,
1817 .procname = "timeout_listen",
1818 .data = &vs_timeout_table_dos.timeout[IP_VS_S_LISTEN],
1819 .maxlen = sizeof(int),
1820 .mode = 0644,
1821 .proc_handler = proc_dointvec_jiffies,
1824 .procname = "timeout_synack",
1825 .data = &vs_timeout_table_dos.timeout[IP_VS_S_SYNACK],
1826 .maxlen = sizeof(int),
1827 .mode = 0644,
1828 .proc_handler = proc_dointvec_jiffies,
1831 .procname = "timeout_udp",
1832 .data = &vs_timeout_table_dos.timeout[IP_VS_S_UDP],
1833 .maxlen = sizeof(int),
1834 .mode = 0644,
1835 .proc_handler = proc_dointvec_jiffies,
1838 .procname = "timeout_icmp",
1839 .data = &vs_timeout_table_dos.timeout[IP_VS_S_ICMP],
1840 .maxlen = sizeof(int),
1841 .mode = 0644,
1842 .proc_handler = proc_dointvec_jiffies,
1844 #endif
1848 const struct ctl_path net_vs_ctl_path[] = {
1849 { .procname = "net", },
1850 { .procname = "ipv4", },
1851 { .procname = "vs", },
1854 EXPORT_SYMBOL_GPL(net_vs_ctl_path);
1855 #endif
1857 #ifdef CONFIG_PROC_FS
1859 struct ip_vs_iter {
1860 struct seq_net_private p; /* Do not move this, netns depends upon it*/
1861 struct list_head *table;
1862 int bucket;
1866 * Write the contents of the VS rule table to a PROCfs file.
1867 * (It is kept just for backward compatibility)
1869 static inline const char *ip_vs_fwd_name(unsigned flags)
1871 switch (flags & IP_VS_CONN_F_FWD_MASK) {
1872 case IP_VS_CONN_F_LOCALNODE:
1873 return "Local";
1874 case IP_VS_CONN_F_TUNNEL:
1875 return "Tunnel";
1876 case IP_VS_CONN_F_DROUTE:
1877 return "Route";
1878 default:
1879 return "Masq";
1884 /* Get the Nth entry in the two lists */
1885 static struct ip_vs_service *ip_vs_info_array(struct seq_file *seq, loff_t pos)
1887 struct net *net = seq_file_net(seq);
1888 struct ip_vs_iter *iter = seq->private;
1889 int idx;
1890 struct ip_vs_service *svc;
1892 /* look in hash by protocol */
1893 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1894 list_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
1895 if (net_eq(svc->net, net) && pos-- == 0) {
1896 iter->table = ip_vs_svc_table;
1897 iter->bucket = idx;
1898 return svc;
1903 /* keep looking in fwmark */
1904 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
1905 list_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
1906 if (net_eq(svc->net, net) && pos-- == 0) {
1907 iter->table = ip_vs_svc_fwm_table;
1908 iter->bucket = idx;
1909 return svc;
1914 return NULL;
1917 static void *ip_vs_info_seq_start(struct seq_file *seq, loff_t *pos)
1918 __acquires(__ip_vs_svc_lock)
1921 read_lock_bh(&__ip_vs_svc_lock);
1922 return *pos ? ip_vs_info_array(seq, *pos - 1) : SEQ_START_TOKEN;
1926 static void *ip_vs_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1928 struct list_head *e;
1929 struct ip_vs_iter *iter;
1930 struct ip_vs_service *svc;
1932 ++*pos;
1933 if (v == SEQ_START_TOKEN)
1934 return ip_vs_info_array(seq,0);
1936 svc = v;
1937 iter = seq->private;
1939 if (iter->table == ip_vs_svc_table) {
1940 /* next service in table hashed by protocol */
1941 if ((e = svc->s_list.next) != &ip_vs_svc_table[iter->bucket])
1942 return list_entry(e, struct ip_vs_service, s_list);
1945 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
1946 list_for_each_entry(svc,&ip_vs_svc_table[iter->bucket],
1947 s_list) {
1948 return svc;
1952 iter->table = ip_vs_svc_fwm_table;
1953 iter->bucket = -1;
1954 goto scan_fwmark;
1957 /* next service in hashed by fwmark */
1958 if ((e = svc->f_list.next) != &ip_vs_svc_fwm_table[iter->bucket])
1959 return list_entry(e, struct ip_vs_service, f_list);
1961 scan_fwmark:
1962 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
1963 list_for_each_entry(svc, &ip_vs_svc_fwm_table[iter->bucket],
1964 f_list)
1965 return svc;
1968 return NULL;
1971 static void ip_vs_info_seq_stop(struct seq_file *seq, void *v)
1972 __releases(__ip_vs_svc_lock)
1974 read_unlock_bh(&__ip_vs_svc_lock);
1978 static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
1980 if (v == SEQ_START_TOKEN) {
1981 seq_printf(seq,
1982 "IP Virtual Server version %d.%d.%d (size=%d)\n",
1983 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
1984 seq_puts(seq,
1985 "Prot LocalAddress:Port Scheduler Flags\n");
1986 seq_puts(seq,
1987 " -> RemoteAddress:Port Forward Weight ActiveConn InActConn\n");
1988 } else {
1989 const struct ip_vs_service *svc = v;
1990 const struct ip_vs_iter *iter = seq->private;
1991 const struct ip_vs_dest *dest;
1993 if (iter->table == ip_vs_svc_table) {
1994 #ifdef CONFIG_IP_VS_IPV6
1995 if (svc->af == AF_INET6)
1996 seq_printf(seq, "%s [%pI6]:%04X %s ",
1997 ip_vs_proto_name(svc->protocol),
1998 &svc->addr.in6,
1999 ntohs(svc->port),
2000 svc->scheduler->name);
2001 else
2002 #endif
2003 seq_printf(seq, "%s %08X:%04X %s %s ",
2004 ip_vs_proto_name(svc->protocol),
2005 ntohl(svc->addr.ip),
2006 ntohs(svc->port),
2007 svc->scheduler->name,
2008 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
2009 } else {
2010 seq_printf(seq, "FWM %08X %s %s",
2011 svc->fwmark, svc->scheduler->name,
2012 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
2015 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
2016 seq_printf(seq, "persistent %d %08X\n",
2017 svc->timeout,
2018 ntohl(svc->netmask));
2019 else
2020 seq_putc(seq, '\n');
2022 list_for_each_entry(dest, &svc->destinations, n_list) {
2023 #ifdef CONFIG_IP_VS_IPV6
2024 if (dest->af == AF_INET6)
2025 seq_printf(seq,
2026 " -> [%pI6]:%04X"
2027 " %-7s %-6d %-10d %-10d\n",
2028 &dest->addr.in6,
2029 ntohs(dest->port),
2030 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
2031 atomic_read(&dest->weight),
2032 atomic_read(&dest->activeconns),
2033 atomic_read(&dest->inactconns));
2034 else
2035 #endif
2036 seq_printf(seq,
2037 " -> %08X:%04X "
2038 "%-7s %-6d %-10d %-10d\n",
2039 ntohl(dest->addr.ip),
2040 ntohs(dest->port),
2041 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
2042 atomic_read(&dest->weight),
2043 atomic_read(&dest->activeconns),
2044 atomic_read(&dest->inactconns));
2048 return 0;
2051 static const struct seq_operations ip_vs_info_seq_ops = {
2052 .start = ip_vs_info_seq_start,
2053 .next = ip_vs_info_seq_next,
2054 .stop = ip_vs_info_seq_stop,
2055 .show = ip_vs_info_seq_show,
2058 static int ip_vs_info_open(struct inode *inode, struct file *file)
2060 return seq_open_net(inode, file, &ip_vs_info_seq_ops,
2061 sizeof(struct ip_vs_iter));
2064 static const struct file_operations ip_vs_info_fops = {
2065 .owner = THIS_MODULE,
2066 .open = ip_vs_info_open,
2067 .read = seq_read,
2068 .llseek = seq_lseek,
2069 .release = seq_release_net,
2072 static int ip_vs_stats_show(struct seq_file *seq, void *v)
2074 struct net *net = seq_file_single_net(seq);
2075 struct ip_vs_stats_user show;
2077 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2078 seq_puts(seq,
2079 " Total Incoming Outgoing Incoming Outgoing\n");
2080 seq_printf(seq,
2081 " Conns Packets Packets Bytes Bytes\n");
2083 ip_vs_copy_stats(&show, &net_ipvs(net)->tot_stats);
2084 seq_printf(seq, "%8X %8X %8X %16LX %16LX\n\n", show.conns,
2085 show.inpkts, show.outpkts,
2086 (unsigned long long) show.inbytes,
2087 (unsigned long long) show.outbytes);
2089 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2090 seq_puts(seq,
2091 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
2092 seq_printf(seq, "%8X %8X %8X %16X %16X\n",
2093 show.cps, show.inpps, show.outpps,
2094 show.inbps, show.outbps);
2096 return 0;
2099 static int ip_vs_stats_seq_open(struct inode *inode, struct file *file)
2101 return single_open_net(inode, file, ip_vs_stats_show);
2104 static const struct file_operations ip_vs_stats_fops = {
2105 .owner = THIS_MODULE,
2106 .open = ip_vs_stats_seq_open,
2107 .read = seq_read,
2108 .llseek = seq_lseek,
2109 .release = single_release_net,
2112 static int ip_vs_stats_percpu_show(struct seq_file *seq, void *v)
2114 struct net *net = seq_file_single_net(seq);
2115 struct ip_vs_stats *tot_stats = &net_ipvs(net)->tot_stats;
2116 struct ip_vs_cpu_stats *cpustats = tot_stats->cpustats;
2117 struct ip_vs_stats_user rates;
2118 int i;
2120 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2121 seq_puts(seq,
2122 " Total Incoming Outgoing Incoming Outgoing\n");
2123 seq_printf(seq,
2124 "CPU Conns Packets Packets Bytes Bytes\n");
2126 for_each_possible_cpu(i) {
2127 struct ip_vs_cpu_stats *u = per_cpu_ptr(cpustats, i);
2128 unsigned int start;
2129 __u64 inbytes, outbytes;
2131 do {
2132 start = u64_stats_fetch_begin_bh(&u->syncp);
2133 inbytes = u->ustats.inbytes;
2134 outbytes = u->ustats.outbytes;
2135 } while (u64_stats_fetch_retry_bh(&u->syncp, start));
2137 seq_printf(seq, "%3X %8X %8X %8X %16LX %16LX\n",
2138 i, u->ustats.conns, u->ustats.inpkts,
2139 u->ustats.outpkts, (__u64)inbytes,
2140 (__u64)outbytes);
2143 spin_lock_bh(&tot_stats->lock);
2145 seq_printf(seq, " ~ %8X %8X %8X %16LX %16LX\n\n",
2146 tot_stats->ustats.conns, tot_stats->ustats.inpkts,
2147 tot_stats->ustats.outpkts,
2148 (unsigned long long) tot_stats->ustats.inbytes,
2149 (unsigned long long) tot_stats->ustats.outbytes);
2151 ip_vs_read_estimator(&rates, tot_stats);
2153 spin_unlock_bh(&tot_stats->lock);
2155 /* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2156 seq_puts(seq,
2157 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
2158 seq_printf(seq, " %8X %8X %8X %16X %16X\n",
2159 rates.cps,
2160 rates.inpps,
2161 rates.outpps,
2162 rates.inbps,
2163 rates.outbps);
2165 return 0;
2168 static int ip_vs_stats_percpu_seq_open(struct inode *inode, struct file *file)
2170 return single_open_net(inode, file, ip_vs_stats_percpu_show);
2173 static const struct file_operations ip_vs_stats_percpu_fops = {
2174 .owner = THIS_MODULE,
2175 .open = ip_vs_stats_percpu_seq_open,
2176 .read = seq_read,
2177 .llseek = seq_lseek,
2178 .release = single_release_net,
2180 #endif
2183 * Set timeout values for tcp tcpfin udp in the timeout_table.
2185 static int ip_vs_set_timeout(struct net *net, struct ip_vs_timeout_user *u)
2187 #if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
2188 struct ip_vs_proto_data *pd;
2189 #endif
2191 IP_VS_DBG(2, "Setting timeout tcp:%d tcpfin:%d udp:%d\n",
2192 u->tcp_timeout,
2193 u->tcp_fin_timeout,
2194 u->udp_timeout);
2196 #ifdef CONFIG_IP_VS_PROTO_TCP
2197 if (u->tcp_timeout) {
2198 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2199 pd->timeout_table[IP_VS_TCP_S_ESTABLISHED]
2200 = u->tcp_timeout * HZ;
2203 if (u->tcp_fin_timeout) {
2204 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2205 pd->timeout_table[IP_VS_TCP_S_FIN_WAIT]
2206 = u->tcp_fin_timeout * HZ;
2208 #endif
2210 #ifdef CONFIG_IP_VS_PROTO_UDP
2211 if (u->udp_timeout) {
2212 pd = ip_vs_proto_data_get(net, IPPROTO_UDP);
2213 pd->timeout_table[IP_VS_UDP_S_NORMAL]
2214 = u->udp_timeout * HZ;
2216 #endif
2217 return 0;
2221 #define SET_CMDID(cmd) (cmd - IP_VS_BASE_CTL)
2222 #define SERVICE_ARG_LEN (sizeof(struct ip_vs_service_user))
2223 #define SVCDEST_ARG_LEN (sizeof(struct ip_vs_service_user) + \
2224 sizeof(struct ip_vs_dest_user))
2225 #define TIMEOUT_ARG_LEN (sizeof(struct ip_vs_timeout_user))
2226 #define DAEMON_ARG_LEN (sizeof(struct ip_vs_daemon_user))
2227 #define MAX_ARG_LEN SVCDEST_ARG_LEN
2229 static const unsigned char set_arglen[SET_CMDID(IP_VS_SO_SET_MAX)+1] = {
2230 [SET_CMDID(IP_VS_SO_SET_ADD)] = SERVICE_ARG_LEN,
2231 [SET_CMDID(IP_VS_SO_SET_EDIT)] = SERVICE_ARG_LEN,
2232 [SET_CMDID(IP_VS_SO_SET_DEL)] = SERVICE_ARG_LEN,
2233 [SET_CMDID(IP_VS_SO_SET_FLUSH)] = 0,
2234 [SET_CMDID(IP_VS_SO_SET_ADDDEST)] = SVCDEST_ARG_LEN,
2235 [SET_CMDID(IP_VS_SO_SET_DELDEST)] = SVCDEST_ARG_LEN,
2236 [SET_CMDID(IP_VS_SO_SET_EDITDEST)] = SVCDEST_ARG_LEN,
2237 [SET_CMDID(IP_VS_SO_SET_TIMEOUT)] = TIMEOUT_ARG_LEN,
2238 [SET_CMDID(IP_VS_SO_SET_STARTDAEMON)] = DAEMON_ARG_LEN,
2239 [SET_CMDID(IP_VS_SO_SET_STOPDAEMON)] = DAEMON_ARG_LEN,
2240 [SET_CMDID(IP_VS_SO_SET_ZERO)] = SERVICE_ARG_LEN,
2243 static void ip_vs_copy_usvc_compat(struct ip_vs_service_user_kern *usvc,
2244 struct ip_vs_service_user *usvc_compat)
2246 memset(usvc, 0, sizeof(*usvc));
2248 usvc->af = AF_INET;
2249 usvc->protocol = usvc_compat->protocol;
2250 usvc->addr.ip = usvc_compat->addr;
2251 usvc->port = usvc_compat->port;
2252 usvc->fwmark = usvc_compat->fwmark;
2254 /* Deep copy of sched_name is not needed here */
2255 usvc->sched_name = usvc_compat->sched_name;
2257 usvc->flags = usvc_compat->flags;
2258 usvc->timeout = usvc_compat->timeout;
2259 usvc->netmask = usvc_compat->netmask;
2262 static void ip_vs_copy_udest_compat(struct ip_vs_dest_user_kern *udest,
2263 struct ip_vs_dest_user *udest_compat)
2265 memset(udest, 0, sizeof(*udest));
2267 udest->addr.ip = udest_compat->addr;
2268 udest->port = udest_compat->port;
2269 udest->conn_flags = udest_compat->conn_flags;
2270 udest->weight = udest_compat->weight;
2271 udest->u_threshold = udest_compat->u_threshold;
2272 udest->l_threshold = udest_compat->l_threshold;
2275 static int
2276 do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2278 struct net *net = sock_net(sk);
2279 int ret;
2280 unsigned char arg[MAX_ARG_LEN];
2281 struct ip_vs_service_user *usvc_compat;
2282 struct ip_vs_service_user_kern usvc;
2283 struct ip_vs_service *svc;
2284 struct ip_vs_dest_user *udest_compat;
2285 struct ip_vs_dest_user_kern udest;
2287 if (!capable(CAP_NET_ADMIN))
2288 return -EPERM;
2290 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX)
2291 return -EINVAL;
2292 if (len < 0 || len > MAX_ARG_LEN)
2293 return -EINVAL;
2294 if (len != set_arglen[SET_CMDID(cmd)]) {
2295 pr_err("set_ctl: len %u != %u\n",
2296 len, set_arglen[SET_CMDID(cmd)]);
2297 return -EINVAL;
2300 if (copy_from_user(arg, user, len) != 0)
2301 return -EFAULT;
2303 /* increase the module use count */
2304 ip_vs_use_count_inc();
2306 if (mutex_lock_interruptible(&__ip_vs_mutex)) {
2307 ret = -ERESTARTSYS;
2308 goto out_dec;
2311 if (cmd == IP_VS_SO_SET_FLUSH) {
2312 /* Flush the virtual service */
2313 ret = ip_vs_flush(net);
2314 goto out_unlock;
2315 } else if (cmd == IP_VS_SO_SET_TIMEOUT) {
2316 /* Set timeout values for (tcp tcpfin udp) */
2317 ret = ip_vs_set_timeout(net, (struct ip_vs_timeout_user *)arg);
2318 goto out_unlock;
2319 } else if (cmd == IP_VS_SO_SET_STARTDAEMON) {
2320 struct ip_vs_daemon_user *dm = (struct ip_vs_daemon_user *)arg;
2321 ret = start_sync_thread(net, dm->state, dm->mcast_ifn,
2322 dm->syncid);
2323 goto out_unlock;
2324 } else if (cmd == IP_VS_SO_SET_STOPDAEMON) {
2325 struct ip_vs_daemon_user *dm = (struct ip_vs_daemon_user *)arg;
2326 ret = stop_sync_thread(net, dm->state);
2327 goto out_unlock;
2330 usvc_compat = (struct ip_vs_service_user *)arg;
2331 udest_compat = (struct ip_vs_dest_user *)(usvc_compat + 1);
2333 /* We only use the new structs internally, so copy userspace compat
2334 * structs to extended internal versions */
2335 ip_vs_copy_usvc_compat(&usvc, usvc_compat);
2336 ip_vs_copy_udest_compat(&udest, udest_compat);
2338 if (cmd == IP_VS_SO_SET_ZERO) {
2339 /* if no service address is set, zero counters in all */
2340 if (!usvc.fwmark && !usvc.addr.ip && !usvc.port) {
2341 ret = ip_vs_zero_all(net);
2342 goto out_unlock;
2346 /* Check for valid protocol: TCP or UDP or SCTP, even for fwmark!=0 */
2347 if (usvc.protocol != IPPROTO_TCP && usvc.protocol != IPPROTO_UDP &&
2348 usvc.protocol != IPPROTO_SCTP) {
2349 pr_err("set_ctl: invalid protocol: %d %pI4:%d %s\n",
2350 usvc.protocol, &usvc.addr.ip,
2351 ntohs(usvc.port), usvc.sched_name);
2352 ret = -EFAULT;
2353 goto out_unlock;
2356 /* Lookup the exact service by <protocol, addr, port> or fwmark */
2357 if (usvc.fwmark == 0)
2358 svc = __ip_vs_service_find(net, usvc.af, usvc.protocol,
2359 &usvc.addr, usvc.port);
2360 else
2361 svc = __ip_vs_svc_fwm_find(net, usvc.af, usvc.fwmark);
2363 if (cmd != IP_VS_SO_SET_ADD
2364 && (svc == NULL || svc->protocol != usvc.protocol)) {
2365 ret = -ESRCH;
2366 goto out_unlock;
2369 switch (cmd) {
2370 case IP_VS_SO_SET_ADD:
2371 if (svc != NULL)
2372 ret = -EEXIST;
2373 else
2374 ret = ip_vs_add_service(net, &usvc, &svc);
2375 break;
2376 case IP_VS_SO_SET_EDIT:
2377 ret = ip_vs_edit_service(svc, &usvc);
2378 break;
2379 case IP_VS_SO_SET_DEL:
2380 ret = ip_vs_del_service(svc);
2381 if (!ret)
2382 goto out_unlock;
2383 break;
2384 case IP_VS_SO_SET_ZERO:
2385 ret = ip_vs_zero_service(svc);
2386 break;
2387 case IP_VS_SO_SET_ADDDEST:
2388 ret = ip_vs_add_dest(svc, &udest);
2389 break;
2390 case IP_VS_SO_SET_EDITDEST:
2391 ret = ip_vs_edit_dest(svc, &udest);
2392 break;
2393 case IP_VS_SO_SET_DELDEST:
2394 ret = ip_vs_del_dest(svc, &udest);
2395 break;
2396 default:
2397 ret = -EINVAL;
2400 out_unlock:
2401 mutex_unlock(&__ip_vs_mutex);
2402 out_dec:
2403 /* decrease the module use count */
2404 ip_vs_use_count_dec();
2406 return ret;
2410 static void
2411 ip_vs_copy_service(struct ip_vs_service_entry *dst, struct ip_vs_service *src)
2413 dst->protocol = src->protocol;
2414 dst->addr = src->addr.ip;
2415 dst->port = src->port;
2416 dst->fwmark = src->fwmark;
2417 strlcpy(dst->sched_name, src->scheduler->name, sizeof(dst->sched_name));
2418 dst->flags = src->flags;
2419 dst->timeout = src->timeout / HZ;
2420 dst->netmask = src->netmask;
2421 dst->num_dests = src->num_dests;
2422 ip_vs_copy_stats(&dst->stats, &src->stats);
2425 static inline int
2426 __ip_vs_get_service_entries(struct net *net,
2427 const struct ip_vs_get_services *get,
2428 struct ip_vs_get_services __user *uptr)
2430 int idx, count=0;
2431 struct ip_vs_service *svc;
2432 struct ip_vs_service_entry entry;
2433 int ret = 0;
2435 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
2436 list_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
2437 /* Only expose IPv4 entries to old interface */
2438 if (svc->af != AF_INET || !net_eq(svc->net, net))
2439 continue;
2441 if (count >= get->num_services)
2442 goto out;
2443 memset(&entry, 0, sizeof(entry));
2444 ip_vs_copy_service(&entry, svc);
2445 if (copy_to_user(&uptr->entrytable[count],
2446 &entry, sizeof(entry))) {
2447 ret = -EFAULT;
2448 goto out;
2450 count++;
2454 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
2455 list_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
2456 /* Only expose IPv4 entries to old interface */
2457 if (svc->af != AF_INET || !net_eq(svc->net, net))
2458 continue;
2460 if (count >= get->num_services)
2461 goto out;
2462 memset(&entry, 0, sizeof(entry));
2463 ip_vs_copy_service(&entry, svc);
2464 if (copy_to_user(&uptr->entrytable[count],
2465 &entry, sizeof(entry))) {
2466 ret = -EFAULT;
2467 goto out;
2469 count++;
2472 out:
2473 return ret;
2476 static inline int
2477 __ip_vs_get_dest_entries(struct net *net, const struct ip_vs_get_dests *get,
2478 struct ip_vs_get_dests __user *uptr)
2480 struct ip_vs_service *svc;
2481 union nf_inet_addr addr = { .ip = get->addr };
2482 int ret = 0;
2484 if (get->fwmark)
2485 svc = __ip_vs_svc_fwm_find(net, AF_INET, get->fwmark);
2486 else
2487 svc = __ip_vs_service_find(net, AF_INET, get->protocol, &addr,
2488 get->port);
2490 if (svc) {
2491 int count = 0;
2492 struct ip_vs_dest *dest;
2493 struct ip_vs_dest_entry entry;
2495 list_for_each_entry(dest, &svc->destinations, n_list) {
2496 if (count >= get->num_dests)
2497 break;
2499 entry.addr = dest->addr.ip;
2500 entry.port = dest->port;
2501 entry.conn_flags = atomic_read(&dest->conn_flags);
2502 entry.weight = atomic_read(&dest->weight);
2503 entry.u_threshold = dest->u_threshold;
2504 entry.l_threshold = dest->l_threshold;
2505 entry.activeconns = atomic_read(&dest->activeconns);
2506 entry.inactconns = atomic_read(&dest->inactconns);
2507 entry.persistconns = atomic_read(&dest->persistconns);
2508 ip_vs_copy_stats(&entry.stats, &dest->stats);
2509 if (copy_to_user(&uptr->entrytable[count],
2510 &entry, sizeof(entry))) {
2511 ret = -EFAULT;
2512 break;
2514 count++;
2516 } else
2517 ret = -ESRCH;
2518 return ret;
2521 static inline void
2522 __ip_vs_get_timeouts(struct net *net, struct ip_vs_timeout_user *u)
2524 #if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
2525 struct ip_vs_proto_data *pd;
2526 #endif
2528 #ifdef CONFIG_IP_VS_PROTO_TCP
2529 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2530 u->tcp_timeout = pd->timeout_table[IP_VS_TCP_S_ESTABLISHED] / HZ;
2531 u->tcp_fin_timeout = pd->timeout_table[IP_VS_TCP_S_FIN_WAIT] / HZ;
2532 #endif
2533 #ifdef CONFIG_IP_VS_PROTO_UDP
2534 pd = ip_vs_proto_data_get(net, IPPROTO_UDP);
2535 u->udp_timeout =
2536 pd->timeout_table[IP_VS_UDP_S_NORMAL] / HZ;
2537 #endif
2541 #define GET_CMDID(cmd) (cmd - IP_VS_BASE_CTL)
2542 #define GET_INFO_ARG_LEN (sizeof(struct ip_vs_getinfo))
2543 #define GET_SERVICES_ARG_LEN (sizeof(struct ip_vs_get_services))
2544 #define GET_SERVICE_ARG_LEN (sizeof(struct ip_vs_service_entry))
2545 #define GET_DESTS_ARG_LEN (sizeof(struct ip_vs_get_dests))
2546 #define GET_TIMEOUT_ARG_LEN (sizeof(struct ip_vs_timeout_user))
2547 #define GET_DAEMON_ARG_LEN (sizeof(struct ip_vs_daemon_user) * 2)
2549 static const unsigned char get_arglen[GET_CMDID(IP_VS_SO_GET_MAX)+1] = {
2550 [GET_CMDID(IP_VS_SO_GET_VERSION)] = 64,
2551 [GET_CMDID(IP_VS_SO_GET_INFO)] = GET_INFO_ARG_LEN,
2552 [GET_CMDID(IP_VS_SO_GET_SERVICES)] = GET_SERVICES_ARG_LEN,
2553 [GET_CMDID(IP_VS_SO_GET_SERVICE)] = GET_SERVICE_ARG_LEN,
2554 [GET_CMDID(IP_VS_SO_GET_DESTS)] = GET_DESTS_ARG_LEN,
2555 [GET_CMDID(IP_VS_SO_GET_TIMEOUT)] = GET_TIMEOUT_ARG_LEN,
2556 [GET_CMDID(IP_VS_SO_GET_DAEMON)] = GET_DAEMON_ARG_LEN,
2559 static int
2560 do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2562 unsigned char arg[128];
2563 int ret = 0;
2564 unsigned int copylen;
2565 struct net *net = sock_net(sk);
2566 struct netns_ipvs *ipvs = net_ipvs(net);
2568 BUG_ON(!net);
2569 if (!capable(CAP_NET_ADMIN))
2570 return -EPERM;
2572 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX)
2573 return -EINVAL;
2575 if (*len < get_arglen[GET_CMDID(cmd)]) {
2576 pr_err("get_ctl: len %u < %u\n",
2577 *len, get_arglen[GET_CMDID(cmd)]);
2578 return -EINVAL;
2581 copylen = get_arglen[GET_CMDID(cmd)];
2582 if (copylen > 128)
2583 return -EINVAL;
2585 if (copy_from_user(arg, user, copylen) != 0)
2586 return -EFAULT;
2588 if (mutex_lock_interruptible(&__ip_vs_mutex))
2589 return -ERESTARTSYS;
2591 switch (cmd) {
2592 case IP_VS_SO_GET_VERSION:
2594 char buf[64];
2596 sprintf(buf, "IP Virtual Server version %d.%d.%d (size=%d)",
2597 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
2598 if (copy_to_user(user, buf, strlen(buf)+1) != 0) {
2599 ret = -EFAULT;
2600 goto out;
2602 *len = strlen(buf)+1;
2604 break;
2606 case IP_VS_SO_GET_INFO:
2608 struct ip_vs_getinfo info;
2609 info.version = IP_VS_VERSION_CODE;
2610 info.size = ip_vs_conn_tab_size;
2611 info.num_services = ipvs->num_services;
2612 if (copy_to_user(user, &info, sizeof(info)) != 0)
2613 ret = -EFAULT;
2615 break;
2617 case IP_VS_SO_GET_SERVICES:
2619 struct ip_vs_get_services *get;
2620 int size;
2622 get = (struct ip_vs_get_services *)arg;
2623 size = sizeof(*get) +
2624 sizeof(struct ip_vs_service_entry) * get->num_services;
2625 if (*len != size) {
2626 pr_err("length: %u != %u\n", *len, size);
2627 ret = -EINVAL;
2628 goto out;
2630 ret = __ip_vs_get_service_entries(net, get, user);
2632 break;
2634 case IP_VS_SO_GET_SERVICE:
2636 struct ip_vs_service_entry *entry;
2637 struct ip_vs_service *svc;
2638 union nf_inet_addr addr;
2640 entry = (struct ip_vs_service_entry *)arg;
2641 addr.ip = entry->addr;
2642 if (entry->fwmark)
2643 svc = __ip_vs_svc_fwm_find(net, AF_INET, entry->fwmark);
2644 else
2645 svc = __ip_vs_service_find(net, AF_INET,
2646 entry->protocol, &addr,
2647 entry->port);
2648 if (svc) {
2649 ip_vs_copy_service(entry, svc);
2650 if (copy_to_user(user, entry, sizeof(*entry)) != 0)
2651 ret = -EFAULT;
2652 } else
2653 ret = -ESRCH;
2655 break;
2657 case IP_VS_SO_GET_DESTS:
2659 struct ip_vs_get_dests *get;
2660 int size;
2662 get = (struct ip_vs_get_dests *)arg;
2663 size = sizeof(*get) +
2664 sizeof(struct ip_vs_dest_entry) * get->num_dests;
2665 if (*len != size) {
2666 pr_err("length: %u != %u\n", *len, size);
2667 ret = -EINVAL;
2668 goto out;
2670 ret = __ip_vs_get_dest_entries(net, get, user);
2672 break;
2674 case IP_VS_SO_GET_TIMEOUT:
2676 struct ip_vs_timeout_user t;
2678 __ip_vs_get_timeouts(net, &t);
2679 if (copy_to_user(user, &t, sizeof(t)) != 0)
2680 ret = -EFAULT;
2682 break;
2684 case IP_VS_SO_GET_DAEMON:
2686 struct ip_vs_daemon_user d[2];
2688 memset(&d, 0, sizeof(d));
2689 if (ipvs->sync_state & IP_VS_STATE_MASTER) {
2690 d[0].state = IP_VS_STATE_MASTER;
2691 strlcpy(d[0].mcast_ifn, ipvs->master_mcast_ifn,
2692 sizeof(d[0].mcast_ifn));
2693 d[0].syncid = ipvs->master_syncid;
2695 if (ipvs->sync_state & IP_VS_STATE_BACKUP) {
2696 d[1].state = IP_VS_STATE_BACKUP;
2697 strlcpy(d[1].mcast_ifn, ipvs->backup_mcast_ifn,
2698 sizeof(d[1].mcast_ifn));
2699 d[1].syncid = ipvs->backup_syncid;
2701 if (copy_to_user(user, &d, sizeof(d)) != 0)
2702 ret = -EFAULT;
2704 break;
2706 default:
2707 ret = -EINVAL;
2710 out:
2711 mutex_unlock(&__ip_vs_mutex);
2712 return ret;
2716 static struct nf_sockopt_ops ip_vs_sockopts = {
2717 .pf = PF_INET,
2718 .set_optmin = IP_VS_BASE_CTL,
2719 .set_optmax = IP_VS_SO_SET_MAX+1,
2720 .set = do_ip_vs_set_ctl,
2721 .get_optmin = IP_VS_BASE_CTL,
2722 .get_optmax = IP_VS_SO_GET_MAX+1,
2723 .get = do_ip_vs_get_ctl,
2724 .owner = THIS_MODULE,
2728 * Generic Netlink interface
2731 /* IPVS genetlink family */
2732 static struct genl_family ip_vs_genl_family = {
2733 .id = GENL_ID_GENERATE,
2734 .hdrsize = 0,
2735 .name = IPVS_GENL_NAME,
2736 .version = IPVS_GENL_VERSION,
2737 .maxattr = IPVS_CMD_MAX,
2738 .netnsok = true, /* Make ipvsadm to work on netns */
2741 /* Policy used for first-level command attributes */
2742 static const struct nla_policy ip_vs_cmd_policy[IPVS_CMD_ATTR_MAX + 1] = {
2743 [IPVS_CMD_ATTR_SERVICE] = { .type = NLA_NESTED },
2744 [IPVS_CMD_ATTR_DEST] = { .type = NLA_NESTED },
2745 [IPVS_CMD_ATTR_DAEMON] = { .type = NLA_NESTED },
2746 [IPVS_CMD_ATTR_TIMEOUT_TCP] = { .type = NLA_U32 },
2747 [IPVS_CMD_ATTR_TIMEOUT_TCP_FIN] = { .type = NLA_U32 },
2748 [IPVS_CMD_ATTR_TIMEOUT_UDP] = { .type = NLA_U32 },
2751 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DAEMON */
2752 static const struct nla_policy ip_vs_daemon_policy[IPVS_DAEMON_ATTR_MAX + 1] = {
2753 [IPVS_DAEMON_ATTR_STATE] = { .type = NLA_U32 },
2754 [IPVS_DAEMON_ATTR_MCAST_IFN] = { .type = NLA_NUL_STRING,
2755 .len = IP_VS_IFNAME_MAXLEN },
2756 [IPVS_DAEMON_ATTR_SYNC_ID] = { .type = NLA_U32 },
2759 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_SERVICE */
2760 static const struct nla_policy ip_vs_svc_policy[IPVS_SVC_ATTR_MAX + 1] = {
2761 [IPVS_SVC_ATTR_AF] = { .type = NLA_U16 },
2762 [IPVS_SVC_ATTR_PROTOCOL] = { .type = NLA_U16 },
2763 [IPVS_SVC_ATTR_ADDR] = { .type = NLA_BINARY,
2764 .len = sizeof(union nf_inet_addr) },
2765 [IPVS_SVC_ATTR_PORT] = { .type = NLA_U16 },
2766 [IPVS_SVC_ATTR_FWMARK] = { .type = NLA_U32 },
2767 [IPVS_SVC_ATTR_SCHED_NAME] = { .type = NLA_NUL_STRING,
2768 .len = IP_VS_SCHEDNAME_MAXLEN },
2769 [IPVS_SVC_ATTR_PE_NAME] = { .type = NLA_NUL_STRING,
2770 .len = IP_VS_PENAME_MAXLEN },
2771 [IPVS_SVC_ATTR_FLAGS] = { .type = NLA_BINARY,
2772 .len = sizeof(struct ip_vs_flags) },
2773 [IPVS_SVC_ATTR_TIMEOUT] = { .type = NLA_U32 },
2774 [IPVS_SVC_ATTR_NETMASK] = { .type = NLA_U32 },
2775 [IPVS_SVC_ATTR_STATS] = { .type = NLA_NESTED },
2778 /* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DEST */
2779 static const struct nla_policy ip_vs_dest_policy[IPVS_DEST_ATTR_MAX + 1] = {
2780 [IPVS_DEST_ATTR_ADDR] = { .type = NLA_BINARY,
2781 .len = sizeof(union nf_inet_addr) },
2782 [IPVS_DEST_ATTR_PORT] = { .type = NLA_U16 },
2783 [IPVS_DEST_ATTR_FWD_METHOD] = { .type = NLA_U32 },
2784 [IPVS_DEST_ATTR_WEIGHT] = { .type = NLA_U32 },
2785 [IPVS_DEST_ATTR_U_THRESH] = { .type = NLA_U32 },
2786 [IPVS_DEST_ATTR_L_THRESH] = { .type = NLA_U32 },
2787 [IPVS_DEST_ATTR_ACTIVE_CONNS] = { .type = NLA_U32 },
2788 [IPVS_DEST_ATTR_INACT_CONNS] = { .type = NLA_U32 },
2789 [IPVS_DEST_ATTR_PERSIST_CONNS] = { .type = NLA_U32 },
2790 [IPVS_DEST_ATTR_STATS] = { .type = NLA_NESTED },
2793 static int ip_vs_genl_fill_stats(struct sk_buff *skb, int container_type,
2794 struct ip_vs_stats *stats)
2796 struct ip_vs_stats_user ustats;
2797 struct nlattr *nl_stats = nla_nest_start(skb, container_type);
2798 if (!nl_stats)
2799 return -EMSGSIZE;
2801 ip_vs_copy_stats(&ustats, stats);
2803 NLA_PUT_U32(skb, IPVS_STATS_ATTR_CONNS, ustats.conns);
2804 NLA_PUT_U32(skb, IPVS_STATS_ATTR_INPKTS, ustats.inpkts);
2805 NLA_PUT_U32(skb, IPVS_STATS_ATTR_OUTPKTS, ustats.outpkts);
2806 NLA_PUT_U64(skb, IPVS_STATS_ATTR_INBYTES, ustats.inbytes);
2807 NLA_PUT_U64(skb, IPVS_STATS_ATTR_OUTBYTES, ustats.outbytes);
2808 NLA_PUT_U32(skb, IPVS_STATS_ATTR_CPS, ustats.cps);
2809 NLA_PUT_U32(skb, IPVS_STATS_ATTR_INPPS, ustats.inpps);
2810 NLA_PUT_U32(skb, IPVS_STATS_ATTR_OUTPPS, ustats.outpps);
2811 NLA_PUT_U32(skb, IPVS_STATS_ATTR_INBPS, ustats.inbps);
2812 NLA_PUT_U32(skb, IPVS_STATS_ATTR_OUTBPS, ustats.outbps);
2814 nla_nest_end(skb, nl_stats);
2816 return 0;
2818 nla_put_failure:
2819 nla_nest_cancel(skb, nl_stats);
2820 return -EMSGSIZE;
2823 static int ip_vs_genl_fill_service(struct sk_buff *skb,
2824 struct ip_vs_service *svc)
2826 struct nlattr *nl_service;
2827 struct ip_vs_flags flags = { .flags = svc->flags,
2828 .mask = ~0 };
2830 nl_service = nla_nest_start(skb, IPVS_CMD_ATTR_SERVICE);
2831 if (!nl_service)
2832 return -EMSGSIZE;
2834 NLA_PUT_U16(skb, IPVS_SVC_ATTR_AF, svc->af);
2836 if (svc->fwmark) {
2837 NLA_PUT_U32(skb, IPVS_SVC_ATTR_FWMARK, svc->fwmark);
2838 } else {
2839 NLA_PUT_U16(skb, IPVS_SVC_ATTR_PROTOCOL, svc->protocol);
2840 NLA_PUT(skb, IPVS_SVC_ATTR_ADDR, sizeof(svc->addr), &svc->addr);
2841 NLA_PUT_U16(skb, IPVS_SVC_ATTR_PORT, svc->port);
2844 NLA_PUT_STRING(skb, IPVS_SVC_ATTR_SCHED_NAME, svc->scheduler->name);
2845 if (svc->pe)
2846 NLA_PUT_STRING(skb, IPVS_SVC_ATTR_PE_NAME, svc->pe->name);
2847 NLA_PUT(skb, IPVS_SVC_ATTR_FLAGS, sizeof(flags), &flags);
2848 NLA_PUT_U32(skb, IPVS_SVC_ATTR_TIMEOUT, svc->timeout / HZ);
2849 NLA_PUT_U32(skb, IPVS_SVC_ATTR_NETMASK, svc->netmask);
2851 if (ip_vs_genl_fill_stats(skb, IPVS_SVC_ATTR_STATS, &svc->stats))
2852 goto nla_put_failure;
2854 nla_nest_end(skb, nl_service);
2856 return 0;
2858 nla_put_failure:
2859 nla_nest_cancel(skb, nl_service);
2860 return -EMSGSIZE;
2863 static int ip_vs_genl_dump_service(struct sk_buff *skb,
2864 struct ip_vs_service *svc,
2865 struct netlink_callback *cb)
2867 void *hdr;
2869 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq,
2870 &ip_vs_genl_family, NLM_F_MULTI,
2871 IPVS_CMD_NEW_SERVICE);
2872 if (!hdr)
2873 return -EMSGSIZE;
2875 if (ip_vs_genl_fill_service(skb, svc) < 0)
2876 goto nla_put_failure;
2878 return genlmsg_end(skb, hdr);
2880 nla_put_failure:
2881 genlmsg_cancel(skb, hdr);
2882 return -EMSGSIZE;
2885 static int ip_vs_genl_dump_services(struct sk_buff *skb,
2886 struct netlink_callback *cb)
2888 int idx = 0, i;
2889 int start = cb->args[0];
2890 struct ip_vs_service *svc;
2891 struct net *net = skb_sknet(skb);
2893 mutex_lock(&__ip_vs_mutex);
2894 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
2895 list_for_each_entry(svc, &ip_vs_svc_table[i], s_list) {
2896 if (++idx <= start || !net_eq(svc->net, net))
2897 continue;
2898 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
2899 idx--;
2900 goto nla_put_failure;
2905 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
2906 list_for_each_entry(svc, &ip_vs_svc_fwm_table[i], f_list) {
2907 if (++idx <= start || !net_eq(svc->net, net))
2908 continue;
2909 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
2910 idx--;
2911 goto nla_put_failure;
2916 nla_put_failure:
2917 mutex_unlock(&__ip_vs_mutex);
2918 cb->args[0] = idx;
2920 return skb->len;
2923 static int ip_vs_genl_parse_service(struct net *net,
2924 struct ip_vs_service_user_kern *usvc,
2925 struct nlattr *nla, int full_entry,
2926 struct ip_vs_service **ret_svc)
2928 struct nlattr *attrs[IPVS_SVC_ATTR_MAX + 1];
2929 struct nlattr *nla_af, *nla_port, *nla_fwmark, *nla_protocol, *nla_addr;
2930 struct ip_vs_service *svc;
2932 /* Parse mandatory identifying service fields first */
2933 if (nla == NULL ||
2934 nla_parse_nested(attrs, IPVS_SVC_ATTR_MAX, nla, ip_vs_svc_policy))
2935 return -EINVAL;
2937 nla_af = attrs[IPVS_SVC_ATTR_AF];
2938 nla_protocol = attrs[IPVS_SVC_ATTR_PROTOCOL];
2939 nla_addr = attrs[IPVS_SVC_ATTR_ADDR];
2940 nla_port = attrs[IPVS_SVC_ATTR_PORT];
2941 nla_fwmark = attrs[IPVS_SVC_ATTR_FWMARK];
2943 if (!(nla_af && (nla_fwmark || (nla_port && nla_protocol && nla_addr))))
2944 return -EINVAL;
2946 memset(usvc, 0, sizeof(*usvc));
2948 usvc->af = nla_get_u16(nla_af);
2949 #ifdef CONFIG_IP_VS_IPV6
2950 if (usvc->af != AF_INET && usvc->af != AF_INET6)
2951 #else
2952 if (usvc->af != AF_INET)
2953 #endif
2954 return -EAFNOSUPPORT;
2956 if (nla_fwmark) {
2957 usvc->protocol = IPPROTO_TCP;
2958 usvc->fwmark = nla_get_u32(nla_fwmark);
2959 } else {
2960 usvc->protocol = nla_get_u16(nla_protocol);
2961 nla_memcpy(&usvc->addr, nla_addr, sizeof(usvc->addr));
2962 usvc->port = nla_get_u16(nla_port);
2963 usvc->fwmark = 0;
2966 if (usvc->fwmark)
2967 svc = __ip_vs_svc_fwm_find(net, usvc->af, usvc->fwmark);
2968 else
2969 svc = __ip_vs_service_find(net, usvc->af, usvc->protocol,
2970 &usvc->addr, usvc->port);
2971 *ret_svc = svc;
2973 /* If a full entry was requested, check for the additional fields */
2974 if (full_entry) {
2975 struct nlattr *nla_sched, *nla_flags, *nla_pe, *nla_timeout,
2976 *nla_netmask;
2977 struct ip_vs_flags flags;
2979 nla_sched = attrs[IPVS_SVC_ATTR_SCHED_NAME];
2980 nla_pe = attrs[IPVS_SVC_ATTR_PE_NAME];
2981 nla_flags = attrs[IPVS_SVC_ATTR_FLAGS];
2982 nla_timeout = attrs[IPVS_SVC_ATTR_TIMEOUT];
2983 nla_netmask = attrs[IPVS_SVC_ATTR_NETMASK];
2985 if (!(nla_sched && nla_flags && nla_timeout && nla_netmask))
2986 return -EINVAL;
2988 nla_memcpy(&flags, nla_flags, sizeof(flags));
2990 /* prefill flags from service if it already exists */
2991 if (svc)
2992 usvc->flags = svc->flags;
2994 /* set new flags from userland */
2995 usvc->flags = (usvc->flags & ~flags.mask) |
2996 (flags.flags & flags.mask);
2997 usvc->sched_name = nla_data(nla_sched);
2998 usvc->pe_name = nla_pe ? nla_data(nla_pe) : NULL;
2999 usvc->timeout = nla_get_u32(nla_timeout);
3000 usvc->netmask = nla_get_u32(nla_netmask);
3003 return 0;
3006 static struct ip_vs_service *ip_vs_genl_find_service(struct net *net,
3007 struct nlattr *nla)
3009 struct ip_vs_service_user_kern usvc;
3010 struct ip_vs_service *svc;
3011 int ret;
3013 ret = ip_vs_genl_parse_service(net, &usvc, nla, 0, &svc);
3014 return ret ? ERR_PTR(ret) : svc;
3017 static int ip_vs_genl_fill_dest(struct sk_buff *skb, struct ip_vs_dest *dest)
3019 struct nlattr *nl_dest;
3021 nl_dest = nla_nest_start(skb, IPVS_CMD_ATTR_DEST);
3022 if (!nl_dest)
3023 return -EMSGSIZE;
3025 NLA_PUT(skb, IPVS_DEST_ATTR_ADDR, sizeof(dest->addr), &dest->addr);
3026 NLA_PUT_U16(skb, IPVS_DEST_ATTR_PORT, dest->port);
3028 NLA_PUT_U32(skb, IPVS_DEST_ATTR_FWD_METHOD,
3029 atomic_read(&dest->conn_flags) & IP_VS_CONN_F_FWD_MASK);
3030 NLA_PUT_U32(skb, IPVS_DEST_ATTR_WEIGHT, atomic_read(&dest->weight));
3031 NLA_PUT_U32(skb, IPVS_DEST_ATTR_U_THRESH, dest->u_threshold);
3032 NLA_PUT_U32(skb, IPVS_DEST_ATTR_L_THRESH, dest->l_threshold);
3033 NLA_PUT_U32(skb, IPVS_DEST_ATTR_ACTIVE_CONNS,
3034 atomic_read(&dest->activeconns));
3035 NLA_PUT_U32(skb, IPVS_DEST_ATTR_INACT_CONNS,
3036 atomic_read(&dest->inactconns));
3037 NLA_PUT_U32(skb, IPVS_DEST_ATTR_PERSIST_CONNS,
3038 atomic_read(&dest->persistconns));
3040 if (ip_vs_genl_fill_stats(skb, IPVS_DEST_ATTR_STATS, &dest->stats))
3041 goto nla_put_failure;
3043 nla_nest_end(skb, nl_dest);
3045 return 0;
3047 nla_put_failure:
3048 nla_nest_cancel(skb, nl_dest);
3049 return -EMSGSIZE;
3052 static int ip_vs_genl_dump_dest(struct sk_buff *skb, struct ip_vs_dest *dest,
3053 struct netlink_callback *cb)
3055 void *hdr;
3057 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq,
3058 &ip_vs_genl_family, NLM_F_MULTI,
3059 IPVS_CMD_NEW_DEST);
3060 if (!hdr)
3061 return -EMSGSIZE;
3063 if (ip_vs_genl_fill_dest(skb, dest) < 0)
3064 goto nla_put_failure;
3066 return genlmsg_end(skb, hdr);
3068 nla_put_failure:
3069 genlmsg_cancel(skb, hdr);
3070 return -EMSGSIZE;
3073 static int ip_vs_genl_dump_dests(struct sk_buff *skb,
3074 struct netlink_callback *cb)
3076 int idx = 0;
3077 int start = cb->args[0];
3078 struct ip_vs_service *svc;
3079 struct ip_vs_dest *dest;
3080 struct nlattr *attrs[IPVS_CMD_ATTR_MAX + 1];
3081 struct net *net = skb_sknet(skb);
3083 mutex_lock(&__ip_vs_mutex);
3085 /* Try to find the service for which to dump destinations */
3086 if (nlmsg_parse(cb->nlh, GENL_HDRLEN, attrs,
3087 IPVS_CMD_ATTR_MAX, ip_vs_cmd_policy))
3088 goto out_err;
3091 svc = ip_vs_genl_find_service(net, attrs[IPVS_CMD_ATTR_SERVICE]);
3092 if (IS_ERR(svc) || svc == NULL)
3093 goto out_err;
3095 /* Dump the destinations */
3096 list_for_each_entry(dest, &svc->destinations, n_list) {
3097 if (++idx <= start)
3098 continue;
3099 if (ip_vs_genl_dump_dest(skb, dest, cb) < 0) {
3100 idx--;
3101 goto nla_put_failure;
3105 nla_put_failure:
3106 cb->args[0] = idx;
3108 out_err:
3109 mutex_unlock(&__ip_vs_mutex);
3111 return skb->len;
3114 static int ip_vs_genl_parse_dest(struct ip_vs_dest_user_kern *udest,
3115 struct nlattr *nla, int full_entry)
3117 struct nlattr *attrs[IPVS_DEST_ATTR_MAX + 1];
3118 struct nlattr *nla_addr, *nla_port;
3120 /* Parse mandatory identifying destination fields first */
3121 if (nla == NULL ||
3122 nla_parse_nested(attrs, IPVS_DEST_ATTR_MAX, nla, ip_vs_dest_policy))
3123 return -EINVAL;
3125 nla_addr = attrs[IPVS_DEST_ATTR_ADDR];
3126 nla_port = attrs[IPVS_DEST_ATTR_PORT];
3128 if (!(nla_addr && nla_port))
3129 return -EINVAL;
3131 memset(udest, 0, sizeof(*udest));
3133 nla_memcpy(&udest->addr, nla_addr, sizeof(udest->addr));
3134 udest->port = nla_get_u16(nla_port);
3136 /* If a full entry was requested, check for the additional fields */
3137 if (full_entry) {
3138 struct nlattr *nla_fwd, *nla_weight, *nla_u_thresh,
3139 *nla_l_thresh;
3141 nla_fwd = attrs[IPVS_DEST_ATTR_FWD_METHOD];
3142 nla_weight = attrs[IPVS_DEST_ATTR_WEIGHT];
3143 nla_u_thresh = attrs[IPVS_DEST_ATTR_U_THRESH];
3144 nla_l_thresh = attrs[IPVS_DEST_ATTR_L_THRESH];
3146 if (!(nla_fwd && nla_weight && nla_u_thresh && nla_l_thresh))
3147 return -EINVAL;
3149 udest->conn_flags = nla_get_u32(nla_fwd)
3150 & IP_VS_CONN_F_FWD_MASK;
3151 udest->weight = nla_get_u32(nla_weight);
3152 udest->u_threshold = nla_get_u32(nla_u_thresh);
3153 udest->l_threshold = nla_get_u32(nla_l_thresh);
3156 return 0;
3159 static int ip_vs_genl_fill_daemon(struct sk_buff *skb, __be32 state,
3160 const char *mcast_ifn, __be32 syncid)
3162 struct nlattr *nl_daemon;
3164 nl_daemon = nla_nest_start(skb, IPVS_CMD_ATTR_DAEMON);
3165 if (!nl_daemon)
3166 return -EMSGSIZE;
3168 NLA_PUT_U32(skb, IPVS_DAEMON_ATTR_STATE, state);
3169 NLA_PUT_STRING(skb, IPVS_DAEMON_ATTR_MCAST_IFN, mcast_ifn);
3170 NLA_PUT_U32(skb, IPVS_DAEMON_ATTR_SYNC_ID, syncid);
3172 nla_nest_end(skb, nl_daemon);
3174 return 0;
3176 nla_put_failure:
3177 nla_nest_cancel(skb, nl_daemon);
3178 return -EMSGSIZE;
3181 static int ip_vs_genl_dump_daemon(struct sk_buff *skb, __be32 state,
3182 const char *mcast_ifn, __be32 syncid,
3183 struct netlink_callback *cb)
3185 void *hdr;
3186 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).pid, cb->nlh->nlmsg_seq,
3187 &ip_vs_genl_family, NLM_F_MULTI,
3188 IPVS_CMD_NEW_DAEMON);
3189 if (!hdr)
3190 return -EMSGSIZE;
3192 if (ip_vs_genl_fill_daemon(skb, state, mcast_ifn, syncid))
3193 goto nla_put_failure;
3195 return genlmsg_end(skb, hdr);
3197 nla_put_failure:
3198 genlmsg_cancel(skb, hdr);
3199 return -EMSGSIZE;
3202 static int ip_vs_genl_dump_daemons(struct sk_buff *skb,
3203 struct netlink_callback *cb)
3205 struct net *net = skb_sknet(skb);
3206 struct netns_ipvs *ipvs = net_ipvs(net);
3208 mutex_lock(&__ip_vs_mutex);
3209 if ((ipvs->sync_state & IP_VS_STATE_MASTER) && !cb->args[0]) {
3210 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_MASTER,
3211 ipvs->master_mcast_ifn,
3212 ipvs->master_syncid, cb) < 0)
3213 goto nla_put_failure;
3215 cb->args[0] = 1;
3218 if ((ipvs->sync_state & IP_VS_STATE_BACKUP) && !cb->args[1]) {
3219 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_BACKUP,
3220 ipvs->backup_mcast_ifn,
3221 ipvs->backup_syncid, cb) < 0)
3222 goto nla_put_failure;
3224 cb->args[1] = 1;
3227 nla_put_failure:
3228 mutex_unlock(&__ip_vs_mutex);
3230 return skb->len;
3233 static int ip_vs_genl_new_daemon(struct net *net, struct nlattr **attrs)
3235 if (!(attrs[IPVS_DAEMON_ATTR_STATE] &&
3236 attrs[IPVS_DAEMON_ATTR_MCAST_IFN] &&
3237 attrs[IPVS_DAEMON_ATTR_SYNC_ID]))
3238 return -EINVAL;
3240 return start_sync_thread(net,
3241 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]),
3242 nla_data(attrs[IPVS_DAEMON_ATTR_MCAST_IFN]),
3243 nla_get_u32(attrs[IPVS_DAEMON_ATTR_SYNC_ID]));
3246 static int ip_vs_genl_del_daemon(struct net *net, struct nlattr **attrs)
3248 if (!attrs[IPVS_DAEMON_ATTR_STATE])
3249 return -EINVAL;
3251 return stop_sync_thread(net,
3252 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]));
3255 static int ip_vs_genl_set_config(struct net *net, struct nlattr **attrs)
3257 struct ip_vs_timeout_user t;
3259 __ip_vs_get_timeouts(net, &t);
3261 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP])
3262 t.tcp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP]);
3264 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN])
3265 t.tcp_fin_timeout =
3266 nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN]);
3268 if (attrs[IPVS_CMD_ATTR_TIMEOUT_UDP])
3269 t.udp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_UDP]);
3271 return ip_vs_set_timeout(net, &t);
3274 static int ip_vs_genl_set_cmd(struct sk_buff *skb, struct genl_info *info)
3276 struct ip_vs_service *svc = NULL;
3277 struct ip_vs_service_user_kern usvc;
3278 struct ip_vs_dest_user_kern udest;
3279 int ret = 0, cmd;
3280 int need_full_svc = 0, need_full_dest = 0;
3281 struct net *net;
3282 struct netns_ipvs *ipvs;
3284 net = skb_sknet(skb);
3285 ipvs = net_ipvs(net);
3286 cmd = info->genlhdr->cmd;
3288 mutex_lock(&__ip_vs_mutex);
3290 if (cmd == IPVS_CMD_FLUSH) {
3291 ret = ip_vs_flush(net);
3292 goto out;
3293 } else if (cmd == IPVS_CMD_SET_CONFIG) {
3294 ret = ip_vs_genl_set_config(net, info->attrs);
3295 goto out;
3296 } else if (cmd == IPVS_CMD_NEW_DAEMON ||
3297 cmd == IPVS_CMD_DEL_DAEMON) {
3299 struct nlattr *daemon_attrs[IPVS_DAEMON_ATTR_MAX + 1];
3301 if (!info->attrs[IPVS_CMD_ATTR_DAEMON] ||
3302 nla_parse_nested(daemon_attrs, IPVS_DAEMON_ATTR_MAX,
3303 info->attrs[IPVS_CMD_ATTR_DAEMON],
3304 ip_vs_daemon_policy)) {
3305 ret = -EINVAL;
3306 goto out;
3309 if (cmd == IPVS_CMD_NEW_DAEMON)
3310 ret = ip_vs_genl_new_daemon(net, daemon_attrs);
3311 else
3312 ret = ip_vs_genl_del_daemon(net, daemon_attrs);
3313 goto out;
3314 } else if (cmd == IPVS_CMD_ZERO &&
3315 !info->attrs[IPVS_CMD_ATTR_SERVICE]) {
3316 ret = ip_vs_zero_all(net);
3317 goto out;
3320 /* All following commands require a service argument, so check if we
3321 * received a valid one. We need a full service specification when
3322 * adding / editing a service. Only identifying members otherwise. */
3323 if (cmd == IPVS_CMD_NEW_SERVICE || cmd == IPVS_CMD_SET_SERVICE)
3324 need_full_svc = 1;
3326 ret = ip_vs_genl_parse_service(net, &usvc,
3327 info->attrs[IPVS_CMD_ATTR_SERVICE],
3328 need_full_svc, &svc);
3329 if (ret)
3330 goto out;
3332 /* Unless we're adding a new service, the service must already exist */
3333 if ((cmd != IPVS_CMD_NEW_SERVICE) && (svc == NULL)) {
3334 ret = -ESRCH;
3335 goto out;
3338 /* Destination commands require a valid destination argument. For
3339 * adding / editing a destination, we need a full destination
3340 * specification. */
3341 if (cmd == IPVS_CMD_NEW_DEST || cmd == IPVS_CMD_SET_DEST ||
3342 cmd == IPVS_CMD_DEL_DEST) {
3343 if (cmd != IPVS_CMD_DEL_DEST)
3344 need_full_dest = 1;
3346 ret = ip_vs_genl_parse_dest(&udest,
3347 info->attrs[IPVS_CMD_ATTR_DEST],
3348 need_full_dest);
3349 if (ret)
3350 goto out;
3353 switch (cmd) {
3354 case IPVS_CMD_NEW_SERVICE:
3355 if (svc == NULL)
3356 ret = ip_vs_add_service(net, &usvc, &svc);
3357 else
3358 ret = -EEXIST;
3359 break;
3360 case IPVS_CMD_SET_SERVICE:
3361 ret = ip_vs_edit_service(svc, &usvc);
3362 break;
3363 case IPVS_CMD_DEL_SERVICE:
3364 ret = ip_vs_del_service(svc);
3365 /* do not use svc, it can be freed */
3366 break;
3367 case IPVS_CMD_NEW_DEST:
3368 ret = ip_vs_add_dest(svc, &udest);
3369 break;
3370 case IPVS_CMD_SET_DEST:
3371 ret = ip_vs_edit_dest(svc, &udest);
3372 break;
3373 case IPVS_CMD_DEL_DEST:
3374 ret = ip_vs_del_dest(svc, &udest);
3375 break;
3376 case IPVS_CMD_ZERO:
3377 ret = ip_vs_zero_service(svc);
3378 break;
3379 default:
3380 ret = -EINVAL;
3383 out:
3384 mutex_unlock(&__ip_vs_mutex);
3386 return ret;
3389 static int ip_vs_genl_get_cmd(struct sk_buff *skb, struct genl_info *info)
3391 struct sk_buff *msg;
3392 void *reply;
3393 int ret, cmd, reply_cmd;
3394 struct net *net;
3395 struct netns_ipvs *ipvs;
3397 net = skb_sknet(skb);
3398 ipvs = net_ipvs(net);
3399 cmd = info->genlhdr->cmd;
3401 if (cmd == IPVS_CMD_GET_SERVICE)
3402 reply_cmd = IPVS_CMD_NEW_SERVICE;
3403 else if (cmd == IPVS_CMD_GET_INFO)
3404 reply_cmd = IPVS_CMD_SET_INFO;
3405 else if (cmd == IPVS_CMD_GET_CONFIG)
3406 reply_cmd = IPVS_CMD_SET_CONFIG;
3407 else {
3408 pr_err("unknown Generic Netlink command\n");
3409 return -EINVAL;
3412 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3413 if (!msg)
3414 return -ENOMEM;
3416 mutex_lock(&__ip_vs_mutex);
3418 reply = genlmsg_put_reply(msg, info, &ip_vs_genl_family, 0, reply_cmd);
3419 if (reply == NULL)
3420 goto nla_put_failure;
3422 switch (cmd) {
3423 case IPVS_CMD_GET_SERVICE:
3425 struct ip_vs_service *svc;
3427 svc = ip_vs_genl_find_service(net,
3428 info->attrs[IPVS_CMD_ATTR_SERVICE]);
3429 if (IS_ERR(svc)) {
3430 ret = PTR_ERR(svc);
3431 goto out_err;
3432 } else if (svc) {
3433 ret = ip_vs_genl_fill_service(msg, svc);
3434 if (ret)
3435 goto nla_put_failure;
3436 } else {
3437 ret = -ESRCH;
3438 goto out_err;
3441 break;
3444 case IPVS_CMD_GET_CONFIG:
3446 struct ip_vs_timeout_user t;
3448 __ip_vs_get_timeouts(net, &t);
3449 #ifdef CONFIG_IP_VS_PROTO_TCP
3450 NLA_PUT_U32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP, t.tcp_timeout);
3451 NLA_PUT_U32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP_FIN,
3452 t.tcp_fin_timeout);
3453 #endif
3454 #ifdef CONFIG_IP_VS_PROTO_UDP
3455 NLA_PUT_U32(msg, IPVS_CMD_ATTR_TIMEOUT_UDP, t.udp_timeout);
3456 #endif
3458 break;
3461 case IPVS_CMD_GET_INFO:
3462 NLA_PUT_U32(msg, IPVS_INFO_ATTR_VERSION, IP_VS_VERSION_CODE);
3463 NLA_PUT_U32(msg, IPVS_INFO_ATTR_CONN_TAB_SIZE,
3464 ip_vs_conn_tab_size);
3465 break;
3468 genlmsg_end(msg, reply);
3469 ret = genlmsg_reply(msg, info);
3470 goto out;
3472 nla_put_failure:
3473 pr_err("not enough space in Netlink message\n");
3474 ret = -EMSGSIZE;
3476 out_err:
3477 nlmsg_free(msg);
3478 out:
3479 mutex_unlock(&__ip_vs_mutex);
3481 return ret;
3485 static struct genl_ops ip_vs_genl_ops[] __read_mostly = {
3487 .cmd = IPVS_CMD_NEW_SERVICE,
3488 .flags = GENL_ADMIN_PERM,
3489 .policy = ip_vs_cmd_policy,
3490 .doit = ip_vs_genl_set_cmd,
3493 .cmd = IPVS_CMD_SET_SERVICE,
3494 .flags = GENL_ADMIN_PERM,
3495 .policy = ip_vs_cmd_policy,
3496 .doit = ip_vs_genl_set_cmd,
3499 .cmd = IPVS_CMD_DEL_SERVICE,
3500 .flags = GENL_ADMIN_PERM,
3501 .policy = ip_vs_cmd_policy,
3502 .doit = ip_vs_genl_set_cmd,
3505 .cmd = IPVS_CMD_GET_SERVICE,
3506 .flags = GENL_ADMIN_PERM,
3507 .doit = ip_vs_genl_get_cmd,
3508 .dumpit = ip_vs_genl_dump_services,
3509 .policy = ip_vs_cmd_policy,
3512 .cmd = IPVS_CMD_NEW_DEST,
3513 .flags = GENL_ADMIN_PERM,
3514 .policy = ip_vs_cmd_policy,
3515 .doit = ip_vs_genl_set_cmd,
3518 .cmd = IPVS_CMD_SET_DEST,
3519 .flags = GENL_ADMIN_PERM,
3520 .policy = ip_vs_cmd_policy,
3521 .doit = ip_vs_genl_set_cmd,
3524 .cmd = IPVS_CMD_DEL_DEST,
3525 .flags = GENL_ADMIN_PERM,
3526 .policy = ip_vs_cmd_policy,
3527 .doit = ip_vs_genl_set_cmd,
3530 .cmd = IPVS_CMD_GET_DEST,
3531 .flags = GENL_ADMIN_PERM,
3532 .policy = ip_vs_cmd_policy,
3533 .dumpit = ip_vs_genl_dump_dests,
3536 .cmd = IPVS_CMD_NEW_DAEMON,
3537 .flags = GENL_ADMIN_PERM,
3538 .policy = ip_vs_cmd_policy,
3539 .doit = ip_vs_genl_set_cmd,
3542 .cmd = IPVS_CMD_DEL_DAEMON,
3543 .flags = GENL_ADMIN_PERM,
3544 .policy = ip_vs_cmd_policy,
3545 .doit = ip_vs_genl_set_cmd,
3548 .cmd = IPVS_CMD_GET_DAEMON,
3549 .flags = GENL_ADMIN_PERM,
3550 .dumpit = ip_vs_genl_dump_daemons,
3553 .cmd = IPVS_CMD_SET_CONFIG,
3554 .flags = GENL_ADMIN_PERM,
3555 .policy = ip_vs_cmd_policy,
3556 .doit = ip_vs_genl_set_cmd,
3559 .cmd = IPVS_CMD_GET_CONFIG,
3560 .flags = GENL_ADMIN_PERM,
3561 .doit = ip_vs_genl_get_cmd,
3564 .cmd = IPVS_CMD_GET_INFO,
3565 .flags = GENL_ADMIN_PERM,
3566 .doit = ip_vs_genl_get_cmd,
3569 .cmd = IPVS_CMD_ZERO,
3570 .flags = GENL_ADMIN_PERM,
3571 .policy = ip_vs_cmd_policy,
3572 .doit = ip_vs_genl_set_cmd,
3575 .cmd = IPVS_CMD_FLUSH,
3576 .flags = GENL_ADMIN_PERM,
3577 .doit = ip_vs_genl_set_cmd,
3581 static int __init ip_vs_genl_register(void)
3583 return genl_register_family_with_ops(&ip_vs_genl_family,
3584 ip_vs_genl_ops, ARRAY_SIZE(ip_vs_genl_ops));
3587 static void ip_vs_genl_unregister(void)
3589 genl_unregister_family(&ip_vs_genl_family);
3592 /* End of Generic Netlink interface definitions */
3595 * per netns intit/exit func.
3597 #ifdef CONFIG_SYSCTL
3598 int __net_init __ip_vs_control_init_sysctl(struct net *net)
3600 int idx;
3601 struct netns_ipvs *ipvs = net_ipvs(net);
3602 struct ctl_table *tbl;
3604 atomic_set(&ipvs->dropentry, 0);
3605 spin_lock_init(&ipvs->dropentry_lock);
3606 spin_lock_init(&ipvs->droppacket_lock);
3607 spin_lock_init(&ipvs->securetcp_lock);
3609 if (!net_eq(net, &init_net)) {
3610 tbl = kmemdup(vs_vars, sizeof(vs_vars), GFP_KERNEL);
3611 if (tbl == NULL)
3612 return -ENOMEM;
3613 } else
3614 tbl = vs_vars;
3615 /* Initialize sysctl defaults */
3616 idx = 0;
3617 ipvs->sysctl_amemthresh = 1024;
3618 tbl[idx++].data = &ipvs->sysctl_amemthresh;
3619 ipvs->sysctl_am_droprate = 10;
3620 tbl[idx++].data = &ipvs->sysctl_am_droprate;
3621 tbl[idx++].data = &ipvs->sysctl_drop_entry;
3622 tbl[idx++].data = &ipvs->sysctl_drop_packet;
3623 #ifdef CONFIG_IP_VS_NFCT
3624 tbl[idx++].data = &ipvs->sysctl_conntrack;
3625 #endif
3626 tbl[idx++].data = &ipvs->sysctl_secure_tcp;
3627 ipvs->sysctl_snat_reroute = 1;
3628 tbl[idx++].data = &ipvs->sysctl_snat_reroute;
3629 ipvs->sysctl_sync_ver = 1;
3630 tbl[idx++].data = &ipvs->sysctl_sync_ver;
3631 tbl[idx++].data = &ipvs->sysctl_cache_bypass;
3632 tbl[idx++].data = &ipvs->sysctl_expire_nodest_conn;
3633 tbl[idx++].data = &ipvs->sysctl_expire_quiescent_template;
3634 ipvs->sysctl_sync_threshold[0] = DEFAULT_SYNC_THRESHOLD;
3635 ipvs->sysctl_sync_threshold[1] = DEFAULT_SYNC_PERIOD;
3636 tbl[idx].data = &ipvs->sysctl_sync_threshold;
3637 tbl[idx++].maxlen = sizeof(ipvs->sysctl_sync_threshold);
3638 tbl[idx++].data = &ipvs->sysctl_nat_icmp_send;
3641 ipvs->sysctl_hdr = register_net_sysctl_table(net, net_vs_ctl_path,
3642 tbl);
3643 if (ipvs->sysctl_hdr == NULL) {
3644 if (!net_eq(net, &init_net))
3645 kfree(tbl);
3646 return -ENOMEM;
3648 ip_vs_start_estimator(net, &ipvs->tot_stats);
3649 ipvs->sysctl_tbl = tbl;
3650 /* Schedule defense work */
3651 INIT_DELAYED_WORK(&ipvs->defense_work, defense_work_handler);
3652 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
3654 return 0;
3657 void __net_init __ip_vs_control_cleanup_sysctl(struct net *net)
3659 struct netns_ipvs *ipvs = net_ipvs(net);
3661 cancel_delayed_work_sync(&ipvs->defense_work);
3662 cancel_work_sync(&ipvs->defense_work.work);
3663 unregister_net_sysctl_table(ipvs->sysctl_hdr);
3666 #else
3668 int __net_init __ip_vs_control_init_sysctl(struct net *net) { return 0; }
3669 void __net_init __ip_vs_control_cleanup_sysctl(struct net *net) { }
3671 #endif
3673 static struct notifier_block ip_vs_dst_notifier = {
3674 .notifier_call = ip_vs_dst_event,
3677 int __net_init __ip_vs_control_init(struct net *net)
3679 int idx;
3680 struct netns_ipvs *ipvs = net_ipvs(net);
3682 ipvs->rs_lock = __RW_LOCK_UNLOCKED(ipvs->rs_lock);
3684 /* Initialize rs_table */
3685 for (idx = 0; idx < IP_VS_RTAB_SIZE; idx++)
3686 INIT_LIST_HEAD(&ipvs->rs_table[idx]);
3688 INIT_LIST_HEAD(&ipvs->dest_trash);
3689 atomic_set(&ipvs->ftpsvc_counter, 0);
3690 atomic_set(&ipvs->nullsvc_counter, 0);
3692 /* procfs stats */
3693 ipvs->tot_stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
3694 if (!ipvs->tot_stats.cpustats) {
3695 pr_err("%s(): alloc_percpu.\n", __func__);
3696 return -ENOMEM;
3698 spin_lock_init(&ipvs->tot_stats.lock);
3700 proc_net_fops_create(net, "ip_vs", 0, &ip_vs_info_fops);
3701 proc_net_fops_create(net, "ip_vs_stats", 0, &ip_vs_stats_fops);
3702 proc_net_fops_create(net, "ip_vs_stats_percpu", 0,
3703 &ip_vs_stats_percpu_fops);
3705 if (__ip_vs_control_init_sysctl(net))
3706 goto err;
3708 return 0;
3710 err:
3711 free_percpu(ipvs->tot_stats.cpustats);
3712 return -ENOMEM;
3715 void __net_exit __ip_vs_control_cleanup(struct net *net)
3717 struct netns_ipvs *ipvs = net_ipvs(net);
3719 ip_vs_trash_cleanup(net);
3720 ip_vs_stop_estimator(net, &ipvs->tot_stats);
3721 __ip_vs_control_cleanup_sysctl(net);
3722 proc_net_remove(net, "ip_vs_stats_percpu");
3723 proc_net_remove(net, "ip_vs_stats");
3724 proc_net_remove(net, "ip_vs");
3725 free_percpu(ipvs->tot_stats.cpustats);
3728 int __init ip_vs_control_init(void)
3730 int idx;
3731 int ret;
3733 EnterFunction(2);
3735 /* Initialize svc_table, ip_vs_svc_fwm_table, rs_table */
3736 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
3737 INIT_LIST_HEAD(&ip_vs_svc_table[idx]);
3738 INIT_LIST_HEAD(&ip_vs_svc_fwm_table[idx]);
3741 smp_wmb(); /* Do we really need it now ? */
3743 ret = nf_register_sockopt(&ip_vs_sockopts);
3744 if (ret) {
3745 pr_err("cannot register sockopt.\n");
3746 goto err_sock;
3749 ret = ip_vs_genl_register();
3750 if (ret) {
3751 pr_err("cannot register Generic Netlink interface.\n");
3752 goto err_genl;
3755 ret = register_netdevice_notifier(&ip_vs_dst_notifier);
3756 if (ret < 0)
3757 goto err_notf;
3759 LeaveFunction(2);
3760 return 0;
3762 err_notf:
3763 ip_vs_genl_unregister();
3764 err_genl:
3765 nf_unregister_sockopt(&ip_vs_sockopts);
3766 err_sock:
3767 return ret;
3771 void ip_vs_control_cleanup(void)
3773 EnterFunction(2);
3774 ip_vs_genl_unregister();
3775 nf_unregister_sockopt(&ip_vs_sockopts);
3776 LeaveFunction(2);