Whamcloud - gitweb
LU-13004 lnet: don't embed whole lnet_md in lnet_event
[fs/lustre-release.git] / lnet / lnet / lib-md.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/lnet/lib-md.c
33  *
34  * Memory Descriptor management routines
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <lnet/lib-lnet.h>
40
41 /* must be called with lnet_res_lock held */
42 void
43 lnet_md_unlink(struct lnet_libmd *md)
44 {
45         if ((md->md_flags & LNET_MD_FLAG_ZOMBIE) == 0) {
46                 /* first unlink attempt... */
47                 struct lnet_me *me = md->md_me;
48
49                 md->md_flags |= LNET_MD_FLAG_ZOMBIE;
50
51                 /* Disassociate from ME (if any), and unlink it if it was created
52                  * with LNET_UNLINK */
53                 if (me != NULL) {
54                         /* detach MD from portal */
55                         lnet_ptl_detach_md(me, md);
56                         if (me->me_unlink == LNET_UNLINK)
57                                 lnet_me_unlink(me);
58                 }
59
60                 /* ensure all future handle lookups fail */
61                 lnet_res_lh_invalidate(&md->md_lh);
62         }
63
64         if (md->md_refcount != 0) {
65                 CDEBUG(D_NET, "Queueing unlink of md %p\n", md);
66                 return;
67         }
68
69         CDEBUG(D_NET, "Unlinking md %p\n", md);
70
71         LASSERT(!list_empty(&md->md_list));
72         list_del_init(&md->md_list);
73         lnet_md_free(md);
74 }
75
76 struct page *
77 lnet_kvaddr_to_page(unsigned long vaddr)
78 {
79         if (is_vmalloc_addr((void *)vaddr))
80                 return vmalloc_to_page((void *)vaddr);
81
82 #ifdef CONFIG_HIGHMEM
83
84 #ifdef HAVE_KMAP_TO_PAGE
85         /*
86          * This ifdef is added to handle the kernel versions
87          * which have kmap_to_page() function exported. If so,
88          * we should use it. Otherwise, remain with the legacy check.
89          */
90         return kmap_to_page((void *)vaddr);
91 #else
92
93         if (vaddr >= PKMAP_ADDR(0) && vaddr < PKMAP_ADDR(LAST_PKMAP)) {
94                 /* No highmem pages only used for bulk (kiov) I/O */
95                 CERROR("find page for address in highmem\n");
96                 LBUG();
97         }
98         return virt_to_page(vaddr);
99 #endif /* HAVE_KMAP_TO_PAGE */
100 #else
101
102         return virt_to_page(vaddr);
103 #endif /* CONFIG_HIGHMEM */
104 }
105 EXPORT_SYMBOL(lnet_kvaddr_to_page);
106
107 int
108 lnet_cpt_of_md(struct lnet_libmd *md, unsigned int offset)
109 {
110         int cpt = CFS_CPT_ANY;
111         unsigned int niov;
112
113         /*
114          * if the md_options has a bulk handle then we want to look at the
115          * bulk md because that's the data which we will be DMAing
116          */
117         if (md && (md->md_options & LNET_MD_BULK_HANDLE) != 0 &&
118             !LNetMDHandleIsInvalid(md->md_bulk_handle))
119                 md = lnet_handle2md(&md->md_bulk_handle);
120
121         if (!md || md->md_niov == 0)
122                 return CFS_CPT_ANY;
123
124         niov = md->md_niov;
125
126         /*
127          * There are three cases to handle:
128          *  1. The MD is using struct bio_vec
129          *  2. The MD is using struct kvec
130          *  3. Contiguous buffer allocated via vmalloc
131          *
132          *  in case 2 we can use virt_to_page() macro to get the page
133          *  address of the memory kvec describes.
134          *
135          *  in case 3 use is_vmalloc_addr() and vmalloc_to_page()
136          *
137          * The offset provided can be within the first iov/kiov entry or
138          * it could go beyond it. In that case we need to make sure to
139          * look at the page which actually contains the data that will be
140          * DMAed.
141          */
142         if ((md->md_options & LNET_MD_KIOV) != 0) {
143                 struct bio_vec *kiov = md->md_iov.kiov;
144
145                 while (offset >= kiov->bv_len) {
146                         offset -= kiov->bv_len;
147                         niov--;
148                         kiov++;
149                         if (niov == 0) {
150                                 CERROR("offset %d goes beyond kiov\n", offset);
151                                 goto out;
152                         }
153                 }
154
155                 cpt = cfs_cpt_of_node(lnet_cpt_table(),
156                                 page_to_nid(kiov->bv_page));
157         } else {
158                 struct kvec *iov = md->md_iov.iov;
159                 unsigned long vaddr;
160                 struct page *page;
161
162                 while (offset >= iov->iov_len) {
163                         offset -= iov->iov_len;
164                         niov--;
165                         iov++;
166                         if (niov == 0) {
167                                 CERROR("offset %d goes beyond iov\n", offset);
168                                 goto out;
169                         }
170                 }
171
172                 vaddr = ((unsigned long)iov->iov_base) + offset;
173                 page = lnet_kvaddr_to_page(vaddr);
174                 if (!page) {
175                         CERROR("Couldn't resolve vaddr 0x%lx to page\n", vaddr);
176                         goto out;
177                 }
178                 cpt = cfs_cpt_of_node(lnet_cpt_table(), page_to_nid(page));
179         }
180
181 out:
182         return cpt;
183 }
184
185 static int
186 lnet_md_build(struct lnet_libmd *lmd, struct lnet_md *umd, int unlink)
187 {
188         int          i;
189         unsigned int niov;
190         int          total_length = 0;
191
192         lmd->md_me = NULL;
193         lmd->md_start = umd->start;
194         lmd->md_offset = 0;
195         lmd->md_max_size = umd->max_size;
196         lmd->md_options = umd->options;
197         lmd->md_user_ptr = umd->user_ptr;
198         lmd->md_handler = NULL;
199         lmd->md_threshold = umd->threshold;
200         lmd->md_refcount = 0;
201         lmd->md_flags = (unlink == LNET_UNLINK) ? LNET_MD_FLAG_AUTO_UNLINK : 0;
202         lmd->md_bulk_handle = umd->bulk_handle;
203
204         if ((umd->options & LNET_MD_KIOV) != 0) {
205                 lmd->md_niov = niov = umd->length;
206                 memcpy(lmd->md_iov.kiov, umd->start,
207                        niov * sizeof(lmd->md_iov.kiov[0]));
208
209                 for (i = 0; i < (int)niov; i++) {
210                         /* We take the page pointer on trust */
211                         if (lmd->md_iov.kiov[i].bv_offset +
212                             lmd->md_iov.kiov[i].bv_len > PAGE_SIZE)
213                                 return -EINVAL; /* invalid length */
214
215                         total_length += lmd->md_iov.kiov[i].bv_len;
216                 }
217
218                 lmd->md_length = total_length;
219
220                 if ((umd->options & LNET_MD_MAX_SIZE) != 0 && /* max size used */
221                     (umd->max_size < 0 ||
222                      umd->max_size > total_length)) // illegal max_size
223                         return -EINVAL;
224         } else {   /* contiguous */
225                 lmd->md_length = umd->length;
226                 lmd->md_niov = niov = 1;
227                 lmd->md_iov.iov[0].iov_base = umd->start;
228                 lmd->md_iov.iov[0].iov_len = umd->length;
229
230                 if ((umd->options & LNET_MD_MAX_SIZE) != 0 && /* max size used */
231                     (umd->max_size < 0 ||
232                      umd->max_size > (int)umd->length)) // illegal max_size
233                         return -EINVAL;
234         }
235
236         return 0;
237 }
238
239 /* must be called with resource lock held */
240 static int
241 lnet_md_link(struct lnet_libmd *md, lnet_handler_t handler, int cpt)
242 {
243         struct lnet_res_container *container = the_lnet.ln_md_containers[cpt];
244
245         /* NB we are passed an allocated, but inactive md.
246          * if we return success, caller may lnet_md_unlink() it.
247          * otherwise caller may only lnet_md_free() it.
248          */
249         /* This implementation doesn't know how to create START events or
250          * disable END events.  Best to LASSERT our caller is compliant so
251          * we find out quickly...  */
252         /*  TODO - reevaluate what should be here in light of
253          * the removal of the start and end events
254          * maybe there we shouldn't even allow LNET_EQ_NONE!)
255          * LASSERT (handler != NULL);
256          */
257         md->md_handler = handler;
258
259         lnet_res_lh_initialize(container, &md->md_lh);
260
261         LASSERT(list_empty(&md->md_list));
262         list_add(&md->md_list, &container->rec_active);
263
264         return 0;
265 }
266
267 /* must be called with lnet_res_lock held */
268 void
269 lnet_md_deconstruct(struct lnet_libmd *lmd, struct lnet_event *ev)
270 {
271         ev->md_start = lmd->md_start;
272         ev->md_options = lmd->md_options;
273         ev->md_user_ptr = lmd->md_user_ptr;
274 }
275
276 static int
277 lnet_md_validate(struct lnet_md *umd)
278 {
279         if (umd->start == NULL && umd->length != 0) {
280                 CERROR("MD start pointer can not be NULL with length %u\n",
281                        umd->length);
282                 return -EINVAL;
283         }
284
285         if ((umd->options & LNET_MD_KIOV) &&
286             umd->length > LNET_MAX_IOV) {
287                 CERROR("Invalid option: too many fragments %u, %d max\n",
288                        umd->length, LNET_MAX_IOV);
289                 return -EINVAL;
290         }
291
292         return 0;
293 }
294
295 /**
296  * Create a memory descriptor and attach it to a ME
297  *
298  * \param me An ME to associate the new MD with.
299  * \param umd Provides initial values for the user-visible parts of a MD.
300  * Other than its use for initialization, there is no linkage between this
301  * structure and the MD maintained by the LNet.
302  * \param unlink A flag to indicate whether the MD is automatically unlinked
303  * when it becomes inactive, either because the operation threshold drops to
304  * zero or because the available memory becomes less than \a umd.max_size.
305  * (Note that the check for unlinking a MD only occurs after the completion
306  * of a successful operation on the MD.) The value LNET_UNLINK enables auto
307  * unlinking; the value LNET_RETAIN disables it.
308  * \param handle On successful returns, a handle to the newly created MD is
309  * saved here. This handle can be used later in LNetMDUnlink().
310  *
311  * \retval 0       On success.
312  * \retval -EINVAL If \a umd is not valid.
313  * \retval -ENOMEM If new MD cannot be allocated.
314  * \retval -ENOENT Either \a meh or \a umd.eq_handle does not point to a
315  * valid object. Note that it's OK to supply a NULL \a umd.eq_handle by
316  * calling LNetInvalidateHandle() on it.
317  * \retval -EBUSY  If the ME pointed to by \a meh is already associated with
318  * a MD.
319  */
320 int
321 LNetMDAttach(struct lnet_me *me, struct lnet_md umd,
322              enum lnet_unlink unlink, struct lnet_handle_md *handle)
323 {
324         LIST_HEAD(matches);
325         LIST_HEAD(drops);
326         struct lnet_libmd       *md;
327         int                     cpt;
328         int                     rc;
329
330         LASSERT(the_lnet.ln_refcount > 0);
331
332         if (lnet_md_validate(&umd) != 0)
333                 return -EINVAL;
334
335         if ((umd.options & (LNET_MD_OP_GET | LNET_MD_OP_PUT)) == 0) {
336                 CERROR("Invalid option: no MD_OP set\n");
337                 return -EINVAL;
338         }
339
340         md = lnet_md_alloc(&umd);
341         if (md == NULL)
342                 return -ENOMEM;
343
344         rc = lnet_md_build(md, &umd, unlink);
345         if (rc != 0)
346                 goto out_free;
347
348         cpt = me->me_cpt;
349
350         lnet_res_lock(cpt);
351
352         if (me->me_md)
353                 rc = -EBUSY;
354         else
355                 rc = lnet_md_link(md, umd.handler, cpt);
356
357         if (rc != 0)
358                 goto out_unlock;
359
360         /* attach this MD to portal of ME and check if it matches any
361          * blocked msgs on this portal */
362         lnet_ptl_attach_md(me, md, &matches, &drops);
363
364         lnet_md2handle(handle, md);
365
366         lnet_res_unlock(cpt);
367
368         lnet_drop_delayed_msg_list(&drops, "Bad match");
369         lnet_recv_delayed_msg_list(&matches);
370
371         return 0;
372
373 out_unlock:
374         lnet_res_unlock(cpt);
375 out_free:
376         lnet_md_free(md);
377         return rc;
378 }
379 EXPORT_SYMBOL(LNetMDAttach);
380
381 /**
382  * Create a "free floating" memory descriptor - a MD that is not associated
383  * with a ME. Such MDs are usually used in LNetPut() and LNetGet() operations.
384  *
385  * \param umd,unlink See the discussion for LNetMDAttach().
386  * \param handle On successful returns, a handle to the newly created MD is
387  * saved here. This handle can be used later in LNetMDUnlink(), LNetPut(),
388  * and LNetGet() operations.
389  *
390  * \retval 0       On success.
391  * \retval -EINVAL If \a umd is not valid.
392  * \retval -ENOMEM If new MD cannot be allocated.
393  * \retval -ENOENT \a umd.eq_handle does not point to a valid EQ. Note that
394  * it's OK to supply a NULL \a umd.eq_handle by calling
395  * LNetInvalidateHandle() on it.
396  */
397 int
398 LNetMDBind(struct lnet_md umd, enum lnet_unlink unlink,
399            struct lnet_handle_md *handle)
400 {
401         struct lnet_libmd       *md;
402         int             cpt;
403         int             rc;
404
405         LASSERT(the_lnet.ln_refcount > 0);
406
407         if (lnet_md_validate(&umd) != 0)
408                 return -EINVAL;
409
410         if ((umd.options & (LNET_MD_OP_GET | LNET_MD_OP_PUT)) != 0) {
411                 CERROR("Invalid option: GET|PUT illegal on active MDs\n");
412                 return -EINVAL;
413         }
414
415         md = lnet_md_alloc(&umd);
416         if (md == NULL)
417                 return -ENOMEM;
418
419         rc = lnet_md_build(md, &umd, unlink);
420         if (rc != 0)
421                 goto out_free;
422
423         if (md->md_length > LNET_MTU) {
424                 CERROR("Invalid length: too big transfer size %u, %d max\n",
425                        md->md_length, LNET_MTU);
426                 rc = -EINVAL;
427                 goto out_free;
428         }
429
430         cpt = lnet_res_lock_current();
431
432         rc = lnet_md_link(md, umd.handler, cpt);
433         if (rc != 0)
434                 goto out_unlock;
435
436         lnet_md2handle(handle, md);
437
438         lnet_res_unlock(cpt);
439         return 0;
440
441  out_unlock:
442         lnet_res_unlock(cpt);
443
444  out_free:
445         lnet_md_free(md);
446         return rc;
447 }
448 EXPORT_SYMBOL(LNetMDBind);
449
450 /**
451  * Unlink the memory descriptor from any ME it may be linked to and release
452  * the internal resources associated with it. As a result, active messages
453  * associated with the MD may get aborted.
454  *
455  * This function does not free the memory region associated with the MD;
456  * i.e., the memory the user allocated for this MD. If the ME associated with
457  * this MD is not NULL and was created with auto unlink enabled, the ME is
458  * unlinked as well (see LNetMEAttach()).
459  *
460  * Explicitly unlinking a MD via this function call has the same behavior as
461  * a MD that has been automatically unlinked, except that no LNET_EVENT_UNLINK
462  * is generated in the latter case.
463  *
464  * An unlinked event can be reported in two ways:
465  * - If there's no pending operations on the MD, it's unlinked immediately
466  *   and an LNET_EVENT_UNLINK event is logged before this function returns.
467  * - Otherwise, the MD is only marked for deletion when this function
468  *   returns, and the unlinked event will be piggybacked on the event of
469  *   the completion of the last operation by setting the unlinked field of
470  *   the event. No dedicated LNET_EVENT_UNLINK event is generated.
471  *
472  * Note that in both cases the unlinked field of the event is always set; no
473  * more event will happen on the MD after such an event is logged.
474  *
475  * \param mdh A handle for the MD to be unlinked.
476  *
477  * \retval 0       On success.
478  * \retval -ENOENT If \a mdh does not point to a valid MD object.
479  */
480 int
481 LNetMDUnlink(struct lnet_handle_md mdh)
482 {
483         struct lnet_event ev;
484         struct lnet_libmd *md;
485         int cpt;
486
487         LASSERT(the_lnet.ln_refcount > 0);
488
489         cpt = lnet_cpt_of_cookie(mdh.cookie);
490         lnet_res_lock(cpt);
491
492         md = lnet_handle2md(&mdh);
493         if (md == NULL) {
494                 lnet_res_unlock(cpt);
495                 return -ENOENT;
496         }
497
498         md->md_flags |= LNET_MD_FLAG_ABORTED;
499         /* If the MD is busy, lnet_md_unlink just marks it for deletion, and
500          * when the LND is done, the completion event flags that the MD was
501          * unlinked. Otherwise, we enqueue an event now... */
502         if (md->md_handler && md->md_refcount == 0) {
503                 lnet_build_unlink_event(md, &ev);
504                 md->md_handler(&ev);
505         }
506
507         if (md->md_rspt_ptr != NULL)
508                 lnet_detach_rsp_tracker(md, cpt);
509
510         lnet_md_unlink(md);
511
512         lnet_res_unlock(cpt);
513         return 0;
514 }
515 EXPORT_SYMBOL(LNetMDUnlink);