blob: 0d0bf41381c22abd3ab1947b20987cba56ab848a [file] [log] [blame]
Thomas Gleixner2b27bdc2019-05-29 16:57:50 -07001// SPDX-License-Identifier: GPL-2.0-only
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -07002/*
3 * File: sysctl.c
4 *
5 * Phonet /proc/sys/net/phonet interface implementation
6 *
7 * Copyright (C) 2008 Nokia Corporation.
8 *
Rémi Denis-Courmont31fdc552012-06-13 22:29:03 +00009 * Author: Rémi Denis-Courmont
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070010 */
11
12#include <linux/seqlock.h>
13#include <linux/sysctl.h>
14#include <linux/errno.h>
15#include <linux/init.h>
16
Rémi Denis-Courmont8e052e52012-04-12 03:39:17 +000017#include <net/sock.h>
18#include <linux/phonet.h>
19#include <net/phonet/phonet.h>
20
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070021#define DYNAMIC_PORT_MIN 0x40
22#define DYNAMIC_PORT_MAX 0x7f
23
24static DEFINE_SEQLOCK(local_port_range_lock);
25static int local_port_range_min[2] = {0, 0};
26static int local_port_range_max[2] = {1023, 1023};
27static int local_port_range[2] = {DYNAMIC_PORT_MIN, DYNAMIC_PORT_MAX};
28static struct ctl_table_header *phonet_table_hrd;
29
30static void set_local_port_range(int range[2])
31{
32 write_seqlock(&local_port_range_lock);
33 local_port_range[0] = range[0];
34 local_port_range[1] = range[1];
35 write_sequnlock(&local_port_range_lock);
36}
37
38void phonet_get_local_port_range(int *min, int *max)
39{
Eric Dumazet95c96172012-04-15 05:58:06 +000040 unsigned int seq;
41
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070042 do {
43 seq = read_seqbegin(&local_port_range_lock);
44 if (min)
45 *min = local_port_range[0];
46 if (max)
47 *max = local_port_range[1];
48 } while (read_seqretry(&local_port_range_lock, seq));
49}
50
Joe Perchesfe2c6332013-06-11 23:04:25 -070051static int proc_local_port_range(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +020052 void *buffer, size_t *lenp, loff_t *ppos)
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070053{
54 int ret;
55 int range[2] = {local_port_range[0], local_port_range[1]};
Joe Perchesfe2c6332013-06-11 23:04:25 -070056 struct ctl_table tmp = {
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070057 .data = &range,
58 .maxlen = sizeof(range),
59 .mode = table->mode,
60 .extra1 = &local_port_range_min,
61 .extra2 = &local_port_range_max,
62 };
63
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070064 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos);
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070065
66 if (write && ret == 0) {
67 if (range[1] < range[0])
68 ret = -EINVAL;
69 else
70 set_local_port_range(range);
71 }
72
73 return ret;
74}
75
76static struct ctl_table phonet_table[] = {
77 {
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070078 .procname = "local_port_range",
79 .data = &local_port_range,
80 .maxlen = sizeof(local_port_range),
81 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -080082 .proc_handler = proc_local_port_range,
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070083 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -080084 { }
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070085};
86
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070087int __init phonet_sysctl_init(void)
88{
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +000089 phonet_table_hrd = register_net_sysctl(&init_net, "net/phonet", phonet_table);
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070090 return phonet_table_hrd == NULL ? -ENOMEM : 0;
91}
92
93void phonet_sysctl_exit(void)
94{
Eric W. Biederman5dd3df12012-04-19 13:24:33 +000095 unregister_net_sysctl_table(phonet_table_hrd);
Remi Denis-Courmont87ab4e22008-09-22 20:08:39 -070096}