cregit-Linux how code gets into the kernel

Release 4.11 net/netfilter/ipvs/ip_vs_sched.c

/*
 * IPVS         An implementation of the IP virtual server support for the
 *              LINUX operating system.  IPVS is now implemented as a module
 *              over the Netfilter framework. IPVS can be used to build a
 *              high-performance and highly available server based on a
 *              cluster of servers.
 *
 * Authors:     Wensong Zhang <wensong@linuxvirtualserver.org>
 *              Peter Kese <peter.kese@ijs.si>
 *
 *              This program is free software; you can redistribute it and/or
 *              modify it under the terms of the GNU General Public License
 *              as published by the Free Software Foundation; either version
 *              2 of the License, or (at your option) any later version.
 *
 * Changes:
 *
 */


#define KMSG_COMPONENT "IPVS"

#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt

#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/interrupt.h>
#include <asm/string.h>
#include <linux/kmod.h>
#include <linux/sysctl.h>

#include <net/ip_vs.h>


EXPORT_SYMBOL(ip_vs_scheduler_err);
/*
 *  IPVS scheduler list
 */
static LIST_HEAD(ip_vs_schedulers);

/* semaphore for schedulers */
static DEFINE_MUTEX(ip_vs_sched_mutex);


/*
 *  Bind a service with a scheduler
 */

int ip_vs_bind_scheduler(struct ip_vs_service *svc, struct ip_vs_scheduler *scheduler) { int ret; if (scheduler->init_service) { ret = scheduler->init_service(svc); if (ret) { pr_err("%s(): init error\n", __func__); return ret; } } rcu_assign_pointer(svc->scheduler, scheduler); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang5079.37%133.33%
Julian Anastasov914.29%133.33%
Hannes Eder46.35%133.33%
Total63100.00%3100.00%

/* * Unbind a service with its scheduler */
void ip_vs_unbind_scheduler(struct ip_vs_service *svc, struct ip_vs_scheduler *sched) { struct ip_vs_scheduler *cur_sched; cur_sched = rcu_dereference_protected(svc->scheduler, 1); /* This check proves that old 'sched' was installed */ if (!cur_sched) return; if (sched->done_service) sched->done_service(svc); /* svc->scheduler can be set to NULL only by caller */ }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang3159.62%120.00%
Julian Anastasov2038.46%360.00%
Simon Horman11.92%120.00%
Total52100.00%5100.00%

/* * Get scheduler in the scheduler list by name */
static struct ip_vs_scheduler *ip_vs_sched_getbyname(const char *sched_name) { struct ip_vs_scheduler *sched; IP_VS_DBG(2, "%s(): sched_name \"%s\"\n", __func__, sched_name); mutex_lock(&ip_vs_sched_mutex); list_for_each_entry(sched, &ip_vs_schedulers, n_list) { /* * Test and get the modules atomically */ if (sched->module && !try_module_get(sched->module)) { /* * This scheduler is just deleted */ continue; } if (strcmp(sched_name, sched->name)==0) { /* HIT */ mutex_unlock(&ip_vs_sched_mutex); return sched; } module_put(sched->module); } mutex_unlock(&ip_vs_sched_mutex); return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang9186.67%125.00%
Julian Anastasov65.71%125.00%
Stephen Hemminger54.76%125.00%
Hannes Eder32.86%125.00%
Total105100.00%4100.00%

/* * Lookup scheduler and try to load it if it doesn't exist */
struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name) { struct ip_vs_scheduler *sched; /* * Search for the scheduler by sched_name */ sched = ip_vs_sched_getbyname(sched_name); /* * If scheduler not found, load the module and search again */ if (sched == NULL) { request_module("ip_vs_%s", sched_name); sched = ip_vs_sched_getbyname(sched_name); } return sched; }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang5098.04%150.00%
Randy Dunlap11.96%150.00%
Total51100.00%2100.00%


void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler) { if (scheduler) module_put(scheduler->module); }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang21100.00%1100.00%
Total21100.00%1100.00%

/* * Common error output helper for schedulers */
void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg) { struct ip_vs_scheduler *sched = rcu_dereference(svc->scheduler); char *sched_name = sched ? sched->name : "none"; if (svc->fwmark) { IP_VS_ERR_RL("%s: FWM %u 0x%08X - %s\n", sched_name, svc->fwmark, svc->fwmark, msg); #ifdef CONFIG_IP_VS_IPV6 } else if (svc->af == AF_INET6) { IP_VS_ERR_RL("%s: %s [%pI6c]:%d - %s\n", sched_name, ip_vs_proto_name(svc->protocol), &svc->addr.in6, ntohs(svc->port), msg); #endif } else { IP_VS_ERR_RL("%s: %s %pI4:%d - %s\n", sched_name, ip_vs_proto_name(svc->protocol), &svc->addr.ip, ntohs(svc->port), msg); } }

Contributors

PersonTokensPropCommitsCommitProp
Patrick Schaaf11580.42%125.00%
Julian Anastasov2718.88%250.00%
Jesper Dangaard Brouer10.70%125.00%
Total143100.00%4100.00%

/* * Register a scheduler in the scheduler list */
int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler) { struct ip_vs_scheduler *sched; if (!scheduler) { pr_err("%s(): NULL arg\n", __func__); return -EINVAL; } if (!scheduler->name) { pr_err("%s(): NULL scheduler_name\n", __func__); return -EINVAL; } /* increase the module use count */ ip_vs_use_count_inc(); mutex_lock(&ip_vs_sched_mutex); if (!list_empty(&scheduler->n_list)) { mutex_unlock(&ip_vs_sched_mutex); ip_vs_use_count_dec(); pr_err("%s(): [%s] scheduler already linked\n", __func__, scheduler->name); return -EINVAL; } /* * Make sure that the scheduler with this name doesn't exist * in the scheduler list. */ list_for_each_entry(sched, &ip_vs_schedulers, n_list) { if (strcmp(scheduler->name, sched->name) == 0) { mutex_unlock(&ip_vs_sched_mutex); ip_vs_use_count_dec(); pr_err("%s(): [%s] scheduler already existed " "in the system\n", __func__, scheduler->name); return -EINVAL; } } /* * Add it into the d-linked scheduler list */ list_add(&scheduler->n_list, &ip_vs_schedulers); mutex_unlock(&ip_vs_sched_mutex); pr_info("[%s] scheduler registered.\n", scheduler->name); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang12970.49%120.00%
Pavel Emelyanov2413.11%120.00%
Hannes Eder189.84%120.00%
Julian Anastasov84.37%120.00%
Sven Wegener42.19%120.00%
Total183100.00%5100.00%

/* * Unregister a scheduler from the scheduler list */
int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler) { if (!scheduler) { pr_err("%s(): NULL arg\n", __func__); return -EINVAL; } mutex_lock(&ip_vs_sched_mutex); if (list_empty(&scheduler->n_list)) { mutex_unlock(&ip_vs_sched_mutex); pr_err("%s(): [%s] scheduler is not in the list. failed\n", __func__, scheduler->name); return -EINVAL; } /* * Remove it from the d-linked scheduler list */ list_del(&scheduler->n_list); mutex_unlock(&ip_vs_sched_mutex); /* decrease the module use count */ ip_vs_use_count_dec(); pr_info("[%s] scheduler unregistered.\n", scheduler->name); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang8081.63%125.00%
Hannes Eder99.18%125.00%
Julian Anastasov66.12%125.00%
Sven Wegener33.06%125.00%
Total98100.00%4100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Wensong Zhang48162.06%15.56%
Patrick Schaaf12115.61%15.56%
Julian Anastasov7910.19%422.22%
Hannes Eder455.81%211.11%
Pavel Emelyanov273.48%211.11%
Sven Wegener70.90%15.56%
Stephen Hemminger50.65%15.56%
Adrian Bunk40.52%211.11%
Thomas Gleixner30.39%15.56%
Jesper Dangaard Brouer10.13%15.56%
Simon Horman10.13%15.56%
Randy Dunlap10.13%15.56%
Total775100.00%18100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.