blob: dc380af8a81effd135e1dd00482704fd320299ca [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 zero = 0;
19static const unsigned int one = 1;
20static const unsigned int four = 4;
David Howells0e119b42016-06-10 22:30:37 +010021static const unsigned int thirtytwo = 32;
David Howellsdad8aff2016-03-09 23:22:56 +000022static const unsigned int n_65535 = 65535;
23static const unsigned int n_max_acks = RXRPC_MAXACKS;
David Howells5873c082014-02-07 18:58:44 +000024
25/*
26 * RxRPC operating parameters.
27 *
28 * See Documentation/networking/rxrpc.txt and the variable definitions for more
29 * information on the individual parameters.
30 */
31static struct ctl_table rxrpc_sysctl_table[] = {
32 /* Values measured in milliseconds */
33 {
34 .procname = "req_ack_delay",
35 .data = &rxrpc_requested_ack_delay,
David Howellsdad8aff2016-03-09 23:22:56 +000036 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000037 .mode = 0644,
38 .proc_handler = proc_dointvec_ms_jiffies,
39 .extra1 = (void *)&zero,
40 },
41 {
42 .procname = "soft_ack_delay",
43 .data = &rxrpc_soft_ack_delay,
David Howellsdad8aff2016-03-09 23:22:56 +000044 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000045 .mode = 0644,
46 .proc_handler = proc_dointvec_ms_jiffies,
47 .extra1 = (void *)&one,
48 },
49 {
50 .procname = "idle_ack_delay",
51 .data = &rxrpc_idle_ack_delay,
David Howellsdad8aff2016-03-09 23:22:56 +000052 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000053 .mode = 0644,
54 .proc_handler = proc_dointvec_ms_jiffies,
55 .extra1 = (void *)&one,
56 },
57 {
58 .procname = "resend_timeout",
59 .data = &rxrpc_resend_timeout,
David Howellsdad8aff2016-03-09 23:22:56 +000060 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000061 .mode = 0644,
62 .proc_handler = proc_dointvec_ms_jiffies,
63 .extra1 = (void *)&one,
64 },
David Howells45025bc2016-08-24 07:30:52 +010065 {
66 .procname = "idle_conn_expiry",
67 .data = &rxrpc_conn_idle_client_expiry,
68 .maxlen = sizeof(unsigned int),
69 .mode = 0644,
70 .proc_handler = proc_dointvec_ms_jiffies,
71 .extra1 = (void *)&one,
72 },
73 {
74 .procname = "idle_conn_fast_expiry",
75 .data = &rxrpc_conn_idle_client_fast_expiry,
76 .maxlen = sizeof(unsigned int),
77 .mode = 0644,
78 .proc_handler = proc_dointvec_ms_jiffies,
79 .extra1 = (void *)&one,
80 },
David Howells5873c082014-02-07 18:58:44 +000081
82 /* Values measured in seconds but used in jiffies */
83 {
84 .procname = "max_call_lifetime",
85 .data = &rxrpc_max_call_lifetime,
David Howellsdad8aff2016-03-09 23:22:56 +000086 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000087 .mode = 0644,
88 .proc_handler = proc_dointvec_jiffies,
89 .extra1 = (void *)&one,
90 },
91 {
92 .procname = "dead_call_expiry",
93 .data = &rxrpc_dead_call_expiry,
David Howellsdad8aff2016-03-09 23:22:56 +000094 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000095 .mode = 0644,
96 .proc_handler = proc_dointvec_jiffies,
97 .extra1 = (void *)&one,
98 },
99
David Howells45025bc2016-08-24 07:30:52 +0100100 /* Non-time values */
David Howells5873c082014-02-07 18:58:44 +0000101 {
David Howells45025bc2016-08-24 07:30:52 +0100102 .procname = "max_client_conns",
103 .data = &rxrpc_max_client_connections,
104 .maxlen = sizeof(unsigned int),
105 .mode = 0644,
106 .proc_handler = proc_dointvec_minmax,
107 .extra1 = (void *)&rxrpc_reap_client_connections,
108 },
109 {
110 .procname = "reap_client_conns",
111 .data = &rxrpc_reap_client_connections,
David Howellsdad8aff2016-03-09 23:22:56 +0000112 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +0000113 .mode = 0644,
114 .proc_handler = proc_dointvec_minmax,
115 .extra1 = (void *)&one,
David Howells45025bc2016-08-24 07:30:52 +0100116 .extra2 = (void *)&rxrpc_max_client_connections,
David Howells5873c082014-02-07 18:58:44 +0000117 },
David Howells817913d2014-02-07 18:10:30 +0000118 {
David Howells0e119b42016-06-10 22:30:37 +0100119 .procname = "max_backlog",
120 .data = &rxrpc_max_backlog,
121 .maxlen = sizeof(unsigned int),
122 .mode = 0644,
123 .proc_handler = proc_dointvec_minmax,
124 .extra1 = (void *)&four,
125 .extra2 = (void *)&thirtytwo,
126 },
127 {
David Howells817913d2014-02-07 18:10:30 +0000128 .procname = "rx_window_size",
129 .data = &rxrpc_rx_window_size,
David Howellsdad8aff2016-03-09 23:22:56 +0000130 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000131 .mode = 0644,
132 .proc_handler = proc_dointvec_minmax,
133 .extra1 = (void *)&one,
134 .extra2 = (void *)&n_max_acks,
135 },
136 {
137 .procname = "rx_mtu",
138 .data = &rxrpc_rx_mtu,
David Howellsdad8aff2016-03-09 23:22:56 +0000139 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000140 .mode = 0644,
141 .proc_handler = proc_dointvec_minmax,
142 .extra1 = (void *)&one,
David Howellsee6fe082016-03-04 15:55:32 +0000143 .extra2 = (void *)&n_65535,
David Howells817913d2014-02-07 18:10:30 +0000144 },
145 {
146 .procname = "rx_jumbo_max",
147 .data = &rxrpc_rx_jumbo_max,
David Howellsdad8aff2016-03-09 23:22:56 +0000148 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000149 .mode = 0644,
150 .proc_handler = proc_dointvec_minmax,
151 .extra1 = (void *)&one,
152 .extra2 = (void *)&four,
153 },
154
David Howells5873c082014-02-07 18:58:44 +0000155 { }
156};
157
158int __init rxrpc_sysctl_init(void)
159{
160 rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
161 rxrpc_sysctl_table);
162 if (!rxrpc_sysctl_reg_table)
163 return -ENOMEM;
164 return 0;
165}
166
167void rxrpc_sysctl_exit(void)
168{
169 if (rxrpc_sysctl_reg_table)
170 unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
171}