blob: d75bd15151e6e30429cf842dfe3a74a17192d33f [file] [log] [blame]
David Howells5873c082014-02-07 18:58:44 +00001/* sysctls for configuring RxRPC operating parameters
2 *
3 * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11
12#include <linux/sysctl.h>
13#include <net/sock.h>
14#include <net/af_rxrpc.h>
15#include "ar-internal.h"
16
17static struct ctl_table_header *rxrpc_sysctl_reg_table;
David Howellsdad8aff2016-03-09 23:22:56 +000018static const unsigned int one = 1;
19static const unsigned int four = 4;
David Howells0e119b42016-06-10 22:30:37 +010020static const unsigned int thirtytwo = 32;
David Howellsdad8aff2016-03-09 23:22:56 +000021static const unsigned int n_65535 = 65535;
David Howells75e42122016-09-13 22:36:22 +010022static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1;
David Howellsa158bdd2017-11-24 10:18:41 +000023static const unsigned long one_jiffy = 1;
24static const unsigned long max_jiffies = MAX_JIFFY_OFFSET;
David Howells5873c082014-02-07 18:58:44 +000025
26/*
27 * RxRPC operating parameters.
28 *
29 * See Documentation/networking/rxrpc.txt and the variable definitions for more
30 * information on the individual parameters.
31 */
32static struct ctl_table rxrpc_sysctl_table[] = {
David Howellsa158bdd2017-11-24 10:18:41 +000033 /* Values measured in milliseconds but used in jiffies */
David Howells5873c082014-02-07 18:58:44 +000034 {
35 .procname = "req_ack_delay",
36 .data = &rxrpc_requested_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000037 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000038 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000039 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
40 .extra1 = (void *)&one_jiffy,
41 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000042 },
43 {
44 .procname = "soft_ack_delay",
45 .data = &rxrpc_soft_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000046 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000047 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000048 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
49 .extra1 = (void *)&one_jiffy,
50 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000051 },
52 {
53 .procname = "idle_ack_delay",
54 .data = &rxrpc_idle_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000055 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000056 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000057 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
58 .extra1 = (void *)&one_jiffy,
59 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000060 },
David Howells45025bc2016-08-24 07:30:52 +010061 {
62 .procname = "idle_conn_expiry",
63 .data = &rxrpc_conn_idle_client_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000064 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010065 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000066 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
67 .extra1 = (void *)&one_jiffy,
68 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010069 },
70 {
71 .procname = "idle_conn_fast_expiry",
72 .data = &rxrpc_conn_idle_client_fast_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000073 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010074 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000075 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
76 .extra1 = (void *)&one_jiffy,
77 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010078 },
David Howells5873c082014-02-07 18:58:44 +000079 {
David Howellsa158bdd2017-11-24 10:18:41 +000080 .procname = "resend_timeout",
81 .data = &rxrpc_resend_timeout,
82 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000083 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000084 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
85 .extra1 = (void *)&one_jiffy,
86 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000087 },
David Howells5873c082014-02-07 18:58:44 +000088
David Howells45025bc2016-08-24 07:30:52 +010089 /* Non-time values */
David Howells5873c082014-02-07 18:58:44 +000090 {
David Howells45025bc2016-08-24 07:30:52 +010091 .procname = "max_client_conns",
92 .data = &rxrpc_max_client_connections,
93 .maxlen = sizeof(unsigned int),
94 .mode = 0644,
95 .proc_handler = proc_dointvec_minmax,
96 .extra1 = (void *)&rxrpc_reap_client_connections,
97 },
98 {
99 .procname = "reap_client_conns",
100 .data = &rxrpc_reap_client_connections,
David Howellsdad8aff2016-03-09 23:22:56 +0000101 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +0000102 .mode = 0644,
103 .proc_handler = proc_dointvec_minmax,
104 .extra1 = (void *)&one,
David Howells45025bc2016-08-24 07:30:52 +0100105 .extra2 = (void *)&rxrpc_max_client_connections,
David Howells5873c082014-02-07 18:58:44 +0000106 },
David Howells817913d2014-02-07 18:10:30 +0000107 {
David Howells0e119b42016-06-10 22:30:37 +0100108 .procname = "max_backlog",
109 .data = &rxrpc_max_backlog,
110 .maxlen = sizeof(unsigned int),
111 .mode = 0644,
112 .proc_handler = proc_dointvec_minmax,
113 .extra1 = (void *)&four,
114 .extra2 = (void *)&thirtytwo,
115 },
116 {
David Howells817913d2014-02-07 18:10:30 +0000117 .procname = "rx_window_size",
118 .data = &rxrpc_rx_window_size,
David Howellsdad8aff2016-03-09 23:22:56 +0000119 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000120 .mode = 0644,
121 .proc_handler = proc_dointvec_minmax,
122 .extra1 = (void *)&one,
123 .extra2 = (void *)&n_max_acks,
124 },
125 {
126 .procname = "rx_mtu",
127 .data = &rxrpc_rx_mtu,
David Howellsdad8aff2016-03-09 23:22:56 +0000128 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000129 .mode = 0644,
130 .proc_handler = proc_dointvec_minmax,
131 .extra1 = (void *)&one,
David Howellsee6fe082016-03-04 15:55:32 +0000132 .extra2 = (void *)&n_65535,
David Howells817913d2014-02-07 18:10:30 +0000133 },
134 {
135 .procname = "rx_jumbo_max",
136 .data = &rxrpc_rx_jumbo_max,
David Howellsdad8aff2016-03-09 23:22:56 +0000137 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000138 .mode = 0644,
139 .proc_handler = proc_dointvec_minmax,
140 .extra1 = (void *)&one,
141 .extra2 = (void *)&four,
142 },
143
David Howells5873c082014-02-07 18:58:44 +0000144 { }
145};
146
147int __init rxrpc_sysctl_init(void)
148{
149 rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
150 rxrpc_sysctl_table);
151 if (!rxrpc_sysctl_reg_table)
152 return -ENOMEM;
153 return 0;
154}
155
156void rxrpc_sysctl_exit(void)
157{
158 if (rxrpc_sysctl_reg_table)
159 unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
160}