blob: 4a7af7aff37d247f84bfdd250bbc592ae1bb67b2 [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;
David Howells75e42122016-09-13 22:36:22 +010023static const unsigned int n_max_acks = RXRPC_RXTX_BUFF_SIZE - 1;
David Howellsa158bdd2017-11-24 10:18:41 +000024static const unsigned long one_jiffy = 1;
25static const unsigned long max_jiffies = MAX_JIFFY_OFFSET;
David Howells5873c082014-02-07 18:58:44 +000026
27/*
28 * RxRPC operating parameters.
29 *
30 * See Documentation/networking/rxrpc.txt and the variable definitions for more
31 * information on the individual parameters.
32 */
33static struct ctl_table rxrpc_sysctl_table[] = {
David Howellsa158bdd2017-11-24 10:18:41 +000034 /* Values measured in milliseconds but used in jiffies */
David Howells5873c082014-02-07 18:58:44 +000035 {
36 .procname = "req_ack_delay",
37 .data = &rxrpc_requested_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000038 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000039 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000040 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
41 .extra1 = (void *)&one_jiffy,
42 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000043 },
44 {
45 .procname = "soft_ack_delay",
46 .data = &rxrpc_soft_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000047 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000048 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000049 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
50 .extra1 = (void *)&one_jiffy,
51 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000052 },
53 {
54 .procname = "idle_ack_delay",
55 .data = &rxrpc_idle_ack_delay,
David Howellsa158bdd2017-11-24 10:18:41 +000056 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000057 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000058 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
59 .extra1 = (void *)&one_jiffy,
60 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000061 },
David Howells45025bc2016-08-24 07:30:52 +010062 {
63 .procname = "idle_conn_expiry",
64 .data = &rxrpc_conn_idle_client_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000065 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010066 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000067 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
68 .extra1 = (void *)&one_jiffy,
69 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010070 },
71 {
72 .procname = "idle_conn_fast_expiry",
73 .data = &rxrpc_conn_idle_client_fast_expiry,
David Howellsa158bdd2017-11-24 10:18:41 +000074 .maxlen = sizeof(unsigned long),
David Howells45025bc2016-08-24 07:30:52 +010075 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000076 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
77 .extra1 = (void *)&one_jiffy,
78 .extra2 = (void *)&max_jiffies,
David Howells45025bc2016-08-24 07:30:52 +010079 },
David Howells5873c082014-02-07 18:58:44 +000080 {
David Howellsa158bdd2017-11-24 10:18:41 +000081 .procname = "resend_timeout",
82 .data = &rxrpc_resend_timeout,
83 .maxlen = sizeof(unsigned long),
David Howells5873c082014-02-07 18:58:44 +000084 .mode = 0644,
David Howellsa158bdd2017-11-24 10:18:41 +000085 .proc_handler = proc_doulongvec_ms_jiffies_minmax,
86 .extra1 = (void *)&one_jiffy,
87 .extra2 = (void *)&max_jiffies,
David Howells5873c082014-02-07 18:58:44 +000088 },
David Howells5873c082014-02-07 18:58:44 +000089
David Howells45025bc2016-08-24 07:30:52 +010090 /* Non-time values */
David Howells5873c082014-02-07 18:58:44 +000091 {
David Howells45025bc2016-08-24 07:30:52 +010092 .procname = "max_client_conns",
93 .data = &rxrpc_max_client_connections,
94 .maxlen = sizeof(unsigned int),
95 .mode = 0644,
96 .proc_handler = proc_dointvec_minmax,
97 .extra1 = (void *)&rxrpc_reap_client_connections,
98 },
99 {
100 .procname = "reap_client_conns",
101 .data = &rxrpc_reap_client_connections,
David Howellsdad8aff2016-03-09 23:22:56 +0000102 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +0000103 .mode = 0644,
104 .proc_handler = proc_dointvec_minmax,
105 .extra1 = (void *)&one,
David Howells45025bc2016-08-24 07:30:52 +0100106 .extra2 = (void *)&rxrpc_max_client_connections,
David Howells5873c082014-02-07 18:58:44 +0000107 },
David Howells817913d2014-02-07 18:10:30 +0000108 {
David Howells0e119b42016-06-10 22:30:37 +0100109 .procname = "max_backlog",
110 .data = &rxrpc_max_backlog,
111 .maxlen = sizeof(unsigned int),
112 .mode = 0644,
113 .proc_handler = proc_dointvec_minmax,
114 .extra1 = (void *)&four,
115 .extra2 = (void *)&thirtytwo,
116 },
117 {
David Howells817913d2014-02-07 18:10:30 +0000118 .procname = "rx_window_size",
119 .data = &rxrpc_rx_window_size,
David Howellsdad8aff2016-03-09 23:22:56 +0000120 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000121 .mode = 0644,
122 .proc_handler = proc_dointvec_minmax,
123 .extra1 = (void *)&one,
124 .extra2 = (void *)&n_max_acks,
125 },
126 {
127 .procname = "rx_mtu",
128 .data = &rxrpc_rx_mtu,
David Howellsdad8aff2016-03-09 23:22:56 +0000129 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000130 .mode = 0644,
131 .proc_handler = proc_dointvec_minmax,
132 .extra1 = (void *)&one,
David Howellsee6fe082016-03-04 15:55:32 +0000133 .extra2 = (void *)&n_65535,
David Howells817913d2014-02-07 18:10:30 +0000134 },
135 {
136 .procname = "rx_jumbo_max",
137 .data = &rxrpc_rx_jumbo_max,
David Howellsdad8aff2016-03-09 23:22:56 +0000138 .maxlen = sizeof(unsigned int),
David Howells817913d2014-02-07 18:10:30 +0000139 .mode = 0644,
140 .proc_handler = proc_dointvec_minmax,
141 .extra1 = (void *)&one,
142 .extra2 = (void *)&four,
143 },
144
David Howells5873c082014-02-07 18:58:44 +0000145 { }
146};
147
148int __init rxrpc_sysctl_init(void)
149{
150 rxrpc_sysctl_reg_table = register_net_sysctl(&init_net, "net/rxrpc",
151 rxrpc_sysctl_table);
152 if (!rxrpc_sysctl_reg_table)
153 return -ENOMEM;
154 return 0;
155}
156
157void rxrpc_sysctl_exit(void)
158{
159 if (rxrpc_sysctl_reg_table)
160 unregister_net_sysctl_table(rxrpc_sysctl_reg_table);
161}