blob: 2bbb38161851a48965272ef2984e23f76b4cb308 [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 four = 4;
David Howells0e119b42016-06-10 22:30:37 +010015static const unsigned int thirtytwo = 32;
David Howellsdad8aff2016-03-09 23:22:56 +000016static const unsigned int n_65535 = 65535;
David Howells75e42122016-09-13 22:36:22 +010017static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1;
David Howellsa158bdd2017-11-24 10:18:41 +000018static const unsigned long one_jiffy = 1;
19static const unsigned long max_jiffies = MAX_JIFFY_OFFSET;
David Howells5873c082014-02-07 18:58:44 +000020
21/*
22 * RxRPC operating parameters.
23 *
24 * See Documentation/networking/rxrpc.txt and the variable definitions for more
25 * information on the individual parameters.
26 */
27static struct ctl_table rxrpc_sysctl_table[] = {
David Howellsa158bdd2017-11-24 10:18:41 +000028 /* Values measured in milliseconds but used in jiffies */
David Howells5873c082014-02-07 18:58:44 +000029 {
30 .procname = "req_ack_delay",
31 .data = &rxrpc_requested_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000032 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000033 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000034 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
35 .extra1 = (void *)&one_jiffy,
36 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000037 },
38 {
39 .procname = "soft_ack_delay",
40 .data = &rxrpc_soft_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000041 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000042 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000043 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
44 .extra1 = (void *)&one_jiffy,
45 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000046 },
47 {
48 .procname = "idle_ack_delay",
49 .data = &rxrpc_idle_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000050 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000051 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000052 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
53 .extra1 = (void *)&one_jiffy,
54 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000055 },
David Howells45025bc2016-08-24 07:30:52 +010056 {
57 .procname = "idle_conn_expiry",
58 .data = &rxrpc_conn_idle_client_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000059 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010060 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000061 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
62 .extra1 = (void *)&one_jiffy,
63 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010064 },
65 {
66 .procname = "idle_conn_fast_expiry",
67 .data = &rxrpc_conn_idle_client_fast_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000068 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010069 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000070 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
71 .extra1 = (void *)&one_jiffy,
72 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010073 },
David Howells5873c082014-02-07 18:58:44 +000074 {
David Howellsa158bdd2017-11-24 10:18:41 +000075 .procname = "resend_timeout",
76 .data = &rxrpc_resend_timeout,
77 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000078 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000079 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
80 .extra1 = (void *)&one_jiffy,
81 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000082 },
David Howells5873c082014-02-07 18:58:44 +000083
David Howells45025bc2016-08-24 07:30:52 +010084 /* Non-time values */
David Howells5873c082014-02-07 18:58:44 +000085 {
David Howells45025bc2016-08-24 07:30:52 +010086 .procname = "max_client_conns",
87 .data = &rxrpc_max_client_connections,
88 .maxlen = sizeof(unsigned int),
89 .mode = 0644,
90 .proc_handler = proc_dointvec_minmax,
91 .extra1 = (void *)&rxrpc_reap_client_connections,
92 },
93 {
94 .procname = "reap_client_conns",
95 .data = &rxrpc_reap_client_connections,
David Howellsdad8aff2016-03-09 23:22:56 +000096 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000097 .mode = 0644,
98 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -070099 .extra1 = (void *)SYSCTL_ONE,
David Howells45025bc2016-08-24 07:30:52 +0100100 .extra2 = (void *)&rxrpc_max_client_connections,
David Howells5873c082014-02-07 18:58:44 +0000101 },
David Howells817913d2014-02-07 18:10:30 +0000102 {
David Howells0e119b42016-06-10 22:30:37 +0100103 .procname = "max_backlog",
104 .data = &rxrpc_max_backlog,
105 .maxlen = sizeof(unsigned int),
106 .mode = 0644,
107 .proc_handler = proc_dointvec_minmax,
108 .extra1 = (void *)&four,
109 .extra2 = (void *)&thirtytwo,
110 },
111 {
David Howells817913d2014-02-07 18:10:30 +0000112 .procname = "rx_window_size",
113 .data = &rxrpc_rx_window_size,
David Howellsdad8aff2016-03-09 23:22:56 +0000114 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000115 .mode = 0644,
116 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -0700117 .extra1 = (void *)SYSCTL_ONE,
David Howells817913d2014-02-07 18:10:30 +0000118 .extra2 = (void *)&n_max_acks,
119 },
120 {
121 .procname = "rx_mtu",
122 .data = &rxrpc_rx_mtu,
David Howellsdad8aff2016-03-09 23:22:56 +0000123 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000124 .mode = 0644,
125 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -0700126 .extra1 = (void *)SYSCTL_ONE,
David Howellsee6fe082016-03-04 15:55:32 +0000127 .extra2 = (void *)&n_65535,
David Howells817913d2014-02-07 18:10:30 +0000128 },
129 {
130 .procname = "rx_jumbo_max",
131 .data = &rxrpc_rx_jumbo_max,
David Howellsdad8aff2016-03-09 23:22:56 +0000132 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000133 .mode = 0644,
134 .proc_handler = proc_dointvec_minmax,
Matteo Croceeec48442019-07-18 15:58:50 -0700135 .extra1 = (void *)SYSCTL_ONE,
David Howells817913d2014-02-07 18:10:30 +0000136 .extra2 = (void *)&four,
137 },
138
David Howells5873c082014-02-07 18:58:44 +0000139 { }
140};
141
142int __init rxrpc_sysctl_init(void)
143{
144 rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
145 rxrpc_sysctl_table);
146 if (!rxrpc_sysctl_reg_table)
147 return -ENOMEM;
148 return 0;
149}
150
151void rxrpc_sysctl_exit(void)
152{
153 if (rxrpc_sysctl_reg_table)
154 unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
155}