blob: 56410faa4550ee65d521aad623e0f52d5a522368 [file] [log] [blame]
Eric W. Biedermana5494dc2007-02-14 00:34:06 -08001/*
2 * Copyright (C) 2007
3 *
4 * Author: Eric Biederman <ebiederm@xmision.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 License as
8 * published by the Free Software Foundation, version 2 of the
9 * License.
10 */
11
12#include <linux/module.h>
13#include <linux/ipc.h>
14#include <linux/nsproxy.h>
15#include <linux/sysctl.h>
16#include <linux/uaccess.h>
Pavel Emelyanovae5e1b22008-02-08 04:18:22 -080017#include <linux/ipc_namespace.h>
Nadia Derbey6546bc42008-04-29 01:00:45 -070018#include <linux/msg.h>
19#include "util.h"
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080020
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080021static void *get_ipc(ctl_table *table)
22{
23 char *which = table->data;
24 struct ipc_namespace *ipc_ns = current->nsproxy->ipc_ns;
25 which = (which - (char *)&init_ipc_ns) + (char *)ipc_ns;
26 return which;
27}
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080028
Serge E. Hallyn11dea192009-04-02 16:58:27 -070029#ifdef CONFIG_PROC_SYSCTL
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070030static int proc_ipc_dointvec(ctl_table *table, int write,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080031 void __user *buffer, size_t *lenp, loff_t *ppos)
32{
33 struct ctl_table ipc_table;
34 memcpy(&ipc_table, table, sizeof(ipc_table));
35 ipc_table.data = get_ipc(table);
36
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070037 return proc_dointvec(&ipc_table, write, buffer, lenp, ppos);
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080038}
39
Nadia Derbey91cfb2b2008-04-29 01:00:44 -070040static int proc_ipc_callback_dointvec(ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070041 void __user *buffer, size_t *lenp, loff_t *ppos)
Nadia Derbey91cfb2b2008-04-29 01:00:44 -070042{
Nadia Derbey6546bc42008-04-29 01:00:45 -070043 struct ctl_table ipc_table;
Nadia Derbey91cfb2b2008-04-29 01:00:44 -070044 size_t lenp_bef = *lenp;
45 int rc;
46
Nadia Derbey6546bc42008-04-29 01:00:45 -070047 memcpy(&ipc_table, table, sizeof(ipc_table));
48 ipc_table.data = get_ipc(table);
49
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070050 rc = proc_dointvec(&ipc_table, write, buffer, lenp, ppos);
Nadia Derbey91cfb2b2008-04-29 01:00:44 -070051
52 if (write && !rc && lenp_bef == *lenp)
Nadia Derbey9eefe522008-07-25 01:48:08 -070053 /*
54 * Tunable has successfully been changed by hand. Disable its
55 * automatic adjustment. This simply requires unregistering
56 * the notifiers that trigger recalculation.
57 */
58 unregister_ipcns_notifier(current->nsproxy->ipc_ns);
Nadia Derbey91cfb2b2008-04-29 01:00:44 -070059
60 return rc;
61}
62
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080063static int proc_ipc_doulongvec_minmax(ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070064 void __user *buffer, size_t *lenp, loff_t *ppos)
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080065{
66 struct ctl_table ipc_table;
67 memcpy(&ipc_table, table, sizeof(ipc_table));
68 ipc_table.data = get_ipc(table);
69
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070070 return proc_doulongvec_minmax(&ipc_table, write, buffer,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -080071 lenp, ppos);
72}
73
akpm@linux-foundation.org4c2c3b42009-01-06 14:42:51 -080074/*
75 * Routine that is called when the file "auto_msgmni" has successfully been
76 * written.
77 * Two values are allowed:
78 * 0: unregister msgmni's callback routine from the ipc namespace notifier
79 * chain. This means that msgmni won't be recomputed anymore upon memory
80 * add/remove or ipc namespace creation/removal.
81 * 1: register back the callback routine.
82 */
83static void ipc_auto_callback(int val)
84{
85 if (!val)
86 unregister_ipcns_notifier(current->nsproxy->ipc_ns);
87 else {
88 /*
89 * Re-enable automatic recomputing only if not already
90 * enabled.
91 */
92 recompute_msgmni(current->nsproxy->ipc_ns);
93 cond_register_ipcns_notifier(current->nsproxy->ipc_ns);
94 }
95}
96
Nadia Derbey9eefe522008-07-25 01:48:08 -070097static int proc_ipcauto_dointvec_minmax(ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070098 void __user *buffer, size_t *lenp, loff_t *ppos)
Nadia Derbey9eefe522008-07-25 01:48:08 -070099{
100 struct ctl_table ipc_table;
101 size_t lenp_bef = *lenp;
102 int oldval;
103 int rc;
104
105 memcpy(&ipc_table, table, sizeof(ipc_table));
106 ipc_table.data = get_ipc(table);
107 oldval = *((int *)(ipc_table.data));
108
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700109 rc = proc_dointvec_minmax(&ipc_table, write, buffer, lenp, ppos);
Nadia Derbey9eefe522008-07-25 01:48:08 -0700110
111 if (write && !rc && lenp_bef == *lenp) {
112 int newval = *((int *)(ipc_table.data));
113 /*
114 * The file "auto_msgmni" has correctly been set.
115 * React by (un)registering the corresponding tunable, if the
116 * value has changed.
117 */
118 if (newval != oldval)
119 ipc_auto_callback(newval);
120 }
121
122 return rc;
123}
124
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800125#else
126#define proc_ipc_doulongvec_minmax NULL
127#define proc_ipc_dointvec NULL
Nadia Derbey91cfb2b2008-04-29 01:00:44 -0700128#define proc_ipc_callback_dointvec NULL
Nadia Derbey9eefe522008-07-25 01:48:08 -0700129#define proc_ipcauto_dointvec_minmax NULL
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800130#endif
131
Nadia Derbey9eefe522008-07-25 01:48:08 -0700132static int zero;
133static int one = 1;
134
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800135static struct ctl_table ipc_kern_table[] = {
136 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800137 .procname = "shmmax",
138 .data = &init_ipc_ns.shm_ctlmax,
139 .maxlen = sizeof (init_ipc_ns.shm_ctlmax),
140 .mode = 0644,
141 .proc_handler = proc_ipc_doulongvec_minmax,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800142 },
143 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800144 .procname = "shmall",
145 .data = &init_ipc_ns.shm_ctlall,
146 .maxlen = sizeof (init_ipc_ns.shm_ctlall),
147 .mode = 0644,
148 .proc_handler = proc_ipc_doulongvec_minmax,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800149 },
150 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800151 .procname = "shmmni",
152 .data = &init_ipc_ns.shm_ctlmni,
153 .maxlen = sizeof (init_ipc_ns.shm_ctlmni),
154 .mode = 0644,
155 .proc_handler = proc_ipc_dointvec,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800156 },
157 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800158 .procname = "msgmax",
159 .data = &init_ipc_ns.msg_ctlmax,
160 .maxlen = sizeof (init_ipc_ns.msg_ctlmax),
161 .mode = 0644,
162 .proc_handler = proc_ipc_dointvec,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800163 },
164 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800165 .procname = "msgmni",
166 .data = &init_ipc_ns.msg_ctlmni,
167 .maxlen = sizeof (init_ipc_ns.msg_ctlmni),
168 .mode = 0644,
Nadia Derbey91cfb2b2008-04-29 01:00:44 -0700169 .proc_handler = proc_ipc_callback_dointvec,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800170 },
171 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800172 .procname = "msgmnb",
173 .data = &init_ipc_ns.msg_ctlmnb,
174 .maxlen = sizeof (init_ipc_ns.msg_ctlmnb),
175 .mode = 0644,
176 .proc_handler = proc_ipc_dointvec,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800177 },
178 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800179 .procname = "sem",
180 .data = &init_ipc_ns.sem_ctls,
181 .maxlen = 4*sizeof (int),
182 .mode = 0644,
183 .proc_handler = proc_ipc_dointvec,
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800184 },
Nadia Derbey9eefe522008-07-25 01:48:08 -0700185 {
Nadia Derbey9eefe522008-07-25 01:48:08 -0700186 .procname = "auto_msgmni",
187 .data = &init_ipc_ns.auto_msgmni,
188 .maxlen = sizeof(int),
189 .mode = 0644,
190 .proc_handler = proc_ipcauto_dointvec_minmax,
191 .extra1 = &zero,
192 .extra2 = &one,
193 },
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800194 {}
195};
196
197static struct ctl_table ipc_root_table[] = {
198 {
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800199 .procname = "kernel",
200 .mode = 0555,
201 .child = ipc_kern_table,
202 },
203 {}
204};
205
206static int __init ipc_sysctl_init(void)
207{
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800208 register_sysctl_table(ipc_root_table);
Eric W. Biedermana5494dc2007-02-14 00:34:06 -0800209 return 0;
210}
211
212__initcall(ipc_sysctl_init);