Whamcloud - gitweb
LU-13005 lnet: remove lib-eq.
[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_eq = 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_eq_handler_t eq, 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 (eq == NULL);
256          */
257         md->md_eq = eq;
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_md *umd)
270 {
271         /* NB this doesn't copy out all the iov entries so when a
272          * discontiguous MD is copied out, the target gets to know the
273          * original iov pointer (in start) and the number of entries it had
274          * and that's all.
275          */
276         umd->start = lmd->md_start;
277         umd->length = ((lmd->md_options & LNET_MD_KIOV) == 0) ?
278                       lmd->md_length : lmd->md_niov;
279         umd->threshold = lmd->md_threshold;
280         umd->max_size = lmd->md_max_size;
281         umd->options = lmd->md_options;
282         umd->user_ptr = lmd->md_user_ptr;
283 }
284
285 static int
286 lnet_md_validate(struct lnet_md *umd)
287 {
288         if (umd->start == NULL && umd->length != 0) {
289                 CERROR("MD start pointer can not be NULL with length %u\n",
290                        umd->length);
291                 return -EINVAL;
292         }
293
294         if ((umd->options & LNET_MD_KIOV) &&
295             umd->length > LNET_MAX_IOV) {
296                 CERROR("Invalid option: too many fragments %u, %d max\n",
297                        umd->length, LNET_MAX_IOV);
298                 return -EINVAL;
299         }
300
301         return 0;
302 }
303
304 /**
305  * Create a memory descriptor and attach it to a ME
306  *
307  * \param me An ME to associate the new MD with.
308  * \param umd Provides initial values for the user-visible parts of a MD.
309  * Other than its use for initialization, there is no linkage between this
310  * structure and the MD maintained by the LNet.
311  * \param unlink A flag to indicate whether the MD is automatically unlinked
312  * when it becomes inactive, either because the operation threshold drops to
313  * zero or because the available memory becomes less than \a umd.max_size.
314  * (Note that the check for unlinking a MD only occurs after the completion
315  * of a successful operation on the MD.) The value LNET_UNLINK enables auto
316  * unlinking; the value LNET_RETAIN disables it.
317  * \param handle On successful returns, a handle to the newly created MD is
318  * saved here. This handle can be used later in LNetMDUnlink().
319  *
320  * \retval 0       On success.
321  * \retval -EINVAL If \a umd is not valid.
322  * \retval -ENOMEM If new MD cannot be allocated.
323  * \retval -ENOENT Either \a meh or \a umd.eq_handle does not point to a
324  * valid object. Note that it's OK to supply a NULL \a umd.eq_handle by
325  * calling LNetInvalidateHandle() on it.
326  * \retval -EBUSY  If the ME pointed to by \a meh is already associated with
327  * a MD.
328  */
329 int
330 LNetMDAttach(struct lnet_me *me, struct lnet_md umd,
331              enum lnet_unlink unlink, struct lnet_handle_md *handle)
332 {
333         LIST_HEAD(matches);
334         LIST_HEAD(drops);
335         struct lnet_libmd       *md;
336         int                     cpt;
337         int                     rc;
338
339         LASSERT(the_lnet.ln_refcount > 0);
340
341         if (lnet_md_validate(&umd) != 0)
342                 return -EINVAL;
343
344         if ((umd.options & (LNET_MD_OP_GET | LNET_MD_OP_PUT)) == 0) {
345                 CERROR("Invalid option: no MD_OP set\n");
346                 return -EINVAL;
347         }
348
349         md = lnet_md_alloc(&umd);
350         if (md == NULL)
351                 return -ENOMEM;
352
353         rc = lnet_md_build(md, &umd, unlink);
354         if (rc != 0)
355                 goto out_free;
356
357         cpt = me->me_cpt;
358
359         lnet_res_lock(cpt);
360
361         if (me->me_md)
362                 rc = -EBUSY;
363         else
364                 rc = lnet_md_link(md, umd.eq_handle, cpt);
365
366         if (rc != 0)
367                 goto out_unlock;
368
369         /* attach this MD to portal of ME and check if it matches any
370          * blocked msgs on this portal */
371         lnet_ptl_attach_md(me, md, &matches, &drops);
372
373         lnet_md2handle(handle, md);
374
375         lnet_res_unlock(cpt);
376
377         lnet_drop_delayed_msg_list(&drops, "Bad match");
378         lnet_recv_delayed_msg_list(&matches);
379
380         return 0;
381
382 out_unlock:
383         lnet_res_unlock(cpt);
384 out_free:
385         lnet_md_free(md);
386         return rc;
387 }
388 EXPORT_SYMBOL(LNetMDAttach);
389
390 /**
391  * Create a "free floating" memory descriptor - a MD that is not associated
392  * with a ME. Such MDs are usually used in LNetPut() and LNetGet() operations.
393  *
394  * \param umd,unlink See the discussion for LNetMDAttach().
395  * \param handle On successful returns, a handle to the newly created MD is
396  * saved here. This handle can be used later in LNetMDUnlink(), LNetPut(),
397  * and LNetGet() operations.
398  *
399  * \retval 0       On success.
400  * \retval -EINVAL If \a umd is not valid.
401  * \retval -ENOMEM If new MD cannot be allocated.
402  * \retval -ENOENT \a umd.eq_handle does not point to a valid EQ. Note that
403  * it's OK to supply a NULL \a umd.eq_handle by calling
404  * LNetInvalidateHandle() on it.
405  */
406 int
407 LNetMDBind(struct lnet_md umd, enum lnet_unlink unlink,
408            struct lnet_handle_md *handle)
409 {
410         struct lnet_libmd       *md;
411         int             cpt;
412         int             rc;
413
414         LASSERT(the_lnet.ln_refcount > 0);
415
416         if (lnet_md_validate(&umd) != 0)
417                 return -EINVAL;
418
419         if ((umd.options & (LNET_MD_OP_GET | LNET_MD_OP_PUT)) != 0) {
420                 CERROR("Invalid option: GET|PUT illegal on active MDs\n");
421                 return -EINVAL;
422         }
423
424         md = lnet_md_alloc(&umd);
425         if (md == NULL)
426                 return -ENOMEM;
427
428         rc = lnet_md_build(md, &umd, unlink);
429         if (rc != 0)
430                 goto out_free;
431
432         if (md->md_length > LNET_MTU) {
433                 CERROR("Invalid length: too big transfer size %u, %d max\n",
434                        md->md_length, LNET_MTU);
435                 rc = -EINVAL;
436                 goto out_free;
437         }
438
439         cpt = lnet_res_lock_current();
440
441         rc = lnet_md_link(md, umd.eq_handle, cpt);
442         if (rc != 0)
443                 goto out_unlock;
444
445         lnet_md2handle(handle, md);
446
447         lnet_res_unlock(cpt);
448         return 0;
449
450  out_unlock:
451         lnet_res_unlock(cpt);
452
453  out_free:
454         lnet_md_free(md);
455         return rc;
456 }
457 EXPORT_SYMBOL(LNetMDBind);
458
459 /**
460  * Unlink the memory descriptor from any ME it may be linked to and release
461  * the internal resources associated with it. As a result, active messages
462  * associated with the MD may get aborted.
463  *
464  * This function does not free the memory region associated with the MD;
465  * i.e., the memory the user allocated for this MD. If the ME associated with
466  * this MD is not NULL and was created with auto unlink enabled, the ME is
467  * unlinked as well (see LNetMEAttach()).
468  *
469  * Explicitly unlinking a MD via this function call has the same behavior as
470  * a MD that has been automatically unlinked, except that no LNET_EVENT_UNLINK
471  * is generated in the latter case.
472  *
473  * An unlinked event can be reported in two ways:
474  * - If there's no pending operations on the MD, it's unlinked immediately
475  *   and an LNET_EVENT_UNLINK event is logged before this function returns.
476  * - Otherwise, the MD is only marked for deletion when this function
477  *   returns, and the unlinked event will be piggybacked on the event of
478  *   the completion of the last operation by setting the unlinked field of
479  *   the event. No dedicated LNET_EVENT_UNLINK event is generated.
480  *
481  * Note that in both cases the unlinked field of the event is always set; no
482  * more event will happen on the MD after such an event is logged.
483  *
484  * \param mdh A handle for the MD to be unlinked.
485  *
486  * \retval 0       On success.
487  * \retval -ENOENT If \a mdh does not point to a valid MD object.
488  */
489 int
490 LNetMDUnlink(struct lnet_handle_md mdh)
491 {
492         struct lnet_event ev;
493         struct lnet_libmd *md;
494         int cpt;
495
496         LASSERT(the_lnet.ln_refcount > 0);
497
498         cpt = lnet_cpt_of_cookie(mdh.cookie);
499         lnet_res_lock(cpt);
500
501         md = lnet_handle2md(&mdh);
502         if (md == NULL) {
503                 lnet_res_unlock(cpt);
504                 return -ENOENT;
505         }
506
507         md->md_flags |= LNET_MD_FLAG_ABORTED;
508         /* If the MD is busy, lnet_md_unlink just marks it for deletion, and
509          * when the LND is done, the completion event flags that the MD was
510          * unlinked. Otherwise, we enqueue an event now... */
511         if (md->md_eq != NULL && md->md_refcount == 0) {
512                 lnet_build_unlink_event(md, &ev);
513                 md->md_eq(&ev);
514         }
515
516         if (md->md_rspt_ptr != NULL)
517                 lnet_detach_rsp_tracker(md, cpt);
518
519         lnet_md_unlink(md);
520
521         lnet_res_unlock(cpt);
522         return 0;
523 }
524 EXPORT_SYMBOL(LNetMDUnlink);