blob: 5cf859ccb31bbe096c9588643a9ed0f0d5f13342 [file] [log] [blame]
Simon Horman8be67a62010-08-22 21:37:54 +09001#define KMSG_COMPONENT "IPVS"
2#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
3
4#include <linux/module.h>
5#include <linux/spinlock.h>
6#include <linux/interrupt.h>
7#include <asm/string.h>
8#include <linux/kmod.h>
9#include <linux/sysctl.h>
10
11#include <net/ip_vs.h>
12
13/* IPVS pe list */
14static LIST_HEAD(ip_vs_pe);
15
16/* lock for service table */
17static DEFINE_SPINLOCK(ip_vs_pe_lock);
18
19/* Bind a service with a pe */
20void ip_vs_bind_pe(struct ip_vs_service *svc, struct ip_vs_pe *pe)
21{
22 svc->pe = pe;
23}
24
25/* Unbind a service from its pe */
26void ip_vs_unbind_pe(struct ip_vs_service *svc)
27{
28 svc->pe = NULL;
29}
30
31/* Get pe in the pe list by name */
Hans Schillstromfe5e7a12010-11-19 14:25:12 +010032struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name)
Simon Horman8be67a62010-08-22 21:37:54 +090033{
34 struct ip_vs_pe *pe;
35
Hans Schillstromfe5e7a12010-11-19 14:25:12 +010036 IP_VS_DBG(10, "%s(): pe_name \"%s\"\n", __func__,
Simon Horman8be67a62010-08-22 21:37:54 +090037 pe_name);
38
39 spin_lock_bh(&ip_vs_pe_lock);
40
41 list_for_each_entry(pe, &ip_vs_pe, n_list) {
42 /* Test and get the modules atomically */
43 if (pe->module &&
44 !try_module_get(pe->module)) {
45 /* This pe is just deleted */
46 continue;
47 }
48 if (strcmp(pe_name, pe->name)==0) {
49 /* HIT */
50 spin_unlock_bh(&ip_vs_pe_lock);
51 return pe;
52 }
53 if (pe->module)
54 module_put(pe->module);
55 }
56
57 spin_unlock_bh(&ip_vs_pe_lock);
58 return NULL;
59}
60
61/* Lookup pe and try to load it if it doesn't exist */
Simon Hormane9e5eee2010-11-08 20:05:57 +090062struct ip_vs_pe *ip_vs_pe_getbyname(const char *name)
Simon Horman8be67a62010-08-22 21:37:54 +090063{
64 struct ip_vs_pe *pe;
65
66 /* Search for the pe by name */
Simon Hormane9e5eee2010-11-08 20:05:57 +090067 pe = __ip_vs_pe_getbyname(name);
Simon Horman8be67a62010-08-22 21:37:54 +090068
69 /* If pe not found, load the module and search again */
70 if (!pe) {
71 request_module("ip_vs_pe_%s", name);
Simon Hormane9e5eee2010-11-08 20:05:57 +090072 pe = __ip_vs_pe_getbyname(name);
Simon Horman8be67a62010-08-22 21:37:54 +090073 }
74
75 return pe;
76}
77
Simon Horman8be67a62010-08-22 21:37:54 +090078/* Register a pe in the pe list */
79int register_ip_vs_pe(struct ip_vs_pe *pe)
80{
81 struct ip_vs_pe *tmp;
82
83 /* increase the module use count */
84 ip_vs_use_count_inc();
85
86 spin_lock_bh(&ip_vs_pe_lock);
87
88 if (!list_empty(&pe->n_list)) {
89 spin_unlock_bh(&ip_vs_pe_lock);
90 ip_vs_use_count_dec();
91 pr_err("%s(): [%s] pe already linked\n",
92 __func__, pe->name);
93 return -EINVAL;
94 }
95
96 /* Make sure that the pe with this name doesn't exist
97 * in the pe list.
98 */
99 list_for_each_entry(tmp, &ip_vs_pe, n_list) {
100 if (strcmp(tmp->name, pe->name) == 0) {
101 spin_unlock_bh(&ip_vs_pe_lock);
102 ip_vs_use_count_dec();
103 pr_err("%s(): [%s] pe already existed "
104 "in the system\n", __func__, pe->name);
105 return -EINVAL;
106 }
107 }
108 /* Add it into the d-linked pe list */
109 list_add(&pe->n_list, &ip_vs_pe);
110 spin_unlock_bh(&ip_vs_pe_lock);
111
112 pr_info("[%s] pe registered.\n", pe->name);
113
114 return 0;
115}
116EXPORT_SYMBOL_GPL(register_ip_vs_pe);
117
118/* Unregister a pe from the pe list */
119int unregister_ip_vs_pe(struct ip_vs_pe *pe)
120{
121 spin_lock_bh(&ip_vs_pe_lock);
122 if (list_empty(&pe->n_list)) {
123 spin_unlock_bh(&ip_vs_pe_lock);
124 pr_err("%s(): [%s] pe is not in the list. failed\n",
125 __func__, pe->name);
126 return -EINVAL;
127 }
128
129 /* Remove it from the d-linked pe list */
130 list_del(&pe->n_list);
131 spin_unlock_bh(&ip_vs_pe_lock);
132
133 /* decrease the module use count */
134 ip_vs_use_count_dec();
135
136 pr_info("[%s] pe unregistered.\n", pe->name);
137
138 return 0;
139}
140EXPORT_SYMBOL_GPL(unregister_ip_vs_pe);