mptcp: add struct mptcp_sched_ops
[platform/kernel/linux-rpi.git] / net / mptcp / sched.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Multipath TCP
3  *
4  * Copyright (c) 2022, SUSE.
5  */
6
7 #define pr_fmt(fmt) "MPTCP: " fmt
8
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/list.h>
12 #include <linux/rculist.h>
13 #include <linux/spinlock.h>
14 #include "protocol.h"
15
16 static DEFINE_SPINLOCK(mptcp_sched_list_lock);
17 static LIST_HEAD(mptcp_sched_list);
18
19 /* Must be called with rcu read lock held */
20 struct mptcp_sched_ops *mptcp_sched_find(const char *name)
21 {
22         struct mptcp_sched_ops *sched, *ret = NULL;
23
24         list_for_each_entry_rcu(sched, &mptcp_sched_list, list) {
25                 if (!strcmp(sched->name, name)) {
26                         ret = sched;
27                         break;
28                 }
29         }
30
31         return ret;
32 }
33
34 int mptcp_register_scheduler(struct mptcp_sched_ops *sched)
35 {
36         if (!sched->get_subflow)
37                 return -EINVAL;
38
39         spin_lock(&mptcp_sched_list_lock);
40         if (mptcp_sched_find(sched->name)) {
41                 spin_unlock(&mptcp_sched_list_lock);
42                 return -EEXIST;
43         }
44         list_add_tail_rcu(&sched->list, &mptcp_sched_list);
45         spin_unlock(&mptcp_sched_list_lock);
46
47         pr_debug("%s registered", sched->name);
48         return 0;
49 }
50
51 void mptcp_unregister_scheduler(struct mptcp_sched_ops *sched)
52 {
53         spin_lock(&mptcp_sched_list_lock);
54         list_del_rcu(&sched->list);
55         spin_unlock(&mptcp_sched_list_lock);
56 }