blob: 1a82b29ce8eab833cc83f05ba032431442b1c70d [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
Julian Anastasov60b6aa32013-03-21 11:58:09 +020016/* semaphore for IPVS PEs. */
17static DEFINE_MUTEX(ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +090018
Simon Horman8be67a62010-08-22 21:37:54 +090019/* Get pe in the pe list by name */
Hans Schillstromfe5e7a12010-11-19 14:25:12 +010020struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name)
Simon Horman8be67a62010-08-22 21:37:54 +090021{
22 struct ip_vs_pe *pe;
23
Hans Schillstromfe5e7a12010-11-19 14:25:12 +010024 IP_VS_DBG(10, "%s(): pe_name \"%s\"\n", __func__,
Simon Horman8be67a62010-08-22 21:37:54 +090025 pe_name);
26
Julian Anastasov60b6aa32013-03-21 11:58:09 +020027 rcu_read_lock();
28 list_for_each_entry_rcu(pe, &ip_vs_pe, n_list) {
Simon Horman8be67a62010-08-22 21:37:54 +090029 /* Test and get the modules atomically */
30 if (pe->module &&
31 !try_module_get(pe->module)) {
32 /* This pe is just deleted */
33 continue;
34 }
35 if (strcmp(pe_name, pe->name)==0) {
36 /* HIT */
Julian Anastasov60b6aa32013-03-21 11:58:09 +020037 rcu_read_unlock();
Simon Horman8be67a62010-08-22 21:37:54 +090038 return pe;
39 }
40 if (pe->module)
41 module_put(pe->module);
42 }
Julian Anastasov60b6aa32013-03-21 11:58:09 +020043 rcu_read_unlock();
Simon Horman8be67a62010-08-22 21:37:54 +090044
Simon Horman8be67a62010-08-22 21:37:54 +090045 return NULL;
46}
47
48/* Lookup pe and try to load it if it doesn't exist */
Simon Hormane9e5eee2010-11-08 20:05:57 +090049struct ip_vs_pe *ip_vs_pe_getbyname(const char *name)
Simon Horman8be67a62010-08-22 21:37:54 +090050{
51 struct ip_vs_pe *pe;
52
53 /* Search for the pe by name */
Simon Hormane9e5eee2010-11-08 20:05:57 +090054 pe = __ip_vs_pe_getbyname(name);
Simon Horman8be67a62010-08-22 21:37:54 +090055
56 /* If pe not found, load the module and search again */
57 if (!pe) {
58 request_module("ip_vs_pe_%s", name);
Simon Hormane9e5eee2010-11-08 20:05:57 +090059 pe = __ip_vs_pe_getbyname(name);
Simon Horman8be67a62010-08-22 21:37:54 +090060 }
61
62 return pe;
63}
64
Simon Horman8be67a62010-08-22 21:37:54 +090065/* Register a pe in the pe list */
66int register_ip_vs_pe(struct ip_vs_pe *pe)
67{
68 struct ip_vs_pe *tmp;
69
70 /* increase the module use count */
71 ip_vs_use_count_inc();
72
Julian Anastasov60b6aa32013-03-21 11:58:09 +020073 mutex_lock(&ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +090074 /* Make sure that the pe with this name doesn't exist
75 * in the pe list.
76 */
77 list_for_each_entry(tmp, &ip_vs_pe, n_list) {
78 if (strcmp(tmp->name, pe->name) == 0) {
Julian Anastasov60b6aa32013-03-21 11:58:09 +020079 mutex_unlock(&ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +090080 ip_vs_use_count_dec();
81 pr_err("%s(): [%s] pe already existed "
82 "in the system\n", __func__, pe->name);
83 return -EINVAL;
84 }
85 }
86 /* Add it into the d-linked pe list */
Julian Anastasov60b6aa32013-03-21 11:58:09 +020087 list_add_rcu(&pe->n_list, &ip_vs_pe);
88 mutex_unlock(&ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +090089
90 pr_info("[%s] pe registered.\n", pe->name);
91
92 return 0;
93}
94EXPORT_SYMBOL_GPL(register_ip_vs_pe);
95
96/* Unregister a pe from the pe list */
97int unregister_ip_vs_pe(struct ip_vs_pe *pe)
98{
Julian Anastasov60b6aa32013-03-21 11:58:09 +020099 mutex_lock(&ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +0900100 /* Remove it from the d-linked pe list */
Julian Anastasov60b6aa32013-03-21 11:58:09 +0200101 list_del_rcu(&pe->n_list);
102 mutex_unlock(&ip_vs_pe_mutex);
Simon Horman8be67a62010-08-22 21:37:54 +0900103
104 /* decrease the module use count */
105 ip_vs_use_count_dec();
106
107 pr_info("[%s] pe unregistered.\n", pe->name);
108
109 return 0;
110}
111EXPORT_SYMBOL_GPL(unregister_ip_vs_pe);