blob: 1e3fa67d91aa8ee05b25f1e29a185329670a8c76 [file] [log] [blame]
Thomas Gleixnerb4d0d232019-05-20 19:08:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells5873c082014-02-07 18:58:44 +00002/* sysctls for configuring RxRPC operating parameters
3 *
4 * Copyright (C) 2014 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells5873c082014-02-07 18:58:44 +00006 */
7
8#include <linux/sysctl.h>
9#include <net/sock.h>
10#include <net/af_rxrpc.h>
11#include "ar-internal.h"
12
13static struct ctl_table_header *rxrpc_sysctl_reg_table;
David Howellsdad8aff2016-03-09 23:22:56 +000014static const unsigned int one = 1;
15static const unsigned int four = 4;
David Howells0e119b42016-06-10 22:30:37 +010016static const unsigned int thirtytwo = 32;
David Howellsdad8aff2016-03-09 23:22:56 +000017static const unsigned int n_65535 = 65535;
David Howells75e42122016-09-13 22:36:22 +010018static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1;
David Howellsa158bdd2017-11-24 10:18:41 +000019static const unsigned long one_jiffy = 1;
20static const unsigned long max_jiffies = MAX_JIFFY_OFFSET;
David Howells5873c082014-02-07 18:58:44 +000021
22/*
23 * RxRPC operating parameters.
24 *
25 * See Documentation/networking/rxrpc.txt and the variable definitions for more
26 * information on the individual parameters.
27 */
28static struct ctl_table rxrpc_sysctl_table[] = {
David Howellsa158bdd2017-11-24 10:18:41 +000029 /* Values measured in milliseconds but used in jiffies */
David Howells5873c082014-02-07 18:58:44 +000030 {
31 .procname = "req_ack_delay",
32 .data = &rxrpc_requested_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000033 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000034 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000035 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
36 .extra1 = (void *)&one_jiffy,
37 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000038 },
39 {
40 .procname = "soft_ack_delay",
41 .data = &rxrpc_soft_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000042 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000043 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000044 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
45 .extra1 = (void *)&one_jiffy,
46 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000047 },
48 {
49 .procname = "idle_ack_delay",
50 .data = &rxrpc_idle_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000051 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000052 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000053 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
54 .extra1 = (void *)&one_jiffy,
55 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000056 },
David Howells45025bc2016-08-24 07:30:52 +010057 {
58 .procname = "idle_conn_expiry",
59 .data = &rxrpc_conn_idle_client_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000060 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010061 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000062 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
63 .extra1 = (void *)&one_jiffy,
64 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010065 },
66 {
67 .procname = "idle_conn_fast_expiry",
68 .data = &rxrpc_conn_idle_client_fast_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000069 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010070 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000071 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
72 .extra1 = (void *)&one_jiffy,
73 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010074 },
David Howells5873c082014-02-07 18:58:44 +000075 {
David Howellsa158bdd2017-11-24 10:18:41 +000076 .procname = "resend_timeout",
77 .data = &rxrpc_resend_timeout,
78 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000079 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000080 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
81 .extra1 = (void *)&one_jiffy,
82 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000083 },
David Howells5873c082014-02-07 18:58:44 +000084
David Howells45025bc2016-08-24 07:30:52 +010085 /* Non-time values */
David Howells5873c082014-02-07 18:58:44 +000086 {
David Howells45025bc2016-08-24 07:30:52 +010087 .procname = "max_client_conns",
88 .data = &rxrpc_max_client_connections,
89 .maxlen = sizeof(unsigned int),
90 .mode = 0644,
91 .proc_handler = proc_dointvec_minmax,
92 .extra1 = (void *)&rxrpc_reap_client_connections,
93 },
94 {
95 .procname = "reap_client_conns",
96 .data = &rxrpc_reap_client_connections,
David Howellsdad8aff2016-03-09 23:22:56 +000097 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000098 .mode = 0644,
99 .proc_handler = proc_dointvec_minmax,
100 .extra1 = (void *)&one,
David Howells45025bc2016-08-24 07:30:52 +0100101 .extra2 = (void *)&rxrpc_max_client_connections,
David Howells5873c082014-02-07 18:58:44 +0000102 },
David Howells817913d2014-02-07 18:10:30 +0000103 {
David Howells0e119b42016-06-10 22:30:37 +0100104 .procname = "max_backlog",
105 .data = &rxrpc_max_backlog,
106 .maxlen = sizeof(unsigned int),
107 .mode = 0644,
108 .proc_handler = proc_dointvec_minmax,
109 .extra1 = (void *)&four,
110 .extra2 = (void *)&thirtytwo,
111 },
112 {
David Howells817913d2014-02-07 18:10:30 +0000113 .procname = "rx_window_size",
114 .data = &rxrpc_rx_window_size,
David Howellsdad8aff2016-03-09 23:22:56 +0000115 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000116 .mode = 0644,
117 .proc_handler = proc_dointvec_minmax,
118 .extra1 = (void *)&one,
119 .extra2 = (void *)&n_max_acks,
120 },
121 {
122 .procname = "rx_mtu",
123 .data = &rxrpc_rx_mtu,
David Howellsdad8aff2016-03-09 23:22:56 +0000124 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000125 .mode = 0644,
126 .proc_handler = proc_dointvec_minmax,
127 .extra1 = (void *)&one,
David Howellsee6fe082016-03-04 15:55:32 +0000128 .extra2 = (void *)&n_65535,
David Howells817913d2014-02-07 18:10:30 +0000129 },
130 {
131 .procname = "rx_jumbo_max",
132 .data = &rxrpc_rx_jumbo_max,
David Howellsdad8aff2016-03-09 23:22:56 +0000133 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000134 .mode = 0644,
135 .proc_handler = proc_dointvec_minmax,
136 .extra1 = (void *)&one,
137 .extra2 = (void *)&four,
138 },
139
David Howells5873c082014-02-07 18:58:44 +0000140 { }
141};
142
143int __init rxrpc_sysctl_init(void)
144{
145 rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
146 rxrpc_sysctl_table);
147 if (!rxrpc_sysctl_reg_table)
148 return -ENOMEM;
149 return 0;
150}
151
152void rxrpc_sysctl_exit(void)
153{
154 if (rxrpc_sysctl_reg_table)
155 unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
156}