blob: 2379c1b4efb24505dd9b62316912cdfcdd371001 [file] [log] [blame]
Glauber Costad1a4c0b2011-12-11 21:47:04 +00001#include <net/tcp.h>
2#include <net/tcp_memcontrol.h>
3#include <net/sock.h>
Glauber Costa3dc43e32011-12-11 21:47:05 +00004#include <net/ip.h>
5#include <linux/nsproxy.h>
Glauber Costad1a4c0b2011-12-11 21:47:04 +00006#include <linux/memcontrol.h>
7#include <linux/module.h>
8
Glauber Costa1d62e432012-04-09 19:36:33 -03009int tcp_init_cgroup(struct mem_cgroup *memcg, struct cgroup_subsys *ss)
Glauber Costad1a4c0b2011-12-11 21:47:04 +000010{
11 /*
Johannes Weiner3e32cb22014-12-10 15:42:31 -080012 * The root cgroup does not use page_counters, but rather,
Glauber Costad1a4c0b2011-12-11 21:47:04 +000013 * rely on the data already collected by the network
14 * subsystem
15 */
Glauber Costad1a4c0b2011-12-11 21:47:04 +000016 struct mem_cgroup *parent = parent_mem_cgroup(memcg);
Johannes Weiner3e32cb22014-12-10 15:42:31 -080017 struct page_counter *counter_parent = NULL;
18 struct cg_proto *cg_proto, *parent_cg;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000019
20 cg_proto = tcp_prot.proto_cgroup(memcg);
21 if (!cg_proto)
Tejun Heo6bc10342012-04-01 12:09:55 -070022 return 0;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000023
Eric W. Biederman2e685ca2013-10-19 16:26:19 -070024 cg_proto->sysctl_mem[0] = sysctl_tcp_mem[0];
25 cg_proto->sysctl_mem[1] = sysctl_tcp_mem[1];
26 cg_proto->sysctl_mem[2] = sysctl_tcp_mem[2];
27 cg_proto->memory_pressure = 0;
28 cg_proto->memcg = memcg;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000029
30 parent_cg = tcp_prot.proto_cgroup(parent);
31 if (parent_cg)
Johannes Weiner3e32cb22014-12-10 15:42:31 -080032 counter_parent = &parent_cg->memory_allocated;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000033
Johannes Weiner3e32cb22014-12-10 15:42:31 -080034 page_counter_init(&cg_proto->memory_allocated, counter_parent);
Tejun Heo908c7f12014-09-08 09:51:29 +090035 percpu_counter_init(&cg_proto->sockets_allocated, 0, GFP_KERNEL);
Glauber Costad1a4c0b2011-12-11 21:47:04 +000036
Tejun Heo6bc10342012-04-01 12:09:55 -070037 return 0;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000038}
39EXPORT_SYMBOL(tcp_init_cgroup);
40
Glauber Costa1d62e432012-04-09 19:36:33 -030041void tcp_destroy_cgroup(struct mem_cgroup *memcg)
Glauber Costad1a4c0b2011-12-11 21:47:04 +000042{
Glauber Costad1a4c0b2011-12-11 21:47:04 +000043 struct cg_proto *cg_proto;
Glauber Costad1a4c0b2011-12-11 21:47:04 +000044
45 cg_proto = tcp_prot.proto_cgroup(memcg);
46 if (!cg_proto)
47 return;
48
Eric W. Biederman2e685ca2013-10-19 16:26:19 -070049 percpu_counter_destroy(&cg_proto->sockets_allocated);
Vladimir Davydovf48b80a2015-02-12 14:59:56 -080050
51 if (test_bit(MEMCG_SOCK_ACTIVATED, &cg_proto->flags))
52 static_key_slow_dec(&memcg_socket_limit_enabled);
53
Glauber Costad1a4c0b2011-12-11 21:47:04 +000054}
55EXPORT_SYMBOL(tcp_destroy_cgroup);
Glauber Costa3aaabe22011-12-11 21:47:06 +000056
Johannes Weiner3e32cb22014-12-10 15:42:31 -080057static int tcp_update_limit(struct mem_cgroup *memcg, unsigned long nr_pages)
Glauber Costa3aaabe22011-12-11 21:47:06 +000058{
Glauber Costa3aaabe22011-12-11 21:47:06 +000059 struct cg_proto *cg_proto;
Glauber Costa3aaabe22011-12-11 21:47:06 +000060 int i;
61 int ret;
62
63 cg_proto = tcp_prot.proto_cgroup(memcg);
64 if (!cg_proto)
65 return -EINVAL;
66
Johannes Weiner3e32cb22014-12-10 15:42:31 -080067 ret = page_counter_limit(&cg_proto->memory_allocated, nr_pages);
Glauber Costa3aaabe22011-12-11 21:47:06 +000068 if (ret)
69 return ret;
70
71 for (i = 0; i < 3; i++)
Johannes Weiner3e32cb22014-12-10 15:42:31 -080072 cg_proto->sysctl_mem[i] = min_t(long, nr_pages,
Eric W. Biederman2e685ca2013-10-19 16:26:19 -070073 sysctl_tcp_mem[i]);
Glauber Costa3aaabe22011-12-11 21:47:06 +000074
Johannes Weiner3e32cb22014-12-10 15:42:31 -080075 if (nr_pages == PAGE_COUNTER_MAX)
Glauber Costa3f134612012-05-29 15:07:11 -070076 clear_bit(MEMCG_SOCK_ACTIVE, &cg_proto->flags);
Johannes Weiner3e32cb22014-12-10 15:42:31 -080077 else {
Glauber Costa3f134612012-05-29 15:07:11 -070078 /*
79 * The active bit needs to be written after the static_key
80 * update. This is what guarantees that the socket activation
81 * function is the last one to run. See sock_update_memcg() for
82 * details, and note that we don't mark any socket as belonging
83 * to this memcg until that flag is up.
84 *
85 * We need to do this, because static_keys will span multiple
86 * sites, but we can't control their order. If we mark a socket
87 * as accounted, but the accounting functions are not patched in
88 * yet, we'll lose accounting.
89 *
90 * We never race with the readers in sock_update_memcg(),
91 * because when this value change, the code to process it is not
92 * patched in yet.
93 *
94 * The activated bit is used to guarantee that no two writers
95 * will do the update in the same memcg. Without that, we can't
96 * properly shutdown the static key.
97 */
98 if (!test_and_set_bit(MEMCG_SOCK_ACTIVATED, &cg_proto->flags))
99 static_key_slow_inc(&memcg_socket_limit_enabled);
100 set_bit(MEMCG_SOCK_ACTIVE, &cg_proto->flags);
101 }
Glauber Costa3aaabe22011-12-11 21:47:06 +0000102
103 return 0;
104}
105
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800106enum {
107 RES_USAGE,
108 RES_LIMIT,
109 RES_MAX_USAGE,
110 RES_FAILCNT,
111};
112
113static DEFINE_MUTEX(tcp_limit_mutex);
114
Tejun Heo451af502014-05-13 12:16:21 -0400115static ssize_t tcp_cgroup_write(struct kernfs_open_file *of,
116 char *buf, size_t nbytes, loff_t off)
Glauber Costa3aaabe22011-12-11 21:47:06 +0000117{
Tejun Heo451af502014-05-13 12:16:21 -0400118 struct mem_cgroup *memcg = mem_cgroup_from_css(of_css(of));
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800119 unsigned long nr_pages;
Glauber Costa3aaabe22011-12-11 21:47:06 +0000120 int ret = 0;
121
Tejun Heo451af502014-05-13 12:16:21 -0400122 buf = strstrip(buf);
123
124 switch (of_cft(of)->private) {
Glauber Costa3aaabe22011-12-11 21:47:06 +0000125 case RES_LIMIT:
126 /* see memcontrol.c */
Johannes Weiner650c5e52015-02-11 15:26:03 -0800127 ret = page_counter_memparse(buf, "-1", &nr_pages);
Glauber Costa3aaabe22011-12-11 21:47:06 +0000128 if (ret)
129 break;
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800130 mutex_lock(&tcp_limit_mutex);
131 ret = tcp_update_limit(memcg, nr_pages);
132 mutex_unlock(&tcp_limit_mutex);
Glauber Costa3aaabe22011-12-11 21:47:06 +0000133 break;
134 default:
135 ret = -EINVAL;
136 break;
137 }
Tejun Heo451af502014-05-13 12:16:21 -0400138 return ret ?: nbytes;
Glauber Costa3aaabe22011-12-11 21:47:06 +0000139}
140
Tejun Heo182446d2013-08-08 20:11:24 -0400141static u64 tcp_cgroup_read(struct cgroup_subsys_state *css, struct cftype *cft)
Glauber Costa3aaabe22011-12-11 21:47:06 +0000142{
Tejun Heo182446d2013-08-08 20:11:24 -0400143 struct mem_cgroup *memcg = mem_cgroup_from_css(css);
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800144 struct cg_proto *cg_proto = tcp_prot.proto_cgroup(memcg);
Glauber Costa3aaabe22011-12-11 21:47:06 +0000145 u64 val;
146
147 switch (cft->private) {
148 case RES_LIMIT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800149 if (!cg_proto)
150 return PAGE_COUNTER_MAX;
151 val = cg_proto->memory_allocated.limit;
152 val *= PAGE_SIZE;
Glauber Costa3aaabe22011-12-11 21:47:06 +0000153 break;
Glauber Costa5a6dd342011-12-11 21:47:07 +0000154 case RES_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800155 if (!cg_proto)
156 val = atomic_long_read(&tcp_memory_allocated);
157 else
158 val = page_counter_read(&cg_proto->memory_allocated);
159 val *= PAGE_SIZE;
Glauber Costa5a6dd342011-12-11 21:47:07 +0000160 break;
Glauber Costaffea59e2011-12-11 21:47:08 +0000161 case RES_FAILCNT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800162 if (!cg_proto)
163 return 0;
164 val = cg_proto->memory_allocated.failcnt;
165 break;
Glauber Costa0850f0f2011-12-11 21:47:09 +0000166 case RES_MAX_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800167 if (!cg_proto)
168 return 0;
169 val = cg_proto->memory_allocated.watermark;
170 val *= PAGE_SIZE;
Glauber Costaffea59e2011-12-11 21:47:08 +0000171 break;
Glauber Costa3aaabe22011-12-11 21:47:06 +0000172 default:
173 BUG();
174 }
175 return val;
176}
177
Tejun Heo6770c642014-05-13 12:16:21 -0400178static ssize_t tcp_cgroup_reset(struct kernfs_open_file *of,
179 char *buf, size_t nbytes, loff_t off)
Glauber Costaffea59e2011-12-11 21:47:08 +0000180{
181 struct mem_cgroup *memcg;
Glauber Costaffea59e2011-12-11 21:47:08 +0000182 struct cg_proto *cg_proto;
183
Tejun Heo6770c642014-05-13 12:16:21 -0400184 memcg = mem_cgroup_from_css(of_css(of));
Glauber Costaffea59e2011-12-11 21:47:08 +0000185 cg_proto = tcp_prot.proto_cgroup(memcg);
186 if (!cg_proto)
Tejun Heo6770c642014-05-13 12:16:21 -0400187 return nbytes;
Glauber Costaffea59e2011-12-11 21:47:08 +0000188
Tejun Heo6770c642014-05-13 12:16:21 -0400189 switch (of_cft(of)->private) {
Glauber Costa0850f0f2011-12-11 21:47:09 +0000190 case RES_MAX_USAGE:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800191 page_counter_reset_watermark(&cg_proto->memory_allocated);
Glauber Costa0850f0f2011-12-11 21:47:09 +0000192 break;
Glauber Costaffea59e2011-12-11 21:47:08 +0000193 case RES_FAILCNT:
Johannes Weiner3e32cb22014-12-10 15:42:31 -0800194 cg_proto->memory_allocated.failcnt = 0;
Glauber Costaffea59e2011-12-11 21:47:08 +0000195 break;
196 }
197
Tejun Heo6770c642014-05-13 12:16:21 -0400198 return nbytes;
Glauber Costaffea59e2011-12-11 21:47:08 +0000199}
200
Tejun Heo676f7c82012-04-01 12:09:55 -0700201static struct cftype tcp_files[] = {
202 {
203 .name = "kmem.tcp.limit_in_bytes",
Tejun Heo451af502014-05-13 12:16:21 -0400204 .write = tcp_cgroup_write,
Tejun Heo676f7c82012-04-01 12:09:55 -0700205 .read_u64 = tcp_cgroup_read,
206 .private = RES_LIMIT,
207 },
208 {
209 .name = "kmem.tcp.usage_in_bytes",
210 .read_u64 = tcp_cgroup_read,
211 .private = RES_USAGE,
212 },
213 {
214 .name = "kmem.tcp.failcnt",
215 .private = RES_FAILCNT,
Tejun Heo6770c642014-05-13 12:16:21 -0400216 .write = tcp_cgroup_reset,
Tejun Heo676f7c82012-04-01 12:09:55 -0700217 .read_u64 = tcp_cgroup_read,
218 },
219 {
220 .name = "kmem.tcp.max_usage_in_bytes",
221 .private = RES_MAX_USAGE,
Tejun Heo6770c642014-05-13 12:16:21 -0400222 .write = tcp_cgroup_reset,
Tejun Heo676f7c82012-04-01 12:09:55 -0700223 .read_u64 = tcp_cgroup_read,
224 },
Tejun Heo6bc10342012-04-01 12:09:55 -0700225 { } /* terminate */
Tejun Heo676f7c82012-04-01 12:09:55 -0700226};
Tejun Heo6bc10342012-04-01 12:09:55 -0700227
228static int __init tcp_memcontrol_init(void)
229{
Tejun Heo2cf669a2014-07-15 11:05:09 -0400230 WARN_ON(cgroup_add_legacy_cftypes(&memory_cgrp_subsys, tcp_files));
Tejun Heo6bc10342012-04-01 12:09:55 -0700231 return 0;
232}
233__initcall(tcp_memcontrol_init);