Blame view

net/rds/info.c 6.42 KB
a8c879a7e   Andy Grover   RDS: Info and stats
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  /*
   * Copyright (c) 2006 Oracle.  All rights reserved.
   *
   * This software is available to you under a choice of one of two
   * licenses.  You may choose to be licensed under the terms of the GNU
   * General Public License (GPL) Version 2, available from the file
   * COPYING in the main directory of this source tree, or the
   * OpenIB.org BSD license below:
   *
   *     Redistribution and use in source and binary forms, with or
   *     without modification, are permitted provided that the following
   *     conditions are met:
   *
   *      - Redistributions of source code must retain the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer.
   *
   *      - Redistributions in binary form must reproduce the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer in the documentation and/or other materials
   *        provided with the distribution.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
   * SOFTWARE.
   *
   */
  #include <linux/percpu.h>
  #include <linux/seq_file.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
35
  #include <linux/slab.h>
a8c879a7e   Andy Grover   RDS: Info and stats
36
  #include <linux/proc_fs.h>
bc3b2d7fb   Paul Gortmaker   net: Add export.h...
37
  #include <linux/export.h>
a8c879a7e   Andy Grover   RDS: Info and stats
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  
  #include "rds.h"
  
  /*
   * This file implements a getsockopt() call which copies a set of fixed
   * sized structs into a user-specified buffer as a means of providing
   * read-only information about RDS.
   *
   * For a given information source there are a given number of fixed sized
   * structs at a given time.  The structs are only copied if the user-specified
   * buffer is big enough.  The destination pages that make up the buffer
   * are pinned for the duration of the copy.
   *
   * This gives us the following benefits:
   *
   * - simple implementation, no copy "position" across multiple calls
   * - consistent snapshot of an info source
   * - atomic copy works well with whatever locking info source has
   * - one portable tool to get rds info across implementations
   * - long-lived tool can get info without allocating
   *
   * at the following costs:
   *
   * - info source copy must be pinned, may be "large"
   */
  
  struct rds_info_iterator {
  	struct page **pages;
  	void *addr;
  	unsigned long offset;
  };
  
  static DEFINE_SPINLOCK(rds_info_lock);
  static rds_info_func rds_info_funcs[RDS_INFO_LAST - RDS_INFO_FIRST + 1];
  
  void rds_info_register_func(int optname, rds_info_func func)
  {
  	int offset = optname - RDS_INFO_FIRST;
  
  	BUG_ON(optname < RDS_INFO_FIRST || optname > RDS_INFO_LAST);
  
  	spin_lock(&rds_info_lock);
8690bfa17   Andy Grover   RDS: cleanup: rem...
80
  	BUG_ON(rds_info_funcs[offset]);
a8c879a7e   Andy Grover   RDS: Info and stats
81
82
83
  	rds_info_funcs[offset] = func;
  	spin_unlock(&rds_info_lock);
  }
616b757ae   Andy Grover   RDS: Export symbo...
84
  EXPORT_SYMBOL_GPL(rds_info_register_func);
a8c879a7e   Andy Grover   RDS: Info and stats
85
86
87
88
89
90
91
92
93
94
95
96
  
  void rds_info_deregister_func(int optname, rds_info_func func)
  {
  	int offset = optname - RDS_INFO_FIRST;
  
  	BUG_ON(optname < RDS_INFO_FIRST || optname > RDS_INFO_LAST);
  
  	spin_lock(&rds_info_lock);
  	BUG_ON(rds_info_funcs[offset] != func);
  	rds_info_funcs[offset] = NULL;
  	spin_unlock(&rds_info_lock);
  }
616b757ae   Andy Grover   RDS: Export symbo...
97
  EXPORT_SYMBOL_GPL(rds_info_deregister_func);
a8c879a7e   Andy Grover   RDS: Info and stats
98
99
100
101
102
103
104
105
  
  /*
   * Typically we hold an atomic kmap across multiple rds_info_copy() calls
   * because the kmap is so expensive.  This must be called before using blocking
   * operations while holding the mapping and as the iterator is torn down.
   */
  void rds_info_iter_unmap(struct rds_info_iterator *iter)
  {
8690bfa17   Andy Grover   RDS: cleanup: rem...
106
  	if (iter->addr) {
6114eab53   Cong Wang   rds: remove the s...
107
  		kunmap_atomic(iter->addr);
a8c879a7e   Andy Grover   RDS: Info and stats
108
109
110
111
112
113
114
115
116
117
118
119
120
  		iter->addr = NULL;
  	}
  }
  
  /*
   * get_user_pages() called flush_dcache_page() on the pages for us.
   */
  void rds_info_copy(struct rds_info_iterator *iter, void *data,
  		   unsigned long bytes)
  {
  	unsigned long this;
  
  	while (bytes) {
8690bfa17   Andy Grover   RDS: cleanup: rem...
121
  		if (!iter->addr)
6114eab53   Cong Wang   rds: remove the s...
122
  			iter->addr = kmap_atomic(*iter->pages);
a8c879a7e   Andy Grover   RDS: Info and stats
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
  
  		this = min(bytes, PAGE_SIZE - iter->offset);
  
  		rdsdebug("page %p addr %p offset %lu this %lu data %p "
  			  "bytes %lu
  ", *iter->pages, iter->addr,
  			  iter->offset, this, data, bytes);
  
  		memcpy(iter->addr + iter->offset, data, this);
  
  		data += this;
  		bytes -= this;
  		iter->offset += this;
  
  		if (iter->offset == PAGE_SIZE) {
6114eab53   Cong Wang   rds: remove the s...
138
  			kunmap_atomic(iter->addr);
a8c879a7e   Andy Grover   RDS: Info and stats
139
140
141
142
143
144
  			iter->addr = NULL;
  			iter->offset = 0;
  			iter->pages++;
  		}
  	}
  }
616b757ae   Andy Grover   RDS: Export symbo...
145
  EXPORT_SYMBOL_GPL(rds_info_copy);
a8c879a7e   Andy Grover   RDS: Info and stats
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  
  /*
   * @optval points to the userspace buffer that the information snapshot
   * will be copied into.
   *
   * @optlen on input is the size of the buffer in userspace.  @optlen
   * on output is the size of the requested snapshot in bytes.
   *
   * This function returns -errno if there is a failure, particularly -ENOSPC
   * if the given userspace buffer was not large enough to fit the snapshot.
   * On success it returns the positive number of bytes of each array element
   * in the snapshot.
   */
  int rds_info_getsockopt(struct socket *sock, int optname, char __user *optval,
  			int __user *optlen)
  {
  	struct rds_info_iterator iter;
  	struct rds_info_lengths lens;
  	unsigned long nr_pages = 0;
  	unsigned long start;
  	unsigned long i;
  	rds_info_func func;
  	struct page **pages = NULL;
  	int ret;
  	int len;
  	int total;
  
  	if (get_user(len, optlen)) {
  		ret = -EFAULT;
  		goto out;
  	}
  
  	/* check for all kinds of wrapping and the like */
  	start = (unsigned long)optval;
468b732b6   Dan Carpenter   rds: fix an integ...
180
  	if (len < 0 || len > INT_MAX - PAGE_SIZE + 1 || start + len < start) {
a8c879a7e   Andy Grover   RDS: Info and stats
181
182
183
184
185
186
187
188
189
190
191
192
  		ret = -EINVAL;
  		goto out;
  	}
  
  	/* a 0 len call is just trying to probe its length */
  	if (len == 0)
  		goto call_func;
  
  	nr_pages = (PAGE_ALIGN(start + len) - (start & PAGE_MASK))
  			>> PAGE_SHIFT;
  
  	pages = kmalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);
8690bfa17   Andy Grover   RDS: cleanup: rem...
193
  	if (!pages) {
a8c879a7e   Andy Grover   RDS: Info and stats
194
195
196
  		ret = -ENOMEM;
  		goto out;
  	}
830eb7d56   Andy Grover   RDS: use get_user...
197
  	ret = get_user_pages_fast(start, nr_pages, 1, pages);
a8c879a7e   Andy Grover   RDS: Info and stats
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  	if (ret != nr_pages) {
  		if (ret > 0)
  			nr_pages = ret;
  		else
  			nr_pages = 0;
  		ret = -EAGAIN; /* XXX ? */
  		goto out;
  	}
  
  	rdsdebug("len %d nr_pages %lu
  ", len, nr_pages);
  
  call_func:
  	func = rds_info_funcs[optname - RDS_INFO_FIRST];
8690bfa17   Andy Grover   RDS: cleanup: rem...
212
  	if (!func) {
a8c879a7e   Andy Grover   RDS: Info and stats
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
  		ret = -ENOPROTOOPT;
  		goto out;
  	}
  
  	iter.pages = pages;
  	iter.addr = NULL;
  	iter.offset = start & (PAGE_SIZE - 1);
  
  	func(sock, len, &iter, &lens);
  	BUG_ON(lens.each == 0);
  
  	total = lens.nr * lens.each;
  
  	rds_info_iter_unmap(&iter);
  
  	if (total > len) {
  		len = total;
  		ret = -ENOSPC;
  	} else {
  		len = total;
  		ret = lens.each;
  	}
  
  	if (put_user(len, optlen))
  		ret = -EFAULT;
  
  out:
8690bfa17   Andy Grover   RDS: cleanup: rem...
240
  	for (i = 0; pages && i < nr_pages; i++)
a8c879a7e   Andy Grover   RDS: Info and stats
241
242
243
244
245
  		put_page(pages[i]);
  	kfree(pages);
  
  	return ret;
  }