[PATCH] tcp: setsockopt congestion control autoload
From: Stephen Hemminger <hidden>
Date: 2006-10-27 18:14:05
If application asks for a congestion control type with setsockopt() then it may be available as a module not included in the kernel already. If it has permission to load modules then the tcp congestion module should be autoloaded if needed. This is done already when the default selection is change with sysctl, but not when application requests via sysctl. Add a similar additional check to the sysctl path as well. Signed-off-by: Stephen Hemminger <redacted> --- net/ipv4/tcp_cong.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)
--- a/net/ipv4/tcp_cong.c 2006-10-27 10:56:36.000000000 -0700
+++ b/net/ipv4/tcp_cong.c 2006-10-27 11:09:36.000000000 -0700@@ -114,7 +114,7 @@ spin_lock(&tcp_cong_list_lock); ca = tcp_ca_find(name); #ifdef CONFIG_KMOD - if (!ca) { + if (!ca && capable(CAP_SYS_MODULE)) { spin_unlock(&tcp_cong_list_lock); request_module("tcp_%s", name);
@@ -154,9 +154,19 @@ rcu_read_lock(); ca = tcp_ca_find(name); + /* no change asking for existing value */ if (ca == icsk->icsk_ca_ops) goto out; +#ifdef CONFIG_KMOD + /* not found attempt to autoload module */ + if (!ca && capable(CAP_SYS_MODULE)) { + rcu_read_unlock(); + request_module("tcp_%s", name); + rcu_read_lock(); + ca = tcp_ca_find(name); + } +#endif if (!ca) err = -ENOENT;
Stephen Hemminger [off-list ref]