blob: a99690a8a3dad4e41e24295eac09deeb849ad02a [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 },
65
66 /* Values measured in seconds but used in jiffies */
67 {
68 .procname = "max_call_lifetime",
69 .data = &rxrpc_max_call_lifetime,
David Howellsdad8aff2016-03-09 23:22:56 +000070 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000071 .mode = 0644,
72 .proc_handler = proc_dointvec_jiffies,
73 .extra1 = (void *)&one,
74 },
75 {
76 .procname = "dead_call_expiry",
77 .data = &rxrpc_dead_call_expiry,
David Howellsdad8aff2016-03-09 23:22:56 +000078 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000079 .mode = 0644,
80 .proc_handler = proc_dointvec_jiffies,
81 .extra1 = (void *)&one,
82 },
83
84 /* Values measured in seconds */
85 {
86 .procname = "connection_expiry",
87 .data = &rxrpc_connection_expiry,
David Howellsdad8aff2016-03-09 23:22:56 +000088 .maxlen = sizeof(unsigned int),
David Howells5873c082014-02-07 18:58:44 +000089 .mode = 0644,
90 .proc_handler = proc_dointvec_minmax,
91 .extra1 = (void *)&one,
92 },
93 {
94 .procname = "transport_expiry",
95 .data = &rxrpc_transport_expiry,
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,
99 .extra1 = (void *)&one,
100 },
David Howells817913d2014-02-07 18:10:30 +0000101
102 /* Non-time values */
103 {
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}