blob: 77c173282f388ce81bbd54ea6e41761656d95045 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_ftp.c: IPVS ftp application module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 *
6 * Changes:
7 *
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Most code here is taken from ip_masq_ftp.c in kernel 2.2. The difference
15 * is that ip_vs_ftp module handles the reverse direction to ip_masq_ftp.
16 *
17 * IP_MASQ_FTP ftp masquerading module
18 *
19 * Version: @(#)ip_masq_ftp.c 0.04 02/05/96
20 *
21 * Author: Wouter Gadeyne
22 *
23 */
24
Hannes Eder9aada7a2009-07-30 14:29:44 -070025#define KMSG_COMPONENT "IPVS"
26#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/moduleparam.h>
30#include <linux/kernel.h>
31#include <linux/skbuff.h>
32#include <linux/in.h>
33#include <linux/ip.h>
Herbert Xuaf1e1cf2007-10-14 00:39:33 -070034#include <linux/netfilter.h>
Hannes Eder7f1c4072010-07-23 12:48:52 +020035#include <net/netfilter/nf_conntrack.h>
36#include <net/netfilter/nf_conntrack_expect.h>
Julian Anastasov7bcbf812010-09-01 23:07:10 +000037#include <net/netfilter/nf_nat.h>
Hannes Eder7f1c4072010-07-23 12:48:52 +020038#include <net/netfilter/nf_nat_helper.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/protocol.h>
41#include <net/tcp.h>
Al Viro96d2ca42006-09-28 14:31:49 -070042#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <net/ip_vs.h>
45
46
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +030047#define SERVER_STRING "227 "
48#define CLIENT_STRING "PORT"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50
51/*
52 * List of ports (up to IP_VS_APP_MAX_PORTS) to be handled by helper
53 * First port is set to the default port.
54 */
Krzysztof Wilczynski52669df2011-09-12 10:15:15 +010055static unsigned int ports_count = 1;
Simon Horman28b06c32006-09-27 22:53:24 -070056static unsigned short ports[IP_VS_APP_MAX_PORTS] = {21, 0};
Krzysztof Wilczynski52669df2011-09-12 10:15:15 +010057module_param_array(ports, ushort, &ports_count, 0444);
Simon Horman70e76b72006-09-13 19:57:54 -070058MODULE_PARM_DESC(ports, "Ports to monitor for FTP control commands");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61/* Dummy variable */
62static int ip_vs_ftp_pasv;
63
64
65static int
66ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
67{
Julian Anastasovf4bc17c2010-09-21 17:35:41 +020068 /* We use connection tracking for the command connection */
69 cp->flags |= IP_VS_CONN_F_NFCT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 return 0;
71}
72
73
74static int
75ip_vs_ftp_done_conn(struct ip_vs_app *app, struct ip_vs_conn *cp)
76{
77 return 0;
78}
79
80
81/*
82 * Get <addr,port> from the string "xxx.xxx.xxx.xxx,ppp,ppp", started
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +030083 * with the "pattern", ignoring before "skip" and terminated with
84 * the "term" character.
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * <addr,port> is in network order.
86 */
87static int ip_vs_ftp_get_addrport(char *data, char *data_limit,
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +030088 const char *pattern, size_t plen,
89 char skip, char term,
Al Viro014d7302006-09-28 14:29:52 -070090 __be32 *addr, __be16 *port,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 char **start, char **end)
92{
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +030093 char *s, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 unsigned char p[6];
95 int i = 0;
96
97 if (data_limit - data < plen) {
98 /* check if there is partial match */
99 if (strnicmp(data, pattern, data_limit - data) == 0)
100 return -1;
101 else
102 return 0;
103 }
104
105 if (strnicmp(data, pattern, plen) != 0) {
106 return 0;
107 }
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300108 s = data + plen;
109 if (skip) {
110 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300112 for (;; s++) {
113 if (s == data_limit)
114 return -1;
115 if (!found) {
116 if (*s == skip)
117 found = 1;
118 } else if (*s != skip) {
119 break;
120 }
121 }
122 }
123
124 for (data = s; ; data++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (data == data_limit)
126 return -1;
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300127 if (*data == term)
128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 *end = data;
131
132 memset(p, 0, sizeof(p));
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300133 for (data = s; ; data++) {
134 c = *data;
135 if (c == term)
136 break;
137 if (c >= '0' && c <= '9') {
138 p[i] = p[i]*10 + c - '0';
139 } else if (c == ',' && i < 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 i++;
141 } else {
142 /* unexpected character */
143 return -1;
144 }
145 }
146
147 if (i != 5)
148 return -1;
149
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300150 *start = s;
151 *addr = get_unaligned((__be32 *) p);
152 *port = get_unaligned((__be16 *) (p + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 1;
154}
155
Hannes Eder7f1c4072010-07-23 12:48:52 +0200156/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * Look at outgoing ftp packets to catch the response to a PASV command
158 * from the server (inside-to-outside).
159 * When we see one, we build a connection entry with the client address,
160 * client port 0 (unknown at the moment), the server address and the
161 * server port. Mark the current connection entry as a control channel
162 * of the new entry. All this work is just to make the data connection
163 * can be scheduled to the right server later.
164 *
165 * The outgoing packet should be something like
166 * "227 Entering Passive Mode (xxx,xxx,xxx,xxx,ppp,ppp)".
167 * xxx,xxx,xxx,xxx is the server address, ppp,ppp is the server port number.
168 */
169static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700170 struct sk_buff *skb, int *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct iphdr *iph;
173 struct tcphdr *th;
174 char *data, *data_limit;
175 char *start, *end;
Julius Volz28364a52008-09-02 15:55:43 +0200176 union nf_inet_addr from;
Al Viro014d7302006-09-28 14:29:52 -0700177 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 struct ip_vs_conn *n_cp;
179 char buf[24]; /* xxx.xxx.xxx.xxx,ppp,ppp\000 */
Eric Dumazet95c96172012-04-15 05:58:06 +0000180 unsigned int buf_len;
Hannes Eder7f1c4072010-07-23 12:48:52 +0200181 int ret = 0;
182 enum ip_conntrack_info ctinfo;
183 struct nf_conn *ct;
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100184 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Julius Volza0eb6622008-09-02 15:55:51 +0200186#ifdef CONFIG_IP_VS_IPV6
187 /* This application helper doesn't work with IPv6 yet,
188 * so turn this into a no-op for IPv6 packets
189 */
190 if (cp->af == AF_INET6)
191 return 1;
192#endif
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 *diff = 0;
195
196 /* Only useful for established sessions */
197 if (cp->state != IP_VS_TCP_S_ESTABLISHED)
198 return 1;
199
200 /* Linear packets are much easier to deal with. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700201 if (!skb_make_writable(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 0;
203
204 if (cp->app_data == &ip_vs_ftp_pasv) {
Herbert Xu3db05fe2007-10-15 00:53:15 -0700205 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
207 data = (char *)th + (th->doff << 2);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700208 data_limit = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (ip_vs_ftp_get_addrport(data, data_limit,
211 SERVER_STRING,
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300212 sizeof(SERVER_STRING)-1,
213 '(', ')',
Julius Volz28364a52008-09-02 15:55:43 +0200214 &from.ip, &port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 &start, &end) != 1)
216 return 1;
217
Harvey Harrison14d5e832008-10-31 00:54:29 -0700218 IP_VS_DBG(7, "PASV response (%pI4:%d) -> %pI4:%d detected\n",
219 &from.ip, ntohs(port), &cp->caddr.ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /*
222 * Now update or create an connection entry for it
223 */
Simon Hormanf11017e2010-08-22 21:37:52 +0900224 {
225 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100226 ip_vs_conn_fill_param(ip_vs_conn_net(cp), AF_INET,
227 iph->protocol, &from, port,
228 &cp->caddr, 0, &p);
Simon Hormanf11017e2010-08-22 21:37:52 +0900229 n_cp = ip_vs_conn_out_get(&p);
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (!n_cp) {
Simon Hormanf11017e2010-08-22 21:37:52 +0900232 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100233 ip_vs_conn_fill_param(ip_vs_conn_net(cp),
234 AF_INET, IPPROTO_TCP, &cp->caddr,
Simon Hormanf11017e2010-08-22 21:37:52 +0900235 0, &cp->vaddr, port, &p);
236 n_cp = ip_vs_conn_new(&p, &from, port,
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200237 IP_VS_CONN_F_NO_CPORT |
238 IP_VS_CONN_F_NFCT,
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100239 cp->dest, skb->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (!n_cp)
241 return 0;
242
243 /* add its controller */
244 ip_vs_control_add(n_cp, cp);
245 }
246
247 /*
248 * Replace the old passive address with the new one
249 */
Julius Volz28364a52008-09-02 15:55:43 +0200250 from.ip = n_cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 port = n_cp->vport;
Joe Perches1da05f52010-03-15 18:03:05 +0100252 snprintf(buf, sizeof(buf), "%u,%u,%u,%u,%u,%u",
253 ((unsigned char *)&from.ip)[0],
254 ((unsigned char *)&from.ip)[1],
255 ((unsigned char *)&from.ip)[2],
256 ((unsigned char *)&from.ip)[3],
257 ntohs(port) >> 8,
258 ntohs(port) & 0xFF);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 buf_len = strlen(buf);
261
Hannes Eder7f1c4072010-07-23 12:48:52 +0200262 ct = nf_ct_get(skb, &ctinfo);
Julian Anastasov7bcbf812010-09-01 23:07:10 +0000263 if (ct && !nf_ct_is_untracked(ct) && nfct_nat(ct)) {
Hannes Eder7f1c4072010-07-23 12:48:52 +0200264 /* If mangling fails this function will return 0
265 * which will cause the packet to be dropped.
266 * Mangling can only fail under memory pressure,
267 * hopefully it will succeed on the retransmitted
268 * packet.
269 */
Julian Anastasovac692692013-03-22 11:46:54 +0200270 rcu_read_lock();
Hannes Eder7f1c4072010-07-23 12:48:52 +0200271 ret = nf_nat_mangle_tcp_packet(skb, ct, ctinfo,
Patrick McHardy051966c2012-08-26 19:14:04 +0200272 iph->ihl * 4,
Hannes Eder7f1c4072010-07-23 12:48:52 +0200273 start-data, end-start,
274 buf, buf_len);
Julian Anastasovac692692013-03-22 11:46:54 +0200275 rcu_read_unlock();
Julian Anastasov8b27b102010-10-17 16:17:20 +0300276 if (ret) {
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200277 ip_vs_nfct_expect_related(skb, ct, n_cp,
278 IPPROTO_TCP, 0, 0);
Julian Anastasov8b27b102010-10-17 16:17:20 +0300279 if (skb->ip_summed == CHECKSUM_COMPLETE)
280 skb->ip_summed = CHECKSUM_UNNECESSARY;
281 /* csum is updated */
282 ret = 1;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Hannes Eder7f1c4072010-07-23 12:48:52 +0200286 /*
287 * Not setting 'diff' is intentional, otherwise the sequence
288 * would be adjusted twice.
289 */
290
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100291 net = skb_net(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 cp->app_data = NULL;
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100293 ip_vs_tcp_conn_listen(net, n_cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ip_vs_conn_put(n_cp);
295 return ret;
296 }
297 return 1;
298}
299
300
301/*
302 * Look at incoming ftp packets to catch the PASV/PORT command
303 * (outside-to-inside).
304 *
305 * The incoming packet having the PORT command should be something like
306 * "PORT xxx,xxx,xxx,xxx,ppp,ppp\n".
307 * xxx,xxx,xxx,xxx is the client address, ppp,ppp is the client port number.
308 * In this case, we create a connection entry using the client address and
309 * port, so that the active ftp data connection from the server can reach
310 * the client.
311 */
312static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700313 struct sk_buff *skb, int *diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct iphdr *iph;
316 struct tcphdr *th;
317 char *data, *data_start, *data_limit;
318 char *start, *end;
Julius Volz28364a52008-09-02 15:55:43 +0200319 union nf_inet_addr to;
Al Viro014d7302006-09-28 14:29:52 -0700320 __be16 port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct ip_vs_conn *n_cp;
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100322 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Julius Volza0eb6622008-09-02 15:55:51 +0200324#ifdef CONFIG_IP_VS_IPV6
325 /* This application helper doesn't work with IPv6 yet,
326 * so turn this into a no-op for IPv6 packets
327 */
328 if (cp->af == AF_INET6)
329 return 1;
330#endif
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /* no diff required for incoming packets */
333 *diff = 0;
334
335 /* Only useful for established sessions */
336 if (cp->state != IP_VS_TCP_S_ESTABLISHED)
337 return 1;
338
339 /* Linear packets are much easier to deal with. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700340 if (!skb_make_writable(skb, skb->len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 return 0;
342
343 /*
344 * Detecting whether it is passive
345 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700346 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]);
348
349 /* Since there may be OPTIONS in the TCP packet and the HLEN is
350 the length of the header in 32-bit multiples, it is accurate
351 to calculate data address by th+HLEN*4 */
352 data = data_start = (char *)th + (th->doff << 2);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700353 data_limit = skb_tail_pointer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 while (data <= data_limit - 6) {
356 if (strnicmp(data, "PASV\r\n", 6) == 0) {
357 /* Passive mode on */
Al Viro5e7ddac2006-10-10 22:49:07 +0100358 IP_VS_DBG(7, "got PASV at %td of %td\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 data - data_start,
360 data_limit - data_start);
361 cp->app_data = &ip_vs_ftp_pasv;
362 return 1;
363 }
364 data++;
365 }
366
367 /*
368 * To support virtual FTP server, the scenerio is as follows:
369 * FTP client ----> Load Balancer ----> FTP server
370 * First detect the port number in the application data,
371 * then create a new connection entry for the coming data
372 * connection.
373 */
374 if (ip_vs_ftp_get_addrport(data_start, data_limit,
375 CLIENT_STRING, sizeof(CLIENT_STRING)-1,
Julian Anastasovc3aa1bd2011-05-30 00:02:23 +0300376 ' ', '\r', &to.ip, &port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 &start, &end) != 1)
378 return 1;
379
Harvey Harrison14d5e832008-10-31 00:54:29 -0700380 IP_VS_DBG(7, "PORT %pI4:%d detected\n", &to.ip, ntohs(port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* Passive mode off */
383 cp->app_data = NULL;
384
385 /*
386 * Now update or create a connection entry for it
387 */
Harvey Harrison14d5e832008-10-31 00:54:29 -0700388 IP_VS_DBG(7, "protocol %s %pI4:%d %pI4:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ip_vs_proto_name(iph->protocol),
Harvey Harrison14d5e832008-10-31 00:54:29 -0700390 &to.ip, ntohs(port), &cp->vaddr.ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Simon Hormanf11017e2010-08-22 21:37:52 +0900392 {
393 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100394 ip_vs_conn_fill_param(ip_vs_conn_net(cp), AF_INET,
395 iph->protocol, &to, port, &cp->vaddr,
396 htons(ntohs(cp->vport)-1), &p);
Simon Hormanf11017e2010-08-22 21:37:52 +0900397 n_cp = ip_vs_conn_in_get(&p);
398 if (!n_cp) {
399 n_cp = ip_vs_conn_new(&p, &cp->daddr,
400 htons(ntohs(cp->dport)-1),
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100401 IP_VS_CONN_F_NFCT, cp->dest,
402 skb->mark);
Simon Hormanf11017e2010-08-22 21:37:52 +0900403 if (!n_cp)
404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Simon Hormanf11017e2010-08-22 21:37:52 +0900406 /* add its controller */
407 ip_vs_control_add(n_cp, cp);
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
410
411 /*
412 * Move tunnel to listen state
413 */
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100414 net = skb_net(skb);
415 ip_vs_tcp_conn_listen(net, n_cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 ip_vs_conn_put(n_cp);
417
418 return 1;
419}
420
421
422static struct ip_vs_app ip_vs_ftp = {
423 .name = "ftp",
424 .type = IP_VS_APP_TYPE_FTP,
425 .protocol = IPPROTO_TCP,
426 .module = THIS_MODULE,
427 .incs_list = LIST_HEAD_INIT(ip_vs_ftp.incs_list),
428 .init_conn = ip_vs_ftp_init_conn,
429 .done_conn = ip_vs_ftp_done_conn,
430 .bind_conn = NULL,
431 .unbind_conn = NULL,
432 .pkt_out = ip_vs_ftp_out,
433 .pkt_in = ip_vs_ftp_in,
434};
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436/*
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100437 * per netns ip_vs_ftp initialization
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100439static int __net_init __ip_vs_ftp_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 int i, ret;
Hans Schillstromc74c0bf2011-05-24 14:11:05 +0200442 struct ip_vs_app *app;
443 struct netns_ipvs *ipvs = net_ipvs(net);
444
Julian Anastasov8d08d712012-04-25 00:29:59 +0300445 if (!ipvs)
446 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300448 app = register_ip_vs_app(net, &ip_vs_ftp);
449 if (IS_ERR(app))
450 return PTR_ERR(app);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Krzysztof Wilczynski52669df2011-09-12 10:15:15 +0100452 for (i = 0; i < ports_count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (!ports[i])
454 continue;
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100455 ret = register_ip_vs_app_inc(net, app, app->protocol, ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (ret)
Hans Schillstromc74c0bf2011-05-24 14:11:05 +0200457 goto err_unreg;
Hannes Eder1e3e2382009-08-02 11:05:41 +0000458 pr_info("%s: loaded support on port[%d] = %d\n",
459 app->name, i, ports[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
Hans Schillstromc74c0bf2011-05-24 14:11:05 +0200461 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Hans Schillstromc74c0bf2011-05-24 14:11:05 +0200463err_unreg:
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300464 unregister_ip_vs_app(net, &ip_vs_ftp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return ret;
466}
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100467/*
468 * netns exit
469 */
470static void __ip_vs_ftp_exit(struct net *net)
471{
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300472 unregister_ip_vs_app(net, &ip_vs_ftp);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100473}
474
475static struct pernet_operations ip_vs_ftp_ops = {
476 .init = __ip_vs_ftp_init,
477 .exit = __ip_vs_ftp_exit,
478};
479
H Hartley Sweetend5cce202012-04-26 11:17:28 -0700480static int __init ip_vs_ftp_init(void)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100481{
482 int rv;
483
484 rv = register_pernet_subsys(&ip_vs_ftp_ops);
Julian Anastasov363c97d2013-03-21 11:58:07 +0200485 /* rcu_barrier() is called by netns on error */
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100486 return rv;
487}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489/*
490 * ip_vs_ftp finish.
491 */
492static void __exit ip_vs_ftp_exit(void)
493{
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100494 unregister_pernet_subsys(&ip_vs_ftp_ops);
Julian Anastasov363c97d2013-03-21 11:58:07 +0200495 /* rcu_barrier() is called by netns */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498
499module_init(ip_vs_ftp_init);
500module_exit(ip_vs_ftp_exit);
501MODULE_LICENSE("GPL");