blob: bd2b208ba56c2f619b50e99289387d6190ac7d59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS An implementation of the IP virtual server support for the
3 * LINUX operating system. IPVS is now implemented as a module
4 * over the NetFilter framework. IPVS can be used to build a
5 * high-performance and highly available server based on a
6 * cluster of servers.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
9 * Peter Kese <peter.kese@ijs.si>
10 * Julian Anastasov <ja@ssi.bg>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * Changes:
18 *
19 */
20
Hannes Eder9aada7a2009-07-30 14:29:44 -070021#define KMSG_COMPONENT "IPVS"
22#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/types.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080027#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36#include <linux/netfilter.h>
37#include <linux/netfilter_ipv4.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080038#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020040#include <net/net_namespace.h>
Hans Schillstrom93304192011-01-03 14:44:51 +010041#include <linux/nsproxy.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <net/ip.h>
Vince Busam09571c72008-09-02 15:55:52 +020043#ifdef CONFIG_IP_VS_IPV6
44#include <net/ipv6.h>
45#include <net/ip6_route.h>
46#endif
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020047#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <net/sock.h>
Julius Volz9a812192008-08-14 14:08:44 +020049#include <net/genetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/uaccess.h>
52
53#include <net/ip_vs.h>
54
55/* semaphore for IPVS sockopts. And, [gs]etsockopt may sleep. */
Ingo Molnar14cc3e22006-03-26 01:37:14 -080056static DEFINE_MUTEX(__ip_vs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* sysctl variables */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#ifdef CONFIG_IP_VS_DEBUG
61static int sysctl_ip_vs_debug_level = 0;
62
63int ip_vs_get_debug_level(void)
64{
65 return sysctl_ip_vs_debug_level;
66}
67#endif
68
Hans Schillstrom7a4f0762011-05-03 22:09:31 +020069
70/* Protos */
Julian Anastasov578bc3e2013-03-22 11:46:49 +020071static void __ip_vs_del_service(struct ip_vs_service *svc, bool cleanup);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +020072
73
Vince Busam09571c72008-09-02 15:55:52 +020074#ifdef CONFIG_IP_VS_IPV6
75/* Taken from rt6_fill_node() in net/ipv6/route.c, is there a better way? */
Eric Dumazetc24584c2012-06-24 21:58:23 +000076static bool __ip_vs_addr_is_local_v6(struct net *net,
77 const struct in6_addr *addr)
Vince Busam09571c72008-09-02 15:55:52 +020078{
David S. Miller4c9483b2011-03-12 16:22:43 -050079 struct flowi6 fl6 = {
80 .daddr = *addr,
Vince Busam09571c72008-09-02 15:55:52 +020081 };
Eric Dumazetc24584c2012-06-24 21:58:23 +000082 struct dst_entry *dst = ip6_route_output(net, NULL, &fl6);
83 bool is_local;
Vince Busam09571c72008-09-02 15:55:52 +020084
Eric Dumazetc24584c2012-06-24 21:58:23 +000085 is_local = !dst->error && dst->dev && (dst->dev->flags & IFF_LOOPBACK);
Vince Busam09571c72008-09-02 15:55:52 +020086
Eric Dumazetc24584c2012-06-24 21:58:23 +000087 dst_release(dst);
88 return is_local;
Vince Busam09571c72008-09-02 15:55:52 +020089}
90#endif
Simon Horman14e40542011-02-04 18:33:02 +090091
92#ifdef CONFIG_SYSCTL
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/*
Julian Anastasovaf9debd2005-07-11 20:59:57 -070094 * update_defense_level is called from keventd and from sysctl,
95 * so it needs to protect itself from softirqs
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 */
Hans Schillstrom93304192011-01-03 14:44:51 +010097static void update_defense_level(struct netns_ipvs *ipvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 struct sysinfo i;
100 static int old_secure_tcp = 0;
101 int availmem;
102 int nomem;
103 int to_change = -1;
104
105 /* we only count free and buffered memory (in pages) */
106 si_meminfo(&i);
107 availmem = i.freeram + i.bufferram;
108 /* however in linux 2.5 the i.bufferram is total page cache size,
109 we need adjust it */
110 /* si_swapinfo(&i); */
111 /* availmem = availmem - (i.totalswap - i.freeswap); */
112
Hans Schillstroma0840e22011-01-03 14:44:58 +0100113 nomem = (availmem < ipvs->sysctl_amemthresh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Julian Anastasovaf9debd2005-07-11 20:59:57 -0700115 local_bh_disable();
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* drop_entry */
Hans Schillstroma0840e22011-01-03 14:44:58 +0100118 spin_lock(&ipvs->dropentry_lock);
119 switch (ipvs->sysctl_drop_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 case 0:
Hans Schillstroma0840e22011-01-03 14:44:58 +0100121 atomic_set(&ipvs->dropentry, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 break;
123 case 1:
124 if (nomem) {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100125 atomic_set(&ipvs->dropentry, 1);
126 ipvs->sysctl_drop_entry = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 } else {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100128 atomic_set(&ipvs->dropentry, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 break;
131 case 2:
132 if (nomem) {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100133 atomic_set(&ipvs->dropentry, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 } else {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100135 atomic_set(&ipvs->dropentry, 0);
136 ipvs->sysctl_drop_entry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 };
138 break;
139 case 3:
Hans Schillstroma0840e22011-01-03 14:44:58 +0100140 atomic_set(&ipvs->dropentry, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 break;
142 }
Hans Schillstroma0840e22011-01-03 14:44:58 +0100143 spin_unlock(&ipvs->dropentry_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* drop_packet */
Hans Schillstroma0840e22011-01-03 14:44:58 +0100146 spin_lock(&ipvs->droppacket_lock);
147 switch (ipvs->sysctl_drop_packet) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 case 0:
Hans Schillstroma0840e22011-01-03 14:44:58 +0100149 ipvs->drop_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 break;
151 case 1:
152 if (nomem) {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100153 ipvs->drop_rate = ipvs->drop_counter
154 = ipvs->sysctl_amemthresh /
155 (ipvs->sysctl_amemthresh-availmem);
156 ipvs->sysctl_drop_packet = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 } else {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100158 ipvs->drop_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160 break;
161 case 2:
162 if (nomem) {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100163 ipvs->drop_rate = ipvs->drop_counter
164 = ipvs->sysctl_amemthresh /
165 (ipvs->sysctl_amemthresh-availmem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 } else {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100167 ipvs->drop_rate = 0;
168 ipvs->sysctl_drop_packet = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 }
170 break;
171 case 3:
Hans Schillstroma0840e22011-01-03 14:44:58 +0100172 ipvs->drop_rate = ipvs->sysctl_am_droprate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 break;
174 }
Hans Schillstroma0840e22011-01-03 14:44:58 +0100175 spin_unlock(&ipvs->droppacket_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 /* secure_tcp */
Hans Schillstroma0840e22011-01-03 14:44:58 +0100178 spin_lock(&ipvs->securetcp_lock);
179 switch (ipvs->sysctl_secure_tcp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 case 0:
181 if (old_secure_tcp >= 2)
182 to_change = 0;
183 break;
184 case 1:
185 if (nomem) {
186 if (old_secure_tcp < 2)
187 to_change = 1;
Hans Schillstroma0840e22011-01-03 14:44:58 +0100188 ipvs->sysctl_secure_tcp = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 } else {
190 if (old_secure_tcp >= 2)
191 to_change = 0;
192 }
193 break;
194 case 2:
195 if (nomem) {
196 if (old_secure_tcp < 2)
197 to_change = 1;
198 } else {
199 if (old_secure_tcp >= 2)
200 to_change = 0;
Hans Schillstroma0840e22011-01-03 14:44:58 +0100201 ipvs->sysctl_secure_tcp = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203 break;
204 case 3:
205 if (old_secure_tcp < 2)
206 to_change = 1;
207 break;
208 }
Hans Schillstroma0840e22011-01-03 14:44:58 +0100209 old_secure_tcp = ipvs->sysctl_secure_tcp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (to_change >= 0)
Hans Schillstrom93304192011-01-03 14:44:51 +0100211 ip_vs_protocol_timeout_change(ipvs,
Hans Schillstroma0840e22011-01-03 14:44:58 +0100212 ipvs->sysctl_secure_tcp > 1);
213 spin_unlock(&ipvs->securetcp_lock);
Julian Anastasovaf9debd2005-07-11 20:59:57 -0700214
215 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
218
219/*
220 * Timer for checking the defense
221 */
222#define DEFENSE_TIMER_PERIOD 1*HZ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
David Howellsc4028952006-11-22 14:57:56 +0000224static void defense_work_handler(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Hans Schillstromf6340ee2011-01-03 14:44:59 +0100226 struct netns_ipvs *ipvs =
227 container_of(work, struct netns_ipvs, defense_work.work);
Hans Schillstrom93304192011-01-03 14:44:51 +0100228
229 update_defense_level(ipvs);
Hans Schillstroma0840e22011-01-03 14:44:58 +0100230 if (atomic_read(&ipvs->dropentry))
Hans Schillstromf6340ee2011-01-03 14:44:59 +0100231 ip_vs_random_dropentry(ipvs->net);
232 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
Simon Horman14e40542011-02-04 18:33:02 +0900234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236int
237ip_vs_use_count_inc(void)
238{
239 return try_module_get(THIS_MODULE);
240}
241
242void
243ip_vs_use_count_dec(void)
244{
245 module_put(THIS_MODULE);
246}
247
248
249/*
250 * Hash table: for virtual service lookups
251 */
252#define IP_VS_SVC_TAB_BITS 8
253#define IP_VS_SVC_TAB_SIZE (1 << IP_VS_SVC_TAB_BITS)
254#define IP_VS_SVC_TAB_MASK (IP_VS_SVC_TAB_SIZE - 1)
255
256/* the service table hashed by <protocol, addr, port> */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200257static struct hlist_head ip_vs_svc_table[IP_VS_SVC_TAB_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* the service table hashed by fwmark */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200259static struct hlist_head ip_vs_svc_fwm_table[IP_VS_SVC_TAB_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262/*
263 * Returns hash value for virtual service
264 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000265static inline unsigned int
266ip_vs_svc_hashkey(struct net *net, int af, unsigned int proto,
Hans Schillstromfc723252011-01-03 14:44:43 +0100267 const union nf_inet_addr *addr, __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Eric Dumazet95c96172012-04-15 05:58:06 +0000269 register unsigned int porth = ntohs(port);
Julius Volzb18610d2008-09-02 15:55:37 +0200270 __be32 addr_fold = addr->ip;
Julian Anastasove9836f22013-03-09 23:25:07 +0200271 __u32 ahash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Julius Volzb18610d2008-09-02 15:55:37 +0200273#ifdef CONFIG_IP_VS_IPV6
274 if (af == AF_INET6)
275 addr_fold = addr->ip6[0]^addr->ip6[1]^
276 addr->ip6[2]^addr->ip6[3];
277#endif
Julian Anastasove9836f22013-03-09 23:25:07 +0200278 ahash = ntohl(addr_fold);
279 ahash ^= ((size_t) net >> 8);
Julius Volzb18610d2008-09-02 15:55:37 +0200280
Julian Anastasove9836f22013-03-09 23:25:07 +0200281 return (proto ^ ahash ^ (porth >> IP_VS_SVC_TAB_BITS) ^ porth) &
282 IP_VS_SVC_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285/*
286 * Returns hash value of fwmark for virtual service lookup
287 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000288static inline unsigned int ip_vs_svc_fwm_hashkey(struct net *net, __u32 fwmark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Hans Schillstromfc723252011-01-03 14:44:43 +0100290 return (((size_t)net>>8) ^ fwmark) & IP_VS_SVC_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293/*
Hans Schillstromfc723252011-01-03 14:44:43 +0100294 * Hashes a service in the ip_vs_svc_table by <netns,proto,addr,port>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * or in the ip_vs_svc_fwm_table by fwmark.
296 * Should be called with locked tables.
297 */
298static int ip_vs_svc_hash(struct ip_vs_service *svc)
299{
Eric Dumazet95c96172012-04-15 05:58:06 +0000300 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (svc->flags & IP_VS_SVC_F_HASHED) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000303 pr_err("%s(): request for already hashed, called from %pF\n",
304 __func__, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 0;
306 }
307
308 if (svc->fwmark == 0) {
309 /*
Hans Schillstromfc723252011-01-03 14:44:43 +0100310 * Hash it by <netns,protocol,addr,port> in ip_vs_svc_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100312 hash = ip_vs_svc_hashkey(svc->net, svc->af, svc->protocol,
313 &svc->addr, svc->port);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200314 hlist_add_head_rcu(&svc->s_list, &ip_vs_svc_table[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 } else {
316 /*
Hans Schillstromfc723252011-01-03 14:44:43 +0100317 * Hash it by fwmark in svc_fwm_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100319 hash = ip_vs_svc_fwm_hashkey(svc->net, svc->fwmark);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200320 hlist_add_head_rcu(&svc->f_list, &ip_vs_svc_fwm_table[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
323 svc->flags |= IP_VS_SVC_F_HASHED;
324 /* increase its refcnt because it is referenced by the svc table */
325 atomic_inc(&svc->refcnt);
326 return 1;
327}
328
329
330/*
Hans Schillstromfc723252011-01-03 14:44:43 +0100331 * Unhashes a service from svc_table / svc_fwm_table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * Should be called with locked tables.
333 */
334static int ip_vs_svc_unhash(struct ip_vs_service *svc)
335{
336 if (!(svc->flags & IP_VS_SVC_F_HASHED)) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000337 pr_err("%s(): request for unhash flagged, called from %pF\n",
338 __func__, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return 0;
340 }
341
342 if (svc->fwmark == 0) {
Hans Schillstromfc723252011-01-03 14:44:43 +0100343 /* Remove it from the svc_table table */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200344 hlist_del_rcu(&svc->s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 } else {
Hans Schillstromfc723252011-01-03 14:44:43 +0100346 /* Remove it from the svc_fwm_table table */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200347 hlist_del_rcu(&svc->f_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
349
350 svc->flags &= ~IP_VS_SVC_F_HASHED;
351 atomic_dec(&svc->refcnt);
352 return 1;
353}
354
355
356/*
Hans Schillstromfc723252011-01-03 14:44:43 +0100357 * Get service by {netns, proto,addr,port} in the service table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 */
Julius Volzb18610d2008-09-02 15:55:37 +0200359static inline struct ip_vs_service *
Hans Schillstromfc723252011-01-03 14:44:43 +0100360__ip_vs_service_find(struct net *net, int af, __u16 protocol,
361 const union nf_inet_addr *vaddr, __be16 vport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Eric Dumazet95c96172012-04-15 05:58:06 +0000363 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 struct ip_vs_service *svc;
365
366 /* Check for "full" addressed entries */
Hans Schillstromfc723252011-01-03 14:44:43 +0100367 hash = ip_vs_svc_hashkey(net, af, protocol, vaddr, vport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Julian Anastasovceec4c32013-03-22 11:46:53 +0200369 hlist_for_each_entry_rcu(svc, &ip_vs_svc_table[hash], s_list) {
Julius Volzb18610d2008-09-02 15:55:37 +0200370 if ((svc->af == af)
371 && ip_vs_addr_equal(af, &svc->addr, vaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 && (svc->port == vport)
Hans Schillstromfc723252011-01-03 14:44:43 +0100373 && (svc->protocol == protocol)
374 && net_eq(svc->net, net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* HIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return svc;
377 }
378 }
379
380 return NULL;
381}
382
383
384/*
385 * Get service by {fwmark} in the service table.
386 */
Julius Volzb18610d2008-09-02 15:55:37 +0200387static inline struct ip_vs_service *
Hans Schillstromfc723252011-01-03 14:44:43 +0100388__ip_vs_svc_fwm_find(struct net *net, int af, __u32 fwmark)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Eric Dumazet95c96172012-04-15 05:58:06 +0000390 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 struct ip_vs_service *svc;
392
393 /* Check for fwmark addressed entries */
Hans Schillstromfc723252011-01-03 14:44:43 +0100394 hash = ip_vs_svc_fwm_hashkey(net, fwmark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Julian Anastasovceec4c32013-03-22 11:46:53 +0200396 hlist_for_each_entry_rcu(svc, &ip_vs_svc_fwm_table[hash], f_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +0100397 if (svc->fwmark == fwmark && svc->af == af
398 && net_eq(svc->net, net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 /* HIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return svc;
401 }
402 }
403
404 return NULL;
405}
406
Julian Anastasovceec4c32013-03-22 11:46:53 +0200407/* Find service, called under RCU lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408struct ip_vs_service *
Julian Anastasovceec4c32013-03-22 11:46:53 +0200409ip_vs_service_find(struct net *net, int af, __u32 fwmark, __u16 protocol,
410 const union nf_inet_addr *vaddr, __be16 vport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct ip_vs_service *svc;
Hans Schillstrom763f8d02011-01-03 14:45:01 +0100413 struct netns_ipvs *ipvs = net_ipvs(net);
Julius Volz3c2e0502008-09-02 15:55:38 +0200414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /*
416 * Check the table hashed by fwmark first
417 */
Julian Anastasov097fc762011-03-04 12:26:17 +0200418 if (fwmark) {
419 svc = __ip_vs_svc_fwm_find(net, af, fwmark);
420 if (svc)
421 goto out;
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 /*
425 * Check the table hashed by <protocol,addr,port>
426 * for "full" addressed entries
427 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100428 svc = __ip_vs_service_find(net, af, protocol, vaddr, vport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (svc == NULL
431 && protocol == IPPROTO_TCP
Hans Schillstrom763f8d02011-01-03 14:45:01 +0100432 && atomic_read(&ipvs->ftpsvc_counter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 && (vport == FTPDATA || ntohs(vport) >= PROT_SOCK)) {
434 /*
435 * Check if ftp service entry exists, the packet
436 * might belong to FTP data connections.
437 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100438 svc = __ip_vs_service_find(net, af, protocol, vaddr, FTPPORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 if (svc == NULL
Hans Schillstrom763f8d02011-01-03 14:45:01 +0100442 && atomic_read(&ipvs->nullsvc_counter)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /*
444 * Check if the catch-all port (port zero) exists
445 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100446 svc = __ip_vs_service_find(net, af, protocol, vaddr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 }
448
449 out:
Julius Volz3c2e0502008-09-02 15:55:38 +0200450 IP_VS_DBG_BUF(9, "lookup service: fwm %u %s %s:%u %s\n",
451 fwmark, ip_vs_proto_name(protocol),
452 IP_VS_DBG_ADDR(af, vaddr), ntohs(vport),
453 svc ? "hit" : "not hit");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 return svc;
456}
457
458
459static inline void
460__ip_vs_bind_svc(struct ip_vs_dest *dest, struct ip_vs_service *svc)
461{
462 atomic_inc(&svc->refcnt);
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300463 rcu_assign_pointer(dest->svc, svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Julian Anastasovceec4c32013-03-22 11:46:53 +0200466static void ip_vs_service_free(struct ip_vs_service *svc)
467{
468 if (svc->stats.cpustats)
469 free_percpu(svc->stats.cpustats);
470 kfree(svc);
471}
472
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300473static void ip_vs_service_rcu_free(struct rcu_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300475 struct ip_vs_service *svc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300477 svc = container_of(head, struct ip_vs_service, rcu_head);
478 ip_vs_service_free(svc);
479}
480
481static void __ip_vs_svc_put(struct ip_vs_service *svc, bool do_delay)
482{
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200483 if (atomic_dec_and_test(&svc->refcnt)) {
Julian Anastasovceec4c32013-03-22 11:46:53 +0200484 IP_VS_DBG_BUF(3, "Removing service %u/%s:%u\n",
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200485 svc->fwmark,
486 IP_VS_DBG_ADDR(svc->af, &svc->addr),
Julian Anastasovceec4c32013-03-22 11:46:53 +0200487 ntohs(svc->port));
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300488 if (do_delay)
489 call_rcu(&svc->rcu_head, ip_vs_service_rcu_free);
490 else
491 ip_vs_service_free(svc);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
495
496/*
497 * Returns hash value for real service
498 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000499static inline unsigned int ip_vs_rs_hashkey(int af,
Julius Volz7937df12008-09-02 15:55:48 +0200500 const union nf_inet_addr *addr,
501 __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Eric Dumazet95c96172012-04-15 05:58:06 +0000503 register unsigned int porth = ntohs(port);
Julius Volz7937df12008-09-02 15:55:48 +0200504 __be32 addr_fold = addr->ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Julius Volz7937df12008-09-02 15:55:48 +0200506#ifdef CONFIG_IP_VS_IPV6
507 if (af == AF_INET6)
508 addr_fold = addr->ip6[0]^addr->ip6[1]^
509 addr->ip6[2]^addr->ip6[3];
510#endif
511
512 return (ntohl(addr_fold)^(porth>>IP_VS_RTAB_BITS)^porth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 & IP_VS_RTAB_MASK;
514}
515
Julian Anastasov276472e2013-03-21 11:58:08 +0200516/* Hash ip_vs_dest in rs_table by <proto,addr,port>. */
517static void ip_vs_rs_hash(struct netns_ipvs *ipvs, struct ip_vs_dest *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Eric Dumazet95c96172012-04-15 05:58:06 +0000519 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Julian Anastasov276472e2013-03-21 11:58:08 +0200521 if (dest->in_rs_table)
522 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /*
525 * Hash by proto,addr,port,
526 * which are the parameters of the real service.
527 */
Julius Volz7937df12008-09-02 15:55:48 +0200528 hash = ip_vs_rs_hashkey(dest->af, &dest->addr, dest->port);
529
Julian Anastasov276472e2013-03-21 11:58:08 +0200530 hlist_add_head_rcu(&dest->d_list, &ipvs->rs_table[hash]);
531 dest->in_rs_table = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Julian Anastasov276472e2013-03-21 11:58:08 +0200534/* Unhash ip_vs_dest from rs_table. */
535static void ip_vs_rs_unhash(struct ip_vs_dest *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 /*
Hans Schillstromfc723252011-01-03 14:44:43 +0100538 * Remove it from the rs_table table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Julian Anastasov276472e2013-03-21 11:58:08 +0200540 if (dest->in_rs_table) {
541 hlist_del_rcu(&dest->d_list);
542 dest->in_rs_table = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Julian Anastasov276472e2013-03-21 11:58:08 +0200546/* Check if real service by <proto,addr,port> is present */
547bool ip_vs_has_real_service(struct net *net, int af, __u16 protocol,
548 const union nf_inet_addr *daddr, __be16 dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
Hans Schillstromfc723252011-01-03 14:44:43 +0100550 struct netns_ipvs *ipvs = net_ipvs(net);
Eric Dumazet95c96172012-04-15 05:58:06 +0000551 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 struct ip_vs_dest *dest;
553
Julian Anastasov276472e2013-03-21 11:58:08 +0200554 /* Check for "full" addressed entries */
Julius Volz7937df12008-09-02 15:55:48 +0200555 hash = ip_vs_rs_hashkey(af, daddr, dport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Julian Anastasov276472e2013-03-21 11:58:08 +0200557 rcu_read_lock();
558 hlist_for_each_entry_rcu(dest, &ipvs->rs_table[hash], d_list) {
559 if (dest->port == dport &&
560 dest->af == af &&
561 ip_vs_addr_equal(af, &dest->addr, daddr) &&
562 (dest->protocol == protocol || dest->vfwmark)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* HIT */
Julian Anastasov276472e2013-03-21 11:58:08 +0200564 rcu_read_unlock();
565 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567 }
Julian Anastasov276472e2013-03-21 11:58:08 +0200568 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Julian Anastasov276472e2013-03-21 11:58:08 +0200570 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Julian Anastasov413c2d042013-03-22 11:46:52 +0200573/* Lookup destination by {addr,port} in the given service
574 * Called under RCU lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 */
576static struct ip_vs_dest *
Julius Volz7937df12008-09-02 15:55:48 +0200577ip_vs_lookup_dest(struct ip_vs_service *svc, const union nf_inet_addr *daddr,
578 __be16 dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct ip_vs_dest *dest;
581
582 /*
583 * Find the destination for the given service
584 */
Julian Anastasov413c2d042013-03-22 11:46:52 +0200585 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
Julius Volz7937df12008-09-02 15:55:48 +0200586 if ((dest->af == svc->af)
587 && ip_vs_addr_equal(svc->af, &dest->addr, daddr)
588 && (dest->port == dport)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* HIT */
590 return dest;
591 }
592 }
593
594 return NULL;
595}
596
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800597/*
598 * Find destination by {daddr,dport,vaddr,protocol}
Julian Anastasov413c2d042013-03-22 11:46:52 +0200599 * Created to be used in ip_vs_process_message() in
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800600 * the backup synchronization daemon. It finds the
601 * destination to be bound to the received connection
602 * on the backup.
Julian Anastasov413c2d042013-03-22 11:46:52 +0200603 * Called under RCU lock, no refcnt is returned.
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800604 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100605struct ip_vs_dest *ip_vs_find_dest(struct net *net, int af,
606 const union nf_inet_addr *daddr,
Julius Volz7937df12008-09-02 15:55:48 +0200607 __be16 dport,
608 const union nf_inet_addr *vaddr,
Julian Anastasov52793db2011-12-30 14:19:02 +0900609 __be16 vport, __u16 protocol, __u32 fwmark,
610 __u32 flags)
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800611{
612 struct ip_vs_dest *dest;
613 struct ip_vs_service *svc;
Julian Anastasov52793db2011-12-30 14:19:02 +0900614 __be16 port = dport;
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800615
Julian Anastasovceec4c32013-03-22 11:46:53 +0200616 svc = ip_vs_service_find(net, af, fwmark, protocol, vaddr, vport);
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800617 if (!svc)
618 return NULL;
Julian Anastasov52793db2011-12-30 14:19:02 +0900619 if (fwmark && (flags & IP_VS_CONN_F_FWD_MASK) != IP_VS_CONN_F_MASQ)
620 port = 0;
621 dest = ip_vs_lookup_dest(svc, daddr, port);
622 if (!dest)
623 dest = ip_vs_lookup_dest(svc, daddr, port ^ dport);
Rumen G. Bogdanovski1e356f92007-11-07 02:35:54 -0800624 return dest;
625}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Julian Anastasov026ace02013-03-21 11:58:06 +0200627void ip_vs_dest_dst_rcu_free(struct rcu_head *head)
628{
629 struct ip_vs_dest_dst *dest_dst = container_of(head,
630 struct ip_vs_dest_dst,
631 rcu_head);
632
633 dst_release(dest_dst->dst_cache);
634 kfree(dest_dst);
635}
636
637/* Release dest_dst and dst_cache for dest in user context */
Julian Anastasovd1deae42013-03-21 11:58:02 +0200638static void __ip_vs_dst_cache_reset(struct ip_vs_dest *dest)
639{
Julian Anastasov026ace02013-03-21 11:58:06 +0200640 struct ip_vs_dest_dst *old;
Julian Anastasovd1deae42013-03-21 11:58:02 +0200641
Julian Anastasov026ace02013-03-21 11:58:06 +0200642 old = rcu_dereference_protected(dest->dest_dst, 1);
643 if (old) {
644 RCU_INIT_POINTER(dest->dest_dst, NULL);
645 call_rcu(&old->rcu_head, ip_vs_dest_dst_rcu_free);
646 }
Julian Anastasovd1deae42013-03-21 11:58:02 +0200647}
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649/*
650 * Lookup dest by {svc,addr,port} in the destination trash.
651 * The destination trash is used to hold the destinations that are removed
652 * from the service table but are still referenced by some conn entries.
653 * The reason to add the destination trash is when the dest is temporary
654 * down (either by administrator or by monitor program), the dest can be
655 * picked back from the trash, the remaining connections to the dest can
656 * continue, and the counting information of the dest is also useful for
657 * scheduling.
658 */
659static struct ip_vs_dest *
Julius Volz7937df12008-09-02 15:55:48 +0200660ip_vs_trash_get_dest(struct ip_vs_service *svc, const union nf_inet_addr *daddr,
661 __be16 dport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200663 struct ip_vs_dest *dest;
Hans Schillstromf2431e62011-01-03 14:45:00 +0100664 struct netns_ipvs *ipvs = net_ipvs(svc->net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666 /*
667 * Find the destination in trash
668 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200669 spin_lock_bh(&ipvs->dest_trash_lock);
670 list_for_each_entry(dest, &ipvs->dest_trash, t_list) {
Julius Volz7937df12008-09-02 15:55:48 +0200671 IP_VS_DBG_BUF(3, "Destination %u/%s:%u still in trash, "
672 "dest->refcnt=%d\n",
673 dest->vfwmark,
674 IP_VS_DBG_ADDR(svc->af, &dest->addr),
675 ntohs(dest->port),
676 atomic_read(&dest->refcnt));
677 if (dest->af == svc->af &&
678 ip_vs_addr_equal(svc->af, &dest->addr, daddr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 dest->port == dport &&
680 dest->vfwmark == svc->fwmark &&
681 dest->protocol == svc->protocol &&
682 (svc->fwmark ||
Julius Volz7937df12008-09-02 15:55:48 +0200683 (ip_vs_addr_equal(svc->af, &dest->vaddr, &svc->addr) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 dest->vport == svc->port))) {
685 /* HIT */
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200686 list_del(&dest->t_list);
687 ip_vs_dest_hold(dest);
688 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 }
690 }
691
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200692 dest = NULL;
693
694out:
695 spin_unlock_bh(&ipvs->dest_trash_lock);
696
697 return dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200700static void ip_vs_dest_free(struct ip_vs_dest *dest)
701{
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300702 struct ip_vs_service *svc = rcu_dereference_protected(dest->svc, 1);
703
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200704 __ip_vs_dst_cache_reset(dest);
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300705 __ip_vs_svc_put(svc, false);
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200706 free_percpu(dest->stats.cpustats);
Julian Anastasov9e4e9482013-10-09 09:24:27 +0300707 ip_vs_dest_put_and_free(dest);
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200708}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710/*
711 * Clean up all the destinations in the trash
712 * Called by the ip_vs_control_cleanup()
713 *
714 * When the ip_vs_control_clearup is activated by ipvs module exit,
715 * the service tables must have been flushed and all the connections
716 * are expired, and the refcnt of each destination in the trash must
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200717 * be 0, so we simply release them here.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 */
Hans Schillstromf2431e62011-01-03 14:45:00 +0100719static void ip_vs_trash_cleanup(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 struct ip_vs_dest *dest, *nxt;
Hans Schillstromf2431e62011-01-03 14:45:00 +0100722 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200724 del_timer_sync(&ipvs->dest_trash_timer);
725 /* No need to use dest_trash_lock */
726 list_for_each_entry_safe(dest, nxt, &ipvs->dest_trash, t_list) {
727 list_del(&dest->t_list);
728 ip_vs_dest_free(dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
730}
731
Julian Anastasov55a3d4e2011-03-14 01:37:49 +0200732static void
733ip_vs_copy_stats(struct ip_vs_stats_user *dst, struct ip_vs_stats *src)
734{
735#define IP_VS_SHOW_STATS_COUNTER(c) dst->c = src->ustats.c - src->ustats0.c
Julian Anastasov55a3d4e2011-03-14 01:37:49 +0200736
737 spin_lock_bh(&src->lock);
738
739 IP_VS_SHOW_STATS_COUNTER(conns);
740 IP_VS_SHOW_STATS_COUNTER(inpkts);
741 IP_VS_SHOW_STATS_COUNTER(outpkts);
742 IP_VS_SHOW_STATS_COUNTER(inbytes);
743 IP_VS_SHOW_STATS_COUNTER(outbytes);
744
Julian Anastasovea9f22c2011-03-14 01:41:54 +0200745 ip_vs_read_estimator(dst, src);
Julian Anastasov55a3d4e2011-03-14 01:37:49 +0200746
747 spin_unlock_bh(&src->lock);
748}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750static void
751ip_vs_zero_stats(struct ip_vs_stats *stats)
752{
753 spin_lock_bh(&stats->lock);
Simon Hormane93615d2008-08-11 17:19:14 +1000754
Julian Anastasov55a3d4e2011-03-14 01:37:49 +0200755 /* get current counters as zero point, rates are zeroed */
756
757#define IP_VS_ZERO_STATS_COUNTER(c) stats->ustats0.c = stats->ustats.c
Julian Anastasov55a3d4e2011-03-14 01:37:49 +0200758
759 IP_VS_ZERO_STATS_COUNTER(conns);
760 IP_VS_ZERO_STATS_COUNTER(inpkts);
761 IP_VS_ZERO_STATS_COUNTER(outpkts);
762 IP_VS_ZERO_STATS_COUNTER(inbytes);
763 IP_VS_ZERO_STATS_COUNTER(outbytes);
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 ip_vs_zero_estimator(stats);
Simon Hormane93615d2008-08-11 17:19:14 +1000766
Sven Wegener3a14a3132008-08-10 18:24:41 +0000767 spin_unlock_bh(&stats->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770/*
771 * Update a destination in the given service
772 */
773static void
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200774__ip_vs_update_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest,
775 struct ip_vs_dest_user_kern *udest, int add)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Hans Schillstromfc723252011-01-03 14:44:43 +0100777 struct netns_ipvs *ipvs = net_ipvs(svc->net);
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300778 struct ip_vs_service *old_svc;
Julian Anastasovceec4c32013-03-22 11:46:53 +0200779 struct ip_vs_scheduler *sched;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int conn_flags;
781
782 /* set the weight and the flags */
783 atomic_set(&dest->weight, udest->weight);
Julian Anastasov35757922010-09-17 14:18:16 +0200784 conn_flags = udest->conn_flags & IP_VS_CONN_F_DEST_MASK;
785 conn_flags |= IP_VS_CONN_F_INACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* set the IP_VS_CONN_F_NOOUTPUT flag if not masquerading/NAT */
Julian Anastasov35757922010-09-17 14:18:16 +0200788 if ((conn_flags & IP_VS_CONN_F_FWD_MASK) != IP_VS_CONN_F_MASQ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 conn_flags |= IP_VS_CONN_F_NOOUTPUT;
790 } else {
791 /*
Hans Schillstromfc723252011-01-03 14:44:43 +0100792 * Put the real service in rs_table if not present.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * For now only for NAT!
794 */
Hans Schillstromfc723252011-01-03 14:44:43 +0100795 ip_vs_rs_hash(ipvs, dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 atomic_set(&dest->conn_flags, conn_flags);
798
799 /* bind the service */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300800 old_svc = rcu_dereference_protected(dest->svc, 1);
801 if (!old_svc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 __ip_vs_bind_svc(dest, svc);
803 } else {
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300804 if (old_svc != svc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 ip_vs_zero_stats(&dest->stats);
806 __ip_vs_bind_svc(dest, svc);
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300807 __ip_vs_svc_put(old_svc, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809 }
810
811 /* set the dest status flags */
812 dest->flags |= IP_VS_DEST_F_AVAILABLE;
813
814 if (udest->u_threshold == 0 || udest->u_threshold > dest->u_threshold)
815 dest->flags &= ~IP_VS_DEST_F_OVERLOAD;
816 dest->u_threshold = udest->u_threshold;
817 dest->l_threshold = udest->l_threshold;
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200818
Julian Anastasovff75f402011-02-22 10:40:25 +0200819 spin_lock_bh(&dest->dst_lock);
Julian Anastasovd1deae42013-03-21 11:58:02 +0200820 __ip_vs_dst_cache_reset(dest);
Julian Anastasovff75f402011-02-22 10:40:25 +0200821 spin_unlock_bh(&dest->dst_lock);
Julian Anastasovfc604762010-10-17 16:38:15 +0300822
Julian Anastasovceec4c32013-03-22 11:46:53 +0200823 sched = rcu_dereference_protected(svc->scheduler, 1);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200824 if (add) {
Julian Anastasovceec4c32013-03-22 11:46:53 +0200825 ip_vs_start_estimator(svc->net, &dest->stats);
Julian Anastasov413c2d042013-03-22 11:46:52 +0200826 list_add_rcu(&dest->n_list, &svc->destinations);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200827 svc->num_dests++;
Julian Anastasovceec4c32013-03-22 11:46:53 +0200828 if (sched->add_dest)
829 sched->add_dest(svc, dest);
Julian Anastasov6b6df462013-03-22 11:46:37 +0200830 } else {
Julian Anastasovceec4c32013-03-22 11:46:53 +0200831 if (sched->upd_dest)
832 sched->upd_dest(svc, dest);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
836
837/*
838 * Create a destination for the given service
839 */
840static int
Julius Volzc860c6b2008-09-02 15:55:36 +0200841ip_vs_new_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct ip_vs_dest **dest_p)
843{
844 struct ip_vs_dest *dest;
John Stultz827da442013-10-07 15:51:58 -0700845 unsigned int atype, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 EnterFunction(2);
848
Vince Busam09571c72008-09-02 15:55:52 +0200849#ifdef CONFIG_IP_VS_IPV6
850 if (svc->af == AF_INET6) {
851 atype = ipv6_addr_type(&udest->addr.in6);
Sven Wegener3bfb92f2008-09-05 16:53:49 +0200852 if ((!(atype & IPV6_ADDR_UNICAST) ||
853 atype & IPV6_ADDR_LINKLOCAL) &&
Hans Schillstrom4a984802011-01-03 14:45:02 +0100854 !__ip_vs_addr_is_local_v6(svc->net, &udest->addr.in6))
Vince Busam09571c72008-09-02 15:55:52 +0200855 return -EINVAL;
856 } else
857#endif
858 {
Hans Schillstrom4a984802011-01-03 14:45:02 +0100859 atype = inet_addr_type(svc->net, udest->addr.ip);
Vince Busam09571c72008-09-02 15:55:52 +0200860 if (atype != RTN_LOCAL && atype != RTN_UNICAST)
861 return -EINVAL;
862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Simon Hormandee06e42010-08-26 02:54:31 +0000864 dest = kzalloc(sizeof(struct ip_vs_dest), GFP_KERNEL);
Joe Perches0a9ee812011-08-29 14:17:25 -0700865 if (dest == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -0700867
Hans Schillstromb17fc992011-01-03 14:44:56 +0100868 dest->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
Joe Perches0a9ee812011-08-29 14:17:25 -0700869 if (!dest->stats.cpustats)
Hans Schillstromb17fc992011-01-03 14:44:56 +0100870 goto err_alloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
John Stultz827da442013-10-07 15:51:58 -0700872 for_each_possible_cpu(i) {
873 struct ip_vs_cpu_stats *ip_vs_dest_stats;
874 ip_vs_dest_stats = per_cpu_ptr(dest->stats.cpustats, i);
875 u64_stats_init(&ip_vs_dest_stats->syncp);
876 }
877
Julius Volzc860c6b2008-09-02 15:55:36 +0200878 dest->af = svc->af;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 dest->protocol = svc->protocol;
Julius Volzc860c6b2008-09-02 15:55:36 +0200880 dest->vaddr = svc->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dest->vport = svc->port;
882 dest->vfwmark = svc->fwmark;
Julius Volzc860c6b2008-09-02 15:55:36 +0200883 ip_vs_addr_copy(svc->af, &dest->addr, &udest->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 dest->port = udest->port;
885
886 atomic_set(&dest->activeconns, 0);
887 atomic_set(&dest->inactconns, 0);
888 atomic_set(&dest->persistconns, 0);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200889 atomic_set(&dest->refcnt, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Julian Anastasov276472e2013-03-21 11:58:08 +0200891 INIT_HLIST_NODE(&dest->d_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 spin_lock_init(&dest->dst_lock);
893 spin_lock_init(&dest->stats.lock);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200894 __ip_vs_update_dest(svc, dest, udest, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 *dest_p = dest;
897
898 LeaveFunction(2);
899 return 0;
Hans Schillstromb17fc992011-01-03 14:44:56 +0100900
901err_alloc:
902 kfree(dest);
903 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
906
907/*
908 * Add a destination into an existing service
909 */
910static int
Julius Volzc860c6b2008-09-02 15:55:36 +0200911ip_vs_add_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct ip_vs_dest *dest;
Julius Volzc860c6b2008-09-02 15:55:36 +0200914 union nf_inet_addr daddr;
Al Viro014d7302006-09-28 14:29:52 -0700915 __be16 dport = udest->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int ret;
917
918 EnterFunction(2);
919
920 if (udest->weight < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000921 pr_err("%s(): server weight less than zero\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return -ERANGE;
923 }
924
925 if (udest->l_threshold > udest->u_threshold) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000926 pr_err("%s(): lower threshold is higher than upper threshold\n",
927 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return -ERANGE;
929 }
930
Julius Volzc860c6b2008-09-02 15:55:36 +0200931 ip_vs_addr_copy(svc->af, &daddr, &udest->addr);
932
Julian Anastasov413c2d042013-03-22 11:46:52 +0200933 /* We use function that requires RCU lock */
934 rcu_read_lock();
Julius Volz7937df12008-09-02 15:55:48 +0200935 dest = ip_vs_lookup_dest(svc, &daddr, dport);
Julian Anastasov413c2d042013-03-22 11:46:52 +0200936 rcu_read_unlock();
Julius Volz7937df12008-09-02 15:55:48 +0200937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 if (dest != NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000939 IP_VS_DBG(1, "%s(): dest already exists\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -EEXIST;
941 }
942
943 /*
944 * Check if the dest already exists in the trash and
945 * is from the same service
946 */
Julius Volz7937df12008-09-02 15:55:48 +0200947 dest = ip_vs_trash_get_dest(svc, &daddr, dport);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (dest != NULL) {
Julius Volzcfc78c52008-09-02 15:55:53 +0200950 IP_VS_DBG_BUF(3, "Get destination %s:%u from trash, "
951 "dest->refcnt=%d, service %u/%s:%u\n",
952 IP_VS_DBG_ADDR(svc->af, &daddr), ntohs(dport),
953 atomic_read(&dest->refcnt),
954 dest->vfwmark,
955 IP_VS_DBG_ADDR(svc->af, &dest->vaddr),
956 ntohs(dest->vport));
957
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200958 __ip_vs_update_dest(svc, dest, udest, 1);
959 ret = 0;
960 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /*
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200962 * Allocate and initialize the dest structure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200964 ret = ip_vs_new_dest(svc, udest, &dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 LeaveFunction(2);
967
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200968 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
971
972/*
973 * Edit a destination in the given service
974 */
975static int
Julius Volzc860c6b2008-09-02 15:55:36 +0200976ip_vs_edit_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 struct ip_vs_dest *dest;
Julius Volzc860c6b2008-09-02 15:55:36 +0200979 union nf_inet_addr daddr;
Al Viro014d7302006-09-28 14:29:52 -0700980 __be16 dport = udest->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 EnterFunction(2);
983
984 if (udest->weight < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000985 pr_err("%s(): server weight less than zero\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return -ERANGE;
987 }
988
989 if (udest->l_threshold > udest->u_threshold) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000990 pr_err("%s(): lower threshold is higher than upper threshold\n",
991 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return -ERANGE;
993 }
994
Julius Volzc860c6b2008-09-02 15:55:36 +0200995 ip_vs_addr_copy(svc->af, &daddr, &udest->addr);
996
Julian Anastasov413c2d042013-03-22 11:46:52 +0200997 /* We use function that requires RCU lock */
998 rcu_read_lock();
Julius Volz7937df12008-09-02 15:55:48 +0200999 dest = ip_vs_lookup_dest(svc, &daddr, dport);
Julian Anastasov413c2d042013-03-22 11:46:52 +02001000 rcu_read_unlock();
Julius Volz7937df12008-09-02 15:55:48 +02001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (dest == NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001003 IP_VS_DBG(1, "%s(): dest doesn't exist\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return -ENOENT;
1005 }
1006
Julian Anastasov26c15cf2010-09-21 18:12:30 +02001007 __ip_vs_update_dest(svc, dest, udest, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 LeaveFunction(2);
1009
1010 return 0;
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
1014 * Delete a destination (must be already unlinked from the service)
1015 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001016static void __ip_vs_del_dest(struct net *net, struct ip_vs_dest *dest,
1017 bool cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
Hans Schillstroma0840e22011-01-03 14:44:58 +01001019 struct netns_ipvs *ipvs = net_ipvs(net);
1020
Julian Anastasov6ef757f2011-03-14 01:44:28 +02001021 ip_vs_stop_estimator(net, &dest->stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /*
1024 * Remove it from the d-linked list with the real services.
1025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 ip_vs_rs_unhash(dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001028 spin_lock_bh(&ipvs->dest_trash_lock);
1029 IP_VS_DBG_BUF(3, "Moving dest %s:%u into trash, dest->refcnt=%d\n",
1030 IP_VS_DBG_ADDR(dest->af, &dest->addr), ntohs(dest->port),
1031 atomic_read(&dest->refcnt));
1032 if (list_empty(&ipvs->dest_trash) && !cleanup)
1033 mod_timer(&ipvs->dest_trash_timer,
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001034 jiffies + (IP_VS_DEST_TRASH_PERIOD >> 1));
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001035 /* dest lives in trash without reference */
1036 list_add(&dest->t_list, &ipvs->dest_trash);
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001037 dest->idle_start = 0;
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001038 spin_unlock_bh(&ipvs->dest_trash_lock);
1039 ip_vs_dest_put(dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042
1043/*
1044 * Unlink a destination from the given service
1045 */
1046static void __ip_vs_unlink_dest(struct ip_vs_service *svc,
1047 struct ip_vs_dest *dest,
1048 int svcupd)
1049{
1050 dest->flags &= ~IP_VS_DEST_F_AVAILABLE;
1051
1052 /*
1053 * Remove it from the d-linked destination list.
1054 */
Julian Anastasov413c2d042013-03-22 11:46:52 +02001055 list_del_rcu(&dest->n_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 svc->num_dests--;
Sven Wegener82dfb6f2008-08-11 19:36:06 +00001057
Julian Anastasovceec4c32013-03-22 11:46:53 +02001058 if (svcupd) {
1059 struct ip_vs_scheduler *sched;
Julian Anastasov6b6df462013-03-22 11:46:37 +02001060
Julian Anastasovceec4c32013-03-22 11:46:53 +02001061 sched = rcu_dereference_protected(svc->scheduler, 1);
1062 if (sched->del_dest)
1063 sched->del_dest(svc, dest);
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}
1066
1067
1068/*
1069 * Delete a destination server in the given service
1070 */
1071static int
Julius Volzc860c6b2008-09-02 15:55:36 +02001072ip_vs_del_dest(struct ip_vs_service *svc, struct ip_vs_dest_user_kern *udest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
1074 struct ip_vs_dest *dest;
Al Viro014d7302006-09-28 14:29:52 -07001075 __be16 dport = udest->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 EnterFunction(2);
1078
Julian Anastasov413c2d042013-03-22 11:46:52 +02001079 /* We use function that requires RCU lock */
1080 rcu_read_lock();
Julius Volz7937df12008-09-02 15:55:48 +02001081 dest = ip_vs_lookup_dest(svc, &udest->addr, dport);
Julian Anastasov413c2d042013-03-22 11:46:52 +02001082 rcu_read_unlock();
Julius Volzc860c6b2008-09-02 15:55:36 +02001083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (dest == NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001085 IP_VS_DBG(1, "%s(): destination not found!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return -ENOENT;
1087 }
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 /*
1090 * Unlink dest from the service
1091 */
1092 __ip_vs_unlink_dest(svc, dest, 1);
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * Delete the destination
1096 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001097 __ip_vs_del_dest(svc->net, dest, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 LeaveFunction(2);
1100
1101 return 0;
1102}
1103
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001104static void ip_vs_dest_trash_expire(unsigned long data)
1105{
1106 struct net *net = (struct net *) data;
1107 struct netns_ipvs *ipvs = net_ipvs(net);
1108 struct ip_vs_dest *dest, *next;
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001109 unsigned long now = jiffies;
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001110
1111 spin_lock(&ipvs->dest_trash_lock);
1112 list_for_each_entry_safe(dest, next, &ipvs->dest_trash, t_list) {
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001113 if (atomic_read(&dest->refcnt) > 0)
1114 continue;
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001115 if (dest->idle_start) {
1116 if (time_before(now, dest->idle_start +
1117 IP_VS_DEST_TRASH_PERIOD))
1118 continue;
1119 } else {
1120 dest->idle_start = max(1UL, now);
1121 continue;
1122 }
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001123 IP_VS_DBG_BUF(3, "Removing destination %u/%s:%u from trash\n",
1124 dest->vfwmark,
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001125 IP_VS_DBG_ADDR(dest->af, &dest->addr),
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001126 ntohs(dest->port));
1127 list_del(&dest->t_list);
1128 ip_vs_dest_free(dest);
1129 }
1130 if (!list_empty(&ipvs->dest_trash))
1131 mod_timer(&ipvs->dest_trash_timer,
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001132 jiffies + (IP_VS_DEST_TRASH_PERIOD >> 1));
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001133 spin_unlock(&ipvs->dest_trash_lock);
1134}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
1136/*
1137 * Add a service into the service hash table
1138 */
1139static int
Hans Schillstromfc723252011-01-03 14:44:43 +01001140ip_vs_add_service(struct net *net, struct ip_vs_service_user_kern *u,
Julius Volzc860c6b2008-09-02 15:55:36 +02001141 struct ip_vs_service **svc_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
John Stultz827da442013-10-07 15:51:58 -07001143 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 struct ip_vs_scheduler *sched = NULL;
Simon Horman0d1e71b2010-08-22 21:37:54 +09001145 struct ip_vs_pe *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct ip_vs_service *svc = NULL;
Hans Schillstroma0840e22011-01-03 14:44:58 +01001147 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 /* increase the module use count */
1150 ip_vs_use_count_inc();
1151
1152 /* Lookup the scheduler by 'u->sched_name' */
1153 sched = ip_vs_scheduler_get(u->sched_name);
1154 if (sched == NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001155 pr_info("Scheduler module ip_vs_%s not found\n", u->sched_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 ret = -ENOENT;
Simon Horman6e08bfb2010-08-22 21:37:52 +09001157 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159
Simon Horman0d1e71b2010-08-22 21:37:54 +09001160 if (u->pe_name && *u->pe_name) {
Simon Hormane9e5eee2010-11-08 20:05:57 +09001161 pe = ip_vs_pe_getbyname(u->pe_name);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001162 if (pe == NULL) {
1163 pr_info("persistence engine module ip_vs_pe_%s "
1164 "not found\n", u->pe_name);
1165 ret = -ENOENT;
1166 goto out_err;
1167 }
1168 }
1169
Julius Volzf94fd042008-09-02 15:55:55 +02001170#ifdef CONFIG_IP_VS_IPV6
Julian Anastasov0a925862013-04-17 23:50:49 +03001171 if (u->af == AF_INET6) {
1172 __u32 plen = (__force __u32) u->netmask;
1173
1174 if (plen < 1 || plen > 128) {
1175 ret = -EINVAL;
1176 goto out_err;
1177 }
Julius Volzf94fd042008-09-02 15:55:55 +02001178 }
1179#endif
1180
Simon Hormandee06e42010-08-26 02:54:31 +00001181 svc = kzalloc(sizeof(struct ip_vs_service), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 if (svc == NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001183 IP_VS_DBG(1, "%s(): no memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 ret = -ENOMEM;
1185 goto out_err;
1186 }
Hans Schillstromb17fc992011-01-03 14:44:56 +01001187 svc->stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
Julia Lawall0a54e932012-08-29 06:49:11 +00001188 if (!svc->stats.cpustats) {
1189 ret = -ENOMEM;
Hans Schillstromb17fc992011-01-03 14:44:56 +01001190 goto out_err;
Julia Lawall0a54e932012-08-29 06:49:11 +00001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
John Stultz827da442013-10-07 15:51:58 -07001193 for_each_possible_cpu(i) {
1194 struct ip_vs_cpu_stats *ip_vs_stats;
1195 ip_vs_stats = per_cpu_ptr(svc->stats.cpustats, i);
1196 u64_stats_init(&ip_vs_stats->syncp);
1197 }
1198
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /* I'm the first user of the service */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 atomic_set(&svc->refcnt, 0);
1202
Julius Volzc860c6b2008-09-02 15:55:36 +02001203 svc->af = u->af;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 svc->protocol = u->protocol;
Julius Volzc860c6b2008-09-02 15:55:36 +02001205 ip_vs_addr_copy(svc->af, &svc->addr, &u->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 svc->port = u->port;
1207 svc->fwmark = u->fwmark;
1208 svc->flags = u->flags;
1209 svc->timeout = u->timeout * HZ;
1210 svc->netmask = u->netmask;
Hans Schillstromfc723252011-01-03 14:44:43 +01001211 svc->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 INIT_LIST_HEAD(&svc->destinations);
Julian Anastasovba3a3ce2013-03-22 11:46:51 +02001214 spin_lock_init(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 spin_lock_init(&svc->stats.lock);
1216
1217 /* Bind the scheduler */
1218 ret = ip_vs_bind_scheduler(svc, sched);
1219 if (ret)
1220 goto out_err;
1221 sched = NULL;
1222
Simon Horman0d1e71b2010-08-22 21:37:54 +09001223 /* Bind the ct retriever */
Julian Anastasovceec4c32013-03-22 11:46:53 +02001224 RCU_INIT_POINTER(svc->pe, pe);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001225 pe = NULL;
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* Update the virtual service counters */
1228 if (svc->port == FTPPORT)
Hans Schillstrom763f8d02011-01-03 14:45:01 +01001229 atomic_inc(&ipvs->ftpsvc_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 else if (svc->port == 0)
Hans Schillstrom763f8d02011-01-03 14:45:01 +01001231 atomic_inc(&ipvs->nullsvc_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Julian Anastasov6ef757f2011-03-14 01:44:28 +02001233 ip_vs_start_estimator(net, &svc->stats);
Julius Volzf94fd042008-09-02 15:55:55 +02001234
1235 /* Count only IPv4 services for old get/setsockopt interface */
1236 if (svc->af == AF_INET)
Hans Schillstroma0840e22011-01-03 14:44:58 +01001237 ipvs->num_services++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 /* Hash the service into the service table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 ip_vs_svc_hash(svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
1242 *svc_p = svc;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001243 /* Now there is a service - full throttle */
1244 ipvs->enable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 return 0;
1246
Hans Schillstromb17fc992011-01-03 14:44:56 +01001247
Simon Horman6e08bfb2010-08-22 21:37:52 +09001248 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (svc != NULL) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001250 ip_vs_unbind_scheduler(svc, sched);
1251 ip_vs_service_free(svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253 ip_vs_scheduler_put(sched);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001254 ip_vs_pe_put(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /* decrease the module use count */
1257 ip_vs_use_count_dec();
1258
1259 return ret;
1260}
1261
1262
1263/*
1264 * Edit a service and bind it with a new scheduler
1265 */
1266static int
Julius Volzc860c6b2008-09-02 15:55:36 +02001267ip_vs_edit_service(struct ip_vs_service *svc, struct ip_vs_service_user_kern *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 struct ip_vs_scheduler *sched, *old_sched;
Simon Horman0d1e71b2010-08-22 21:37:54 +09001270 struct ip_vs_pe *pe = NULL, *old_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 int ret = 0;
1272
1273 /*
1274 * Lookup the scheduler, by 'u->sched_name'
1275 */
1276 sched = ip_vs_scheduler_get(u->sched_name);
1277 if (sched == NULL) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001278 pr_info("Scheduler module ip_vs_%s not found\n", u->sched_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -ENOENT;
1280 }
1281 old_sched = sched;
1282
Simon Horman0d1e71b2010-08-22 21:37:54 +09001283 if (u->pe_name && *u->pe_name) {
Simon Hormane9e5eee2010-11-08 20:05:57 +09001284 pe = ip_vs_pe_getbyname(u->pe_name);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001285 if (pe == NULL) {
1286 pr_info("persistence engine module ip_vs_pe_%s "
1287 "not found\n", u->pe_name);
1288 ret = -ENOENT;
1289 goto out;
1290 }
1291 old_pe = pe;
1292 }
1293
Julius Volzf94fd042008-09-02 15:55:55 +02001294#ifdef CONFIG_IP_VS_IPV6
Julian Anastasov0a925862013-04-17 23:50:49 +03001295 if (u->af == AF_INET6) {
1296 __u32 plen = (__force __u32) u->netmask;
1297
1298 if (plen < 1 || plen > 128) {
1299 ret = -EINVAL;
1300 goto out;
1301 }
Julius Volzf94fd042008-09-02 15:55:55 +02001302 }
1303#endif
1304
Julian Anastasovceec4c32013-03-22 11:46:53 +02001305 old_sched = rcu_dereference_protected(svc->scheduler, 1);
1306 if (sched != old_sched) {
1307 /* Bind the new scheduler */
1308 ret = ip_vs_bind_scheduler(svc, sched);
1309 if (ret) {
1310 old_sched = sched;
1311 goto out;
1312 }
1313 /* Unbind the old scheduler on success */
1314 ip_vs_unbind_scheduler(svc, old_sched);
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * Set the flags and timeout value
1319 */
1320 svc->flags = u->flags | IP_VS_SVC_F_HASHED;
1321 svc->timeout = u->timeout * HZ;
1322 svc->netmask = u->netmask;
1323
Julian Anastasovceec4c32013-03-22 11:46:53 +02001324 old_pe = rcu_dereference_protected(svc->pe, 1);
1325 if (pe != old_pe)
1326 rcu_assign_pointer(svc->pe, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Hans Schillstrom552ad652011-06-13 12:19:26 +02001328out:
Simon Horman6e08bfb2010-08-22 21:37:52 +09001329 ip_vs_scheduler_put(old_sched);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001330 ip_vs_pe_put(old_pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return ret;
1332}
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334/*
1335 * Delete a service from the service list
1336 * - The service must be unlinked, unlocked and not referenced!
1337 * - We are called under _bh lock
1338 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001339static void __ip_vs_del_service(struct ip_vs_service *svc, bool cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 struct ip_vs_dest *dest, *nxt;
1342 struct ip_vs_scheduler *old_sched;
Simon Horman0d1e71b2010-08-22 21:37:54 +09001343 struct ip_vs_pe *old_pe;
Hans Schillstroma0840e22011-01-03 14:44:58 +01001344 struct netns_ipvs *ipvs = net_ipvs(svc->net);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001345
1346 pr_info("%s: enter\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Julius Volzf94fd042008-09-02 15:55:55 +02001348 /* Count only IPv4 services for old get/setsockopt interface */
1349 if (svc->af == AF_INET)
Hans Schillstroma0840e22011-01-03 14:44:58 +01001350 ipvs->num_services--;
Julius Volzf94fd042008-09-02 15:55:55 +02001351
Julian Anastasov6ef757f2011-03-14 01:44:28 +02001352 ip_vs_stop_estimator(svc->net, &svc->stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 /* Unbind scheduler */
Julian Anastasovceec4c32013-03-22 11:46:53 +02001355 old_sched = rcu_dereference_protected(svc->scheduler, 1);
1356 ip_vs_unbind_scheduler(svc, old_sched);
Simon Horman6e08bfb2010-08-22 21:37:52 +09001357 ip_vs_scheduler_put(old_sched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Julian Anastasovceec4c32013-03-22 11:46:53 +02001359 /* Unbind persistence engine, keep svc->pe */
1360 old_pe = rcu_dereference_protected(svc->pe, 1);
Simon Horman0d1e71b2010-08-22 21:37:54 +09001361 ip_vs_pe_put(old_pe);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /*
1364 * Unlink the whole destination list
1365 */
1366 list_for_each_entry_safe(dest, nxt, &svc->destinations, n_list) {
1367 __ip_vs_unlink_dest(svc, dest, 0);
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001368 __ip_vs_del_dest(svc->net, dest, cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370
1371 /*
1372 * Update the virtual service counters
1373 */
1374 if (svc->port == FTPPORT)
Hans Schillstrom763f8d02011-01-03 14:45:01 +01001375 atomic_dec(&ipvs->ftpsvc_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 else if (svc->port == 0)
Hans Schillstrom763f8d02011-01-03 14:45:01 +01001377 atomic_dec(&ipvs->nullsvc_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 /*
1380 * Free the service if nobody refers to it
1381 */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +03001382 __ip_vs_svc_put(svc, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
1384 /* decrease the module use count */
1385 ip_vs_use_count_dec();
1386}
1387
1388/*
Julian Anastasov26c15cf2010-09-21 18:12:30 +02001389 * Unlink a service from list and try to delete it if its refcnt reached 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001391static void ip_vs_unlink_service(struct ip_vs_service *svc, bool cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Julian Anastasovceec4c32013-03-22 11:46:53 +02001393 /* Hold svc to avoid double release from dest_trash */
1394 atomic_inc(&svc->refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /*
1396 * Unhash it from the service table
1397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 ip_vs_svc_unhash(svc);
1399
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001400 __ip_vs_del_service(svc, cleanup);
Julian Anastasov26c15cf2010-09-21 18:12:30 +02001401}
1402
1403/*
1404 * Delete a service from the service list
1405 */
1406static int ip_vs_del_service(struct ip_vs_service *svc)
1407{
1408 if (svc == NULL)
1409 return -EEXIST;
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001410 ip_vs_unlink_service(svc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 return 0;
1413}
1414
1415
1416/*
1417 * Flush all the virtual services
1418 */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001419static int ip_vs_flush(struct net *net, bool cleanup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
1421 int idx;
Julian Anastasovceec4c32013-03-22 11:46:53 +02001422 struct ip_vs_service *svc;
1423 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /*
Hans Schillstromfc723252011-01-03 14:44:43 +01001426 * Flush the service table hashed by <netns,protocol,addr,port>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 */
1428 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001429 hlist_for_each_entry_safe(svc, n, &ip_vs_svc_table[idx],
1430 s_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001431 if (net_eq(svc->net, net))
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001432 ip_vs_unlink_service(svc, cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 }
1434 }
1435
1436 /*
1437 * Flush the service table hashed by fwmark
1438 */
1439 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001440 hlist_for_each_entry_safe(svc, n, &ip_vs_svc_fwm_table[idx],
1441 f_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001442 if (net_eq(svc->net, net))
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001443 ip_vs_unlink_service(svc, cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445 }
1446
1447 return 0;
1448}
1449
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001450/*
1451 * Delete service by {netns} in the service table.
1452 * Called by __ip_vs_cleanup()
1453 */
Hans Schillstrom503cf152011-05-01 18:50:16 +02001454void ip_vs_service_net_cleanup(struct net *net)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001455{
1456 EnterFunction(2);
1457 /* Check for "full" addressed entries */
1458 mutex_lock(&__ip_vs_mutex);
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001459 ip_vs_flush(net, true);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001460 mutex_unlock(&__ip_vs_mutex);
1461 LeaveFunction(2);
1462}
Julian Anastasovd1deae42013-03-21 11:58:02 +02001463
1464/* Put all references for device (dst_cache) */
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001465static inline void
Julian Anastasovd1deae42013-03-21 11:58:02 +02001466ip_vs_forget_dev(struct ip_vs_dest *dest, struct net_device *dev)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001467{
Julian Anastasovd717bb22013-04-17 23:50:45 +03001468 struct ip_vs_dest_dst *dest_dst;
1469
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001470 spin_lock_bh(&dest->dst_lock);
Julian Anastasovd717bb22013-04-17 23:50:45 +03001471 dest_dst = rcu_dereference_protected(dest->dest_dst, 1);
1472 if (dest_dst && dest_dst->dst_cache->dev == dev) {
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001473 IP_VS_DBG_BUF(3, "Reset dev:%s dest %s:%u ,dest->refcnt=%d\n",
1474 dev->name,
1475 IP_VS_DBG_ADDR(dest->af, &dest->addr),
1476 ntohs(dest->port),
1477 atomic_read(&dest->refcnt));
Julian Anastasovd1deae42013-03-21 11:58:02 +02001478 __ip_vs_dst_cache_reset(dest);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001479 }
1480 spin_unlock_bh(&dest->dst_lock);
1481
1482}
Julian Anastasov313eae62013-03-21 11:58:00 +02001483/* Netdev event receiver
1484 * Currently only NETDEV_DOWN is handled to release refs to cached dsts
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001485 */
1486static int ip_vs_dst_event(struct notifier_block *this, unsigned long event,
Jiri Pirko351638e2013-05-28 01:30:21 +00001487 void *ptr)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001488{
Jiri Pirko351638e2013-05-28 01:30:21 +00001489 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001490 struct net *net = dev_net(dev);
Julian Anastasov283283c2012-07-07 20:30:11 +03001491 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001492 struct ip_vs_service *svc;
1493 struct ip_vs_dest *dest;
1494 unsigned int idx;
1495
Julian Anastasov313eae62013-03-21 11:58:00 +02001496 if (event != NETDEV_DOWN || !ipvs)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001497 return NOTIFY_DONE;
1498 IP_VS_DBG(3, "%s() dev=%s\n", __func__, dev->name);
1499 EnterFunction(2);
1500 mutex_lock(&__ip_vs_mutex);
1501 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001502 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001503 if (net_eq(svc->net, net)) {
1504 list_for_each_entry(dest, &svc->destinations,
1505 n_list) {
Julian Anastasovd1deae42013-03-21 11:58:02 +02001506 ip_vs_forget_dev(dest, dev);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001507 }
1508 }
1509 }
1510
Julian Anastasovceec4c32013-03-22 11:46:53 +02001511 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001512 if (net_eq(svc->net, net)) {
1513 list_for_each_entry(dest, &svc->destinations,
1514 n_list) {
Julian Anastasovd1deae42013-03-21 11:58:02 +02001515 ip_vs_forget_dev(dest, dev);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001516 }
1517 }
1518
1519 }
1520 }
1521
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001522 spin_lock_bh(&ipvs->dest_trash_lock);
1523 list_for_each_entry(dest, &ipvs->dest_trash, t_list) {
Julian Anastasovd1deae42013-03-21 11:58:02 +02001524 ip_vs_forget_dev(dest, dev);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001525 }
Julian Anastasov578bc3e2013-03-22 11:46:49 +02001526 spin_unlock_bh(&ipvs->dest_trash_lock);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001527 mutex_unlock(&__ip_vs_mutex);
1528 LeaveFunction(2);
1529 return NOTIFY_DONE;
1530}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532/*
1533 * Zero counters in a service or all services
1534 */
1535static int ip_vs_zero_service(struct ip_vs_service *svc)
1536{
1537 struct ip_vs_dest *dest;
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 list_for_each_entry(dest, &svc->destinations, n_list) {
1540 ip_vs_zero_stats(&dest->stats);
1541 }
1542 ip_vs_zero_stats(&svc->stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 return 0;
1544}
1545
Hans Schillstromfc723252011-01-03 14:44:43 +01001546static int ip_vs_zero_all(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 int idx;
1549 struct ip_vs_service *svc;
1550
1551 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001552 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001553 if (net_eq(svc->net, net))
1554 ip_vs_zero_service(svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
1556 }
1557
1558 for(idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001559 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001560 if (net_eq(svc->net, net))
1561 ip_vs_zero_service(svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 }
1563 }
1564
Julian Anastasov2a0751a2011-03-04 12:20:35 +02001565 ip_vs_zero_stats(&net_ipvs(net)->tot_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return 0;
1567}
1568
Simon Horman14e40542011-02-04 18:33:02 +09001569#ifdef CONFIG_SYSCTL
Julian Anastasov749c42b2012-04-24 23:46:40 +03001570
1571static int zero;
1572static int three = 3;
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574static int
Joe Perchesfe2c6332013-06-11 23:04:25 -07001575proc_do_defense_mode(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 void __user *buffer, size_t *lenp, loff_t *ppos)
1577{
Hans Schillstrom93304192011-01-03 14:44:51 +01001578 struct net *net = current->nsproxy->net_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 int *valp = table->data;
1580 int val = *valp;
1581 int rc;
1582
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001583 rc = proc_dointvec(table, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (write && (*valp != val)) {
1585 if ((*valp < 0) || (*valp > 3)) {
1586 /* Restore the correct value */
1587 *valp = val;
1588 } else {
Hans Schillstrom93304192011-01-03 14:44:51 +01001589 update_defense_level(net_ipvs(net));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
1591 }
1592 return rc;
1593}
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595static int
Joe Perchesfe2c6332013-06-11 23:04:25 -07001596proc_do_sync_threshold(struct ctl_table *table, int write,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 void __user *buffer, size_t *lenp, loff_t *ppos)
1598{
1599 int *valp = table->data;
1600 int val[2];
1601 int rc;
1602
1603 /* backup the value first */
1604 memcpy(val, valp, sizeof(val));
1605
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001606 rc = proc_dointvec(table, write, buffer, lenp, ppos);
Julian Anastasov749c42b2012-04-24 23:46:40 +03001607 if (write && (valp[0] < 0 || valp[1] < 0 ||
1608 (valp[0] >= valp[1] && valp[1]))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 /* Restore the correct value */
1610 memcpy(valp, val, sizeof(val));
1611 }
1612 return rc;
1613}
1614
Hans Schillstromb880c1f2010-11-19 14:25:14 +01001615static int
Joe Perchesfe2c6332013-06-11 23:04:25 -07001616proc_do_sync_mode(struct ctl_table *table, int write,
Hans Schillstromb880c1f2010-11-19 14:25:14 +01001617 void __user *buffer, size_t *lenp, loff_t *ppos)
1618{
1619 int *valp = table->data;
1620 int val = *valp;
1621 int rc;
1622
1623 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1624 if (write && (*valp != val)) {
1625 if ((*valp < 0) || (*valp > 1)) {
1626 /* Restore the correct value */
1627 *valp = val;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001628 }
1629 }
1630 return rc;
1631}
1632
1633static int
Joe Perchesfe2c6332013-06-11 23:04:25 -07001634proc_do_sync_ports(struct ctl_table *table, int write,
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001635 void __user *buffer, size_t *lenp, loff_t *ppos)
1636{
1637 int *valp = table->data;
1638 int val = *valp;
1639 int rc;
1640
1641 rc = proc_dointvec(table, write, buffer, lenp, ppos);
1642 if (write && (*valp != val)) {
1643 if (*valp < 1 || !is_power_of_2(*valp)) {
1644 /* Restore the correct value */
1645 *valp = val;
Hans Schillstromb880c1f2010-11-19 14:25:14 +01001646 }
1647 }
1648 return rc;
1649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651/*
1652 * IPVS sysctl table (under the /proc/sys/net/ipv4/vs/)
Hans Schillstroma0840e22011-01-03 14:44:58 +01001653 * Do not change order or insert new entries without
Hans Schillstrom503cf152011-05-01 18:50:16 +02001654 * align with netns init in ip_vs_control_net_init()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 */
1656
1657static struct ctl_table vs_vars[] = {
1658 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 .procname = "amemthresh",
Hans Schillstroma0840e22011-01-03 14:44:58 +01001660 .maxlen = sizeof(int),
1661 .mode = 0644,
1662 .proc_handler = proc_dointvec,
1663 },
1664 {
1665 .procname = "am_droprate",
1666 .maxlen = sizeof(int),
1667 .mode = 0644,
1668 .proc_handler = proc_dointvec,
1669 },
1670 {
1671 .procname = "drop_entry",
1672 .maxlen = sizeof(int),
1673 .mode = 0644,
1674 .proc_handler = proc_do_defense_mode,
1675 },
1676 {
1677 .procname = "drop_packet",
1678 .maxlen = sizeof(int),
1679 .mode = 0644,
1680 .proc_handler = proc_do_defense_mode,
1681 },
1682#ifdef CONFIG_IP_VS_NFCT
1683 {
1684 .procname = "conntrack",
1685 .maxlen = sizeof(int),
1686 .mode = 0644,
1687 .proc_handler = &proc_dointvec,
1688 },
1689#endif
1690 {
1691 .procname = "secure_tcp",
1692 .maxlen = sizeof(int),
1693 .mode = 0644,
1694 .proc_handler = proc_do_defense_mode,
1695 },
1696 {
1697 .procname = "snat_reroute",
1698 .maxlen = sizeof(int),
1699 .mode = 0644,
1700 .proc_handler = &proc_dointvec,
1701 },
1702 {
1703 .procname = "sync_version",
1704 .maxlen = sizeof(int),
1705 .mode = 0644,
1706 .proc_handler = &proc_do_sync_mode,
1707 },
1708 {
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001709 .procname = "sync_ports",
1710 .maxlen = sizeof(int),
1711 .mode = 0644,
1712 .proc_handler = &proc_do_sync_ports,
1713 },
1714 {
Julian Anastasov4d0c8752013-06-24 22:44:41 +03001715 .procname = "sync_persist_mode",
1716 .maxlen = sizeof(int),
1717 .mode = 0644,
1718 .proc_handler = proc_dointvec,
1719 },
1720 {
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001721 .procname = "sync_qlen_max",
Zhang Yanfei07995672013-04-29 11:55:10 -07001722 .maxlen = sizeof(unsigned long),
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001723 .mode = 0644,
Zhang Yanfei07995672013-04-29 11:55:10 -07001724 .proc_handler = proc_doulongvec_minmax,
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001725 },
1726 {
1727 .procname = "sync_sock_size",
1728 .maxlen = sizeof(int),
1729 .mode = 0644,
1730 .proc_handler = proc_dointvec,
1731 },
1732 {
Hans Schillstroma0840e22011-01-03 14:44:58 +01001733 .procname = "cache_bypass",
1734 .maxlen = sizeof(int),
1735 .mode = 0644,
1736 .proc_handler = proc_dointvec,
1737 },
1738 {
1739 .procname = "expire_nodest_conn",
1740 .maxlen = sizeof(int),
1741 .mode = 0644,
1742 .proc_handler = proc_dointvec,
1743 },
1744 {
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001745 .procname = "sloppy_tcp",
1746 .maxlen = sizeof(int),
1747 .mode = 0644,
1748 .proc_handler = proc_dointvec,
1749 },
1750 {
1751 .procname = "sloppy_sctp",
1752 .maxlen = sizeof(int),
1753 .mode = 0644,
1754 .proc_handler = proc_dointvec,
1755 },
1756 {
Hans Schillstroma0840e22011-01-03 14:44:58 +01001757 .procname = "expire_quiescent_template",
1758 .maxlen = sizeof(int),
1759 .mode = 0644,
1760 .proc_handler = proc_dointvec,
1761 },
1762 {
1763 .procname = "sync_threshold",
1764 .maxlen =
1765 sizeof(((struct netns_ipvs *)0)->sysctl_sync_threshold),
1766 .mode = 0644,
1767 .proc_handler = proc_do_sync_threshold,
1768 },
1769 {
Julian Anastasov749c42b2012-04-24 23:46:40 +03001770 .procname = "sync_refresh_period",
1771 .maxlen = sizeof(int),
1772 .mode = 0644,
1773 .proc_handler = proc_dointvec_jiffies,
1774 },
1775 {
1776 .procname = "sync_retries",
1777 .maxlen = sizeof(int),
1778 .mode = 0644,
1779 .proc_handler = proc_dointvec_minmax,
1780 .extra1 = &zero,
1781 .extra2 = &three,
1782 },
1783 {
Hans Schillstroma0840e22011-01-03 14:44:58 +01001784 .procname = "nat_icmp_send",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 .maxlen = sizeof(int),
1786 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001787 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 },
Julian Anastasov3654e612012-07-20 11:59:53 +03001789 {
1790 .procname = "pmtu_disc",
1791 .maxlen = sizeof(int),
1792 .mode = 0644,
1793 .proc_handler = proc_dointvec,
1794 },
Julian Anastasov0c125822013-03-09 23:25:04 +02001795 {
1796 .procname = "backup_only",
1797 .maxlen = sizeof(int),
1798 .mode = 0644,
1799 .proc_handler = proc_dointvec,
1800 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801#ifdef CONFIG_IP_VS_DEBUG
1802 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 .procname = "debug_level",
1804 .data = &sysctl_ip_vs_debug_level,
1805 .maxlen = sizeof(int),
1806 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001807 .proc_handler = proc_dointvec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 },
1809#endif
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001810 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811};
1812
Simon Horman14e40542011-02-04 18:33:02 +09001813#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815#ifdef CONFIG_PROC_FS
1816
1817struct ip_vs_iter {
Hans Schillstromfc723252011-01-03 14:44:43 +01001818 struct seq_net_private p; /* Do not move this, netns depends upon it*/
Julian Anastasovceec4c32013-03-22 11:46:53 +02001819 struct hlist_head *table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 int bucket;
1821};
1822
1823/*
1824 * Write the contents of the VS rule table to a PROCfs file.
1825 * (It is kept just for backward compatibility)
1826 */
Eric Dumazet95c96172012-04-15 05:58:06 +00001827static inline const char *ip_vs_fwd_name(unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 switch (flags & IP_VS_CONN_F_FWD_MASK) {
1830 case IP_VS_CONN_F_LOCALNODE:
1831 return "Local";
1832 case IP_VS_CONN_F_TUNNEL:
1833 return "Tunnel";
1834 case IP_VS_CONN_F_DROUTE:
1835 return "Route";
1836 default:
1837 return "Masq";
1838 }
1839}
1840
1841
1842/* Get the Nth entry in the two lists */
1843static struct ip_vs_service *ip_vs_info_array(struct seq_file *seq, loff_t pos)
1844{
Hans Schillstromfc723252011-01-03 14:44:43 +01001845 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 struct ip_vs_iter *iter = seq->private;
1847 int idx;
1848 struct ip_vs_service *svc;
1849
1850 /* look in hash by protocol */
1851 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001852 hlist_for_each_entry_rcu(svc, &ip_vs_svc_table[idx], s_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001853 if (net_eq(svc->net, net) && pos-- == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 iter->table = ip_vs_svc_table;
1855 iter->bucket = idx;
1856 return svc;
1857 }
1858 }
1859 }
1860
1861 /* keep looking in fwmark */
1862 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001863 hlist_for_each_entry_rcu(svc, &ip_vs_svc_fwm_table[idx],
1864 f_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01001865 if (net_eq(svc->net, net) && pos-- == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 iter->table = ip_vs_svc_fwm_table;
1867 iter->bucket = idx;
1868 return svc;
1869 }
1870 }
1871 }
1872
1873 return NULL;
1874}
1875
1876static void *ip_vs_info_seq_start(struct seq_file *seq, loff_t *pos)
Julian Anastasov371990e2013-04-17 23:50:50 +03001877 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
Julian Anastasovceec4c32013-03-22 11:46:53 +02001879 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return *pos ? ip_vs_info_array(seq, *pos - 1) : SEQ_START_TOKEN;
1881}
1882
1883
1884static void *ip_vs_info_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1885{
Julian Anastasovceec4c32013-03-22 11:46:53 +02001886 struct hlist_node *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 struct ip_vs_iter *iter;
1888 struct ip_vs_service *svc;
1889
1890 ++*pos;
1891 if (v == SEQ_START_TOKEN)
1892 return ip_vs_info_array(seq,0);
1893
1894 svc = v;
1895 iter = seq->private;
1896
1897 if (iter->table == ip_vs_svc_table) {
1898 /* next service in table hashed by protocol */
Julian Anastasovceec4c32013-03-22 11:46:53 +02001899 e = rcu_dereference(hlist_next_rcu(&svc->s_list));
1900 if (e)
1901 return hlist_entry(e, struct ip_vs_service, s_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001904 hlist_for_each_entry_rcu(svc,
1905 &ip_vs_svc_table[iter->bucket],
1906 s_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return svc;
1908 }
1909 }
1910
1911 iter->table = ip_vs_svc_fwm_table;
1912 iter->bucket = -1;
1913 goto scan_fwmark;
1914 }
1915
1916 /* next service in hashed by fwmark */
Julian Anastasovceec4c32013-03-22 11:46:53 +02001917 e = rcu_dereference(hlist_next_rcu(&svc->f_list));
1918 if (e)
1919 return hlist_entry(e, struct ip_vs_service, f_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 scan_fwmark:
1922 while (++iter->bucket < IP_VS_SVC_TAB_SIZE) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02001923 hlist_for_each_entry_rcu(svc,
1924 &ip_vs_svc_fwm_table[iter->bucket],
1925 f_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return svc;
1927 }
1928
1929 return NULL;
1930}
1931
1932static void ip_vs_info_seq_stop(struct seq_file *seq, void *v)
Julian Anastasov371990e2013-04-17 23:50:50 +03001933 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
Julian Anastasovceec4c32013-03-22 11:46:53 +02001935 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
1938
1939static int ip_vs_info_seq_show(struct seq_file *seq, void *v)
1940{
1941 if (v == SEQ_START_TOKEN) {
1942 seq_printf(seq,
1943 "IP Virtual Server version %d.%d.%d (size=%d)\n",
Catalin(ux) M. BOIE6f7edb42010-01-05 05:50:24 +01001944 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 seq_puts(seq,
1946 "Prot LocalAddress:Port Scheduler Flags\n");
1947 seq_puts(seq,
1948 " -> RemoteAddress:Port Forward Weight ActiveConn InActConn\n");
1949 } else {
1950 const struct ip_vs_service *svc = v;
1951 const struct ip_vs_iter *iter = seq->private;
1952 const struct ip_vs_dest *dest;
Julian Anastasovceec4c32013-03-22 11:46:53 +02001953 struct ip_vs_scheduler *sched = rcu_dereference(svc->scheduler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Vince Busam667a5f12008-09-02 15:55:49 +02001955 if (iter->table == ip_vs_svc_table) {
1956#ifdef CONFIG_IP_VS_IPV6
1957 if (svc->af == AF_INET6)
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001958 seq_printf(seq, "%s [%pI6]:%04X %s ",
Vince Busam667a5f12008-09-02 15:55:49 +02001959 ip_vs_proto_name(svc->protocol),
Harvey Harrison38ff4fa2008-10-28 16:08:13 -07001960 &svc->addr.in6,
Vince Busam667a5f12008-09-02 15:55:49 +02001961 ntohs(svc->port),
Julian Anastasovceec4c32013-03-22 11:46:53 +02001962 sched->name);
Vince Busam667a5f12008-09-02 15:55:49 +02001963 else
1964#endif
Nick Chalk26ec0372010-06-22 08:07:01 +02001965 seq_printf(seq, "%s %08X:%04X %s %s ",
Vince Busam667a5f12008-09-02 15:55:49 +02001966 ip_vs_proto_name(svc->protocol),
1967 ntohl(svc->addr.ip),
1968 ntohs(svc->port),
Julian Anastasovceec4c32013-03-22 11:46:53 +02001969 sched->name,
Nick Chalk26ec0372010-06-22 08:07:01 +02001970 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
Vince Busam667a5f12008-09-02 15:55:49 +02001971 } else {
Nick Chalk26ec0372010-06-22 08:07:01 +02001972 seq_printf(seq, "FWM %08X %s %s",
Julian Anastasovceec4c32013-03-22 11:46:53 +02001973 svc->fwmark, sched->name,
Nick Chalk26ec0372010-06-22 08:07:01 +02001974 (svc->flags & IP_VS_SVC_F_ONEPACKET)?"ops ":"");
Vince Busam667a5f12008-09-02 15:55:49 +02001975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
1978 seq_printf(seq, "persistent %d %08X\n",
1979 svc->timeout,
1980 ntohl(svc->netmask));
1981 else
1982 seq_putc(seq, '\n');
1983
Julian Anastasov413c2d042013-03-22 11:46:52 +02001984 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
Vince Busam667a5f12008-09-02 15:55:49 +02001985#ifdef CONFIG_IP_VS_IPV6
1986 if (dest->af == AF_INET6)
1987 seq_printf(seq,
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001988 " -> [%pI6]:%04X"
Vince Busam667a5f12008-09-02 15:55:49 +02001989 " %-7s %-6d %-10d %-10d\n",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -07001990 &dest->addr.in6,
Vince Busam667a5f12008-09-02 15:55:49 +02001991 ntohs(dest->port),
1992 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
1993 atomic_read(&dest->weight),
1994 atomic_read(&dest->activeconns),
1995 atomic_read(&dest->inactconns));
1996 else
1997#endif
1998 seq_printf(seq,
1999 " -> %08X:%04X "
2000 "%-7s %-6d %-10d %-10d\n",
2001 ntohl(dest->addr.ip),
2002 ntohs(dest->port),
2003 ip_vs_fwd_name(atomic_read(&dest->conn_flags)),
2004 atomic_read(&dest->weight),
2005 atomic_read(&dest->activeconns),
2006 atomic_read(&dest->inactconns));
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
2009 }
2010 return 0;
2011}
2012
Philippe De Muyter56b3d972007-07-10 23:07:31 -07002013static const struct seq_operations ip_vs_info_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 .start = ip_vs_info_seq_start,
2015 .next = ip_vs_info_seq_next,
2016 .stop = ip_vs_info_seq_stop,
2017 .show = ip_vs_info_seq_show,
2018};
2019
2020static int ip_vs_info_open(struct inode *inode, struct file *file)
2021{
Hans Schillstromfc723252011-01-03 14:44:43 +01002022 return seq_open_net(inode, file, &ip_vs_info_seq_ops,
Pavel Emelyanovcf7732e2007-10-10 02:29:29 -07002023 sizeof(struct ip_vs_iter));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024}
2025
Arjan van de Ven9a321442007-02-12 00:55:35 -08002026static const struct file_operations ip_vs_info_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 .owner = THIS_MODULE,
2028 .open = ip_vs_info_open,
2029 .read = seq_read,
2030 .llseek = seq_lseek,
Hans Schillstrom0f081902011-05-15 17:20:29 +02002031 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032};
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034static int ip_vs_stats_show(struct seq_file *seq, void *v)
2035{
Hans Schillstromb17fc992011-01-03 14:44:56 +01002036 struct net *net = seq_file_single_net(seq);
Julian Anastasov55a3d4e2011-03-14 01:37:49 +02002037 struct ip_vs_stats_user show;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039/* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2040 seq_puts(seq,
2041 " Total Incoming Outgoing Incoming Outgoing\n");
2042 seq_printf(seq,
2043 " Conns Packets Packets Bytes Bytes\n");
2044
Julian Anastasov55a3d4e2011-03-14 01:37:49 +02002045 ip_vs_copy_stats(&show, &net_ipvs(net)->tot_stats);
2046 seq_printf(seq, "%8X %8X %8X %16LX %16LX\n\n", show.conns,
2047 show.inpkts, show.outpkts,
2048 (unsigned long long) show.inbytes,
2049 (unsigned long long) show.outbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
2051/* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2052 seq_puts(seq,
2053 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
Julian Anastasov55a3d4e2011-03-14 01:37:49 +02002054 seq_printf(seq, "%8X %8X %8X %16X %16X\n",
2055 show.cps, show.inpps, show.outpps,
2056 show.inbps, show.outbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058 return 0;
2059}
2060
2061static int ip_vs_stats_seq_open(struct inode *inode, struct file *file)
2062{
Hans Schillstromfc723252011-01-03 14:44:43 +01002063 return single_open_net(inode, file, ip_vs_stats_show);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064}
2065
Arjan van de Ven9a321442007-02-12 00:55:35 -08002066static const struct file_operations ip_vs_stats_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 .owner = THIS_MODULE,
2068 .open = ip_vs_stats_seq_open,
2069 .read = seq_read,
2070 .llseek = seq_lseek,
Hans Schillstrom0f081902011-05-15 17:20:29 +02002071 .release = single_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072};
2073
Hans Schillstromb17fc992011-01-03 14:44:56 +01002074static int ip_vs_stats_percpu_show(struct seq_file *seq, void *v)
2075{
2076 struct net *net = seq_file_single_net(seq);
Julian Anastasov2a0751a2011-03-04 12:20:35 +02002077 struct ip_vs_stats *tot_stats = &net_ipvs(net)->tot_stats;
Julian Anastasov371990e2013-04-17 23:50:50 +03002078 struct ip_vs_cpu_stats __percpu *cpustats = tot_stats->cpustats;
Julian Anastasovea9f22c2011-03-14 01:41:54 +02002079 struct ip_vs_stats_user rates;
Hans Schillstromb17fc992011-01-03 14:44:56 +01002080 int i;
2081
2082/* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2083 seq_puts(seq,
2084 " Total Incoming Outgoing Incoming Outgoing\n");
2085 seq_printf(seq,
2086 "CPU Conns Packets Packets Bytes Bytes\n");
2087
2088 for_each_possible_cpu(i) {
Julian Anastasov2a0751a2011-03-04 12:20:35 +02002089 struct ip_vs_cpu_stats *u = per_cpu_ptr(cpustats, i);
2090 unsigned int start;
2091 __u64 inbytes, outbytes;
2092
2093 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07002094 start = u64_stats_fetch_begin_irq(&u->syncp);
Julian Anastasov2a0751a2011-03-04 12:20:35 +02002095 inbytes = u->ustats.inbytes;
2096 outbytes = u->ustats.outbytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07002097 } while (u64_stats_fetch_retry_irq(&u->syncp, start));
Julian Anastasov2a0751a2011-03-04 12:20:35 +02002098
Hans Schillstromb17fc992011-01-03 14:44:56 +01002099 seq_printf(seq, "%3X %8X %8X %8X %16LX %16LX\n",
Julian Anastasov2a0751a2011-03-04 12:20:35 +02002100 i, u->ustats.conns, u->ustats.inpkts,
2101 u->ustats.outpkts, (__u64)inbytes,
2102 (__u64)outbytes);
Hans Schillstromb17fc992011-01-03 14:44:56 +01002103 }
2104
2105 spin_lock_bh(&tot_stats->lock);
Julian Anastasovea9f22c2011-03-14 01:41:54 +02002106
Hans Schillstromb17fc992011-01-03 14:44:56 +01002107 seq_printf(seq, " ~ %8X %8X %8X %16LX %16LX\n\n",
2108 tot_stats->ustats.conns, tot_stats->ustats.inpkts,
2109 tot_stats->ustats.outpkts,
2110 (unsigned long long) tot_stats->ustats.inbytes,
2111 (unsigned long long) tot_stats->ustats.outbytes);
2112
Julian Anastasovea9f22c2011-03-14 01:41:54 +02002113 ip_vs_read_estimator(&rates, tot_stats);
2114
2115 spin_unlock_bh(&tot_stats->lock);
2116
Hans Schillstromb17fc992011-01-03 14:44:56 +01002117/* 01234567 01234567 01234567 0123456701234567 0123456701234567 */
2118 seq_puts(seq,
2119 " Conns/s Pkts/s Pkts/s Bytes/s Bytes/s\n");
2120 seq_printf(seq, " %8X %8X %8X %16X %16X\n",
Julian Anastasovea9f22c2011-03-14 01:41:54 +02002121 rates.cps,
2122 rates.inpps,
2123 rates.outpps,
2124 rates.inbps,
2125 rates.outbps);
Hans Schillstromb17fc992011-01-03 14:44:56 +01002126
2127 return 0;
2128}
2129
2130static int ip_vs_stats_percpu_seq_open(struct inode *inode, struct file *file)
2131{
2132 return single_open_net(inode, file, ip_vs_stats_percpu_show);
2133}
2134
2135static const struct file_operations ip_vs_stats_percpu_fops = {
2136 .owner = THIS_MODULE,
2137 .open = ip_vs_stats_percpu_seq_open,
2138 .read = seq_read,
2139 .llseek = seq_lseek,
Hans Schillstrom0f081902011-05-15 17:20:29 +02002140 .release = single_release_net,
Hans Schillstromb17fc992011-01-03 14:44:56 +01002141};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142#endif
2143
2144/*
2145 * Set timeout values for tcp tcpfin udp in the timeout_table.
2146 */
Hans Schillstrom93304192011-01-03 14:44:51 +01002147static int ip_vs_set_timeout(struct net *net, struct ip_vs_timeout_user *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148{
Changli Gao091bb342011-01-21 18:02:13 +08002149#if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
Hans Schillstrom93304192011-01-03 14:44:51 +01002150 struct ip_vs_proto_data *pd;
Changli Gao091bb342011-01-21 18:02:13 +08002151#endif
Hans Schillstrom93304192011-01-03 14:44:51 +01002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 IP_VS_DBG(2, "Setting timeout tcp:%d tcpfin:%d udp:%d\n",
2154 u->tcp_timeout,
2155 u->tcp_fin_timeout,
2156 u->udp_timeout);
2157
2158#ifdef CONFIG_IP_VS_PROTO_TCP
2159 if (u->tcp_timeout) {
Hans Schillstrom93304192011-01-03 14:44:51 +01002160 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2161 pd->timeout_table[IP_VS_TCP_S_ESTABLISHED]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 = u->tcp_timeout * HZ;
2163 }
2164
2165 if (u->tcp_fin_timeout) {
Hans Schillstrom93304192011-01-03 14:44:51 +01002166 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2167 pd->timeout_table[IP_VS_TCP_S_FIN_WAIT]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 = u->tcp_fin_timeout * HZ;
2169 }
2170#endif
2171
2172#ifdef CONFIG_IP_VS_PROTO_UDP
2173 if (u->udp_timeout) {
Hans Schillstrom93304192011-01-03 14:44:51 +01002174 pd = ip_vs_proto_data_get(net, IPPROTO_UDP);
2175 pd->timeout_table[IP_VS_UDP_S_NORMAL]
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 = u->udp_timeout * HZ;
2177 }
2178#endif
2179 return 0;
2180}
2181
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002182#define CMDID(cmd) (cmd - IP_VS_BASE_CTL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002184struct ip_vs_svcdest_user {
2185 struct ip_vs_service_user s;
2186 struct ip_vs_dest_user d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187};
2188
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002189static const unsigned char set_arglen[CMDID(IP_VS_SO_SET_MAX) + 1] = {
2190 [CMDID(IP_VS_SO_SET_ADD)] = sizeof(struct ip_vs_service_user),
2191 [CMDID(IP_VS_SO_SET_EDIT)] = sizeof(struct ip_vs_service_user),
2192 [CMDID(IP_VS_SO_SET_DEL)] = sizeof(struct ip_vs_service_user),
2193 [CMDID(IP_VS_SO_SET_ADDDEST)] = sizeof(struct ip_vs_svcdest_user),
2194 [CMDID(IP_VS_SO_SET_DELDEST)] = sizeof(struct ip_vs_svcdest_user),
2195 [CMDID(IP_VS_SO_SET_EDITDEST)] = sizeof(struct ip_vs_svcdest_user),
2196 [CMDID(IP_VS_SO_SET_TIMEOUT)] = sizeof(struct ip_vs_timeout_user),
2197 [CMDID(IP_VS_SO_SET_STARTDAEMON)] = sizeof(struct ip_vs_daemon_user),
2198 [CMDID(IP_VS_SO_SET_STOPDAEMON)] = sizeof(struct ip_vs_daemon_user),
2199 [CMDID(IP_VS_SO_SET_ZERO)] = sizeof(struct ip_vs_service_user),
2200};
2201
2202union ip_vs_set_arglen {
2203 struct ip_vs_service_user field_IP_VS_SO_SET_ADD;
2204 struct ip_vs_service_user field_IP_VS_SO_SET_EDIT;
2205 struct ip_vs_service_user field_IP_VS_SO_SET_DEL;
2206 struct ip_vs_svcdest_user field_IP_VS_SO_SET_ADDDEST;
2207 struct ip_vs_svcdest_user field_IP_VS_SO_SET_DELDEST;
2208 struct ip_vs_svcdest_user field_IP_VS_SO_SET_EDITDEST;
2209 struct ip_vs_timeout_user field_IP_VS_SO_SET_TIMEOUT;
2210 struct ip_vs_daemon_user field_IP_VS_SO_SET_STARTDAEMON;
2211 struct ip_vs_daemon_user field_IP_VS_SO_SET_STOPDAEMON;
2212 struct ip_vs_service_user field_IP_VS_SO_SET_ZERO;
2213};
2214
2215#define MAX_SET_ARGLEN sizeof(union ip_vs_set_arglen)
2216
Julius Volzc860c6b2008-09-02 15:55:36 +02002217static void ip_vs_copy_usvc_compat(struct ip_vs_service_user_kern *usvc,
2218 struct ip_vs_service_user *usvc_compat)
2219{
Simon Horman0d1e71b2010-08-22 21:37:54 +09002220 memset(usvc, 0, sizeof(*usvc));
2221
Julius Volzc860c6b2008-09-02 15:55:36 +02002222 usvc->af = AF_INET;
2223 usvc->protocol = usvc_compat->protocol;
2224 usvc->addr.ip = usvc_compat->addr;
2225 usvc->port = usvc_compat->port;
2226 usvc->fwmark = usvc_compat->fwmark;
2227
2228 /* Deep copy of sched_name is not needed here */
2229 usvc->sched_name = usvc_compat->sched_name;
2230
2231 usvc->flags = usvc_compat->flags;
2232 usvc->timeout = usvc_compat->timeout;
2233 usvc->netmask = usvc_compat->netmask;
2234}
2235
2236static void ip_vs_copy_udest_compat(struct ip_vs_dest_user_kern *udest,
2237 struct ip_vs_dest_user *udest_compat)
2238{
Simon Horman0d1e71b2010-08-22 21:37:54 +09002239 memset(udest, 0, sizeof(*udest));
2240
Julius Volzc860c6b2008-09-02 15:55:36 +02002241 udest->addr.ip = udest_compat->addr;
2242 udest->port = udest_compat->port;
2243 udest->conn_flags = udest_compat->conn_flags;
2244 udest->weight = udest_compat->weight;
2245 udest->u_threshold = udest_compat->u_threshold;
2246 udest->l_threshold = udest_compat->l_threshold;
2247}
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249static int
2250do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len)
2251{
Hans Schillstromfc723252011-01-03 14:44:43 +01002252 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 int ret;
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002254 unsigned char arg[MAX_SET_ARGLEN];
Julius Volzc860c6b2008-09-02 15:55:36 +02002255 struct ip_vs_service_user *usvc_compat;
2256 struct ip_vs_service_user_kern usvc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 struct ip_vs_service *svc;
Julius Volzc860c6b2008-09-02 15:55:36 +02002258 struct ip_vs_dest_user *udest_compat;
2259 struct ip_vs_dest_user_kern udest;
Hans Schillstromae1d48b2011-10-11 10:54:35 +09002260 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002262 BUILD_BUG_ON(sizeof(arg) > 255);
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002263 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 return -EPERM;
2265
Arjan van de Ven04bcef22010-01-04 16:37:12 +01002266 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX)
2267 return -EINVAL;
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002268 if (len != set_arglen[CMDID(cmd)]) {
2269 IP_VS_DBG(1, "set_ctl: len %u != %u\n",
2270 len, set_arglen[CMDID(cmd)]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 return -EINVAL;
2272 }
2273
2274 if (copy_from_user(arg, user, len) != 0)
2275 return -EFAULT;
2276
2277 /* increase the module use count */
2278 ip_vs_use_count_inc();
2279
Hans Schillstromae1d48b2011-10-11 10:54:35 +09002280 /* Handle daemons since they have another lock */
2281 if (cmd == IP_VS_SO_SET_STARTDAEMON ||
2282 cmd == IP_VS_SO_SET_STOPDAEMON) {
2283 struct ip_vs_daemon_user *dm = (struct ip_vs_daemon_user *)arg;
2284
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +02002285 mutex_lock(&ipvs->sync_mutex);
Hans Schillstromae1d48b2011-10-11 10:54:35 +09002286 if (cmd == IP_VS_SO_SET_STARTDAEMON)
2287 ret = start_sync_thread(net, dm->state, dm->mcast_ifn,
2288 dm->syncid);
2289 else
2290 ret = stop_sync_thread(net, dm->state);
2291 mutex_unlock(&ipvs->sync_mutex);
2292 goto out_dec;
2293 }
2294
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +02002295 mutex_lock(&__ip_vs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (cmd == IP_VS_SO_SET_FLUSH) {
2297 /* Flush the virtual service */
Julian Anastasov578bc3e2013-03-22 11:46:49 +02002298 ret = ip_vs_flush(net, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 goto out_unlock;
2300 } else if (cmd == IP_VS_SO_SET_TIMEOUT) {
2301 /* Set timeout values for (tcp tcpfin udp) */
Hans Schillstrom93304192011-01-03 14:44:51 +01002302 ret = ip_vs_set_timeout(net, (struct ip_vs_timeout_user *)arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 }
2305
Julius Volzc860c6b2008-09-02 15:55:36 +02002306 usvc_compat = (struct ip_vs_service_user *)arg;
2307 udest_compat = (struct ip_vs_dest_user *)(usvc_compat + 1);
2308
2309 /* We only use the new structs internally, so copy userspace compat
2310 * structs to extended internal versions */
2311 ip_vs_copy_usvc_compat(&usvc, usvc_compat);
2312 ip_vs_copy_udest_compat(&udest, udest_compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 if (cmd == IP_VS_SO_SET_ZERO) {
2315 /* if no service address is set, zero counters in all */
Julius Volzc860c6b2008-09-02 15:55:36 +02002316 if (!usvc.fwmark && !usvc.addr.ip && !usvc.port) {
Hans Schillstromfc723252011-01-03 14:44:43 +01002317 ret = ip_vs_zero_all(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 goto out_unlock;
2319 }
2320 }
2321
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01002322 /* Check for valid protocol: TCP or UDP or SCTP, even for fwmark!=0 */
2323 if (usvc.protocol != IPPROTO_TCP && usvc.protocol != IPPROTO_UDP &&
2324 usvc.protocol != IPPROTO_SCTP) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00002325 pr_err("set_ctl: invalid protocol: %d %pI4:%d %s\n",
2326 usvc.protocol, &usvc.addr.ip,
2327 ntohs(usvc.port), usvc.sched_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 ret = -EFAULT;
2329 goto out_unlock;
2330 }
2331
2332 /* Lookup the exact service by <protocol, addr, port> or fwmark */
Julian Anastasovceec4c32013-03-22 11:46:53 +02002333 rcu_read_lock();
Julius Volzc860c6b2008-09-02 15:55:36 +02002334 if (usvc.fwmark == 0)
Hans Schillstromfc723252011-01-03 14:44:43 +01002335 svc = __ip_vs_service_find(net, usvc.af, usvc.protocol,
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002336 &usvc.addr, usvc.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 else
Hans Schillstromfc723252011-01-03 14:44:43 +01002338 svc = __ip_vs_svc_fwm_find(net, usvc.af, usvc.fwmark);
Julian Anastasovceec4c32013-03-22 11:46:53 +02002339 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
2341 if (cmd != IP_VS_SO_SET_ADD
Julius Volzc860c6b2008-09-02 15:55:36 +02002342 && (svc == NULL || svc->protocol != usvc.protocol)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 ret = -ESRCH;
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002344 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346
2347 switch (cmd) {
2348 case IP_VS_SO_SET_ADD:
2349 if (svc != NULL)
2350 ret = -EEXIST;
2351 else
Hans Schillstromfc723252011-01-03 14:44:43 +01002352 ret = ip_vs_add_service(net, &usvc, &svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 break;
2354 case IP_VS_SO_SET_EDIT:
Julius Volzc860c6b2008-09-02 15:55:36 +02002355 ret = ip_vs_edit_service(svc, &usvc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 break;
2357 case IP_VS_SO_SET_DEL:
2358 ret = ip_vs_del_service(svc);
2359 if (!ret)
2360 goto out_unlock;
2361 break;
2362 case IP_VS_SO_SET_ZERO:
2363 ret = ip_vs_zero_service(svc);
2364 break;
2365 case IP_VS_SO_SET_ADDDEST:
Julius Volzc860c6b2008-09-02 15:55:36 +02002366 ret = ip_vs_add_dest(svc, &udest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 break;
2368 case IP_VS_SO_SET_EDITDEST:
Julius Volzc860c6b2008-09-02 15:55:36 +02002369 ret = ip_vs_edit_dest(svc, &udest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 break;
2371 case IP_VS_SO_SET_DELDEST:
Julius Volzc860c6b2008-09-02 15:55:36 +02002372 ret = ip_vs_del_dest(svc, &udest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 break;
2374 default:
2375 ret = -EINVAL;
2376 }
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 out_unlock:
Ingo Molnar14cc3e22006-03-26 01:37:14 -08002379 mutex_unlock(&__ip_vs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 out_dec:
2381 /* decrease the module use count */
2382 ip_vs_use_count_dec();
2383
2384 return ret;
2385}
2386
2387
2388static void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389ip_vs_copy_service(struct ip_vs_service_entry *dst, struct ip_vs_service *src)
2390{
Julian Anastasovceec4c32013-03-22 11:46:53 +02002391 struct ip_vs_scheduler *sched;
2392
2393 sched = rcu_dereference_protected(src->scheduler, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 dst->protocol = src->protocol;
Julius Volze7ade462008-09-02 15:55:33 +02002395 dst->addr = src->addr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 dst->port = src->port;
2397 dst->fwmark = src->fwmark;
Julian Anastasovceec4c32013-03-22 11:46:53 +02002398 strlcpy(dst->sched_name, sched->name, sizeof(dst->sched_name));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 dst->flags = src->flags;
2400 dst->timeout = src->timeout / HZ;
2401 dst->netmask = src->netmask;
2402 dst->num_dests = src->num_dests;
2403 ip_vs_copy_stats(&dst->stats, &src->stats);
2404}
2405
2406static inline int
Hans Schillstromfc723252011-01-03 14:44:43 +01002407__ip_vs_get_service_entries(struct net *net,
2408 const struct ip_vs_get_services *get,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 struct ip_vs_get_services __user *uptr)
2410{
2411 int idx, count=0;
2412 struct ip_vs_service *svc;
2413 struct ip_vs_service_entry entry;
2414 int ret = 0;
2415
2416 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02002417 hlist_for_each_entry(svc, &ip_vs_svc_table[idx], s_list) {
Julius Volzf94fd042008-09-02 15:55:55 +02002418 /* Only expose IPv4 entries to old interface */
Hans Schillstromfc723252011-01-03 14:44:43 +01002419 if (svc->af != AF_INET || !net_eq(svc->net, net))
Julius Volzf94fd042008-09-02 15:55:55 +02002420 continue;
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 if (count >= get->num_services)
2423 goto out;
pageexec4da62fc2005-06-26 16:00:19 -07002424 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 ip_vs_copy_service(&entry, svc);
2426 if (copy_to_user(&uptr->entrytable[count],
2427 &entry, sizeof(entry))) {
2428 ret = -EFAULT;
2429 goto out;
2430 }
2431 count++;
2432 }
2433 }
2434
2435 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02002436 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[idx], f_list) {
Julius Volzf94fd042008-09-02 15:55:55 +02002437 /* Only expose IPv4 entries to old interface */
Hans Schillstromfc723252011-01-03 14:44:43 +01002438 if (svc->af != AF_INET || !net_eq(svc->net, net))
Julius Volzf94fd042008-09-02 15:55:55 +02002439 continue;
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (count >= get->num_services)
2442 goto out;
pageexec4da62fc2005-06-26 16:00:19 -07002443 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 ip_vs_copy_service(&entry, svc);
2445 if (copy_to_user(&uptr->entrytable[count],
2446 &entry, sizeof(entry))) {
2447 ret = -EFAULT;
2448 goto out;
2449 }
2450 count++;
2451 }
2452 }
Hans Schillstrom552ad652011-06-13 12:19:26 +02002453out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 return ret;
2455}
2456
2457static inline int
Hans Schillstromfc723252011-01-03 14:44:43 +01002458__ip_vs_get_dest_entries(struct net *net, const struct ip_vs_get_dests *get,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 struct ip_vs_get_dests __user *uptr)
2460{
2461 struct ip_vs_service *svc;
Julius Volzb18610d2008-09-02 15:55:37 +02002462 union nf_inet_addr addr = { .ip = get->addr };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 int ret = 0;
2464
Julian Anastasovceec4c32013-03-22 11:46:53 +02002465 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 if (get->fwmark)
Hans Schillstromfc723252011-01-03 14:44:43 +01002467 svc = __ip_vs_svc_fwm_find(net, AF_INET, get->fwmark);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 else
Hans Schillstromfc723252011-01-03 14:44:43 +01002469 svc = __ip_vs_service_find(net, AF_INET, get->protocol, &addr,
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002470 get->port);
Julian Anastasovceec4c32013-03-22 11:46:53 +02002471 rcu_read_unlock();
Julius Volzb18610d2008-09-02 15:55:37 +02002472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 if (svc) {
2474 int count = 0;
2475 struct ip_vs_dest *dest;
2476 struct ip_vs_dest_entry entry;
2477
Dan Carpentera8241c62013-06-03 12:00:49 +03002478 memset(&entry, 0, sizeof(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 list_for_each_entry(dest, &svc->destinations, n_list) {
2480 if (count >= get->num_dests)
2481 break;
2482
Julius Volze7ade462008-09-02 15:55:33 +02002483 entry.addr = dest->addr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 entry.port = dest->port;
2485 entry.conn_flags = atomic_read(&dest->conn_flags);
2486 entry.weight = atomic_read(&dest->weight);
2487 entry.u_threshold = dest->u_threshold;
2488 entry.l_threshold = dest->l_threshold;
2489 entry.activeconns = atomic_read(&dest->activeconns);
2490 entry.inactconns = atomic_read(&dest->inactconns);
2491 entry.persistconns = atomic_read(&dest->persistconns);
2492 ip_vs_copy_stats(&entry.stats, &dest->stats);
2493 if (copy_to_user(&uptr->entrytable[count],
2494 &entry, sizeof(entry))) {
2495 ret = -EFAULT;
2496 break;
2497 }
2498 count++;
2499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 } else
2501 ret = -ESRCH;
2502 return ret;
2503}
2504
2505static inline void
Hans Schillstrom93304192011-01-03 14:44:51 +01002506__ip_vs_get_timeouts(struct net *net, struct ip_vs_timeout_user *u)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Changli Gao091bb342011-01-21 18:02:13 +08002508#if defined(CONFIG_IP_VS_PROTO_TCP) || defined(CONFIG_IP_VS_PROTO_UDP)
Hans Schillstrom93304192011-01-03 14:44:51 +01002509 struct ip_vs_proto_data *pd;
Changli Gao091bb342011-01-21 18:02:13 +08002510#endif
Hans Schillstrom93304192011-01-03 14:44:51 +01002511
Arnd Bergmannb61a6022012-10-09 13:04:34 +09002512 memset(u, 0, sizeof (*u));
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514#ifdef CONFIG_IP_VS_PROTO_TCP
Hans Schillstrom93304192011-01-03 14:44:51 +01002515 pd = ip_vs_proto_data_get(net, IPPROTO_TCP);
2516 u->tcp_timeout = pd->timeout_table[IP_VS_TCP_S_ESTABLISHED] / HZ;
2517 u->tcp_fin_timeout = pd->timeout_table[IP_VS_TCP_S_FIN_WAIT] / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518#endif
2519#ifdef CONFIG_IP_VS_PROTO_UDP
Hans Schillstrom93304192011-01-03 14:44:51 +01002520 pd = ip_vs_proto_data_get(net, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 u->udp_timeout =
Hans Schillstrom93304192011-01-03 14:44:51 +01002522 pd->timeout_table[IP_VS_UDP_S_NORMAL] / HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523#endif
2524}
2525
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002526static const unsigned char get_arglen[CMDID(IP_VS_SO_GET_MAX) + 1] = {
2527 [CMDID(IP_VS_SO_GET_VERSION)] = 64,
2528 [CMDID(IP_VS_SO_GET_INFO)] = sizeof(struct ip_vs_getinfo),
2529 [CMDID(IP_VS_SO_GET_SERVICES)] = sizeof(struct ip_vs_get_services),
2530 [CMDID(IP_VS_SO_GET_SERVICE)] = sizeof(struct ip_vs_service_entry),
2531 [CMDID(IP_VS_SO_GET_DESTS)] = sizeof(struct ip_vs_get_dests),
2532 [CMDID(IP_VS_SO_GET_TIMEOUT)] = sizeof(struct ip_vs_timeout_user),
2533 [CMDID(IP_VS_SO_GET_DAEMON)] = 2 * sizeof(struct ip_vs_daemon_user),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534};
2535
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002536union ip_vs_get_arglen {
2537 char field_IP_VS_SO_GET_VERSION[64];
2538 struct ip_vs_getinfo field_IP_VS_SO_GET_INFO;
2539 struct ip_vs_get_services field_IP_VS_SO_GET_SERVICES;
2540 struct ip_vs_service_entry field_IP_VS_SO_GET_SERVICE;
2541 struct ip_vs_get_dests field_IP_VS_SO_GET_DESTS;
2542 struct ip_vs_timeout_user field_IP_VS_SO_GET_TIMEOUT;
2543 struct ip_vs_daemon_user field_IP_VS_SO_GET_DAEMON[2];
2544};
2545
2546#define MAX_GET_ARGLEN sizeof(union ip_vs_get_arglen)
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548static int
2549do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
2550{
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002551 unsigned char arg[MAX_GET_ARGLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 int ret = 0;
Arjan van de Ven04bcef22010-01-04 16:37:12 +01002553 unsigned int copylen;
Hans Schillstromfc723252011-01-03 14:44:43 +01002554 struct net *net = sock_net(sk);
Hans Schillstromf1313152011-01-03 14:44:55 +01002555 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Hans Schillstromfc723252011-01-03 14:44:43 +01002557 BUG_ON(!net);
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002558 BUILD_BUG_ON(sizeof(arg) > 255);
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002559 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return -EPERM;
2561
Arjan van de Ven04bcef22010-01-04 16:37:12 +01002562 if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX)
2563 return -EINVAL;
2564
Julian Anastasov5fcf0cf2014-09-03 00:02:49 +03002565 copylen = get_arglen[CMDID(cmd)];
2566 if (*len < (int) copylen) {
2567 IP_VS_DBG(1, "get_ctl: len %d < %u\n", *len, copylen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 return -EINVAL;
2569 }
2570
Arjan van de Ven04bcef22010-01-04 16:37:12 +01002571 if (copy_from_user(arg, user, copylen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return -EFAULT;
Hans Schillstromae1d48b2011-10-11 10:54:35 +09002573 /*
2574 * Handle daemons first since it has its own locking
2575 */
2576 if (cmd == IP_VS_SO_GET_DAEMON) {
2577 struct ip_vs_daemon_user d[2];
2578
2579 memset(&d, 0, sizeof(d));
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +02002580 mutex_lock(&ipvs->sync_mutex);
Hans Schillstromae1d48b2011-10-11 10:54:35 +09002581 if (ipvs->sync_state & IP_VS_STATE_MASTER) {
2582 d[0].state = IP_VS_STATE_MASTER;
2583 strlcpy(d[0].mcast_ifn, ipvs->master_mcast_ifn,
2584 sizeof(d[0].mcast_ifn));
2585 d[0].syncid = ipvs->master_syncid;
2586 }
2587 if (ipvs->sync_state & IP_VS_STATE_BACKUP) {
2588 d[1].state = IP_VS_STATE_BACKUP;
2589 strlcpy(d[1].mcast_ifn, ipvs->backup_mcast_ifn,
2590 sizeof(d[1].mcast_ifn));
2591 d[1].syncid = ipvs->backup_syncid;
2592 }
2593 if (copy_to_user(user, &d, sizeof(d)) != 0)
2594 ret = -EFAULT;
2595 mutex_unlock(&ipvs->sync_mutex);
2596 return ret;
2597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Pablo Neira Ayuso7926dbf2014-07-31 20:38:46 +02002599 mutex_lock(&__ip_vs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 switch (cmd) {
2601 case IP_VS_SO_GET_VERSION:
2602 {
2603 char buf[64];
2604
2605 sprintf(buf, "IP Virtual Server version %d.%d.%d (size=%d)",
Catalin(ux) M. BOIE6f7edb42010-01-05 05:50:24 +01002606 NVERSION(IP_VS_VERSION_CODE), ip_vs_conn_tab_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 if (copy_to_user(user, buf, strlen(buf)+1) != 0) {
2608 ret = -EFAULT;
2609 goto out;
2610 }
2611 *len = strlen(buf)+1;
2612 }
2613 break;
2614
2615 case IP_VS_SO_GET_INFO:
2616 {
2617 struct ip_vs_getinfo info;
2618 info.version = IP_VS_VERSION_CODE;
Catalin(ux) M. BOIE6f7edb42010-01-05 05:50:24 +01002619 info.size = ip_vs_conn_tab_size;
Hans Schillstroma0840e22011-01-03 14:44:58 +01002620 info.num_services = ipvs->num_services;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 if (copy_to_user(user, &info, sizeof(info)) != 0)
2622 ret = -EFAULT;
2623 }
2624 break;
2625
2626 case IP_VS_SO_GET_SERVICES:
2627 {
2628 struct ip_vs_get_services *get;
2629 int size;
2630
2631 get = (struct ip_vs_get_services *)arg;
2632 size = sizeof(*get) +
2633 sizeof(struct ip_vs_service_entry) * get->num_services;
2634 if (*len != size) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00002635 pr_err("length: %u != %u\n", *len, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 ret = -EINVAL;
2637 goto out;
2638 }
Hans Schillstromfc723252011-01-03 14:44:43 +01002639 ret = __ip_vs_get_service_entries(net, get, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
2641 break;
2642
2643 case IP_VS_SO_GET_SERVICE:
2644 {
2645 struct ip_vs_service_entry *entry;
2646 struct ip_vs_service *svc;
Julius Volzb18610d2008-09-02 15:55:37 +02002647 union nf_inet_addr addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 entry = (struct ip_vs_service_entry *)arg;
Julius Volzb18610d2008-09-02 15:55:37 +02002650 addr.ip = entry->addr;
Julian Anastasovceec4c32013-03-22 11:46:53 +02002651 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (entry->fwmark)
Hans Schillstromfc723252011-01-03 14:44:43 +01002653 svc = __ip_vs_svc_fwm_find(net, AF_INET, entry->fwmark);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 else
Hans Schillstromfc723252011-01-03 14:44:43 +01002655 svc = __ip_vs_service_find(net, AF_INET,
2656 entry->protocol, &addr,
2657 entry->port);
Julian Anastasovceec4c32013-03-22 11:46:53 +02002658 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 if (svc) {
2660 ip_vs_copy_service(entry, svc);
2661 if (copy_to_user(user, entry, sizeof(*entry)) != 0)
2662 ret = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 } else
2664 ret = -ESRCH;
2665 }
2666 break;
2667
2668 case IP_VS_SO_GET_DESTS:
2669 {
2670 struct ip_vs_get_dests *get;
2671 int size;
2672
2673 get = (struct ip_vs_get_dests *)arg;
2674 size = sizeof(*get) +
2675 sizeof(struct ip_vs_dest_entry) * get->num_dests;
2676 if (*len != size) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00002677 pr_err("length: %u != %u\n", *len, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 ret = -EINVAL;
2679 goto out;
2680 }
Hans Schillstromfc723252011-01-03 14:44:43 +01002681 ret = __ip_vs_get_dest_entries(net, get, user);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
2683 break;
2684
2685 case IP_VS_SO_GET_TIMEOUT:
2686 {
2687 struct ip_vs_timeout_user t;
2688
Hans Schillstrom93304192011-01-03 14:44:51 +01002689 __ip_vs_get_timeouts(net, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (copy_to_user(user, &t, sizeof(t)) != 0)
2691 ret = -EFAULT;
2692 }
2693 break;
2694
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 default:
2696 ret = -EINVAL;
2697 }
2698
Hans Schillstrom552ad652011-06-13 12:19:26 +02002699out:
Ingo Molnar14cc3e22006-03-26 01:37:14 -08002700 mutex_unlock(&__ip_vs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 return ret;
2702}
2703
2704
2705static struct nf_sockopt_ops ip_vs_sockopts = {
2706 .pf = PF_INET,
2707 .set_optmin = IP_VS_BASE_CTL,
2708 .set_optmax = IP_VS_SO_SET_MAX+1,
2709 .set = do_ip_vs_set_ctl,
2710 .get_optmin = IP_VS_BASE_CTL,
2711 .get_optmax = IP_VS_SO_GET_MAX+1,
2712 .get = do_ip_vs_get_ctl,
Neil Horman16fcec32007-09-11 11:28:26 +02002713 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714};
2715
Julius Volz9a812192008-08-14 14:08:44 +02002716/*
2717 * Generic Netlink interface
2718 */
2719
2720/* IPVS genetlink family */
2721static struct genl_family ip_vs_genl_family = {
2722 .id = GENL_ID_GENERATE,
2723 .hdrsize = 0,
2724 .name = IPVS_GENL_NAME,
2725 .version = IPVS_GENL_VERSION,
2726 .maxattr = IPVS_CMD_MAX,
Hans Schillstromc6d2d442011-01-03 14:45:03 +01002727 .netnsok = true, /* Make ipvsadm to work on netns */
Julius Volz9a812192008-08-14 14:08:44 +02002728};
2729
2730/* Policy used for first-level command attributes */
2731static const struct nla_policy ip_vs_cmd_policy[IPVS_CMD_ATTR_MAX + 1] = {
2732 [IPVS_CMD_ATTR_SERVICE] = { .type = NLA_NESTED },
2733 [IPVS_CMD_ATTR_DEST] = { .type = NLA_NESTED },
2734 [IPVS_CMD_ATTR_DAEMON] = { .type = NLA_NESTED },
2735 [IPVS_CMD_ATTR_TIMEOUT_TCP] = { .type = NLA_U32 },
2736 [IPVS_CMD_ATTR_TIMEOUT_TCP_FIN] = { .type = NLA_U32 },
2737 [IPVS_CMD_ATTR_TIMEOUT_UDP] = { .type = NLA_U32 },
2738};
2739
2740/* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DAEMON */
2741static const struct nla_policy ip_vs_daemon_policy[IPVS_DAEMON_ATTR_MAX + 1] = {
2742 [IPVS_DAEMON_ATTR_STATE] = { .type = NLA_U32 },
2743 [IPVS_DAEMON_ATTR_MCAST_IFN] = { .type = NLA_NUL_STRING,
2744 .len = IP_VS_IFNAME_MAXLEN },
2745 [IPVS_DAEMON_ATTR_SYNC_ID] = { .type = NLA_U32 },
2746};
2747
2748/* Policy used for attributes in nested attribute IPVS_CMD_ATTR_SERVICE */
2749static const struct nla_policy ip_vs_svc_policy[IPVS_SVC_ATTR_MAX + 1] = {
2750 [IPVS_SVC_ATTR_AF] = { .type = NLA_U16 },
2751 [IPVS_SVC_ATTR_PROTOCOL] = { .type = NLA_U16 },
2752 [IPVS_SVC_ATTR_ADDR] = { .type = NLA_BINARY,
2753 .len = sizeof(union nf_inet_addr) },
2754 [IPVS_SVC_ATTR_PORT] = { .type = NLA_U16 },
2755 [IPVS_SVC_ATTR_FWMARK] = { .type = NLA_U32 },
2756 [IPVS_SVC_ATTR_SCHED_NAME] = { .type = NLA_NUL_STRING,
2757 .len = IP_VS_SCHEDNAME_MAXLEN },
Simon Horman0d1e71b2010-08-22 21:37:54 +09002758 [IPVS_SVC_ATTR_PE_NAME] = { .type = NLA_NUL_STRING,
2759 .len = IP_VS_PENAME_MAXLEN },
Julius Volz9a812192008-08-14 14:08:44 +02002760 [IPVS_SVC_ATTR_FLAGS] = { .type = NLA_BINARY,
2761 .len = sizeof(struct ip_vs_flags) },
2762 [IPVS_SVC_ATTR_TIMEOUT] = { .type = NLA_U32 },
2763 [IPVS_SVC_ATTR_NETMASK] = { .type = NLA_U32 },
2764 [IPVS_SVC_ATTR_STATS] = { .type = NLA_NESTED },
2765};
2766
2767/* Policy used for attributes in nested attribute IPVS_CMD_ATTR_DEST */
2768static const struct nla_policy ip_vs_dest_policy[IPVS_DEST_ATTR_MAX + 1] = {
2769 [IPVS_DEST_ATTR_ADDR] = { .type = NLA_BINARY,
2770 .len = sizeof(union nf_inet_addr) },
2771 [IPVS_DEST_ATTR_PORT] = { .type = NLA_U16 },
2772 [IPVS_DEST_ATTR_FWD_METHOD] = { .type = NLA_U32 },
2773 [IPVS_DEST_ATTR_WEIGHT] = { .type = NLA_U32 },
2774 [IPVS_DEST_ATTR_U_THRESH] = { .type = NLA_U32 },
2775 [IPVS_DEST_ATTR_L_THRESH] = { .type = NLA_U32 },
2776 [IPVS_DEST_ATTR_ACTIVE_CONNS] = { .type = NLA_U32 },
2777 [IPVS_DEST_ATTR_INACT_CONNS] = { .type = NLA_U32 },
2778 [IPVS_DEST_ATTR_PERSIST_CONNS] = { .type = NLA_U32 },
2779 [IPVS_DEST_ATTR_STATS] = { .type = NLA_NESTED },
2780};
2781
2782static int ip_vs_genl_fill_stats(struct sk_buff *skb, int container_type,
2783 struct ip_vs_stats *stats)
2784{
Julian Anastasov55a3d4e2011-03-14 01:37:49 +02002785 struct ip_vs_stats_user ustats;
Julius Volz9a812192008-08-14 14:08:44 +02002786 struct nlattr *nl_stats = nla_nest_start(skb, container_type);
2787 if (!nl_stats)
2788 return -EMSGSIZE;
2789
Julian Anastasov55a3d4e2011-03-14 01:37:49 +02002790 ip_vs_copy_stats(&ustats, stats);
Julius Volz9a812192008-08-14 14:08:44 +02002791
David S. Miller969e8e22012-04-01 19:03:15 -04002792 if (nla_put_u32(skb, IPVS_STATS_ATTR_CONNS, ustats.conns) ||
2793 nla_put_u32(skb, IPVS_STATS_ATTR_INPKTS, ustats.inpkts) ||
2794 nla_put_u32(skb, IPVS_STATS_ATTR_OUTPKTS, ustats.outpkts) ||
2795 nla_put_u64(skb, IPVS_STATS_ATTR_INBYTES, ustats.inbytes) ||
2796 nla_put_u64(skb, IPVS_STATS_ATTR_OUTBYTES, ustats.outbytes) ||
2797 nla_put_u32(skb, IPVS_STATS_ATTR_CPS, ustats.cps) ||
2798 nla_put_u32(skb, IPVS_STATS_ATTR_INPPS, ustats.inpps) ||
2799 nla_put_u32(skb, IPVS_STATS_ATTR_OUTPPS, ustats.outpps) ||
2800 nla_put_u32(skb, IPVS_STATS_ATTR_INBPS, ustats.inbps) ||
2801 nla_put_u32(skb, IPVS_STATS_ATTR_OUTBPS, ustats.outbps))
2802 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02002803 nla_nest_end(skb, nl_stats);
2804
2805 return 0;
2806
2807nla_put_failure:
Julius Volz9a812192008-08-14 14:08:44 +02002808 nla_nest_cancel(skb, nl_stats);
2809 return -EMSGSIZE;
2810}
2811
2812static int ip_vs_genl_fill_service(struct sk_buff *skb,
2813 struct ip_vs_service *svc)
2814{
Julian Anastasovceec4c32013-03-22 11:46:53 +02002815 struct ip_vs_scheduler *sched;
Julian Anastasov371990e2013-04-17 23:50:50 +03002816 struct ip_vs_pe *pe;
Julius Volz9a812192008-08-14 14:08:44 +02002817 struct nlattr *nl_service;
2818 struct ip_vs_flags flags = { .flags = svc->flags,
2819 .mask = ~0 };
2820
2821 nl_service = nla_nest_start(skb, IPVS_CMD_ATTR_SERVICE);
2822 if (!nl_service)
2823 return -EMSGSIZE;
2824
David S. Miller969e8e22012-04-01 19:03:15 -04002825 if (nla_put_u16(skb, IPVS_SVC_ATTR_AF, svc->af))
2826 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02002827 if (svc->fwmark) {
David S. Miller969e8e22012-04-01 19:03:15 -04002828 if (nla_put_u32(skb, IPVS_SVC_ATTR_FWMARK, svc->fwmark))
2829 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02002830 } else {
David S. Miller969e8e22012-04-01 19:03:15 -04002831 if (nla_put_u16(skb, IPVS_SVC_ATTR_PROTOCOL, svc->protocol) ||
2832 nla_put(skb, IPVS_SVC_ATTR_ADDR, sizeof(svc->addr), &svc->addr) ||
Julian Anastasov0a925862013-04-17 23:50:49 +03002833 nla_put_be16(skb, IPVS_SVC_ATTR_PORT, svc->port))
David S. Miller969e8e22012-04-01 19:03:15 -04002834 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02002835 }
2836
Julian Anastasovceec4c32013-03-22 11:46:53 +02002837 sched = rcu_dereference_protected(svc->scheduler, 1);
Julian Anastasov371990e2013-04-17 23:50:50 +03002838 pe = rcu_dereference_protected(svc->pe, 1);
Julian Anastasovceec4c32013-03-22 11:46:53 +02002839 if (nla_put_string(skb, IPVS_SVC_ATTR_SCHED_NAME, sched->name) ||
Julian Anastasov371990e2013-04-17 23:50:50 +03002840 (pe && nla_put_string(skb, IPVS_SVC_ATTR_PE_NAME, pe->name)) ||
David S. Miller969e8e22012-04-01 19:03:15 -04002841 nla_put(skb, IPVS_SVC_ATTR_FLAGS, sizeof(flags), &flags) ||
2842 nla_put_u32(skb, IPVS_SVC_ATTR_TIMEOUT, svc->timeout / HZ) ||
Julian Anastasov0a925862013-04-17 23:50:49 +03002843 nla_put_be32(skb, IPVS_SVC_ATTR_NETMASK, svc->netmask))
David S. Miller969e8e22012-04-01 19:03:15 -04002844 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02002845 if (ip_vs_genl_fill_stats(skb, IPVS_SVC_ATTR_STATS, &svc->stats))
2846 goto nla_put_failure;
2847
2848 nla_nest_end(skb, nl_service);
2849
2850 return 0;
2851
2852nla_put_failure:
2853 nla_nest_cancel(skb, nl_service);
2854 return -EMSGSIZE;
2855}
2856
2857static int ip_vs_genl_dump_service(struct sk_buff *skb,
2858 struct ip_vs_service *svc,
2859 struct netlink_callback *cb)
2860{
2861 void *hdr;
2862
Eric W. Biederman15e47302012-09-07 20:12:54 +00002863 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Julius Volz9a812192008-08-14 14:08:44 +02002864 &ip_vs_genl_family, NLM_F_MULTI,
2865 IPVS_CMD_NEW_SERVICE);
2866 if (!hdr)
2867 return -EMSGSIZE;
2868
2869 if (ip_vs_genl_fill_service(skb, svc) < 0)
2870 goto nla_put_failure;
2871
2872 return genlmsg_end(skb, hdr);
2873
2874nla_put_failure:
2875 genlmsg_cancel(skb, hdr);
2876 return -EMSGSIZE;
2877}
2878
2879static int ip_vs_genl_dump_services(struct sk_buff *skb,
2880 struct netlink_callback *cb)
2881{
2882 int idx = 0, i;
2883 int start = cb->args[0];
2884 struct ip_vs_service *svc;
Hans Schillstromfc723252011-01-03 14:44:43 +01002885 struct net *net = skb_sknet(skb);
Julius Volz9a812192008-08-14 14:08:44 +02002886
2887 mutex_lock(&__ip_vs_mutex);
2888 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02002889 hlist_for_each_entry(svc, &ip_vs_svc_table[i], s_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01002890 if (++idx <= start || !net_eq(svc->net, net))
Julius Volz9a812192008-08-14 14:08:44 +02002891 continue;
2892 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
2893 idx--;
2894 goto nla_put_failure;
2895 }
2896 }
2897 }
2898
2899 for (i = 0; i < IP_VS_SVC_TAB_SIZE; i++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02002900 hlist_for_each_entry(svc, &ip_vs_svc_fwm_table[i], f_list) {
Hans Schillstromfc723252011-01-03 14:44:43 +01002901 if (++idx <= start || !net_eq(svc->net, net))
Julius Volz9a812192008-08-14 14:08:44 +02002902 continue;
2903 if (ip_vs_genl_dump_service(skb, svc, cb) < 0) {
2904 idx--;
2905 goto nla_put_failure;
2906 }
2907 }
2908 }
2909
2910nla_put_failure:
2911 mutex_unlock(&__ip_vs_mutex);
2912 cb->args[0] = idx;
2913
2914 return skb->len;
2915}
2916
Hans Schillstromfc723252011-01-03 14:44:43 +01002917static int ip_vs_genl_parse_service(struct net *net,
2918 struct ip_vs_service_user_kern *usvc,
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002919 struct nlattr *nla, int full_entry,
2920 struct ip_vs_service **ret_svc)
Julius Volz9a812192008-08-14 14:08:44 +02002921{
2922 struct nlattr *attrs[IPVS_SVC_ATTR_MAX + 1];
2923 struct nlattr *nla_af, *nla_port, *nla_fwmark, *nla_protocol, *nla_addr;
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002924 struct ip_vs_service *svc;
Julius Volz9a812192008-08-14 14:08:44 +02002925
2926 /* Parse mandatory identifying service fields first */
2927 if (nla == NULL ||
2928 nla_parse_nested(attrs, IPVS_SVC_ATTR_MAX, nla, ip_vs_svc_policy))
2929 return -EINVAL;
2930
2931 nla_af = attrs[IPVS_SVC_ATTR_AF];
2932 nla_protocol = attrs[IPVS_SVC_ATTR_PROTOCOL];
2933 nla_addr = attrs[IPVS_SVC_ATTR_ADDR];
2934 nla_port = attrs[IPVS_SVC_ATTR_PORT];
2935 nla_fwmark = attrs[IPVS_SVC_ATTR_FWMARK];
2936
2937 if (!(nla_af && (nla_fwmark || (nla_port && nla_protocol && nla_addr))))
2938 return -EINVAL;
2939
Simon Horman258c8892009-12-15 17:01:25 +01002940 memset(usvc, 0, sizeof(*usvc));
2941
Julius Volzc860c6b2008-09-02 15:55:36 +02002942 usvc->af = nla_get_u16(nla_af);
Julius Volzf94fd042008-09-02 15:55:55 +02002943#ifdef CONFIG_IP_VS_IPV6
2944 if (usvc->af != AF_INET && usvc->af != AF_INET6)
2945#else
2946 if (usvc->af != AF_INET)
2947#endif
Julius Volz9a812192008-08-14 14:08:44 +02002948 return -EAFNOSUPPORT;
2949
2950 if (nla_fwmark) {
2951 usvc->protocol = IPPROTO_TCP;
2952 usvc->fwmark = nla_get_u32(nla_fwmark);
2953 } else {
2954 usvc->protocol = nla_get_u16(nla_protocol);
2955 nla_memcpy(&usvc->addr, nla_addr, sizeof(usvc->addr));
Julian Anastasov0a925862013-04-17 23:50:49 +03002956 usvc->port = nla_get_be16(nla_port);
Julius Volz9a812192008-08-14 14:08:44 +02002957 usvc->fwmark = 0;
2958 }
2959
Julian Anastasovceec4c32013-03-22 11:46:53 +02002960 rcu_read_lock();
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002961 if (usvc->fwmark)
Hans Schillstromfc723252011-01-03 14:44:43 +01002962 svc = __ip_vs_svc_fwm_find(net, usvc->af, usvc->fwmark);
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002963 else
Hans Schillstromfc723252011-01-03 14:44:43 +01002964 svc = __ip_vs_service_find(net, usvc->af, usvc->protocol,
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002965 &usvc->addr, usvc->port);
Julian Anastasovceec4c32013-03-22 11:46:53 +02002966 rcu_read_unlock();
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002967 *ret_svc = svc;
2968
Julius Volz9a812192008-08-14 14:08:44 +02002969 /* If a full entry was requested, check for the additional fields */
2970 if (full_entry) {
Simon Horman0d1e71b2010-08-22 21:37:54 +09002971 struct nlattr *nla_sched, *nla_flags, *nla_pe, *nla_timeout,
Julius Volz9a812192008-08-14 14:08:44 +02002972 *nla_netmask;
2973 struct ip_vs_flags flags;
Julius Volz9a812192008-08-14 14:08:44 +02002974
2975 nla_sched = attrs[IPVS_SVC_ATTR_SCHED_NAME];
Simon Horman0d1e71b2010-08-22 21:37:54 +09002976 nla_pe = attrs[IPVS_SVC_ATTR_PE_NAME];
Julius Volz9a812192008-08-14 14:08:44 +02002977 nla_flags = attrs[IPVS_SVC_ATTR_FLAGS];
2978 nla_timeout = attrs[IPVS_SVC_ATTR_TIMEOUT];
2979 nla_netmask = attrs[IPVS_SVC_ATTR_NETMASK];
2980
2981 if (!(nla_sched && nla_flags && nla_timeout && nla_netmask))
2982 return -EINVAL;
2983
2984 nla_memcpy(&flags, nla_flags, sizeof(flags));
2985
2986 /* prefill flags from service if it already exists */
Julian Anastasov26c15cf2010-09-21 18:12:30 +02002987 if (svc)
Julius Volz9a812192008-08-14 14:08:44 +02002988 usvc->flags = svc->flags;
Julius Volz9a812192008-08-14 14:08:44 +02002989
2990 /* set new flags from userland */
2991 usvc->flags = (usvc->flags & ~flags.mask) |
2992 (flags.flags & flags.mask);
Julius Volzc860c6b2008-09-02 15:55:36 +02002993 usvc->sched_name = nla_data(nla_sched);
Simon Horman0d1e71b2010-08-22 21:37:54 +09002994 usvc->pe_name = nla_pe ? nla_data(nla_pe) : NULL;
Julius Volz9a812192008-08-14 14:08:44 +02002995 usvc->timeout = nla_get_u32(nla_timeout);
Julian Anastasov0a925862013-04-17 23:50:49 +03002996 usvc->netmask = nla_get_be32(nla_netmask);
Julius Volz9a812192008-08-14 14:08:44 +02002997 }
2998
2999 return 0;
3000}
3001
Hans Schillstromfc723252011-01-03 14:44:43 +01003002static struct ip_vs_service *ip_vs_genl_find_service(struct net *net,
3003 struct nlattr *nla)
Julius Volz9a812192008-08-14 14:08:44 +02003004{
Julius Volzc860c6b2008-09-02 15:55:36 +02003005 struct ip_vs_service_user_kern usvc;
Julian Anastasov26c15cf2010-09-21 18:12:30 +02003006 struct ip_vs_service *svc;
Julius Volz9a812192008-08-14 14:08:44 +02003007 int ret;
3008
Hans Schillstromfc723252011-01-03 14:44:43 +01003009 ret = ip_vs_genl_parse_service(net, &usvc, nla, 0, &svc);
Julian Anastasov26c15cf2010-09-21 18:12:30 +02003010 return ret ? ERR_PTR(ret) : svc;
Julius Volz9a812192008-08-14 14:08:44 +02003011}
3012
3013static int ip_vs_genl_fill_dest(struct sk_buff *skb, struct ip_vs_dest *dest)
3014{
3015 struct nlattr *nl_dest;
3016
3017 nl_dest = nla_nest_start(skb, IPVS_CMD_ATTR_DEST);
3018 if (!nl_dest)
3019 return -EMSGSIZE;
3020
David S. Miller969e8e22012-04-01 19:03:15 -04003021 if (nla_put(skb, IPVS_DEST_ATTR_ADDR, sizeof(dest->addr), &dest->addr) ||
Julian Anastasov0a925862013-04-17 23:50:49 +03003022 nla_put_be16(skb, IPVS_DEST_ATTR_PORT, dest->port) ||
David S. Miller969e8e22012-04-01 19:03:15 -04003023 nla_put_u32(skb, IPVS_DEST_ATTR_FWD_METHOD,
3024 (atomic_read(&dest->conn_flags) &
3025 IP_VS_CONN_F_FWD_MASK)) ||
3026 nla_put_u32(skb, IPVS_DEST_ATTR_WEIGHT,
3027 atomic_read(&dest->weight)) ||
3028 nla_put_u32(skb, IPVS_DEST_ATTR_U_THRESH, dest->u_threshold) ||
3029 nla_put_u32(skb, IPVS_DEST_ATTR_L_THRESH, dest->l_threshold) ||
3030 nla_put_u32(skb, IPVS_DEST_ATTR_ACTIVE_CONNS,
3031 atomic_read(&dest->activeconns)) ||
3032 nla_put_u32(skb, IPVS_DEST_ATTR_INACT_CONNS,
3033 atomic_read(&dest->inactconns)) ||
3034 nla_put_u32(skb, IPVS_DEST_ATTR_PERSIST_CONNS,
3035 atomic_read(&dest->persistconns)))
3036 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02003037 if (ip_vs_genl_fill_stats(skb, IPVS_DEST_ATTR_STATS, &dest->stats))
3038 goto nla_put_failure;
3039
3040 nla_nest_end(skb, nl_dest);
3041
3042 return 0;
3043
3044nla_put_failure:
3045 nla_nest_cancel(skb, nl_dest);
3046 return -EMSGSIZE;
3047}
3048
3049static int ip_vs_genl_dump_dest(struct sk_buff *skb, struct ip_vs_dest *dest,
3050 struct netlink_callback *cb)
3051{
3052 void *hdr;
3053
Eric W. Biederman15e47302012-09-07 20:12:54 +00003054 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Julius Volz9a812192008-08-14 14:08:44 +02003055 &ip_vs_genl_family, NLM_F_MULTI,
3056 IPVS_CMD_NEW_DEST);
3057 if (!hdr)
3058 return -EMSGSIZE;
3059
3060 if (ip_vs_genl_fill_dest(skb, dest) < 0)
3061 goto nla_put_failure;
3062
3063 return genlmsg_end(skb, hdr);
3064
3065nla_put_failure:
3066 genlmsg_cancel(skb, hdr);
3067 return -EMSGSIZE;
3068}
3069
3070static int ip_vs_genl_dump_dests(struct sk_buff *skb,
3071 struct netlink_callback *cb)
3072{
3073 int idx = 0;
3074 int start = cb->args[0];
3075 struct ip_vs_service *svc;
3076 struct ip_vs_dest *dest;
3077 struct nlattr *attrs[IPVS_CMD_ATTR_MAX + 1];
Hans Schillstroma0840e22011-01-03 14:44:58 +01003078 struct net *net = skb_sknet(skb);
Julius Volz9a812192008-08-14 14:08:44 +02003079
3080 mutex_lock(&__ip_vs_mutex);
3081
3082 /* Try to find the service for which to dump destinations */
3083 if (nlmsg_parse(cb->nlh, GENL_HDRLEN, attrs,
3084 IPVS_CMD_ATTR_MAX, ip_vs_cmd_policy))
3085 goto out_err;
3086
Hans Schillstroma0840e22011-01-03 14:44:58 +01003087
Hans Schillstromfc723252011-01-03 14:44:43 +01003088 svc = ip_vs_genl_find_service(net, attrs[IPVS_CMD_ATTR_SERVICE]);
Julius Volz9a812192008-08-14 14:08:44 +02003089 if (IS_ERR(svc) || svc == NULL)
3090 goto out_err;
3091
3092 /* Dump the destinations */
3093 list_for_each_entry(dest, &svc->destinations, n_list) {
3094 if (++idx <= start)
3095 continue;
3096 if (ip_vs_genl_dump_dest(skb, dest, cb) < 0) {
3097 idx--;
3098 goto nla_put_failure;
3099 }
3100 }
3101
3102nla_put_failure:
3103 cb->args[0] = idx;
Julius Volz9a812192008-08-14 14:08:44 +02003104
3105out_err:
3106 mutex_unlock(&__ip_vs_mutex);
3107
3108 return skb->len;
3109}
3110
Julius Volzc860c6b2008-09-02 15:55:36 +02003111static int ip_vs_genl_parse_dest(struct ip_vs_dest_user_kern *udest,
Julius Volz9a812192008-08-14 14:08:44 +02003112 struct nlattr *nla, int full_entry)
3113{
3114 struct nlattr *attrs[IPVS_DEST_ATTR_MAX + 1];
3115 struct nlattr *nla_addr, *nla_port;
3116
3117 /* Parse mandatory identifying destination fields first */
3118 if (nla == NULL ||
3119 nla_parse_nested(attrs, IPVS_DEST_ATTR_MAX, nla, ip_vs_dest_policy))
3120 return -EINVAL;
3121
3122 nla_addr = attrs[IPVS_DEST_ATTR_ADDR];
3123 nla_port = attrs[IPVS_DEST_ATTR_PORT];
3124
3125 if (!(nla_addr && nla_port))
3126 return -EINVAL;
3127
Simon Horman258c8892009-12-15 17:01:25 +01003128 memset(udest, 0, sizeof(*udest));
3129
Julius Volz9a812192008-08-14 14:08:44 +02003130 nla_memcpy(&udest->addr, nla_addr, sizeof(udest->addr));
Julian Anastasov0a925862013-04-17 23:50:49 +03003131 udest->port = nla_get_be16(nla_port);
Julius Volz9a812192008-08-14 14:08:44 +02003132
3133 /* If a full entry was requested, check for the additional fields */
3134 if (full_entry) {
3135 struct nlattr *nla_fwd, *nla_weight, *nla_u_thresh,
3136 *nla_l_thresh;
3137
3138 nla_fwd = attrs[IPVS_DEST_ATTR_FWD_METHOD];
3139 nla_weight = attrs[IPVS_DEST_ATTR_WEIGHT];
3140 nla_u_thresh = attrs[IPVS_DEST_ATTR_U_THRESH];
3141 nla_l_thresh = attrs[IPVS_DEST_ATTR_L_THRESH];
3142
3143 if (!(nla_fwd && nla_weight && nla_u_thresh && nla_l_thresh))
3144 return -EINVAL;
3145
3146 udest->conn_flags = nla_get_u32(nla_fwd)
3147 & IP_VS_CONN_F_FWD_MASK;
3148 udest->weight = nla_get_u32(nla_weight);
3149 udest->u_threshold = nla_get_u32(nla_u_thresh);
3150 udest->l_threshold = nla_get_u32(nla_l_thresh);
3151 }
3152
3153 return 0;
3154}
3155
Julian Anastasov0a925862013-04-17 23:50:49 +03003156static int ip_vs_genl_fill_daemon(struct sk_buff *skb, __u32 state,
3157 const char *mcast_ifn, __u32 syncid)
Julius Volz9a812192008-08-14 14:08:44 +02003158{
3159 struct nlattr *nl_daemon;
3160
3161 nl_daemon = nla_nest_start(skb, IPVS_CMD_ATTR_DAEMON);
3162 if (!nl_daemon)
3163 return -EMSGSIZE;
3164
David S. Miller969e8e22012-04-01 19:03:15 -04003165 if (nla_put_u32(skb, IPVS_DAEMON_ATTR_STATE, state) ||
3166 nla_put_string(skb, IPVS_DAEMON_ATTR_MCAST_IFN, mcast_ifn) ||
3167 nla_put_u32(skb, IPVS_DAEMON_ATTR_SYNC_ID, syncid))
3168 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02003169 nla_nest_end(skb, nl_daemon);
3170
3171 return 0;
3172
3173nla_put_failure:
3174 nla_nest_cancel(skb, nl_daemon);
3175 return -EMSGSIZE;
3176}
3177
Julian Anastasov0a925862013-04-17 23:50:49 +03003178static int ip_vs_genl_dump_daemon(struct sk_buff *skb, __u32 state,
3179 const char *mcast_ifn, __u32 syncid,
Julius Volz9a812192008-08-14 14:08:44 +02003180 struct netlink_callback *cb)
3181{
3182 void *hdr;
Eric W. Biederman15e47302012-09-07 20:12:54 +00003183 hdr = genlmsg_put(skb, NETLINK_CB(cb->skb).portid, cb->nlh->nlmsg_seq,
Julius Volz9a812192008-08-14 14:08:44 +02003184 &ip_vs_genl_family, NLM_F_MULTI,
3185 IPVS_CMD_NEW_DAEMON);
3186 if (!hdr)
3187 return -EMSGSIZE;
3188
3189 if (ip_vs_genl_fill_daemon(skb, state, mcast_ifn, syncid))
3190 goto nla_put_failure;
3191
3192 return genlmsg_end(skb, hdr);
3193
3194nla_put_failure:
3195 genlmsg_cancel(skb, hdr);
3196 return -EMSGSIZE;
3197}
3198
3199static int ip_vs_genl_dump_daemons(struct sk_buff *skb,
3200 struct netlink_callback *cb)
3201{
Hans Schillstroma09d1972011-04-04 15:25:18 +02003202 struct net *net = skb_sknet(skb);
Hans Schillstromf1313152011-01-03 14:44:55 +01003203 struct netns_ipvs *ipvs = net_ipvs(net);
3204
Hans Schillstromae1d48b2011-10-11 10:54:35 +09003205 mutex_lock(&ipvs->sync_mutex);
Hans Schillstromf1313152011-01-03 14:44:55 +01003206 if ((ipvs->sync_state & IP_VS_STATE_MASTER) && !cb->args[0]) {
Julius Volz9a812192008-08-14 14:08:44 +02003207 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_MASTER,
Hans Schillstromf1313152011-01-03 14:44:55 +01003208 ipvs->master_mcast_ifn,
3209 ipvs->master_syncid, cb) < 0)
Julius Volz9a812192008-08-14 14:08:44 +02003210 goto nla_put_failure;
3211
3212 cb->args[0] = 1;
3213 }
3214
Hans Schillstromf1313152011-01-03 14:44:55 +01003215 if ((ipvs->sync_state & IP_VS_STATE_BACKUP) && !cb->args[1]) {
Julius Volz9a812192008-08-14 14:08:44 +02003216 if (ip_vs_genl_dump_daemon(skb, IP_VS_STATE_BACKUP,
Hans Schillstromf1313152011-01-03 14:44:55 +01003217 ipvs->backup_mcast_ifn,
3218 ipvs->backup_syncid, cb) < 0)
Julius Volz9a812192008-08-14 14:08:44 +02003219 goto nla_put_failure;
3220
3221 cb->args[1] = 1;
3222 }
3223
3224nla_put_failure:
Hans Schillstromae1d48b2011-10-11 10:54:35 +09003225 mutex_unlock(&ipvs->sync_mutex);
Julius Volz9a812192008-08-14 14:08:44 +02003226
3227 return skb->len;
3228}
3229
Hans Schillstromf1313152011-01-03 14:44:55 +01003230static int ip_vs_genl_new_daemon(struct net *net, struct nlattr **attrs)
Julius Volz9a812192008-08-14 14:08:44 +02003231{
3232 if (!(attrs[IPVS_DAEMON_ATTR_STATE] &&
3233 attrs[IPVS_DAEMON_ATTR_MCAST_IFN] &&
3234 attrs[IPVS_DAEMON_ATTR_SYNC_ID]))
3235 return -EINVAL;
3236
Hans Schillstromf1313152011-01-03 14:44:55 +01003237 return start_sync_thread(net,
3238 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]),
Julius Volz9a812192008-08-14 14:08:44 +02003239 nla_data(attrs[IPVS_DAEMON_ATTR_MCAST_IFN]),
3240 nla_get_u32(attrs[IPVS_DAEMON_ATTR_SYNC_ID]));
3241}
3242
Hans Schillstromf1313152011-01-03 14:44:55 +01003243static int ip_vs_genl_del_daemon(struct net *net, struct nlattr **attrs)
Julius Volz9a812192008-08-14 14:08:44 +02003244{
3245 if (!attrs[IPVS_DAEMON_ATTR_STATE])
3246 return -EINVAL;
3247
Hans Schillstromf1313152011-01-03 14:44:55 +01003248 return stop_sync_thread(net,
3249 nla_get_u32(attrs[IPVS_DAEMON_ATTR_STATE]));
Julius Volz9a812192008-08-14 14:08:44 +02003250}
3251
Hans Schillstrom93304192011-01-03 14:44:51 +01003252static int ip_vs_genl_set_config(struct net *net, struct nlattr **attrs)
Julius Volz9a812192008-08-14 14:08:44 +02003253{
3254 struct ip_vs_timeout_user t;
3255
Hans Schillstrom93304192011-01-03 14:44:51 +01003256 __ip_vs_get_timeouts(net, &t);
Julius Volz9a812192008-08-14 14:08:44 +02003257
3258 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP])
3259 t.tcp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP]);
3260
3261 if (attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN])
3262 t.tcp_fin_timeout =
3263 nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_TCP_FIN]);
3264
3265 if (attrs[IPVS_CMD_ATTR_TIMEOUT_UDP])
3266 t.udp_timeout = nla_get_u32(attrs[IPVS_CMD_ATTR_TIMEOUT_UDP]);
3267
Hans Schillstrom93304192011-01-03 14:44:51 +01003268 return ip_vs_set_timeout(net, &t);
Julius Volz9a812192008-08-14 14:08:44 +02003269}
3270
Hans Schillstromae1d48b2011-10-11 10:54:35 +09003271static int ip_vs_genl_set_daemon(struct sk_buff *skb, struct genl_info *info)
3272{
3273 int ret = 0, cmd;
3274 struct net *net;
3275 struct netns_ipvs *ipvs;
3276
3277 net = skb_sknet(skb);
3278 ipvs = net_ipvs(net);
3279 cmd = info->genlhdr->cmd;
3280
3281 if (cmd == IPVS_CMD_NEW_DAEMON || cmd == IPVS_CMD_DEL_DAEMON) {
3282 struct nlattr *daemon_attrs[IPVS_DAEMON_ATTR_MAX + 1];
3283
3284 mutex_lock(&ipvs->sync_mutex);
3285 if (!info->attrs[IPVS_CMD_ATTR_DAEMON] ||
3286 nla_parse_nested(daemon_attrs, IPVS_DAEMON_ATTR_MAX,
3287 info->attrs[IPVS_CMD_ATTR_DAEMON],
3288 ip_vs_daemon_policy)) {
3289 ret = -EINVAL;
3290 goto out;
3291 }
3292
3293 if (cmd == IPVS_CMD_NEW_DAEMON)
3294 ret = ip_vs_genl_new_daemon(net, daemon_attrs);
3295 else
3296 ret = ip_vs_genl_del_daemon(net, daemon_attrs);
3297out:
3298 mutex_unlock(&ipvs->sync_mutex);
3299 }
3300 return ret;
3301}
3302
Julius Volz9a812192008-08-14 14:08:44 +02003303static int ip_vs_genl_set_cmd(struct sk_buff *skb, struct genl_info *info)
3304{
3305 struct ip_vs_service *svc = NULL;
Julius Volzc860c6b2008-09-02 15:55:36 +02003306 struct ip_vs_service_user_kern usvc;
3307 struct ip_vs_dest_user_kern udest;
Julius Volz9a812192008-08-14 14:08:44 +02003308 int ret = 0, cmd;
3309 int need_full_svc = 0, need_full_dest = 0;
Hans Schillstromfc723252011-01-03 14:44:43 +01003310 struct net *net;
Julius Volz9a812192008-08-14 14:08:44 +02003311
Hans Schillstromfc723252011-01-03 14:44:43 +01003312 net = skb_sknet(skb);
Julius Volz9a812192008-08-14 14:08:44 +02003313 cmd = info->genlhdr->cmd;
3314
3315 mutex_lock(&__ip_vs_mutex);
3316
3317 if (cmd == IPVS_CMD_FLUSH) {
Julian Anastasov578bc3e2013-03-22 11:46:49 +02003318 ret = ip_vs_flush(net, false);
Julius Volz9a812192008-08-14 14:08:44 +02003319 goto out;
3320 } else if (cmd == IPVS_CMD_SET_CONFIG) {
Hans Schillstrom93304192011-01-03 14:44:51 +01003321 ret = ip_vs_genl_set_config(net, info->attrs);
Julius Volz9a812192008-08-14 14:08:44 +02003322 goto out;
Julius Volz9a812192008-08-14 14:08:44 +02003323 } else if (cmd == IPVS_CMD_ZERO &&
3324 !info->attrs[IPVS_CMD_ATTR_SERVICE]) {
Hans Schillstromfc723252011-01-03 14:44:43 +01003325 ret = ip_vs_zero_all(net);
Julius Volz9a812192008-08-14 14:08:44 +02003326 goto out;
3327 }
3328
3329 /* All following commands require a service argument, so check if we
3330 * received a valid one. We need a full service specification when
3331 * adding / editing a service. Only identifying members otherwise. */
3332 if (cmd == IPVS_CMD_NEW_SERVICE || cmd == IPVS_CMD_SET_SERVICE)
3333 need_full_svc = 1;
3334
Hans Schillstromfc723252011-01-03 14:44:43 +01003335 ret = ip_vs_genl_parse_service(net, &usvc,
Julius Volz9a812192008-08-14 14:08:44 +02003336 info->attrs[IPVS_CMD_ATTR_SERVICE],
Julian Anastasov26c15cf2010-09-21 18:12:30 +02003337 need_full_svc, &svc);
Julius Volz9a812192008-08-14 14:08:44 +02003338 if (ret)
3339 goto out;
3340
Julius Volz9a812192008-08-14 14:08:44 +02003341 /* Unless we're adding a new service, the service must already exist */
3342 if ((cmd != IPVS_CMD_NEW_SERVICE) && (svc == NULL)) {
3343 ret = -ESRCH;
3344 goto out;
3345 }
3346
3347 /* Destination commands require a valid destination argument. For
3348 * adding / editing a destination, we need a full destination
3349 * specification. */
3350 if (cmd == IPVS_CMD_NEW_DEST || cmd == IPVS_CMD_SET_DEST ||
3351 cmd == IPVS_CMD_DEL_DEST) {
3352 if (cmd != IPVS_CMD_DEL_DEST)
3353 need_full_dest = 1;
3354
3355 ret = ip_vs_genl_parse_dest(&udest,
3356 info->attrs[IPVS_CMD_ATTR_DEST],
3357 need_full_dest);
3358 if (ret)
3359 goto out;
3360 }
3361
3362 switch (cmd) {
3363 case IPVS_CMD_NEW_SERVICE:
3364 if (svc == NULL)
Hans Schillstromfc723252011-01-03 14:44:43 +01003365 ret = ip_vs_add_service(net, &usvc, &svc);
Julius Volz9a812192008-08-14 14:08:44 +02003366 else
3367 ret = -EEXIST;
3368 break;
3369 case IPVS_CMD_SET_SERVICE:
3370 ret = ip_vs_edit_service(svc, &usvc);
3371 break;
3372 case IPVS_CMD_DEL_SERVICE:
3373 ret = ip_vs_del_service(svc);
Julian Anastasov26c15cf2010-09-21 18:12:30 +02003374 /* do not use svc, it can be freed */
Julius Volz9a812192008-08-14 14:08:44 +02003375 break;
3376 case IPVS_CMD_NEW_DEST:
3377 ret = ip_vs_add_dest(svc, &udest);
3378 break;
3379 case IPVS_CMD_SET_DEST:
3380 ret = ip_vs_edit_dest(svc, &udest);
3381 break;
3382 case IPVS_CMD_DEL_DEST:
3383 ret = ip_vs_del_dest(svc, &udest);
3384 break;
3385 case IPVS_CMD_ZERO:
3386 ret = ip_vs_zero_service(svc);
3387 break;
3388 default:
3389 ret = -EINVAL;
3390 }
3391
3392out:
Julius Volz9a812192008-08-14 14:08:44 +02003393 mutex_unlock(&__ip_vs_mutex);
3394
3395 return ret;
3396}
3397
3398static int ip_vs_genl_get_cmd(struct sk_buff *skb, struct genl_info *info)
3399{
3400 struct sk_buff *msg;
3401 void *reply;
3402 int ret, cmd, reply_cmd;
Hans Schillstromfc723252011-01-03 14:44:43 +01003403 struct net *net;
Julius Volz9a812192008-08-14 14:08:44 +02003404
Hans Schillstromfc723252011-01-03 14:44:43 +01003405 net = skb_sknet(skb);
Julius Volz9a812192008-08-14 14:08:44 +02003406 cmd = info->genlhdr->cmd;
3407
3408 if (cmd == IPVS_CMD_GET_SERVICE)
3409 reply_cmd = IPVS_CMD_NEW_SERVICE;
3410 else if (cmd == IPVS_CMD_GET_INFO)
3411 reply_cmd = IPVS_CMD_SET_INFO;
3412 else if (cmd == IPVS_CMD_GET_CONFIG)
3413 reply_cmd = IPVS_CMD_SET_CONFIG;
3414 else {
Hannes Eder1e3e2382009-08-02 11:05:41 +00003415 pr_err("unknown Generic Netlink command\n");
Julius Volz9a812192008-08-14 14:08:44 +02003416 return -EINVAL;
3417 }
3418
3419 msg = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
3420 if (!msg)
3421 return -ENOMEM;
3422
3423 mutex_lock(&__ip_vs_mutex);
3424
3425 reply = genlmsg_put_reply(msg, info, &ip_vs_genl_family, 0, reply_cmd);
3426 if (reply == NULL)
3427 goto nla_put_failure;
3428
3429 switch (cmd) {
3430 case IPVS_CMD_GET_SERVICE:
3431 {
3432 struct ip_vs_service *svc;
3433
Hans Schillstromfc723252011-01-03 14:44:43 +01003434 svc = ip_vs_genl_find_service(net,
3435 info->attrs[IPVS_CMD_ATTR_SERVICE]);
Julius Volz9a812192008-08-14 14:08:44 +02003436 if (IS_ERR(svc)) {
3437 ret = PTR_ERR(svc);
3438 goto out_err;
3439 } else if (svc) {
3440 ret = ip_vs_genl_fill_service(msg, svc);
Julius Volz9a812192008-08-14 14:08:44 +02003441 if (ret)
3442 goto nla_put_failure;
3443 } else {
3444 ret = -ESRCH;
3445 goto out_err;
3446 }
3447
3448 break;
3449 }
3450
3451 case IPVS_CMD_GET_CONFIG:
3452 {
3453 struct ip_vs_timeout_user t;
3454
Hans Schillstrom93304192011-01-03 14:44:51 +01003455 __ip_vs_get_timeouts(net, &t);
Julius Volz9a812192008-08-14 14:08:44 +02003456#ifdef CONFIG_IP_VS_PROTO_TCP
David S. Miller969e8e22012-04-01 19:03:15 -04003457 if (nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP,
3458 t.tcp_timeout) ||
3459 nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_TCP_FIN,
3460 t.tcp_fin_timeout))
3461 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02003462#endif
3463#ifdef CONFIG_IP_VS_PROTO_UDP
David S. Miller969e8e22012-04-01 19:03:15 -04003464 if (nla_put_u32(msg, IPVS_CMD_ATTR_TIMEOUT_UDP, t.udp_timeout))
3465 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02003466#endif
3467
3468 break;
3469 }
3470
3471 case IPVS_CMD_GET_INFO:
David S. Miller969e8e22012-04-01 19:03:15 -04003472 if (nla_put_u32(msg, IPVS_INFO_ATTR_VERSION,
3473 IP_VS_VERSION_CODE) ||
3474 nla_put_u32(msg, IPVS_INFO_ATTR_CONN_TAB_SIZE,
3475 ip_vs_conn_tab_size))
3476 goto nla_put_failure;
Julius Volz9a812192008-08-14 14:08:44 +02003477 break;
3478 }
3479
3480 genlmsg_end(msg, reply);
Johannes Berg134e6372009-07-10 09:51:34 +00003481 ret = genlmsg_reply(msg, info);
Julius Volz9a812192008-08-14 14:08:44 +02003482 goto out;
3483
3484nla_put_failure:
Hannes Eder1e3e2382009-08-02 11:05:41 +00003485 pr_err("not enough space in Netlink message\n");
Julius Volz9a812192008-08-14 14:08:44 +02003486 ret = -EMSGSIZE;
3487
3488out_err:
3489 nlmsg_free(msg);
3490out:
3491 mutex_unlock(&__ip_vs_mutex);
3492
3493 return ret;
3494}
3495
3496
Andi Kleenc61b0c12014-02-08 08:57:01 +01003497static const struct genl_ops ip_vs_genl_ops[] = {
Julius Volz9a812192008-08-14 14:08:44 +02003498 {
3499 .cmd = IPVS_CMD_NEW_SERVICE,
3500 .flags = GENL_ADMIN_PERM,
3501 .policy = ip_vs_cmd_policy,
3502 .doit = ip_vs_genl_set_cmd,
3503 },
3504 {
3505 .cmd = IPVS_CMD_SET_SERVICE,
3506 .flags = GENL_ADMIN_PERM,
3507 .policy = ip_vs_cmd_policy,
3508 .doit = ip_vs_genl_set_cmd,
3509 },
3510 {
3511 .cmd = IPVS_CMD_DEL_SERVICE,
3512 .flags = GENL_ADMIN_PERM,
3513 .policy = ip_vs_cmd_policy,
3514 .doit = ip_vs_genl_set_cmd,
3515 },
3516 {
3517 .cmd = IPVS_CMD_GET_SERVICE,
3518 .flags = GENL_ADMIN_PERM,
3519 .doit = ip_vs_genl_get_cmd,
3520 .dumpit = ip_vs_genl_dump_services,
3521 .policy = ip_vs_cmd_policy,
3522 },
3523 {
3524 .cmd = IPVS_CMD_NEW_DEST,
3525 .flags = GENL_ADMIN_PERM,
3526 .policy = ip_vs_cmd_policy,
3527 .doit = ip_vs_genl_set_cmd,
3528 },
3529 {
3530 .cmd = IPVS_CMD_SET_DEST,
3531 .flags = GENL_ADMIN_PERM,
3532 .policy = ip_vs_cmd_policy,
3533 .doit = ip_vs_genl_set_cmd,
3534 },
3535 {
3536 .cmd = IPVS_CMD_DEL_DEST,
3537 .flags = GENL_ADMIN_PERM,
3538 .policy = ip_vs_cmd_policy,
3539 .doit = ip_vs_genl_set_cmd,
3540 },
3541 {
3542 .cmd = IPVS_CMD_GET_DEST,
3543 .flags = GENL_ADMIN_PERM,
3544 .policy = ip_vs_cmd_policy,
3545 .dumpit = ip_vs_genl_dump_dests,
3546 },
3547 {
3548 .cmd = IPVS_CMD_NEW_DAEMON,
3549 .flags = GENL_ADMIN_PERM,
3550 .policy = ip_vs_cmd_policy,
Hans Schillstromae1d48b2011-10-11 10:54:35 +09003551 .doit = ip_vs_genl_set_daemon,
Julius Volz9a812192008-08-14 14:08:44 +02003552 },
3553 {
3554 .cmd = IPVS_CMD_DEL_DAEMON,
3555 .flags = GENL_ADMIN_PERM,
3556 .policy = ip_vs_cmd_policy,
Hans Schillstromae1d48b2011-10-11 10:54:35 +09003557 .doit = ip_vs_genl_set_daemon,
Julius Volz9a812192008-08-14 14:08:44 +02003558 },
3559 {
3560 .cmd = IPVS_CMD_GET_DAEMON,
3561 .flags = GENL_ADMIN_PERM,
3562 .dumpit = ip_vs_genl_dump_daemons,
3563 },
3564 {
3565 .cmd = IPVS_CMD_SET_CONFIG,
3566 .flags = GENL_ADMIN_PERM,
3567 .policy = ip_vs_cmd_policy,
3568 .doit = ip_vs_genl_set_cmd,
3569 },
3570 {
3571 .cmd = IPVS_CMD_GET_CONFIG,
3572 .flags = GENL_ADMIN_PERM,
3573 .doit = ip_vs_genl_get_cmd,
3574 },
3575 {
3576 .cmd = IPVS_CMD_GET_INFO,
3577 .flags = GENL_ADMIN_PERM,
3578 .doit = ip_vs_genl_get_cmd,
3579 },
3580 {
3581 .cmd = IPVS_CMD_ZERO,
3582 .flags = GENL_ADMIN_PERM,
3583 .policy = ip_vs_cmd_policy,
3584 .doit = ip_vs_genl_set_cmd,
3585 },
3586 {
3587 .cmd = IPVS_CMD_FLUSH,
3588 .flags = GENL_ADMIN_PERM,
3589 .doit = ip_vs_genl_set_cmd,
3590 },
3591};
3592
3593static int __init ip_vs_genl_register(void)
3594{
Michał Mirosław8f698d52009-05-21 10:34:05 +00003595 return genl_register_family_with_ops(&ip_vs_genl_family,
Johannes Bergc53ed742013-11-19 15:19:31 +01003596 ip_vs_genl_ops);
Julius Volz9a812192008-08-14 14:08:44 +02003597}
3598
3599static void ip_vs_genl_unregister(void)
3600{
3601 genl_unregister_family(&ip_vs_genl_family);
3602}
3603
3604/* End of Generic Netlink interface definitions */
3605
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003606/*
3607 * per netns intit/exit func.
3608 */
Simon Horman14e40542011-02-04 18:33:02 +09003609#ifdef CONFIG_SYSCTL
Claudiu Ghioc2b2d2802012-07-18 12:10:22 +03003610static int __net_init ip_vs_control_net_init_sysctl(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003611{
Hans Schillstromfc723252011-01-03 14:44:43 +01003612 int idx;
3613 struct netns_ipvs *ipvs = net_ipvs(net);
Hans Schillstroma0840e22011-01-03 14:44:58 +01003614 struct ctl_table *tbl;
Hans Schillstromfc723252011-01-03 14:44:43 +01003615
Hans Schillstroma0840e22011-01-03 14:44:58 +01003616 atomic_set(&ipvs->dropentry, 0);
3617 spin_lock_init(&ipvs->dropentry_lock);
3618 spin_lock_init(&ipvs->droppacket_lock);
3619 spin_lock_init(&ipvs->securetcp_lock);
Hans Schillstroma0840e22011-01-03 14:44:58 +01003620
3621 if (!net_eq(net, &init_net)) {
3622 tbl = kmemdup(vs_vars, sizeof(vs_vars), GFP_KERNEL);
3623 if (tbl == NULL)
Simon Horman14e40542011-02-04 18:33:02 +09003624 return -ENOMEM;
Eric W. Biederman464dc802012-11-16 03:02:59 +00003625
3626 /* Don't export sysctls to unprivileged users */
3627 if (net->user_ns != &init_user_ns)
3628 tbl[0].procname = NULL;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003629 } else
3630 tbl = vs_vars;
3631 /* Initialize sysctl defaults */
3632 idx = 0;
3633 ipvs->sysctl_amemthresh = 1024;
3634 tbl[idx++].data = &ipvs->sysctl_amemthresh;
3635 ipvs->sysctl_am_droprate = 10;
3636 tbl[idx++].data = &ipvs->sysctl_am_droprate;
3637 tbl[idx++].data = &ipvs->sysctl_drop_entry;
3638 tbl[idx++].data = &ipvs->sysctl_drop_packet;
3639#ifdef CONFIG_IP_VS_NFCT
3640 tbl[idx++].data = &ipvs->sysctl_conntrack;
3641#endif
3642 tbl[idx++].data = &ipvs->sysctl_secure_tcp;
3643 ipvs->sysctl_snat_reroute = 1;
3644 tbl[idx++].data = &ipvs->sysctl_snat_reroute;
3645 ipvs->sysctl_sync_ver = 1;
3646 tbl[idx++].data = &ipvs->sysctl_sync_ver;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02003647 ipvs->sysctl_sync_ports = 1;
3648 tbl[idx++].data = &ipvs->sysctl_sync_ports;
Julian Anastasov4d0c8752013-06-24 22:44:41 +03003649 tbl[idx++].data = &ipvs->sysctl_sync_persist_mode;
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02003650 ipvs->sysctl_sync_qlen_max = nr_free_buffer_pages() / 32;
3651 tbl[idx++].data = &ipvs->sysctl_sync_qlen_max;
3652 ipvs->sysctl_sync_sock_size = 0;
3653 tbl[idx++].data = &ipvs->sysctl_sync_sock_size;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003654 tbl[idx++].data = &ipvs->sysctl_cache_bypass;
3655 tbl[idx++].data = &ipvs->sysctl_expire_nodest_conn;
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01003656 tbl[idx++].data = &ipvs->sysctl_sloppy_tcp;
3657 tbl[idx++].data = &ipvs->sysctl_sloppy_sctp;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003658 tbl[idx++].data = &ipvs->sysctl_expire_quiescent_template;
Simon Horman59e03502011-02-04 18:33:01 +09003659 ipvs->sysctl_sync_threshold[0] = DEFAULT_SYNC_THRESHOLD;
3660 ipvs->sysctl_sync_threshold[1] = DEFAULT_SYNC_PERIOD;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003661 tbl[idx].data = &ipvs->sysctl_sync_threshold;
3662 tbl[idx++].maxlen = sizeof(ipvs->sysctl_sync_threshold);
Julian Anastasov749c42b2012-04-24 23:46:40 +03003663 ipvs->sysctl_sync_refresh_period = DEFAULT_SYNC_REFRESH_PERIOD;
3664 tbl[idx++].data = &ipvs->sysctl_sync_refresh_period;
3665 ipvs->sysctl_sync_retries = clamp_t(int, DEFAULT_SYNC_RETRIES, 0, 3);
3666 tbl[idx++].data = &ipvs->sysctl_sync_retries;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003667 tbl[idx++].data = &ipvs->sysctl_nat_icmp_send;
Julian Anastasov3654e612012-07-20 11:59:53 +03003668 ipvs->sysctl_pmtu_disc = 1;
3669 tbl[idx++].data = &ipvs->sysctl_pmtu_disc;
Julian Anastasov0c125822013-03-09 23:25:04 +02003670 tbl[idx++].data = &ipvs->sysctl_backup_only;
Hans Schillstroma0840e22011-01-03 14:44:58 +01003671
3672
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00003673 ipvs->sysctl_hdr = register_net_sysctl(net, "net/ipv4/vs", tbl);
Simon Horman04439292011-02-01 18:29:04 +01003674 if (ipvs->sysctl_hdr == NULL) {
3675 if (!net_eq(net, &init_net))
3676 kfree(tbl);
Simon Horman14e40542011-02-04 18:33:02 +09003677 return -ENOMEM;
Simon Horman04439292011-02-01 18:29:04 +01003678 }
Julian Anastasov6ef757f2011-03-14 01:44:28 +02003679 ip_vs_start_estimator(net, &ipvs->tot_stats);
Hans Schillstroma0840e22011-01-03 14:44:58 +01003680 ipvs->sysctl_tbl = tbl;
Hans Schillstromf6340ee2011-01-03 14:44:59 +01003681 /* Schedule defense work */
3682 INIT_DELAYED_WORK(&ipvs->defense_work, defense_work_handler);
3683 schedule_delayed_work(&ipvs->defense_work, DEFENSE_TIMER_PERIOD);
Simon Horman14e40542011-02-04 18:33:02 +09003684
3685 return 0;
3686}
3687
Claudiu Ghioc2b2d2802012-07-18 12:10:22 +03003688static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net)
Simon Horman14e40542011-02-04 18:33:02 +09003689{
3690 struct netns_ipvs *ipvs = net_ipvs(net);
3691
3692 cancel_delayed_work_sync(&ipvs->defense_work);
3693 cancel_work_sync(&ipvs->defense_work.work);
3694 unregister_net_sysctl_table(ipvs->sysctl_hdr);
Julian Anastasov9802d212014-06-12 09:17:55 +03003695 ip_vs_stop_estimator(net, &ipvs->tot_stats);
Simon Horman14e40542011-02-04 18:33:02 +09003696}
3697
3698#else
3699
Claudiu Ghioc2b2d2802012-07-18 12:10:22 +03003700static int __net_init ip_vs_control_net_init_sysctl(struct net *net) { return 0; }
3701static void __net_exit ip_vs_control_net_cleanup_sysctl(struct net *net) { }
Simon Horman14e40542011-02-04 18:33:02 +09003702
3703#endif
3704
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02003705static struct notifier_block ip_vs_dst_notifier = {
3706 .notifier_call = ip_vs_dst_event,
3707};
3708
Hans Schillstrom503cf152011-05-01 18:50:16 +02003709int __net_init ip_vs_control_net_init(struct net *net)
Simon Horman14e40542011-02-04 18:33:02 +09003710{
John Stultz827da442013-10-07 15:51:58 -07003711 int i, idx;
Simon Horman14e40542011-02-04 18:33:02 +09003712 struct netns_ipvs *ipvs = net_ipvs(net);
3713
Simon Horman14e40542011-02-04 18:33:02 +09003714 /* Initialize rs_table */
3715 for (idx = 0; idx < IP_VS_RTAB_SIZE; idx++)
Julian Anastasov276472e2013-03-21 11:58:08 +02003716 INIT_HLIST_HEAD(&ipvs->rs_table[idx]);
Simon Horman14e40542011-02-04 18:33:02 +09003717
3718 INIT_LIST_HEAD(&ipvs->dest_trash);
Julian Anastasov578bc3e2013-03-22 11:46:49 +02003719 spin_lock_init(&ipvs->dest_trash_lock);
3720 setup_timer(&ipvs->dest_trash_timer, ip_vs_dest_trash_expire,
3721 (unsigned long) net);
Simon Horman14e40542011-02-04 18:33:02 +09003722 atomic_set(&ipvs->ftpsvc_counter, 0);
3723 atomic_set(&ipvs->nullsvc_counter, 0);
3724
3725 /* procfs stats */
3726 ipvs->tot_stats.cpustats = alloc_percpu(struct ip_vs_cpu_stats);
Joe Perches0a9ee812011-08-29 14:17:25 -07003727 if (!ipvs->tot_stats.cpustats)
Simon Horman14e40542011-02-04 18:33:02 +09003728 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -07003729
John Stultz827da442013-10-07 15:51:58 -07003730 for_each_possible_cpu(i) {
3731 struct ip_vs_cpu_stats *ipvs_tot_stats;
3732 ipvs_tot_stats = per_cpu_ptr(ipvs->tot_stats.cpustats, i);
3733 u64_stats_init(&ipvs_tot_stats->syncp);
3734 }
3735
Simon Horman14e40542011-02-04 18:33:02 +09003736 spin_lock_init(&ipvs->tot_stats.lock);
3737
Gao fengd4beaa62013-02-18 01:34:54 +00003738 proc_create("ip_vs", 0, net->proc_net, &ip_vs_info_fops);
3739 proc_create("ip_vs_stats", 0, net->proc_net, &ip_vs_stats_fops);
3740 proc_create("ip_vs_stats_percpu", 0, net->proc_net,
3741 &ip_vs_stats_percpu_fops);
Simon Horman14e40542011-02-04 18:33:02 +09003742
Hans Schillstrom503cf152011-05-01 18:50:16 +02003743 if (ip_vs_control_net_init_sysctl(net))
Simon Horman14e40542011-02-04 18:33:02 +09003744 goto err;
3745
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003746 return 0;
3747
Simon Horman14e40542011-02-04 18:33:02 +09003748err:
Julian Anastasov2a0751a2011-03-04 12:20:35 +02003749 free_percpu(ipvs->tot_stats.cpustats);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003750 return -ENOMEM;
3751}
3752
Hans Schillstrom503cf152011-05-01 18:50:16 +02003753void __net_exit ip_vs_control_net_cleanup(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003754{
Hans Schillstromb17fc992011-01-03 14:44:56 +01003755 struct netns_ipvs *ipvs = net_ipvs(net);
3756
Hans Schillstromf2431e62011-01-03 14:45:00 +01003757 ip_vs_trash_cleanup(net);
Hans Schillstrom503cf152011-05-01 18:50:16 +02003758 ip_vs_control_net_cleanup_sysctl(net);
Gao fengece31ff2013-02-18 01:34:56 +00003759 remove_proc_entry("ip_vs_stats_percpu", net->proc_net);
3760 remove_proc_entry("ip_vs_stats", net->proc_net);
3761 remove_proc_entry("ip_vs", net->proc_net);
Julian Anastasov2a0751a2011-03-04 12:20:35 +02003762 free_percpu(ipvs->tot_stats.cpustats);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01003763}
3764
Hans Schillstrom8537de82012-04-26 07:47:44 +02003765int __init ip_vs_register_nl_ioctl(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766{
Hans Schillstromfc723252011-01-03 14:44:43 +01003767 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 ret = nf_register_sockopt(&ip_vs_sockopts);
3770 if (ret) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00003771 pr_err("cannot register sockopt.\n");
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02003772 goto err_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 }
3774
Julius Volz9a812192008-08-14 14:08:44 +02003775 ret = ip_vs_genl_register();
3776 if (ret) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00003777 pr_err("cannot register Generic Netlink interface.\n");
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02003778 goto err_genl;
Julius Volz9a812192008-08-14 14:08:44 +02003779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 return 0;
Hans Schillstromfc723252011-01-03 14:44:43 +01003781
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02003782err_genl:
3783 nf_unregister_sockopt(&ip_vs_sockopts);
3784err_sock:
Hans Schillstromfc723252011-01-03 14:44:43 +01003785 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786}
3787
Hans Schillstrom8537de82012-04-26 07:47:44 +02003788void ip_vs_unregister_nl_ioctl(void)
3789{
3790 ip_vs_genl_unregister();
3791 nf_unregister_sockopt(&ip_vs_sockopts);
3792}
3793
3794int __init ip_vs_control_init(void)
3795{
3796 int idx;
3797 int ret;
3798
3799 EnterFunction(2);
3800
Julian Anastasov276472e2013-03-21 11:58:08 +02003801 /* Initialize svc_table, ip_vs_svc_fwm_table */
Hans Schillstrom8537de82012-04-26 07:47:44 +02003802 for (idx = 0; idx < IP_VS_SVC_TAB_SIZE; idx++) {
Julian Anastasovceec4c32013-03-22 11:46:53 +02003803 INIT_HLIST_HEAD(&ip_vs_svc_table[idx]);
3804 INIT_HLIST_HEAD(&ip_vs_svc_fwm_table[idx]);
Hans Schillstrom8537de82012-04-26 07:47:44 +02003805 }
3806
3807 smp_wmb(); /* Do we really need it now ? */
3808
3809 ret = register_netdevice_notifier(&ip_vs_dst_notifier);
3810 if (ret < 0)
3811 return ret;
3812
3813 LeaveFunction(2);
3814 return 0;
3815}
3816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
3818void ip_vs_control_cleanup(void)
3819{
3820 EnterFunction(2);
Simon Horman7676e342011-05-19 21:32:57 +09003821 unregister_netdevice_notifier(&ip_vs_dst_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 LeaveFunction(2);
3823}