Whamcloud - gitweb
LU-3157 llite: A not locked mutex can be unlocked.
[fs/lustre-release.git] / lustre / ptlrpc / sec_bulk.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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ptlrpc/sec_bulk.c
37  *
38  * Author: Eric Mei <ericm@clusterfs.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_SEC
42
43 #include <libcfs/libcfs.h>
44 #ifndef __KERNEL__
45 #include <liblustre.h>
46 #include <libcfs/list.h>
47 #else
48 #include <linux/crypto.h>
49 #endif
50
51 #include <obd.h>
52 #include <obd_cksum.h>
53 #include <obd_class.h>
54 #include <obd_support.h>
55 #include <lustre_net.h>
56 #include <lustre_import.h>
57 #include <lustre_dlm.h>
58 #include <lustre_sec.h>
59
60 #include "ptlrpc_internal.h"
61
62 /****************************************
63  * bulk encryption page pools           *
64  ****************************************/
65
66 #ifdef __KERNEL__
67
68 #define PTRS_PER_PAGE   (CFS_PAGE_SIZE / sizeof(void *))
69 #define PAGES_PER_POOL  (PTRS_PER_PAGE)
70
71 #define IDLE_IDX_MAX            (100)
72 #define IDLE_IDX_WEIGHT         (3)
73
74 #define CACHE_QUIESCENT_PERIOD  (20)
75
76 static struct ptlrpc_enc_page_pool {
77         /*
78          * constants
79          */
80         unsigned long    epp_max_pages;   /* maximum pages can hold, const */
81         unsigned int     epp_max_pools;   /* number of pools, const */
82
83         /*
84          * wait queue in case of not enough free pages.
85          */
86         cfs_waitq_t      epp_waitq;       /* waiting threads */
87         unsigned int     epp_waitqlen;    /* wait queue length */
88         unsigned long    epp_pages_short; /* # of pages wanted of in-q users */
89         unsigned int     epp_growing:1;   /* during adding pages */
90
91         /*
92          * indicating how idle the pools are, from 0 to MAX_IDLE_IDX
93          * this is counted based on each time when getting pages from
94          * the pools, not based on time. which means in case that system
95          * is idled for a while but the idle_idx might still be low if no
96          * activities happened in the pools.
97          */
98         unsigned long    epp_idle_idx;
99
100         /* last shrink time due to mem tight */
101         long             epp_last_shrink;
102         long             epp_last_access;
103
104         /*
105          * in-pool pages bookkeeping
106          */
107         spinlock_t       epp_lock;         /* protect following fields */
108         unsigned long    epp_total_pages; /* total pages in pools */
109         unsigned long    epp_free_pages;  /* current pages available */
110
111         /*
112          * statistics
113          */
114         unsigned long    epp_st_max_pages;      /* # of pages ever reached */
115         unsigned int     epp_st_grows;          /* # of grows */
116         unsigned int     epp_st_grow_fails;     /* # of add pages failures */
117         unsigned int     epp_st_shrinks;        /* # of shrinks */
118         unsigned long    epp_st_access;         /* # of access */
119         unsigned long    epp_st_missings;       /* # of cache missing */
120         unsigned long    epp_st_lowfree;        /* lowest free pages reached */
121         unsigned int     epp_st_max_wqlen;      /* highest waitqueue length */
122         cfs_time_t       epp_st_max_wait;       /* in jeffies */
123         /*
124          * pointers to pools
125          */
126         cfs_page_t    ***epp_pools;
127 } page_pools;
128
129 /*
130  * memory shrinker
131  */
132 const int pools_shrinker_seeks = CFS_DEFAULT_SEEKS;
133 static struct cfs_shrinker *pools_shrinker = NULL;
134
135
136 /*
137  * /proc/fs/lustre/sptlrpc/encrypt_page_pools
138  */
139 int sptlrpc_proc_read_enc_pool(char *page, char **start, off_t off, int count,
140                                int *eof, void *data)
141 {
142         int     rc;
143
144         spin_lock(&page_pools.epp_lock);
145
146         rc = snprintf(page, count,
147                       "physical pages:          %lu\n"
148                       "pages per pool:          %lu\n"
149                       "max pages:               %lu\n"
150                       "max pools:               %u\n"
151                       "total pages:             %lu\n"
152                       "total free:              %lu\n"
153                       "idle index:              %lu/100\n"
154                       "last shrink:             %lds\n"
155                       "last access:             %lds\n"
156                       "max pages reached:       %lu\n"
157                       "grows:                   %u\n"
158                       "grows failure:           %u\n"
159                       "shrinks:                 %u\n"
160                       "cache access:            %lu\n"
161                       "cache missing:           %lu\n"
162                       "low free mark:           %lu\n"
163                       "max waitqueue depth:     %u\n"
164                       "max wait time:           "CFS_TIME_T"/%u\n"
165                       ,
166                       cfs_num_physpages,
167                       PAGES_PER_POOL,
168                       page_pools.epp_max_pages,
169                       page_pools.epp_max_pools,
170                       page_pools.epp_total_pages,
171                       page_pools.epp_free_pages,
172                       page_pools.epp_idle_idx,
173                       cfs_time_current_sec() - page_pools.epp_last_shrink,
174                       cfs_time_current_sec() - page_pools.epp_last_access,
175                       page_pools.epp_st_max_pages,
176                       page_pools.epp_st_grows,
177                       page_pools.epp_st_grow_fails,
178                       page_pools.epp_st_shrinks,
179                       page_pools.epp_st_access,
180                       page_pools.epp_st_missings,
181                       page_pools.epp_st_lowfree,
182                       page_pools.epp_st_max_wqlen,
183                       page_pools.epp_st_max_wait, CFS_HZ
184                      );
185
186         spin_unlock(&page_pools.epp_lock);
187         return rc;
188 }
189
190 static void enc_pools_release_free_pages(long npages)
191 {
192         int     p_idx, g_idx;
193         int     p_idx_max1, p_idx_max2;
194
195         LASSERT(npages > 0);
196         LASSERT(npages <= page_pools.epp_free_pages);
197         LASSERT(page_pools.epp_free_pages <= page_pools.epp_total_pages);
198
199         /* max pool index before the release */
200         p_idx_max2 = (page_pools.epp_total_pages - 1) / PAGES_PER_POOL;
201
202         page_pools.epp_free_pages -= npages;
203         page_pools.epp_total_pages -= npages;
204
205         /* max pool index after the release */
206         p_idx_max1 = page_pools.epp_total_pages == 0 ? -1 :
207                      ((page_pools.epp_total_pages - 1) / PAGES_PER_POOL);
208
209         p_idx = page_pools.epp_free_pages / PAGES_PER_POOL;
210         g_idx = page_pools.epp_free_pages % PAGES_PER_POOL;
211         LASSERT(page_pools.epp_pools[p_idx]);
212
213         while (npages--) {
214                 LASSERT(page_pools.epp_pools[p_idx]);
215                 LASSERT(page_pools.epp_pools[p_idx][g_idx] != NULL);
216
217                 cfs_free_page(page_pools.epp_pools[p_idx][g_idx]);
218                 page_pools.epp_pools[p_idx][g_idx] = NULL;
219
220                 if (++g_idx == PAGES_PER_POOL) {
221                         p_idx++;
222                         g_idx = 0;
223                 }
224         };
225
226         /* free unused pools */
227         while (p_idx_max1 < p_idx_max2) {
228                 LASSERT(page_pools.epp_pools[p_idx_max2]);
229                 OBD_FREE(page_pools.epp_pools[p_idx_max2], CFS_PAGE_SIZE);
230                 page_pools.epp_pools[p_idx_max2] = NULL;
231                 p_idx_max2--;
232         }
233 }
234
235 /*
236  * could be called frequently for query (@nr_to_scan == 0).
237  * we try to keep at least PTLRPC_MAX_BRW_PAGES pages in the pool.
238  */
239 static int enc_pools_shrink(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask))
240 {
241         if (unlikely(shrink_param(sc, nr_to_scan) != 0)) {
242                 spin_lock(&page_pools.epp_lock);
243                 shrink_param(sc, nr_to_scan) = min_t(unsigned long,
244                                                    shrink_param(sc, nr_to_scan),
245                                                    page_pools.epp_free_pages -
246                                                    PTLRPC_MAX_BRW_PAGES);
247                 if (shrink_param(sc, nr_to_scan) > 0) {
248                         enc_pools_release_free_pages(shrink_param(sc,
249                                                                   nr_to_scan));
250                         CDEBUG(D_SEC, "released %ld pages, %ld left\n",
251                                (long)shrink_param(sc, nr_to_scan),
252                                page_pools.epp_free_pages);
253
254                         page_pools.epp_st_shrinks++;
255                         page_pools.epp_last_shrink = cfs_time_current_sec();
256                 }
257                 spin_unlock(&page_pools.epp_lock);
258         }
259
260         /*
261          * if no pool access for a long time, we consider it's fully idle.
262          * a little race here is fine.
263          */
264         if (unlikely(cfs_time_current_sec() - page_pools.epp_last_access >
265                      CACHE_QUIESCENT_PERIOD)) {
266                 spin_lock(&page_pools.epp_lock);
267                 page_pools.epp_idle_idx = IDLE_IDX_MAX;
268                 spin_unlock(&page_pools.epp_lock);
269         }
270
271         LASSERT(page_pools.epp_idle_idx <= IDLE_IDX_MAX);
272         return max((int)page_pools.epp_free_pages - PTLRPC_MAX_BRW_PAGES, 0) *
273                 (IDLE_IDX_MAX - page_pools.epp_idle_idx) / IDLE_IDX_MAX;
274 }
275
276 static inline
277 int npages_to_npools(unsigned long npages)
278 {
279         return (int) ((npages + PAGES_PER_POOL - 1) / PAGES_PER_POOL);
280 }
281
282 /*
283  * return how many pages cleaned up.
284  */
285 static unsigned long enc_pools_cleanup(cfs_page_t ***pools, int npools)
286 {
287         unsigned long cleaned = 0;
288         int           i, j;
289
290         for (i = 0; i < npools; i++) {
291                 if (pools[i]) {
292                         for (j = 0; j < PAGES_PER_POOL; j++) {
293                                 if (pools[i][j]) {
294                                         cfs_free_page(pools[i][j]);
295                                         cleaned++;
296                                 }
297                         }
298                         OBD_FREE(pools[i], CFS_PAGE_SIZE);
299                         pools[i] = NULL;
300                 }
301         }
302
303         return cleaned;
304 }
305
306 /*
307  * merge @npools pointed by @pools which contains @npages new pages
308  * into current pools.
309  *
310  * we have options to avoid most memory copy with some tricks. but we choose
311  * the simplest way to avoid complexity. It's not frequently called.
312  */
313 static void enc_pools_insert(cfs_page_t ***pools, int npools, int npages)
314 {
315         int     freeslot;
316         int     op_idx, np_idx, og_idx, ng_idx;
317         int     cur_npools, end_npools;
318
319         LASSERT(npages > 0);
320         LASSERT(page_pools.epp_total_pages+npages <= page_pools.epp_max_pages);
321         LASSERT(npages_to_npools(npages) == npools);
322         LASSERT(page_pools.epp_growing);
323
324         spin_lock(&page_pools.epp_lock);
325
326         /*
327          * (1) fill all the free slots of current pools.
328          */
329         /* free slots are those left by rent pages, and the extra ones with
330          * index >= total_pages, locate at the tail of last pool. */
331         freeslot = page_pools.epp_total_pages % PAGES_PER_POOL;
332         if (freeslot != 0)
333                 freeslot = PAGES_PER_POOL - freeslot;
334         freeslot += page_pools.epp_total_pages - page_pools.epp_free_pages;
335
336         op_idx = page_pools.epp_free_pages / PAGES_PER_POOL;
337         og_idx = page_pools.epp_free_pages % PAGES_PER_POOL;
338         np_idx = npools - 1;
339         ng_idx = (npages - 1) % PAGES_PER_POOL;
340
341         while (freeslot) {
342                 LASSERT(page_pools.epp_pools[op_idx][og_idx] == NULL);
343                 LASSERT(pools[np_idx][ng_idx] != NULL);
344
345                 page_pools.epp_pools[op_idx][og_idx] = pools[np_idx][ng_idx];
346                 pools[np_idx][ng_idx] = NULL;
347
348                 freeslot--;
349
350                 if (++og_idx == PAGES_PER_POOL) {
351                         op_idx++;
352                         og_idx = 0;
353                 }
354                 if (--ng_idx < 0) {
355                         if (np_idx == 0)
356                                 break;
357                         np_idx--;
358                         ng_idx = PAGES_PER_POOL - 1;
359                 }
360         }
361
362         /*
363          * (2) add pools if needed.
364          */
365         cur_npools = (page_pools.epp_total_pages + PAGES_PER_POOL - 1) /
366                      PAGES_PER_POOL;
367         end_npools = (page_pools.epp_total_pages + npages + PAGES_PER_POOL -1) /
368                      PAGES_PER_POOL;
369         LASSERT(end_npools <= page_pools.epp_max_pools);
370
371         np_idx = 0;
372         while (cur_npools < end_npools) {
373                 LASSERT(page_pools.epp_pools[cur_npools] == NULL);
374                 LASSERT(np_idx < npools);
375                 LASSERT(pools[np_idx] != NULL);
376
377                 page_pools.epp_pools[cur_npools++] = pools[np_idx];
378                 pools[np_idx++] = NULL;
379         }
380
381         page_pools.epp_total_pages += npages;
382         page_pools.epp_free_pages += npages;
383         page_pools.epp_st_lowfree = page_pools.epp_free_pages;
384
385         if (page_pools.epp_total_pages > page_pools.epp_st_max_pages)
386                 page_pools.epp_st_max_pages = page_pools.epp_total_pages;
387
388         CDEBUG(D_SEC, "add %d pages to total %lu\n", npages,
389                page_pools.epp_total_pages);
390
391         spin_unlock(&page_pools.epp_lock);
392 }
393
394 static int enc_pools_add_pages(int npages)
395 {
396         static DEFINE_MUTEX(add_pages_mutex);
397         cfs_page_t   ***pools;
398         int             npools, alloced = 0;
399         int             i, j, rc = -ENOMEM;
400
401         if (npages < PTLRPC_MAX_BRW_PAGES)
402                 npages = PTLRPC_MAX_BRW_PAGES;
403
404         mutex_lock(&add_pages_mutex);
405
406         if (npages + page_pools.epp_total_pages > page_pools.epp_max_pages)
407                 npages = page_pools.epp_max_pages - page_pools.epp_total_pages;
408         LASSERT(npages > 0);
409
410         page_pools.epp_st_grows++;
411
412         npools = npages_to_npools(npages);
413         OBD_ALLOC(pools, npools * sizeof(*pools));
414         if (pools == NULL)
415                 goto out;
416
417         for (i = 0; i < npools; i++) {
418                 OBD_ALLOC(pools[i], CFS_PAGE_SIZE);
419                 if (pools[i] == NULL)
420                         goto out_pools;
421
422                 for (j = 0; j < PAGES_PER_POOL && alloced < npages; j++) {
423                         pools[i][j] = cfs_alloc_page(CFS_ALLOC_IO |
424                                                      CFS_ALLOC_HIGHMEM);
425                         if (pools[i][j] == NULL)
426                                 goto out_pools;
427
428                         alloced++;
429                 }
430         }
431         LASSERT(alloced == npages);
432
433         enc_pools_insert(pools, npools, npages);
434         CDEBUG(D_SEC, "added %d pages into pools\n", npages);
435         rc = 0;
436
437 out_pools:
438         enc_pools_cleanup(pools, npools);
439         OBD_FREE(pools, npools * sizeof(*pools));
440 out:
441         if (rc) {
442                 page_pools.epp_st_grow_fails++;
443                 CERROR("Failed to allocate %d enc pages\n", npages);
444         }
445
446         mutex_unlock(&add_pages_mutex);
447         return rc;
448 }
449
450 static inline void enc_pools_wakeup(void)
451 {
452         LASSERT_SPIN_LOCKED(&page_pools.epp_lock);
453         LASSERT(page_pools.epp_waitqlen >= 0);
454
455         if (unlikely(page_pools.epp_waitqlen)) {
456                 LASSERT(cfs_waitq_active(&page_pools.epp_waitq));
457                 cfs_waitq_broadcast(&page_pools.epp_waitq);
458         }
459 }
460
461 static int enc_pools_should_grow(int page_needed, long now)
462 {
463         /* don't grow if someone else is growing the pools right now,
464          * or the pools has reached its full capacity
465          */
466         if (page_pools.epp_growing ||
467             page_pools.epp_total_pages == page_pools.epp_max_pages)
468                 return 0;
469
470         /* if total pages is not enough, we need to grow */
471         if (page_pools.epp_total_pages < page_needed)
472                 return 1;
473
474         /*
475          * we wanted to return 0 here if there was a shrink just happened
476          * moment ago, but this may cause deadlock if both client and ost
477          * live on single node.
478          */
479 #if 0
480         if (now - page_pools.epp_last_shrink < 2)
481                 return 0;
482 #endif
483
484         /*
485          * here we perhaps need consider other factors like wait queue
486          * length, idle index, etc. ?
487          */
488
489         /* grow the pools in any other cases */
490         return 1;
491 }
492
493 /*
494  * we allocate the requested pages atomically.
495  */
496 int sptlrpc_enc_pool_get_pages(struct ptlrpc_bulk_desc *desc)
497 {
498         cfs_waitlink_t  waitlink;
499         unsigned long   this_idle = -1;
500         cfs_time_t      tick = 0;
501         long            now;
502         int             p_idx, g_idx;
503         int             i;
504
505         LASSERT(desc->bd_iov_count > 0);
506         LASSERT(desc->bd_iov_count <= page_pools.epp_max_pages);
507
508         /* resent bulk, enc iov might have been allocated previously */
509         if (desc->bd_enc_iov != NULL)
510                 return 0;
511
512         OBD_ALLOC(desc->bd_enc_iov,
513                   desc->bd_iov_count * sizeof(*desc->bd_enc_iov));
514         if (desc->bd_enc_iov == NULL)
515                 return -ENOMEM;
516
517         spin_lock(&page_pools.epp_lock);
518
519         page_pools.epp_st_access++;
520 again:
521         if (unlikely(page_pools.epp_free_pages < desc->bd_iov_count)) {
522                 if (tick == 0)
523                         tick = cfs_time_current();
524
525                 now = cfs_time_current_sec();
526
527                 page_pools.epp_st_missings++;
528                 page_pools.epp_pages_short += desc->bd_iov_count;
529
530                 if (enc_pools_should_grow(desc->bd_iov_count, now)) {
531                         page_pools.epp_growing = 1;
532
533                         spin_unlock(&page_pools.epp_lock);
534                         enc_pools_add_pages(page_pools.epp_pages_short / 2);
535                         spin_lock(&page_pools.epp_lock);
536
537                         page_pools.epp_growing = 0;
538
539                         enc_pools_wakeup();
540                 } else {
541                         if (++page_pools.epp_waitqlen >
542                             page_pools.epp_st_max_wqlen)
543                                 page_pools.epp_st_max_wqlen =
544                                                 page_pools.epp_waitqlen;
545
546                         cfs_set_current_state(CFS_TASK_UNINT);
547                         cfs_waitlink_init(&waitlink);
548                         cfs_waitq_add(&page_pools.epp_waitq, &waitlink);
549
550                         spin_unlock(&page_pools.epp_lock);
551                         cfs_waitq_wait(&waitlink, CFS_TASK_UNINT);
552                         cfs_waitq_del(&page_pools.epp_waitq, &waitlink);
553                         LASSERT(page_pools.epp_waitqlen > 0);
554                         spin_lock(&page_pools.epp_lock);
555                         page_pools.epp_waitqlen--;
556                 }
557
558                 LASSERT(page_pools.epp_pages_short >= desc->bd_iov_count);
559                 page_pools.epp_pages_short -= desc->bd_iov_count;
560
561                 this_idle = 0;
562                 goto again;
563         }
564
565         /* record max wait time */
566         if (unlikely(tick != 0)) {
567                 tick = cfs_time_current() - tick;
568                 if (tick > page_pools.epp_st_max_wait)
569                         page_pools.epp_st_max_wait = tick;
570         }
571
572         /* proceed with rest of allocation */
573         page_pools.epp_free_pages -= desc->bd_iov_count;
574
575         p_idx = page_pools.epp_free_pages / PAGES_PER_POOL;
576         g_idx = page_pools.epp_free_pages % PAGES_PER_POOL;
577
578         for (i = 0; i < desc->bd_iov_count; i++) {
579                 LASSERT(page_pools.epp_pools[p_idx][g_idx] != NULL);
580                 desc->bd_enc_iov[i].kiov_page =
581                                         page_pools.epp_pools[p_idx][g_idx];
582                 page_pools.epp_pools[p_idx][g_idx] = NULL;
583
584                 if (++g_idx == PAGES_PER_POOL) {
585                         p_idx++;
586                         g_idx = 0;
587                 }
588         }
589
590         if (page_pools.epp_free_pages < page_pools.epp_st_lowfree)
591                 page_pools.epp_st_lowfree = page_pools.epp_free_pages;
592
593         /*
594          * new idle index = (old * weight + new) / (weight + 1)
595          */
596         if (this_idle == -1) {
597                 this_idle = page_pools.epp_free_pages * IDLE_IDX_MAX /
598                             page_pools.epp_total_pages;
599         }
600         page_pools.epp_idle_idx = (page_pools.epp_idle_idx * IDLE_IDX_WEIGHT +
601                                    this_idle) /
602                                   (IDLE_IDX_WEIGHT + 1);
603
604         page_pools.epp_last_access = cfs_time_current_sec();
605
606         spin_unlock(&page_pools.epp_lock);
607         return 0;
608 }
609 EXPORT_SYMBOL(sptlrpc_enc_pool_get_pages);
610
611 void sptlrpc_enc_pool_put_pages(struct ptlrpc_bulk_desc *desc)
612 {
613         int     p_idx, g_idx;
614         int     i;
615
616         if (desc->bd_enc_iov == NULL)
617                 return;
618
619         LASSERT(desc->bd_iov_count > 0);
620
621         spin_lock(&page_pools.epp_lock);
622
623         p_idx = page_pools.epp_free_pages / PAGES_PER_POOL;
624         g_idx = page_pools.epp_free_pages % PAGES_PER_POOL;
625
626         LASSERT(page_pools.epp_free_pages + desc->bd_iov_count <=
627                 page_pools.epp_total_pages);
628         LASSERT(page_pools.epp_pools[p_idx]);
629
630         for (i = 0; i < desc->bd_iov_count; i++) {
631                 LASSERT(desc->bd_enc_iov[i].kiov_page != NULL);
632                 LASSERT(g_idx != 0 || page_pools.epp_pools[p_idx]);
633                 LASSERT(page_pools.epp_pools[p_idx][g_idx] == NULL);
634
635                 page_pools.epp_pools[p_idx][g_idx] =
636                                         desc->bd_enc_iov[i].kiov_page;
637
638                 if (++g_idx == PAGES_PER_POOL) {
639                         p_idx++;
640                         g_idx = 0;
641                 }
642         }
643
644         page_pools.epp_free_pages += desc->bd_iov_count;
645
646         enc_pools_wakeup();
647
648         spin_unlock(&page_pools.epp_lock);
649
650         OBD_FREE(desc->bd_enc_iov,
651                  desc->bd_iov_count * sizeof(*desc->bd_enc_iov));
652         desc->bd_enc_iov = NULL;
653 }
654 EXPORT_SYMBOL(sptlrpc_enc_pool_put_pages);
655
656 /*
657  * we don't do much stuff for add_user/del_user anymore, except adding some
658  * initial pages in add_user() if current pools are empty, rest would be
659  * handled by the pools's self-adaption.
660  */
661 int sptlrpc_enc_pool_add_user(void)
662 {
663         int     need_grow = 0;
664
665         spin_lock(&page_pools.epp_lock);
666         if (page_pools.epp_growing == 0 && page_pools.epp_total_pages == 0) {
667                 page_pools.epp_growing = 1;
668                 need_grow = 1;
669         }
670         spin_unlock(&page_pools.epp_lock);
671
672         if (need_grow) {
673                 enc_pools_add_pages(PTLRPC_MAX_BRW_PAGES +
674                                     PTLRPC_MAX_BRW_PAGES);
675
676                 spin_lock(&page_pools.epp_lock);
677                 page_pools.epp_growing = 0;
678                 enc_pools_wakeup();
679                 spin_unlock(&page_pools.epp_lock);
680         }
681         return 0;
682 }
683 EXPORT_SYMBOL(sptlrpc_enc_pool_add_user);
684
685 int sptlrpc_enc_pool_del_user(void)
686 {
687         return 0;
688 }
689 EXPORT_SYMBOL(sptlrpc_enc_pool_del_user);
690
691 static inline void enc_pools_alloc(void)
692 {
693         LASSERT(page_pools.epp_max_pools);
694         OBD_ALLOC_LARGE(page_pools.epp_pools,
695                         page_pools.epp_max_pools *
696                         sizeof(*page_pools.epp_pools));
697 }
698
699 static inline void enc_pools_free(void)
700 {
701         LASSERT(page_pools.epp_max_pools);
702         LASSERT(page_pools.epp_pools);
703
704         OBD_FREE_LARGE(page_pools.epp_pools,
705                        page_pools.epp_max_pools *
706                        sizeof(*page_pools.epp_pools));
707 }
708
709 int sptlrpc_enc_pool_init(void)
710 {
711         /*
712          * maximum capacity is 1/8 of total physical memory.
713          * is the 1/8 a good number?
714          */
715         page_pools.epp_max_pages = cfs_num_physpages / 8;
716         page_pools.epp_max_pools = npages_to_npools(page_pools.epp_max_pages);
717
718         cfs_waitq_init(&page_pools.epp_waitq);
719         page_pools.epp_waitqlen = 0;
720         page_pools.epp_pages_short = 0;
721
722         page_pools.epp_growing = 0;
723
724         page_pools.epp_idle_idx = 0;
725         page_pools.epp_last_shrink = cfs_time_current_sec();
726         page_pools.epp_last_access = cfs_time_current_sec();
727
728         spin_lock_init(&page_pools.epp_lock);
729         page_pools.epp_total_pages = 0;
730         page_pools.epp_free_pages = 0;
731
732         page_pools.epp_st_max_pages = 0;
733         page_pools.epp_st_grows = 0;
734         page_pools.epp_st_grow_fails = 0;
735         page_pools.epp_st_shrinks = 0;
736         page_pools.epp_st_access = 0;
737         page_pools.epp_st_missings = 0;
738         page_pools.epp_st_lowfree = 0;
739         page_pools.epp_st_max_wqlen = 0;
740         page_pools.epp_st_max_wait = 0;
741
742         enc_pools_alloc();
743         if (page_pools.epp_pools == NULL)
744                 return -ENOMEM;
745
746         pools_shrinker = cfs_set_shrinker(pools_shrinker_seeks,
747                                           enc_pools_shrink);
748         if (pools_shrinker == NULL) {
749                 enc_pools_free();
750                 return -ENOMEM;
751         }
752
753         return 0;
754 }
755
756 void sptlrpc_enc_pool_fini(void)
757 {
758         unsigned long cleaned, npools;
759
760         LASSERT(pools_shrinker);
761         LASSERT(page_pools.epp_pools);
762         LASSERT(page_pools.epp_total_pages == page_pools.epp_free_pages);
763
764         cfs_remove_shrinker(pools_shrinker);
765
766         npools = npages_to_npools(page_pools.epp_total_pages);
767         cleaned = enc_pools_cleanup(page_pools.epp_pools, npools);
768         LASSERT(cleaned == page_pools.epp_total_pages);
769
770         enc_pools_free();
771
772         if (page_pools.epp_st_access > 0) {
773                 CDEBUG(D_SEC,
774                        "max pages %lu, grows %u, grow fails %u, shrinks %u, "
775                        "access %lu, missing %lu, max qlen %u, max wait "
776                        CFS_TIME_T"/%d\n",
777                        page_pools.epp_st_max_pages, page_pools.epp_st_grows,
778                        page_pools.epp_st_grow_fails,
779                        page_pools.epp_st_shrinks, page_pools.epp_st_access,
780                        page_pools.epp_st_missings, page_pools.epp_st_max_wqlen,
781                        page_pools.epp_st_max_wait, CFS_HZ);
782         }
783 }
784
785 #else /* !__KERNEL__ */
786
787 int sptlrpc_enc_pool_get_pages(struct ptlrpc_bulk_desc *desc)
788 {
789         return 0;
790 }
791
792 void sptlrpc_enc_pool_put_pages(struct ptlrpc_bulk_desc *desc)
793 {
794 }
795
796 int sptlrpc_enc_pool_init(void)
797 {
798         return 0;
799 }
800
801 void sptlrpc_enc_pool_fini(void)
802 {
803 }
804 #endif
805
806 static int cfs_hash_alg_id[] = {
807         [BULK_HASH_ALG_NULL]    = CFS_HASH_ALG_NULL,
808         [BULK_HASH_ALG_ADLER32] = CFS_HASH_ALG_ADLER32,
809         [BULK_HASH_ALG_CRC32]   = CFS_HASH_ALG_CRC32,
810         [BULK_HASH_ALG_MD5]     = CFS_HASH_ALG_MD5,
811         [BULK_HASH_ALG_SHA1]    = CFS_HASH_ALG_SHA1,
812         [BULK_HASH_ALG_SHA256]  = CFS_HASH_ALG_SHA256,
813         [BULK_HASH_ALG_SHA384]  = CFS_HASH_ALG_SHA384,
814         [BULK_HASH_ALG_SHA512]  = CFS_HASH_ALG_SHA512,
815 };
816 const char * sptlrpc_get_hash_name(__u8 hash_alg)
817 {
818         return cfs_crypto_hash_name(cfs_hash_alg_id[hash_alg]);
819 }
820 EXPORT_SYMBOL(sptlrpc_get_hash_name);
821
822 __u8 sptlrpc_get_hash_alg(const char *algname)
823 {
824         return cfs_crypto_hash_alg(algname);
825 }
826 EXPORT_SYMBOL(sptlrpc_get_hash_alg);
827
828 int bulk_sec_desc_unpack(struct lustre_msg *msg, int offset, int swabbed)
829 {
830         struct ptlrpc_bulk_sec_desc *bsd;
831         int                          size = msg->lm_buflens[offset];
832
833         bsd = lustre_msg_buf(msg, offset, sizeof(*bsd));
834         if (bsd == NULL) {
835                 CERROR("Invalid bulk sec desc: size %d\n", size);
836                 return -EINVAL;
837         }
838
839         if (swabbed) {
840                 __swab32s(&bsd->bsd_nob);
841         }
842
843         if (unlikely(bsd->bsd_version != 0)) {
844                 CERROR("Unexpected version %u\n", bsd->bsd_version);
845                 return -EPROTO;
846         }
847
848         if (unlikely(bsd->bsd_type >= SPTLRPC_BULK_MAX)) {
849                 CERROR("Invalid type %u\n", bsd->bsd_type);
850                 return -EPROTO;
851         }
852
853         /* FIXME more sanity check here */
854
855         if (unlikely(bsd->bsd_svc != SPTLRPC_BULK_SVC_NULL &&
856                      bsd->bsd_svc != SPTLRPC_BULK_SVC_INTG &&
857                      bsd->bsd_svc != SPTLRPC_BULK_SVC_PRIV)) {
858                 CERROR("Invalid svc %u\n", bsd->bsd_svc);
859                 return -EPROTO;
860         }
861
862         return 0;
863 }
864 EXPORT_SYMBOL(bulk_sec_desc_unpack);
865
866 int sptlrpc_get_bulk_checksum(struct ptlrpc_bulk_desc *desc, __u8 alg,
867                               void *buf, int buflen)
868 {
869         struct cfs_crypto_hash_desc     *hdesc;
870         int                             hashsize;
871         char                            hashbuf[64];
872         unsigned int                    bufsize;
873         int                             i, err;
874
875         LASSERT(alg > BULK_HASH_ALG_NULL && alg < BULK_HASH_ALG_MAX);
876         LASSERT(buflen >= 4);
877
878         hdesc = cfs_crypto_hash_init(cfs_hash_alg_id[alg], NULL, 0);
879         if (IS_ERR(hdesc)) {
880                 CERROR("Unable to initialize checksum hash %s\n",
881                        cfs_crypto_hash_name(cfs_hash_alg_id[alg]));
882                 return PTR_ERR(hdesc);
883         }
884
885         hashsize = cfs_crypto_hash_digestsize(cfs_hash_alg_id[alg]);
886
887         for (i = 0; i < desc->bd_iov_count; i++) {
888 #ifdef __KERNEL__
889                 cfs_crypto_hash_update_page(hdesc, desc->bd_iov[i].kiov_page,
890                                   desc->bd_iov[i].kiov_offset & ~CFS_PAGE_MASK,
891                                   desc->bd_iov[i].kiov_len);
892 #else
893                 cfs_crypto_hash_update(hdesc, desc->bd_iov[i].iov_base,
894                                   desc->bd_iov[i].iov_len);
895 #endif
896         }
897         if (hashsize > buflen) {
898                 bufsize = sizeof(hashbuf);
899                 err = cfs_crypto_hash_final(hdesc, (unsigned char *)hashbuf,
900                                             &bufsize);
901                 memcpy(buf, hashbuf, buflen);
902         } else {
903                 bufsize = buflen;
904                 err = cfs_crypto_hash_final(hdesc, (unsigned char *)buf,
905                                             &bufsize);
906         }
907
908         if (err)
909                 cfs_crypto_hash_final(hdesc, NULL, NULL);
910         return err;
911 }
912 EXPORT_SYMBOL(sptlrpc_get_bulk_checksum);
913
914