blob: a27e493a63a227e9d2c518f8bbcc7b33ffdef0d9 [file] [log] [blame]
Andy Grover7875e182009-02-24 15:30:26 +00001/*
2 * Copyright (c) 2006 Oracle. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Andy Grover7875e182009-02-24 15:30:26 +000035
36#include "rds.h"
Andy Grover7875e182009-02-24 15:30:26 +000037
38static DECLARE_WAIT_QUEUE_HEAD(rds_message_flush_waitq);
39
40static unsigned int rds_exthdr_size[__RDS_EXTHDR_MAX] = {
41[RDS_EXTHDR_NONE] = 0,
42[RDS_EXTHDR_VERSION] = sizeof(struct rds_ext_header_version),
43[RDS_EXTHDR_RDMA] = sizeof(struct rds_ext_header_rdma),
44[RDS_EXTHDR_RDMA_DEST] = sizeof(struct rds_ext_header_rdma_dest),
45};
46
47
48void rds_message_addref(struct rds_message *rm)
49{
50 rdsdebug("addref rm %p ref %d\n", rm, atomic_read(&rm->m_refcount));
51 atomic_inc(&rm->m_refcount);
52}
Andy Grover616b7572009-08-21 12:28:32 +000053EXPORT_SYMBOL_GPL(rds_message_addref);
Andy Grover7875e182009-02-24 15:30:26 +000054
55/*
56 * This relies on dma_map_sg() not touching sg[].page during merging.
57 */
58static void rds_message_purge(struct rds_message *rm)
59{
60 unsigned long i;
61
62 if (unlikely(test_bit(RDS_MSG_PAGEVEC, &rm->m_flags)))
63 return;
64
Andy Grovere7791372010-01-12 12:15:02 -080065 for (i = 0; i < rm->data.m_nents; i++) {
66 rdsdebug("putting data page %p\n", (void *)sg_page(&rm->data.m_sg[i]));
Andy Grover7875e182009-02-24 15:30:26 +000067 /* XXX will have to put_page for page refs */
Andy Grovere7791372010-01-12 12:15:02 -080068 __free_page(sg_page(&rm->data.m_sg[i]));
Andy Grover7875e182009-02-24 15:30:26 +000069 }
Andy Grovere7791372010-01-12 12:15:02 -080070 rm->data.m_nents = 0;
Andy Grover7875e182009-02-24 15:30:26 +000071
Andy Groverff87e972010-01-12 14:13:15 -080072 if (rm->rdma.m_rdma_op.r_active)
73 rds_rdma_free_op(&rm->rdma.m_rdma_op);
Andy Grovere7791372010-01-12 12:15:02 -080074 if (rm->rdma.m_rdma_mr)
75 rds_mr_put(rm->rdma.m_rdma_mr);
Andy Grover7875e182009-02-24 15:30:26 +000076}
77
Andy Grover7875e182009-02-24 15:30:26 +000078void rds_message_put(struct rds_message *rm)
79{
80 rdsdebug("put rm %p ref %d\n", rm, atomic_read(&rm->m_refcount));
81
82 if (atomic_dec_and_test(&rm->m_refcount)) {
83 BUG_ON(!list_empty(&rm->m_sock_item));
84 BUG_ON(!list_empty(&rm->m_conn_item));
85 rds_message_purge(rm);
86
87 kfree(rm);
88 }
89}
Andy Grover616b7572009-08-21 12:28:32 +000090EXPORT_SYMBOL_GPL(rds_message_put);
Andy Grover7875e182009-02-24 15:30:26 +000091
Andy Grover7875e182009-02-24 15:30:26 +000092void rds_message_populate_header(struct rds_header *hdr, __be16 sport,
93 __be16 dport, u64 seq)
94{
95 hdr->h_flags = 0;
96 hdr->h_sport = sport;
97 hdr->h_dport = dport;
98 hdr->h_sequence = cpu_to_be64(seq);
99 hdr->h_exthdr[0] = RDS_EXTHDR_NONE;
100}
Andy Grover616b7572009-08-21 12:28:32 +0000101EXPORT_SYMBOL_GPL(rds_message_populate_header);
Andy Grover7875e182009-02-24 15:30:26 +0000102
103int rds_message_add_extension(struct rds_header *hdr,
104 unsigned int type, const void *data, unsigned int len)
105{
106 unsigned int ext_len = sizeof(u8) + len;
107 unsigned char *dst;
108
109 /* For now, refuse to add more than one extension header */
110 if (hdr->h_exthdr[0] != RDS_EXTHDR_NONE)
111 return 0;
112
Joe Perchesf64f9e72009-11-29 16:55:45 -0800113 if (type >= __RDS_EXTHDR_MAX || len != rds_exthdr_size[type])
Andy Grover7875e182009-02-24 15:30:26 +0000114 return 0;
115
116 if (ext_len >= RDS_HEADER_EXT_SPACE)
117 return 0;
118 dst = hdr->h_exthdr;
119
120 *dst++ = type;
121 memcpy(dst, data, len);
122
123 dst[len] = RDS_EXTHDR_NONE;
124 return 1;
125}
Andy Grover616b7572009-08-21 12:28:32 +0000126EXPORT_SYMBOL_GPL(rds_message_add_extension);
Andy Grover7875e182009-02-24 15:30:26 +0000127
128/*
129 * If a message has extension headers, retrieve them here.
130 * Call like this:
131 *
132 * unsigned int pos = 0;
133 *
134 * while (1) {
135 * buflen = sizeof(buffer);
136 * type = rds_message_next_extension(hdr, &pos, buffer, &buflen);
137 * if (type == RDS_EXTHDR_NONE)
138 * break;
139 * ...
140 * }
141 */
142int rds_message_next_extension(struct rds_header *hdr,
143 unsigned int *pos, void *buf, unsigned int *buflen)
144{
145 unsigned int offset, ext_type, ext_len;
146 u8 *src = hdr->h_exthdr;
147
148 offset = *pos;
149 if (offset >= RDS_HEADER_EXT_SPACE)
150 goto none;
151
152 /* Get the extension type and length. For now, the
153 * length is implied by the extension type. */
154 ext_type = src[offset++];
155
156 if (ext_type == RDS_EXTHDR_NONE || ext_type >= __RDS_EXTHDR_MAX)
157 goto none;
158 ext_len = rds_exthdr_size[ext_type];
159 if (offset + ext_len > RDS_HEADER_EXT_SPACE)
160 goto none;
161
162 *pos = offset + ext_len;
163 if (ext_len < *buflen)
164 *buflen = ext_len;
165 memcpy(buf, src + offset, *buflen);
166 return ext_type;
167
168none:
169 *pos = RDS_HEADER_EXT_SPACE;
170 *buflen = 0;
171 return RDS_EXTHDR_NONE;
172}
173
174int rds_message_add_version_extension(struct rds_header *hdr, unsigned int version)
175{
176 struct rds_ext_header_version ext_hdr;
177
178 ext_hdr.h_version = cpu_to_be32(version);
179 return rds_message_add_extension(hdr, RDS_EXTHDR_VERSION, &ext_hdr, sizeof(ext_hdr));
180}
181
182int rds_message_get_version_extension(struct rds_header *hdr, unsigned int *version)
183{
184 struct rds_ext_header_version ext_hdr;
185 unsigned int pos = 0, len = sizeof(ext_hdr);
186
187 /* We assume the version extension is the only one present */
188 if (rds_message_next_extension(hdr, &pos, &ext_hdr, &len) != RDS_EXTHDR_VERSION)
189 return 0;
190 *version = be32_to_cpu(ext_hdr.h_version);
191 return 1;
192}
193
194int rds_message_add_rdma_dest_extension(struct rds_header *hdr, u32 r_key, u32 offset)
195{
196 struct rds_ext_header_rdma_dest ext_hdr;
197
198 ext_hdr.h_rdma_rkey = cpu_to_be32(r_key);
199 ext_hdr.h_rdma_offset = cpu_to_be32(offset);
200 return rds_message_add_extension(hdr, RDS_EXTHDR_RDMA_DEST, &ext_hdr, sizeof(ext_hdr));
201}
Andy Grover616b7572009-08-21 12:28:32 +0000202EXPORT_SYMBOL_GPL(rds_message_add_rdma_dest_extension);
Andy Grover7875e182009-02-24 15:30:26 +0000203
Andy Groverfc445082010-01-12 12:56:06 -0800204/*
205 * Each rds_message is allocated with extra space for the scatterlist entries
206 * rds ops will need. This is to minimize memory allocation count. Then, each rds op
207 * can grab SGs when initializing its part of the rds_message.
208 */
209struct rds_message *rds_message_alloc(unsigned int extra_len, gfp_t gfp)
Andy Grover7875e182009-02-24 15:30:26 +0000210{
211 struct rds_message *rm;
212
Andy Groverfc445082010-01-12 12:56:06 -0800213 rm = kzalloc(sizeof(struct rds_message) + extra_len, gfp);
Andy Grover7875e182009-02-24 15:30:26 +0000214 if (!rm)
215 goto out;
216
Andy Groverfc445082010-01-12 12:56:06 -0800217 rm->m_used_sgs = 0;
218 rm->m_total_sgs = extra_len / sizeof(struct scatterlist);
219
Andy Grover7875e182009-02-24 15:30:26 +0000220 atomic_set(&rm->m_refcount, 1);
221 INIT_LIST_HEAD(&rm->m_sock_item);
222 INIT_LIST_HEAD(&rm->m_conn_item);
223 spin_lock_init(&rm->m_rs_lock);
224
225out:
226 return rm;
227}
228
Andy Groverfc445082010-01-12 12:56:06 -0800229/*
230 * RDS ops use this to grab SG entries from the rm's sg pool.
231 */
232struct scatterlist *rds_message_alloc_sgs(struct rds_message *rm, int nents)
233{
234 struct scatterlist *sg_first = (struct scatterlist *) &rm[1];
235 struct scatterlist *sg_ret;
236
237 WARN_ON(rm->m_used_sgs + nents > rm->m_total_sgs);
238
239 sg_ret = &sg_first[rm->m_used_sgs];
Andy Groverf4dd96f72010-01-12 14:17:31 -0800240 sg_init_table(sg_ret, nents);
Andy Groverfc445082010-01-12 12:56:06 -0800241 rm->m_used_sgs += nents;
242
243 return sg_ret;
244}
245
Andy Grover7875e182009-02-24 15:30:26 +0000246struct rds_message *rds_message_map_pages(unsigned long *page_addrs, unsigned int total_len)
247{
248 struct rds_message *rm;
249 unsigned int i;
Andy Groverff87e972010-01-12 14:13:15 -0800250 int num_sgs = ceil(total_len, PAGE_SIZE);
251 int extra_bytes = num_sgs * sizeof(struct scatterlist);
Andy Grover7875e182009-02-24 15:30:26 +0000252
Andy Groverff87e972010-01-12 14:13:15 -0800253 rm = rds_message_alloc(extra_bytes, GFP_KERNEL);
Andy Grover8690bfa2010-01-12 11:56:44 -0800254 if (!rm)
Andy Grover7875e182009-02-24 15:30:26 +0000255 return ERR_PTR(-ENOMEM);
256
257 set_bit(RDS_MSG_PAGEVEC, &rm->m_flags);
258 rm->m_inc.i_hdr.h_len = cpu_to_be32(total_len);
Andy Grovere7791372010-01-12 12:15:02 -0800259 rm->data.m_nents = ceil(total_len, PAGE_SIZE);
Andy Groverff87e972010-01-12 14:13:15 -0800260 rm->data.m_sg = rds_message_alloc_sgs(rm, num_sgs);
Andy Grover7875e182009-02-24 15:30:26 +0000261
Andy Grovere7791372010-01-12 12:15:02 -0800262 for (i = 0; i < rm->data.m_nents; ++i) {
263 sg_set_page(&rm->data.m_sg[i],
Andy Grover7875e182009-02-24 15:30:26 +0000264 virt_to_page(page_addrs[i]),
265 PAGE_SIZE, 0);
266 }
267
268 return rm;
269}
270
Andy Groverfc445082010-01-12 12:56:06 -0800271int rds_message_copy_from_user(struct rds_message *rm, struct iovec *first_iov,
Andy Grover7875e182009-02-24 15:30:26 +0000272 size_t total_len)
273{
274 unsigned long to_copy;
275 unsigned long iov_off;
276 unsigned long sg_off;
Andy Grover7875e182009-02-24 15:30:26 +0000277 struct iovec *iov;
278 struct scatterlist *sg;
Andy Groverfc445082010-01-12 12:56:06 -0800279 int ret = 0;
Andy Grover7875e182009-02-24 15:30:26 +0000280
281 rm->m_inc.i_hdr.h_len = cpu_to_be32(total_len);
282
283 /*
284 * now allocate and copy in the data payload.
285 */
Andy Grovere7791372010-01-12 12:15:02 -0800286 sg = rm->data.m_sg;
Andy Grover7875e182009-02-24 15:30:26 +0000287 iov = first_iov;
288 iov_off = 0;
289 sg_off = 0; /* Dear gcc, sg->page will be null from kzalloc. */
290
291 while (total_len) {
Andy Grover8690bfa2010-01-12 11:56:44 -0800292 if (!sg_page(sg)) {
Andy Grover7875e182009-02-24 15:30:26 +0000293 ret = rds_page_remainder_alloc(sg, total_len,
294 GFP_HIGHUSER);
295 if (ret)
296 goto out;
Andy Grovere7791372010-01-12 12:15:02 -0800297 rm->data.m_nents++;
Andy Grover7875e182009-02-24 15:30:26 +0000298 sg_off = 0;
299 }
300
301 while (iov_off == iov->iov_len) {
302 iov_off = 0;
303 iov++;
304 }
305
306 to_copy = min(iov->iov_len - iov_off, sg->length - sg_off);
307 to_copy = min_t(size_t, to_copy, total_len);
308
309 rdsdebug("copying %lu bytes from user iov [%p, %zu] + %lu to "
310 "sg [%p, %u, %u] + %lu\n",
311 to_copy, iov->iov_base, iov->iov_len, iov_off,
312 (void *)sg_page(sg), sg->offset, sg->length, sg_off);
313
314 ret = rds_page_copy_from_user(sg_page(sg), sg->offset + sg_off,
315 iov->iov_base + iov_off,
316 to_copy);
317 if (ret)
318 goto out;
319
320 iov_off += to_copy;
321 total_len -= to_copy;
322 sg_off += to_copy;
323
324 if (sg_off == sg->length)
325 sg++;
326 }
327
Andy Grover241eef32010-01-19 21:25:26 -0800328 rm->data.op_active = 1;
329
Andy Grover7875e182009-02-24 15:30:26 +0000330out:
Andy Groverfc445082010-01-12 12:56:06 -0800331 return ret;
Andy Grover7875e182009-02-24 15:30:26 +0000332}
333
334int rds_message_inc_copy_to_user(struct rds_incoming *inc,
335 struct iovec *first_iov, size_t size)
336{
337 struct rds_message *rm;
338 struct iovec *iov;
339 struct scatterlist *sg;
340 unsigned long to_copy;
341 unsigned long iov_off;
342 unsigned long vec_off;
343 int copied;
344 int ret;
345 u32 len;
346
347 rm = container_of(inc, struct rds_message, m_inc);
348 len = be32_to_cpu(rm->m_inc.i_hdr.h_len);
349
350 iov = first_iov;
351 iov_off = 0;
Andy Grovere7791372010-01-12 12:15:02 -0800352 sg = rm->data.m_sg;
Andy Grover7875e182009-02-24 15:30:26 +0000353 vec_off = 0;
354 copied = 0;
355
356 while (copied < size && copied < len) {
357 while (iov_off == iov->iov_len) {
358 iov_off = 0;
359 iov++;
360 }
361
362 to_copy = min(iov->iov_len - iov_off, sg->length - vec_off);
363 to_copy = min_t(size_t, to_copy, size - copied);
364 to_copy = min_t(unsigned long, to_copy, len - copied);
365
366 rdsdebug("copying %lu bytes to user iov [%p, %zu] + %lu to "
367 "sg [%p, %u, %u] + %lu\n",
368 to_copy, iov->iov_base, iov->iov_len, iov_off,
369 sg_page(sg), sg->offset, sg->length, vec_off);
370
371 ret = rds_page_copy_to_user(sg_page(sg), sg->offset + vec_off,
372 iov->iov_base + iov_off,
373 to_copy);
374 if (ret) {
375 copied = ret;
376 break;
377 }
378
379 iov_off += to_copy;
380 vec_off += to_copy;
381 copied += to_copy;
382
383 if (vec_off == sg->length) {
384 vec_off = 0;
385 sg++;
386 }
387 }
388
389 return copied;
390}
391
392/*
393 * If the message is still on the send queue, wait until the transport
394 * is done with it. This is particularly important for RDMA operations.
395 */
396void rds_message_wait(struct rds_message *rm)
397{
398 wait_event(rds_message_flush_waitq,
399 !test_bit(RDS_MSG_MAPPED, &rm->m_flags));
400}
401
402void rds_message_unmapped(struct rds_message *rm)
403{
404 clear_bit(RDS_MSG_MAPPED, &rm->m_flags);
405 if (waitqueue_active(&rds_message_flush_waitq))
406 wake_up(&rds_message_flush_waitq);
407}
Andy Grover616b7572009-08-21 12:28:32 +0000408EXPORT_SYMBOL_GPL(rds_message_unmapped);
Andy Grover7875e182009-02-24 15:30:26 +0000409