blob: 9713e6e86d472f2e2aefc5c4ebfd8f95a5cda62c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_app.c: Application module support for IPVS
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Most code here is taken from ip_masq_app.c in kernel 2.2. The difference
12 * is that ip_vs_app module handles the reverse direction (incoming requests
13 * and outgoing responses).
14 *
15 * IP_MASQ_APP application masquerading module
16 *
17 * Author: Juan Jose Ciarlante, <jjciarla@raiz.uncu.edu.ar>
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/kernel.h>
26#include <linux/skbuff.h>
27#include <linux/in.h>
28#include <linux/ip.h>
Herbert Xuaf1e1cf2007-10-14 00:39:33 -070029#include <linux/netfilter.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020031#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/protocol.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070033#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/stat.h>
35#include <linux/proc_fs.h>
36#include <linux/seq_file.h>
Ingo Molnar57b47a52006-03-20 22:35:41 -080037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <net/ip_vs.h>
40
41EXPORT_SYMBOL(register_ip_vs_app);
42EXPORT_SYMBOL(unregister_ip_vs_app);
43EXPORT_SYMBOL(register_ip_vs_app_inc);
44
Simon Horman736561a2011-03-21 15:18:01 +000045static DEFINE_MUTEX(__ip_vs_app_mutex);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * Get an ip_vs_app object
49 */
50static inline int ip_vs_app_get(struct ip_vs_app *app)
51{
Pavel Emelyanov85b60682007-11-19 22:52:41 -080052 return try_module_get(app->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
55
56static inline void ip_vs_app_put(struct ip_vs_app *app)
57{
Pavel Emelyanov85b60682007-11-19 22:52:41 -080058 module_put(app->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61
62/*
63 * Allocate/initialize app incarnation and register it in proto apps.
64 */
65static int
Hans Schillstromab8a5e82011-01-03 14:44:53 +010066ip_vs_app_inc_new(struct net *net, struct ip_vs_app *app, __u16 proto,
67 __u16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
69 struct ip_vs_protocol *pp;
70 struct ip_vs_app *inc;
71 int ret;
72
73 if (!(pp = ip_vs_proto_get(proto)))
74 return -EPROTONOSUPPORT;
75
76 if (!pp->unregister_app)
77 return -EOPNOTSUPP;
78
Arnaldo Carvalho de Melo8b2ed4b2006-11-21 01:17:18 -020079 inc = kmemdup(app, sizeof(*inc), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!inc)
81 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 INIT_LIST_HEAD(&inc->p_list);
83 INIT_LIST_HEAD(&inc->incs_list);
84 inc->app = app;
85 inc->port = htons(port);
86 atomic_set(&inc->usecnt, 0);
87
88 if (app->timeouts) {
89 inc->timeout_table =
90 ip_vs_create_timeout_table(app->timeouts,
91 app->timeouts_size);
92 if (!inc->timeout_table) {
93 ret = -ENOMEM;
94 goto out;
95 }
96 }
97
Hans Schillstromab8a5e82011-01-03 14:44:53 +010098 ret = pp->register_app(net, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (ret)
100 goto out;
101
102 list_add(&inc->a_list, &app->incs_list);
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200103 IP_VS_DBG(9, "%s App %s:%u registered\n",
104 pp->name, inc->name, ntohs(inc->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 return 0;
107
108 out:
Jesper Juhla51482b2005-11-08 09:41:34 -0800109 kfree(inc->timeout_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 kfree(inc);
111 return ret;
112}
113
114
115/*
116 * Release app incarnation
117 */
118static void
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100119ip_vs_app_inc_release(struct net *net, struct ip_vs_app *inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct ip_vs_protocol *pp;
122
123 if (!(pp = ip_vs_proto_get(inc->protocol)))
124 return;
125
126 if (pp->unregister_app)
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100127 pp->unregister_app(net, inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 IP_VS_DBG(9, "%s App %s:%u unregistered\n",
Julian Anastasov26c15cf2010-09-21 18:12:30 +0200130 pp->name, inc->name, ntohs(inc->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 list_del(&inc->a_list);
133
Jesper Juhla51482b2005-11-08 09:41:34 -0800134 kfree(inc->timeout_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 kfree(inc);
136}
137
138
139/*
140 * Get reference to app inc (only called from softirq)
141 *
142 */
143int ip_vs_app_inc_get(struct ip_vs_app *inc)
144{
145 int result;
146
147 atomic_inc(&inc->usecnt);
148 if (unlikely((result = ip_vs_app_get(inc->app)) != 1))
149 atomic_dec(&inc->usecnt);
150 return result;
151}
152
153
154/*
155 * Put the app inc (only called from timer or net softirq)
156 */
157void ip_vs_app_inc_put(struct ip_vs_app *inc)
158{
159 ip_vs_app_put(inc->app);
160 atomic_dec(&inc->usecnt);
161}
162
163
164/*
165 * Register an application incarnation in protocol applications
166 */
167int
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100168register_ip_vs_app_inc(struct net *net, struct ip_vs_app *app, __u16 proto,
169 __u16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 int result;
172
Simon Horman736561a2011-03-21 15:18:01 +0000173 mutex_lock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100175 result = ip_vs_app_inc_new(net, app, proto, port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Simon Horman736561a2011-03-21 15:18:01 +0000177 mutex_unlock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 return result;
180}
181
182
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300183/* Register application for netns */
184struct ip_vs_app *register_ip_vs_app(struct net *net, struct ip_vs_app *app)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100186 struct netns_ipvs *ipvs = net_ipvs(net);
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300187 struct ip_vs_app *a;
188 int err = 0;
189
190 if (!ipvs)
191 return ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Simon Horman736561a2011-03-21 15:18:01 +0000193 mutex_lock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300195 list_for_each_entry(a, &ipvs->app_list, a_list) {
196 if (!strcmp(app->name, a->name)) {
197 err = -EEXIST;
198 goto out_unlock;
199 }
200 }
201 a = kmemdup(app, sizeof(*app), GFP_KERNEL);
202 if (!a) {
203 err = -ENOMEM;
204 goto out_unlock;
205 }
206 INIT_LIST_HEAD(&a->incs_list);
207 list_add(&a->a_list, &ipvs->app_list);
208 /* increase the module use count */
209 ip_vs_use_count_inc();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300211out_unlock:
Simon Horman736561a2011-03-21 15:18:01 +0000212 mutex_unlock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300214 return err ? ERR_PTR(err) : a;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217
218/*
219 * ip_vs_app unregistration routine
220 * We are sure there are no app incarnations attached to services
221 */
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100222void unregister_ip_vs_app(struct net *net, struct ip_vs_app *app)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300224 struct netns_ipvs *ipvs = net_ipvs(net);
225 struct ip_vs_app *a, *anxt, *inc, *nxt;
226
227 if (!ipvs)
228 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Simon Horman736561a2011-03-21 15:18:01 +0000230 mutex_lock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300232 list_for_each_entry_safe(a, anxt, &ipvs->app_list, a_list) {
233 if (app && strcmp(app->name, a->name))
234 continue;
235 list_for_each_entry_safe(inc, nxt, &a->incs_list, a_list) {
236 ip_vs_app_inc_release(net, inc);
237 }
238
239 list_del(&a->a_list);
240 kfree(a);
241
242 /* decrease the module use count */
243 ip_vs_use_count_dec();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Simon Horman736561a2011-03-21 15:18:01 +0000246 mutex_unlock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
251 * Bind ip_vs_conn to its ip_vs_app (called by cp constructor)
252 */
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100253int ip_vs_bind_app(struct ip_vs_conn *cp,
254 struct ip_vs_protocol *pp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 return pp->app_conn_bind(cp);
257}
258
259
260/*
261 * Unbind cp from application incarnation (called by cp destructor)
262 */
263void ip_vs_unbind_app(struct ip_vs_conn *cp)
264{
265 struct ip_vs_app *inc = cp->app;
266
267 if (!inc)
268 return;
269
270 if (inc->unbind_conn)
271 inc->unbind_conn(inc, cp);
272 if (inc->done_conn)
273 inc->done_conn(inc, cp);
274 ip_vs_app_inc_put(inc);
275 cp->app = NULL;
276}
277
278
279/*
280 * Fixes th->seq based on ip_vs_seq info.
281 */
282static inline void vs_fix_seq(const struct ip_vs_seq *vseq, struct tcphdr *th)
283{
284 __u32 seq = ntohl(th->seq);
285
286 /*
287 * Adjust seq with delta-offset for all packets after
288 * the most recent resized pkt seq and with previous_delta offset
289 * for all packets before most recent resized pkt seq.
290 */
291 if (vseq->delta || vseq->previous_delta) {
292 if(after(seq, vseq->init_seq)) {
293 th->seq = htonl(seq + vseq->delta);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000294 IP_VS_DBG(9, "%s(): added delta (%d) to seq\n",
295 __func__, vseq->delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 } else {
297 th->seq = htonl(seq + vseq->previous_delta);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000298 IP_VS_DBG(9, "%s(): added previous_delta (%d) to seq\n",
299 __func__, vseq->previous_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
302}
303
304
305/*
306 * Fixes th->ack_seq based on ip_vs_seq info.
307 */
308static inline void
309vs_fix_ack_seq(const struct ip_vs_seq *vseq, struct tcphdr *th)
310{
311 __u32 ack_seq = ntohl(th->ack_seq);
312
313 /*
314 * Adjust ack_seq with delta-offset for
315 * the packets AFTER most recent resized pkt has caused a shift
316 * for packets before most recent resized pkt, use previous_delta
317 */
318 if (vseq->delta || vseq->previous_delta) {
319 /* since ack_seq is the number of octet that is expected
320 to receive next, so compare it with init_seq+delta */
321 if(after(ack_seq, vseq->init_seq+vseq->delta)) {
322 th->ack_seq = htonl(ack_seq - vseq->delta);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000323 IP_VS_DBG(9, "%s(): subtracted delta "
324 "(%d) from ack_seq\n", __func__, vseq->delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 } else {
327 th->ack_seq = htonl(ack_seq - vseq->previous_delta);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000328 IP_VS_DBG(9, "%s(): subtracted "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 "previous_delta (%d) from ack_seq\n",
Hannes Eder1e3e2382009-08-02 11:05:41 +0000330 __func__, vseq->previous_delta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332 }
333}
334
335
336/*
337 * Updates ip_vs_seq if pkt has been resized
338 * Assumes already checked proto==IPPROTO_TCP and diff!=0.
339 */
340static inline void vs_seq_update(struct ip_vs_conn *cp, struct ip_vs_seq *vseq,
Eric Dumazet95c96172012-04-15 05:58:06 +0000341 unsigned int flag, __u32 seq, int diff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 /* spinlock is to keep updating cp->flags atomic */
344 spin_lock(&cp->lock);
345 if (!(cp->flags & flag) || after(seq, vseq->init_seq)) {
346 vseq->previous_delta = vseq->delta;
347 vseq->delta += diff;
348 vseq->init_seq = seq;
349 cp->flags |= flag;
350 }
351 spin_unlock(&cp->lock);
352}
353
Herbert Xu3db05fe2007-10-15 00:53:15 -0700354static inline int app_tcp_pkt_out(struct ip_vs_conn *cp, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct ip_vs_app *app)
356{
357 int diff;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700358 const unsigned int tcp_offset = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct tcphdr *th;
360 __u32 seq;
361
Herbert Xu3db05fe2007-10-15 00:53:15 -0700362 if (!skb_make_writable(skb, tcp_offset + sizeof(*th)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return 0;
364
Herbert Xu3db05fe2007-10-15 00:53:15 -0700365 th = (struct tcphdr *)(skb_network_header(skb) + tcp_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 /*
368 * Remember seq number in case this pkt gets resized
369 */
370 seq = ntohl(th->seq);
371
372 /*
373 * Fix seq stuff if flagged as so.
374 */
375 if (cp->flags & IP_VS_CONN_F_OUT_SEQ)
376 vs_fix_seq(&cp->out_seq, th);
377 if (cp->flags & IP_VS_CONN_F_IN_SEQ)
378 vs_fix_ack_seq(&cp->in_seq, th);
379
380 /*
381 * Call private output hook function
382 */
383 if (app->pkt_out == NULL)
384 return 1;
385
Herbert Xu3db05fe2007-10-15 00:53:15 -0700386 if (!app->pkt_out(app, cp, skb, &diff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
388
389 /*
390 * Update ip_vs seq stuff if len has changed.
391 */
392 if (diff != 0)
393 vs_seq_update(cp, &cp->out_seq,
394 IP_VS_CONN_F_OUT_SEQ, seq, diff);
395
396 return 1;
397}
398
399/*
400 * Output pkt hook. Will call bound ip_vs_app specific function
401 * called by ipvs packet handler, assumes previously checked cp!=NULL
402 * returns false if it can't handle packet (oom)
403 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700404int ip_vs_app_pkt_out(struct ip_vs_conn *cp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 struct ip_vs_app *app;
407
408 /*
409 * check if application module is bound to
410 * this ip_vs_conn.
411 */
412 if ((app = cp->app) == NULL)
413 return 1;
414
415 /* TCP is complicated */
416 if (cp->protocol == IPPROTO_TCP)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700417 return app_tcp_pkt_out(cp, skb, app);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /*
420 * Call private output hook function
421 */
422 if (app->pkt_out == NULL)
423 return 1;
424
Herbert Xu3db05fe2007-10-15 00:53:15 -0700425 return app->pkt_out(app, cp, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428
Herbert Xu3db05fe2007-10-15 00:53:15 -0700429static inline int app_tcp_pkt_in(struct ip_vs_conn *cp, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 struct ip_vs_app *app)
431{
432 int diff;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700433 const unsigned int tcp_offset = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 struct tcphdr *th;
435 __u32 seq;
436
Herbert Xu3db05fe2007-10-15 00:53:15 -0700437 if (!skb_make_writable(skb, tcp_offset + sizeof(*th)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0;
439
Herbert Xu3db05fe2007-10-15 00:53:15 -0700440 th = (struct tcphdr *)(skb_network_header(skb) + tcp_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /*
443 * Remember seq number in case this pkt gets resized
444 */
445 seq = ntohl(th->seq);
446
447 /*
448 * Fix seq stuff if flagged as so.
449 */
450 if (cp->flags & IP_VS_CONN_F_IN_SEQ)
451 vs_fix_seq(&cp->in_seq, th);
452 if (cp->flags & IP_VS_CONN_F_OUT_SEQ)
453 vs_fix_ack_seq(&cp->out_seq, th);
454
455 /*
456 * Call private input hook function
457 */
458 if (app->pkt_in == NULL)
459 return 1;
460
Herbert Xu3db05fe2007-10-15 00:53:15 -0700461 if (!app->pkt_in(app, cp, skb, &diff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return 0;
463
464 /*
465 * Update ip_vs seq stuff if len has changed.
466 */
467 if (diff != 0)
468 vs_seq_update(cp, &cp->in_seq,
469 IP_VS_CONN_F_IN_SEQ, seq, diff);
470
471 return 1;
472}
473
474/*
475 * Input pkt hook. Will call bound ip_vs_app specific function
476 * called by ipvs packet handler, assumes previously checked cp!=NULL.
477 * returns false if can't handle packet (oom).
478 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700479int ip_vs_app_pkt_in(struct ip_vs_conn *cp, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct ip_vs_app *app;
482
483 /*
484 * check if application module is bound to
485 * this ip_vs_conn.
486 */
487 if ((app = cp->app) == NULL)
488 return 1;
489
490 /* TCP is complicated */
491 if (cp->protocol == IPPROTO_TCP)
Herbert Xu3db05fe2007-10-15 00:53:15 -0700492 return app_tcp_pkt_in(cp, skb, app);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /*
495 * Call private input hook function
496 */
497 if (app->pkt_in == NULL)
498 return 1;
499
Herbert Xu3db05fe2007-10-15 00:53:15 -0700500 return app->pkt_in(app, cp, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503
504#ifdef CONFIG_PROC_FS
505/*
506 * /proc/net/ip_vs_app entry function
507 */
508
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100509static struct ip_vs_app *ip_vs_app_idx(struct netns_ipvs *ipvs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct ip_vs_app *app, *inc;
512
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100513 list_for_each_entry(app, &ipvs->app_list, a_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 list_for_each_entry(inc, &app->incs_list, a_list) {
515 if (pos-- == 0)
516 return inc;
517 }
518 }
519 return NULL;
520
521}
522
523static void *ip_vs_app_seq_start(struct seq_file *seq, loff_t *pos)
524{
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100525 struct net *net = seq_file_net(seq);
526 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Simon Horman736561a2011-03-21 15:18:01 +0000528 mutex_lock(&__ip_vs_app_mutex);
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100529
530 return *pos ? ip_vs_app_idx(ipvs, *pos - 1) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533static void *ip_vs_app_seq_next(struct seq_file *seq, void *v, loff_t *pos)
534{
535 struct ip_vs_app *inc, *app;
536 struct list_head *e;
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100537 struct net *net = seq_file_net(seq);
538 struct netns_ipvs *ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 ++*pos;
541 if (v == SEQ_START_TOKEN)
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100542 return ip_vs_app_idx(ipvs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 inc = v;
545 app = inc->app;
546
547 if ((e = inc->a_list.next) != &app->incs_list)
548 return list_entry(e, struct ip_vs_app, a_list);
549
550 /* go on to next application */
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100551 for (e = app->a_list.next; e != &ipvs->app_list; e = e->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 app = list_entry(e, struct ip_vs_app, a_list);
553 list_for_each_entry(inc, &app->incs_list, a_list) {
554 return inc;
555 }
556 }
557 return NULL;
558}
559
560static void ip_vs_app_seq_stop(struct seq_file *seq, void *v)
561{
Simon Horman736561a2011-03-21 15:18:01 +0000562 mutex_unlock(&__ip_vs_app_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565static int ip_vs_app_seq_show(struct seq_file *seq, void *v)
566{
567 if (v == SEQ_START_TOKEN)
568 seq_puts(seq, "prot port usecnt name\n");
569 else {
570 const struct ip_vs_app *inc = v;
571
572 seq_printf(seq, "%-3s %-7u %-6d %-17s\n",
573 ip_vs_proto_name(inc->protocol),
574 ntohs(inc->port),
575 atomic_read(&inc->usecnt),
576 inc->name);
577 }
578 return 0;
579}
580
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700581static const struct seq_operations ip_vs_app_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 .start = ip_vs_app_seq_start,
583 .next = ip_vs_app_seq_next,
584 .stop = ip_vs_app_seq_stop,
585 .show = ip_vs_app_seq_show,
586};
587
588static int ip_vs_app_open(struct inode *inode, struct file *file)
589{
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100590 return seq_open_net(inode, file, &ip_vs_app_seq_ops,
591 sizeof(struct seq_net_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
Arjan van de Ven9a321442007-02-12 00:55:35 -0800594static const struct file_operations ip_vs_app_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 .owner = THIS_MODULE,
596 .open = ip_vs_app_open,
597 .read = seq_read,
598 .llseek = seq_lseek,
Hans Schillstrom0f081902011-05-15 17:20:29 +0200599 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600};
601#endif
602
Hans Schillstrom503cf152011-05-01 18:50:16 +0200603int __net_init ip_vs_app_net_init(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100604{
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100605 struct netns_ipvs *ipvs = net_ipvs(net);
606
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100607 INIT_LIST_HEAD(&ipvs->app_list);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100608 proc_net_fops_create(net, "ip_vs_app", 0, &ip_vs_app_fops);
609 return 0;
610}
611
Hans Schillstrom503cf152011-05-01 18:50:16 +0200612void __net_exit ip_vs_app_net_cleanup(struct net *net)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100613{
Julian Anastasovbe97fdb2012-07-12 23:06:20 +0300614 unregister_ip_vs_app(net, NULL /* all */);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100615 proc_net_remove(net, "ip_vs_app");
616}