Whamcloud - gitweb
5aa59de91b53eefb81664d33ac4b36f16b3eea3f
[fs/lustre-release.git] / lustre / obdclass / cl_object.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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 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  * Client Lustre Object.
33  *
34  *   Author: Nikita Danilov <nikita.danilov@sun.com>
35  *   Author: Jinshan Xiong <jinshan.xiong@intel.com>
36  */
37
38 /*
39  * Locking.
40  *
41  *  i_mutex
42  *      PG_locked
43  *          ->coh_attr_guard
44  *          ->ls_guard
45  */
46
47 #define DEBUG_SUBSYSTEM S_CLASS
48
49 #include <linux/list.h>
50 #include <libcfs/libcfs.h>
51 /* class_put_type() */
52 #include <obd_class.h>
53 #include <obd_support.h>
54 #include <lustre_fid.h>
55 #include <libcfs/libcfs_hash.h> /* for cfs_hash stuff */
56 #include <cl_object.h>
57 #include <lu_object.h>
58 #include "cl_internal.h"
59
60 static struct kmem_cache *cl_env_kmem;
61
62 /** Lock class of cl_object_header::coh_attr_guard */
63 static struct lock_class_key cl_attr_guard_class;
64
65 /**
66  * Initialize cl_object_header.
67  */
68 int cl_object_header_init(struct cl_object_header *h)
69 {
70         int result;
71
72         ENTRY;
73         result = lu_object_header_init(&h->coh_lu);
74         if (result == 0) {
75                 spin_lock_init(&h->coh_attr_guard);
76                 lockdep_set_class(&h->coh_attr_guard, &cl_attr_guard_class);
77                 h->coh_page_bufsize = 0;
78         }
79         RETURN(result);
80 }
81 EXPORT_SYMBOL(cl_object_header_init);
82
83 /**
84  * Finalize cl_object_header.
85  */
86 void cl_object_header_fini(struct cl_object_header *h)
87 {
88         lu_object_header_fini(&h->coh_lu);
89 }
90
91 /**
92  * Returns a cl_object with a given \a fid.
93  *
94  * Returns either cached or newly created object. Additional reference on the
95  * returned object is acquired.
96  *
97  * \see lu_object_find(), cl_page_find(), cl_lock_find()
98  */
99 struct cl_object *cl_object_find(const struct lu_env *env,
100                                  struct cl_device *cd, const struct lu_fid *fid,
101                                  const struct cl_object_conf *c)
102 {
103         might_sleep();
104         return lu2cl(lu_object_find_slice(env, cl2lu_dev(cd), fid, &c->coc_lu));
105 }
106 EXPORT_SYMBOL(cl_object_find);
107
108 /**
109  * Releases a reference on \a o.
110  *
111  * When last reference is released object is returned to the cache, unless
112  * lu_object_header_flags::LU_OBJECT_HEARD_BANSHEE bit is set in its header.
113  *
114  * \see cl_page_put(), cl_lock_put().
115  */
116 void cl_object_put(const struct lu_env *env, struct cl_object *o)
117 {
118         lu_object_put(env, &o->co_lu);
119 }
120 EXPORT_SYMBOL(cl_object_put);
121
122 /**
123  * Acquire an additional reference to the object \a o.
124  *
125  * This can only be used to acquire _additional_ reference, i.e., caller
126  * already has to possess at least one reference to \a o before calling this.
127  *
128  * \see cl_page_get(), cl_lock_get().
129  */
130 void cl_object_get(struct cl_object *o)
131 {
132         lu_object_get(&o->co_lu);
133 }
134 EXPORT_SYMBOL(cl_object_get);
135
136 /**
137  * Returns the top-object for a given \a o.
138  *
139  * \see cl_io_top()
140  */
141 struct cl_object *cl_object_top(struct cl_object *o)
142 {
143         struct cl_object_header *hdr = cl_object_header(o);
144         struct cl_object *top;
145
146         while (hdr->coh_parent != NULL)
147                 hdr = hdr->coh_parent;
148
149         top = lu2cl(lu_object_top(&hdr->coh_lu));
150         CDEBUG(D_TRACE, "%p -> %p\n", o, top);
151         return top;
152 }
153 EXPORT_SYMBOL(cl_object_top);
154
155 /**
156  * Returns pointer to the lock protecting data-attributes for the given object
157  * \a o.
158  *
159  * Data-attributes are protected by the cl_object_header::coh_attr_guard
160  * spin-lock in the top-object.
161  *
162  * \see cl_attr, cl_object_attr_lock(), cl_object_operations::coo_attr_get().
163  */
164 static spinlock_t *cl_object_attr_guard(struct cl_object *o)
165 {
166         return &cl_object_header(cl_object_top(o))->coh_attr_guard;
167 }
168
169 /**
170  * Locks data-attributes.
171  *
172  * Prevents data-attributes from changing, until lock is released by
173  * cl_object_attr_unlock(). This has to be called before calls to
174  * cl_object_attr_get(), cl_object_attr_update().
175  */
176 void cl_object_attr_lock(struct cl_object *o)
177 __acquires(cl_object_attr_guard(o))
178 {
179         spin_lock(cl_object_attr_guard(o));
180 }
181 EXPORT_SYMBOL(cl_object_attr_lock);
182
183 /**
184  * Releases data-attributes lock, acquired by cl_object_attr_lock().
185  */
186 void cl_object_attr_unlock(struct cl_object *o)
187 __releases(cl_object_attr_guard(o))
188 {
189         spin_unlock(cl_object_attr_guard(o));
190 }
191 EXPORT_SYMBOL(cl_object_attr_unlock);
192
193 /**
194  * Returns data-attributes of an object \a obj.
195  *
196  * Every layer is asked (by calling cl_object_operations::coo_attr_get())
197  * top-to-bottom to fill in parts of \a attr that this layer is responsible
198  * for.
199  */
200 int cl_object_attr_get(const struct lu_env *env, struct cl_object *obj,
201                         struct cl_attr *attr)
202 {
203         struct lu_object_header *top;
204         int result;
205
206         assert_spin_locked(cl_object_attr_guard(obj));
207         ENTRY;
208
209         top = obj->co_lu.lo_header;
210         result = 0;
211         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
212                 if (obj->co_ops->coo_attr_get != NULL) {
213                         result = obj->co_ops->coo_attr_get(env, obj, attr);
214                         if (result != 0) {
215                                 if (result > 0)
216                                         result = 0;
217                                 break;
218                         }
219                 }
220         }
221         RETURN(result);
222 }
223 EXPORT_SYMBOL(cl_object_attr_get);
224
225 /**
226  * Updates data-attributes of an object \a obj.
227  *
228  * Only attributes, mentioned in a validness bit-mask \a v are
229  * updated. Calls cl_object_operations::coo_upd_attr() on every layer, bottom
230  * to top.
231  */
232 int cl_object_attr_update(const struct lu_env *env, struct cl_object *obj,
233                           const struct cl_attr *attr, unsigned v)
234 {
235         struct lu_object_header *top;
236         int result;
237
238         assert_spin_locked(cl_object_attr_guard(obj));
239         ENTRY;
240
241         top = obj->co_lu.lo_header;
242         result = 0;
243         list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
244                 if (obj->co_ops->coo_attr_update != NULL) {
245                         result = obj->co_ops->coo_attr_update(env, obj, attr,
246                                                               v);
247                         if (result != 0) {
248                                 if (result > 0)
249                                         result = 0;
250                                 break;
251                         }
252                 }
253         }
254         RETURN(result);
255 }
256 EXPORT_SYMBOL(cl_object_attr_update);
257
258 /**
259  * Notifies layers (bottom-to-top) that glimpse AST was received.
260  *
261  * Layers have to fill \a lvb fields with information that will be shipped
262  * back to glimpse issuer.
263  *
264  * \see cl_lock_operations::clo_glimpse()
265  */
266 int cl_object_glimpse(const struct lu_env *env, struct cl_object *obj,
267                       struct ost_lvb *lvb)
268 {
269         struct lu_object_header *top;
270         int result;
271
272         ENTRY;
273         top = obj->co_lu.lo_header;
274         result = 0;
275         list_for_each_entry_reverse(obj, &top->loh_layers, co_lu.lo_linkage) {
276                 if (obj->co_ops->coo_glimpse != NULL) {
277                         result = obj->co_ops->coo_glimpse(env, obj, lvb);
278                         if (result != 0)
279                                 break;
280                 }
281         }
282         LU_OBJECT_HEADER(D_DLMTRACE, env, lu_object_top(top),
283                          "size: %llu mtime: %llu atime: %llu "
284                          "ctime: %llu blocks: %llu\n",
285                          lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_atime,
286                          lvb->lvb_ctime, lvb->lvb_blocks);
287         RETURN(result);
288 }
289 EXPORT_SYMBOL(cl_object_glimpse);
290
291 /**
292  * Updates a configuration of an object \a obj.
293  */
294 int cl_conf_set(const struct lu_env *env, struct cl_object *obj,
295                 const struct cl_object_conf *conf)
296 {
297         struct lu_object_header *top;
298         int result;
299
300         ENTRY;
301         top = obj->co_lu.lo_header;
302         result = 0;
303         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
304                 if (obj->co_ops->coo_conf_set != NULL) {
305                         result = obj->co_ops->coo_conf_set(env, obj, conf);
306                         if (result != 0)
307                                 break;
308                 }
309         }
310         RETURN(result);
311 }
312 EXPORT_SYMBOL(cl_conf_set);
313
314 /**
315  * Prunes caches of pages and locks for this object.
316  */
317 int cl_object_prune(const struct lu_env *env, struct cl_object *obj)
318 {
319         struct lu_object_header *top;
320         struct cl_object *o;
321         int result;
322         ENTRY;
323
324         top = obj->co_lu.lo_header;
325         result = 0;
326         list_for_each_entry(o, &top->loh_layers, co_lu.lo_linkage) {
327                 if (o->co_ops->coo_prune != NULL) {
328                         result = o->co_ops->coo_prune(env, o);
329                         if (result != 0)
330                                 break;
331                 }
332         }
333
334         RETURN(result);
335 }
336 EXPORT_SYMBOL(cl_object_prune);
337
338 /**
339  * Get stripe information of this object.
340  */
341 int cl_object_getstripe(const struct lu_env *env, struct cl_object *obj,
342                         struct lov_user_md __user *uarg, size_t size)
343 {
344         struct lu_object_header *top;
345         int                     result = 0;
346         ENTRY;
347
348         top = obj->co_lu.lo_header;
349         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
350                 if (obj->co_ops->coo_getstripe != NULL) {
351                         result = obj->co_ops->coo_getstripe(env, obj, uarg,
352                                                             size);
353                         if (result != 0)
354                                 break;
355                 }
356         }
357         RETURN(result);
358 }
359 EXPORT_SYMBOL(cl_object_getstripe);
360
361 /**
362  * Get fiemap extents from file object.
363  *
364  * \param env [in]      lustre environment
365  * \param obj [in]      file object
366  * \param key [in]      fiemap request argument
367  * \param fiemap [out]  fiemap extents mapping retrived
368  * \param buflen [in]   max buffer length of @fiemap
369  *
370  * \retval 0    success
371  * \retval < 0  error
372  */
373 int cl_object_fiemap(const struct lu_env *env, struct cl_object *obj,
374                      struct ll_fiemap_info_key *key,
375                      struct fiemap *fiemap, size_t *buflen)
376 {
377         struct lu_object_header *top;
378         int                     result = 0;
379         ENTRY;
380
381         top = obj->co_lu.lo_header;
382         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
383                 if (obj->co_ops->coo_fiemap != NULL) {
384                         result = obj->co_ops->coo_fiemap(env, obj, key, fiemap,
385                                                          buflen);
386                         if (result != 0)
387                                 break;
388                 }
389         }
390         RETURN(result);
391 }
392 EXPORT_SYMBOL(cl_object_fiemap);
393
394 int cl_object_layout_get(const struct lu_env *env, struct cl_object *obj,
395                          struct cl_layout *cl)
396 {
397         struct lu_object_header *top = obj->co_lu.lo_header;
398         ENTRY;
399
400         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
401                 if (obj->co_ops->coo_layout_get != NULL)
402                         return obj->co_ops->coo_layout_get(env, obj, cl);
403         }
404
405         RETURN(-EOPNOTSUPP);
406 }
407 EXPORT_SYMBOL(cl_object_layout_get);
408
409 loff_t cl_object_maxbytes(struct cl_object *obj)
410 {
411         struct lu_object_header *top = obj->co_lu.lo_header;
412         loff_t maxbytes = LLONG_MAX;
413         ENTRY;
414
415         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
416                 if (obj->co_ops->coo_maxbytes != NULL)
417                         maxbytes = min_t(loff_t, obj->co_ops->coo_maxbytes(obj),
418                                          maxbytes);
419         }
420
421         RETURN(maxbytes);
422 }
423 EXPORT_SYMBOL(cl_object_maxbytes);
424
425 int cl_object_flush(const struct lu_env *env, struct cl_object *obj,
426                          struct ldlm_lock *lock)
427 {
428         struct lu_object_header *top = obj->co_lu.lo_header;
429         int rc = 0;
430         ENTRY;
431
432         list_for_each_entry(obj, &top->loh_layers, co_lu.lo_linkage) {
433                 if (obj->co_ops->coo_object_flush) {
434                         rc = obj->co_ops->coo_object_flush(env, obj, lock);
435                         if (rc)
436                                 break;
437                 }
438         }
439         RETURN(rc);
440 }
441 EXPORT_SYMBOL(cl_object_flush);
442
443 /**
444  * Helper function removing all object locks, and marking object for
445  * deletion. All object pages must have been deleted at this point.
446  *
447  * This is called by cl_inode_fini() and lov_object_delete() to destroy top-
448  * and sub- objects respectively.
449  */
450 void cl_object_kill(const struct lu_env *env, struct cl_object *obj)
451 {
452         struct cl_object_header *hdr = cl_object_header(obj);
453
454         set_bit(LU_OBJECT_HEARD_BANSHEE, &hdr->coh_lu.loh_flags);
455 }
456 EXPORT_SYMBOL(cl_object_kill);
457
458 void cache_stats_init(struct cache_stats *cs, const char *name)
459 {
460         int i;
461
462         cs->cs_name = name;
463         for (i = 0; i < CS_NR; i++)
464                 atomic_set(&cs->cs_stats[i], 0);
465 }
466
467 static int cache_stats_print(const struct cache_stats *cs,
468                              struct seq_file *m, int h)
469 {
470         int i;
471
472         /*
473          *   lookup    hit    total  cached create
474          * env: ...... ...... ...... ...... ......
475          */
476         if (h) {
477                 const char *names[CS_NR] = CS_NAMES;
478
479                 seq_printf(m, "%6s", " ");
480                 for (i = 0; i < CS_NR; i++)
481                         seq_printf(m, "%8s", names[i]);
482                 seq_printf(m, "\n");
483         }
484
485         seq_printf(m, "%5.5s:", cs->cs_name);
486         for (i = 0; i < CS_NR; i++)
487                 seq_printf(m, "%8u", atomic_read(&cs->cs_stats[i]));
488         return 0;
489 }
490
491 static void cl_env_percpu_refill(void);
492
493 /**
494  * Initialize client site.
495  *
496  * Perform common initialization (lu_site_init()), and initialize statistical
497  * counters. Also perform global initializations on the first call.
498  */
499 int cl_site_init(struct cl_site *s, struct cl_device *d)
500 {
501         size_t i;
502         int result;
503
504         result = lu_site_init(&s->cs_lu, &d->cd_lu_dev);
505         if (result == 0) {
506                 cache_stats_init(&s->cs_pages, "pages");
507                 for (i = 0; i < ARRAY_SIZE(s->cs_pages_state); ++i)
508                         atomic_set(&s->cs_pages_state[0], 0);
509                 cl_env_percpu_refill();
510         }
511         return result;
512 }
513 EXPORT_SYMBOL(cl_site_init);
514
515 /**
516  * Finalize client site. Dual to cl_site_init().
517  */
518 void cl_site_fini(struct cl_site *s)
519 {
520         lu_site_fini(&s->cs_lu);
521 }
522 EXPORT_SYMBOL(cl_site_fini);
523
524 static struct cache_stats cl_env_stats = {
525         .cs_name    = "envs",
526         .cs_stats = { ATOMIC_INIT(0), }
527 };
528
529 /**
530  * Outputs client site statistical counters into a buffer. Suitable for
531  * ll_rd_*()-style functions.
532  */
533 int cl_site_stats_print(const struct cl_site *site, struct seq_file *m)
534 {
535         static const char *pstate[] = {
536                 [CPS_CACHED]    = "c",
537                 [CPS_OWNED]     = "o",
538                 [CPS_PAGEOUT]   = "w",
539                 [CPS_PAGEIN]    = "r",
540                 [CPS_FREEING]   = "f"
541         };
542         size_t i;
543
544 /*
545        lookup    hit  total   busy create
546 pages: ...... ...... ...... ...... ...... [...... ...... ...... ......]
547 locks: ...... ...... ...... ...... ...... [...... ...... ...... ...... ......]
548   env: ...... ...... ...... ...... ......
549  */
550         lu_site_stats_seq_print(&site->cs_lu, m);
551         cache_stats_print(&site->cs_pages, m, 1);
552         seq_printf(m, " [");
553         for (i = 0; i < ARRAY_SIZE(site->cs_pages_state); ++i)
554                 seq_printf(m, "%s: %u ", pstate[i],
555                            atomic_read(&site->cs_pages_state[i]));
556         seq_printf(m, "]\n");
557         cache_stats_print(&cl_env_stats, m, 0);
558         seq_printf(m, "\n");
559         return 0;
560 }
561 EXPORT_SYMBOL(cl_site_stats_print);
562
563 /*****************************************************************************
564  *
565  * lu_env handling on client.
566  *
567  */
568
569 /**
570  * The most efficient way is to store cl_env pointer in task specific
571  * structures. On Linux, it isn't easy to use task_struct->journal_info
572  * because Lustre code may call into other fs during memory reclaim, which
573  * has certain assumptions about journal_info. There are not currently any
574  * fields in task_struct that can be used for this purpose.
575  * \note As long as we use task_struct to store cl_env, we assume that once
576  * called into Lustre, we'll never call into the other part of the kernel
577  * which will use those fields in task_struct without explicitly exiting
578  * Lustre.
579  *
580  * Since there's no space in task_struct is available, hash will be used.
581  * bz20044, bz22683.
582  */
583
584 static unsigned cl_envs_cached_max = 32; /* XXX: prototype: arbitrary limit
585                                           * for now. */
586 static struct cl_env_cache {
587         rwlock_t                cec_guard;
588         unsigned                cec_count;
589         struct list_head        cec_envs;
590 } *cl_envs = NULL;
591
592 struct cl_env {
593         void             *ce_magic;
594         struct lu_env     ce_lu;
595         struct lu_context ce_ses;
596
597         /*
598          * Linkage into global list of all client environments. Used for
599          * garbage collection.
600          */
601         struct list_head  ce_linkage;
602         /*
603          *
604          */
605         int               ce_ref;
606         /*
607          * Debugging field: address of the caller who made original
608          * allocation.
609          */
610         void             *ce_debug;
611 };
612
613 static void cl_env_inc(enum cache_stats_item item)
614 {
615 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
616         atomic_inc(&cl_env_stats.cs_stats[item]);
617 #endif
618 }
619
620 static void cl_env_dec(enum cache_stats_item item)
621 {
622 #ifdef CONFIG_DEBUG_PAGESTATE_TRACKING
623         LASSERT(atomic_read(&cl_env_stats.cs_stats[item]) > 0);
624         atomic_dec(&cl_env_stats.cs_stats[item]);
625 #endif
626 }
627
628 static void cl_env_init0(struct cl_env *cle, void *debug)
629 {
630         LASSERT(cle->ce_ref == 0);
631         LASSERT(cle->ce_magic == &cl_env_init0);
632         LASSERT(cle->ce_debug == NULL);
633
634         cle->ce_ref = 1;
635         cle->ce_debug = debug;
636         cl_env_inc(CS_busy);
637 }
638
639 static struct lu_env *cl_env_new(__u32 ctx_tags, __u32 ses_tags, void *debug)
640 {
641         struct lu_env *env;
642         struct cl_env *cle;
643
644         OBD_SLAB_ALLOC_PTR_GFP(cle, cl_env_kmem, GFP_NOFS);
645         if (cle != NULL) {
646                 int rc;
647
648                 INIT_LIST_HEAD(&cle->ce_linkage);
649                 cle->ce_magic = &cl_env_init0;
650                 env = &cle->ce_lu;
651                 rc = lu_env_init(env, LCT_CL_THREAD|ctx_tags);
652                 if (rc == 0) {
653                         rc = lu_context_init(&cle->ce_ses,
654                                              LCT_SESSION | ses_tags);
655                         if (rc == 0) {
656                                 lu_context_enter(&cle->ce_ses);
657                                 env->le_ses = &cle->ce_ses;
658                                 cl_env_init0(cle, debug);
659                         } else
660                                 lu_env_fini(env);
661                 }
662                 if (rc != 0) {
663                         OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
664                         env = ERR_PTR(rc);
665                 } else {
666                         cl_env_inc(CS_create);
667                         cl_env_inc(CS_total);
668                 }
669         } else
670                 env = ERR_PTR(-ENOMEM);
671         return env;
672 }
673
674 static void cl_env_fini(struct cl_env *cle)
675 {
676         cl_env_dec(CS_total);
677         lu_context_fini(&cle->ce_lu.le_ctx);
678         lu_context_fini(&cle->ce_ses);
679         OBD_SLAB_FREE_PTR(cle, cl_env_kmem);
680 }
681
682 static struct lu_env *cl_env_obtain(void *debug)
683 {
684         struct cl_env *cle;
685         struct lu_env *env;
686         int cpu = get_cpu();
687
688         ENTRY;
689
690         read_lock(&cl_envs[cpu].cec_guard);
691         LASSERT(equi(cl_envs[cpu].cec_count == 0,
692                 list_empty(&cl_envs[cpu].cec_envs)));
693         if (cl_envs[cpu].cec_count > 0) {
694                 int rc;
695
696                 cle = container_of(cl_envs[cpu].cec_envs.next, struct cl_env,
697                                    ce_linkage);
698                 list_del_init(&cle->ce_linkage);
699                 cl_envs[cpu].cec_count--;
700                 read_unlock(&cl_envs[cpu].cec_guard);
701                 put_cpu();
702
703                 env = &cle->ce_lu;
704                 rc = lu_env_refill(env);
705                 if (rc == 0) {
706                         cl_env_init0(cle, debug);
707                         lu_context_enter(&env->le_ctx);
708                         lu_context_enter(&cle->ce_ses);
709                 } else {
710                         cl_env_fini(cle);
711                         env = ERR_PTR(rc);
712                 }
713         } else {
714                 read_unlock(&cl_envs[cpu].cec_guard);
715                 put_cpu();
716                 env = cl_env_new(lu_context_tags_default,
717                                  lu_session_tags_default, debug);
718         }
719         RETURN(env);
720 }
721
722 static inline struct cl_env *cl_env_container(struct lu_env *env)
723 {
724         return container_of(env, struct cl_env, ce_lu);
725 }
726
727 /**
728  * Returns lu_env: if there already is an environment associated with the
729  * current thread, it is returned, otherwise, new environment is allocated.
730  *
731  * Allocations are amortized through the global cache of environments.
732  *
733  * \param refcheck pointer to a counter used to detect environment leaks. In
734  * the usual case cl_env_get() and cl_env_put() are called in the same lexical
735  * scope and pointer to the same integer is passed as \a refcheck. This is
736  * used to detect missed cl_env_put().
737  *
738  * \see cl_env_put()
739  */
740 struct lu_env *cl_env_get(__u16 *refcheck)
741 {
742         struct lu_env *env;
743
744         env = cl_env_obtain(__builtin_return_address(0));
745         if (!IS_ERR(env)) {
746                 struct cl_env *cle;
747
748                 cle = cl_env_container(env);
749                 *refcheck = cle->ce_ref;
750                 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
751         }
752         return env;
753 }
754 EXPORT_SYMBOL(cl_env_get);
755
756 /**
757  * Forces an allocation of a fresh environment with given tags.
758  *
759  * \see cl_env_get()
760  */
761 struct lu_env *cl_env_alloc(__u16 *refcheck, __u32 tags)
762 {
763         struct lu_env *env;
764
765         env = cl_env_new(tags, tags, __builtin_return_address(0));
766         if (!IS_ERR(env)) {
767                 struct cl_env *cle;
768
769                 cle = cl_env_container(env);
770                 *refcheck = cle->ce_ref;
771                 CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
772         }
773         return env;
774 }
775 EXPORT_SYMBOL(cl_env_alloc);
776
777 static void cl_env_exit(struct cl_env *cle)
778 {
779         lu_context_exit(&cle->ce_lu.le_ctx);
780         lu_context_exit(&cle->ce_ses);
781 }
782
783 /**
784  * Finalizes and frees a given number of cached environments. This is done to
785  * (1) free some memory (not currently hooked into VM), or (2) release
786  * references to modules.
787  */
788 unsigned cl_env_cache_purge(unsigned nr)
789 {
790         struct cl_env *cle;
791         unsigned i;
792
793         ENTRY;
794         for_each_possible_cpu(i) {
795                 write_lock(&cl_envs[i].cec_guard);
796                 for (; !list_empty(&cl_envs[i].cec_envs) && nr > 0; --nr) {
797                         cle = container_of(cl_envs[i].cec_envs.next,
798                                            struct cl_env, ce_linkage);
799                         list_del_init(&cle->ce_linkage);
800                         LASSERT(cl_envs[i].cec_count > 0);
801                         cl_envs[i].cec_count--;
802                         write_unlock(&cl_envs[i].cec_guard);
803
804                         cl_env_fini(cle);
805                         write_lock(&cl_envs[i].cec_guard);
806                 }
807                 LASSERT(equi(cl_envs[i].cec_count == 0,
808                         list_empty(&cl_envs[i].cec_envs)));
809                 write_unlock(&cl_envs[i].cec_guard);
810         }
811         RETURN(nr);
812 }
813 EXPORT_SYMBOL(cl_env_cache_purge);
814
815 /**
816  * Release an environment.
817  *
818  * Decrement \a env reference counter. When counter drops to 0, nothing in
819  * this thread is using environment and it is returned to the allocation
820  * cache, or freed straight away, if cache is large enough.
821  */
822 void cl_env_put(struct lu_env *env, __u16 *refcheck)
823 {
824         struct cl_env *cle;
825
826         cle = cl_env_container(env);
827
828         LASSERT(cle->ce_ref > 0);
829         LASSERT(ergo(refcheck != NULL, cle->ce_ref == *refcheck));
830
831         CDEBUG(D_OTHER, "%d@%p\n", cle->ce_ref, cle);
832         if (--cle->ce_ref == 0) {
833                 int cpu = get_cpu();
834
835                 cl_env_dec(CS_busy);
836                 cle->ce_debug = NULL;
837                 cl_env_exit(cle);
838                 /*
839                  * Don't bother to take a lock here.
840                  *
841                  * Return environment to the cache only when it was allocated
842                  * with the standard tags.
843                  */
844                 if (cl_envs[cpu].cec_count < cl_envs_cached_max &&
845                     (env->le_ctx.lc_tags & ~LCT_HAS_EXIT) == LCT_CL_THREAD &&
846                     (env->le_ses->lc_tags & ~LCT_HAS_EXIT) == LCT_SESSION) {
847                         read_lock(&cl_envs[cpu].cec_guard);
848                         list_add(&cle->ce_linkage, &cl_envs[cpu].cec_envs);
849                         cl_envs[cpu].cec_count++;
850                         read_unlock(&cl_envs[cpu].cec_guard);
851                 } else
852                         cl_env_fini(cle);
853                 put_cpu();
854         }
855 }
856 EXPORT_SYMBOL(cl_env_put);
857
858 /**
859  * Converts struct cl_attr to struct ost_lvb.
860  *
861  * \see cl_lvb2attr
862  */
863 void cl_attr2lvb(struct ost_lvb *lvb, const struct cl_attr *attr)
864 {
865         lvb->lvb_size   = attr->cat_size;
866         lvb->lvb_mtime  = attr->cat_mtime;
867         lvb->lvb_atime  = attr->cat_atime;
868         lvb->lvb_ctime  = attr->cat_ctime;
869         lvb->lvb_blocks = attr->cat_blocks;
870 }
871
872 /**
873  * Converts struct ost_lvb to struct cl_attr.
874  *
875  * \see cl_attr2lvb
876  */
877 void cl_lvb2attr(struct cl_attr *attr, const struct ost_lvb *lvb)
878 {
879         attr->cat_size   = lvb->lvb_size;
880         attr->cat_mtime  = lvb->lvb_mtime;
881         attr->cat_atime  = lvb->lvb_atime;
882         attr->cat_ctime  = lvb->lvb_ctime;
883         attr->cat_blocks = lvb->lvb_blocks;
884 }
885 EXPORT_SYMBOL(cl_lvb2attr);
886
887 static struct cl_env cl_env_percpu[NR_CPUS];
888
889 static int cl_env_percpu_init(void)
890 {
891         struct cl_env *cle;
892         int tags = LCT_REMEMBER | LCT_NOREF;
893         int i, j;
894         int rc = 0;
895
896         for_each_possible_cpu(i) {
897                 struct lu_env *env;
898
899                 rwlock_init(&cl_envs[i].cec_guard);
900                 INIT_LIST_HEAD(&cl_envs[i].cec_envs);
901                 cl_envs[i].cec_count = 0;
902
903                 cle = &cl_env_percpu[i];
904                 env = &cle->ce_lu;
905
906                 INIT_LIST_HEAD(&cle->ce_linkage);
907                 cle->ce_magic = &cl_env_init0;
908                 rc = lu_env_init(env, LCT_CL_THREAD | tags);
909                 if (rc == 0) {
910                         rc = lu_context_init(&cle->ce_ses, LCT_SESSION | tags);
911                         if (rc == 0) {
912                                 lu_context_enter(&cle->ce_ses);
913                                 env->le_ses = &cle->ce_ses;
914                         } else {
915                                 lu_env_fini(env);
916                         }
917                 }
918                 if (rc != 0)
919                         break;
920         }
921         if (rc != 0) {
922                 /* Indices 0 to i (excluding i) were correctly initialized,
923                  * thus we must uninitialize up to i, the rest are undefined. */
924                 for (j = 0; j < i; j++) {
925                         cle = &cl_env_percpu[j];
926                         lu_context_exit(&cle->ce_ses);
927                         lu_context_fini(&cle->ce_ses);
928                         lu_env_fini(&cle->ce_lu);
929                 }
930         }
931
932         return rc;
933 }
934
935 static void cl_env_percpu_fini(void)
936 {
937         int i;
938
939         for_each_possible_cpu(i) {
940                 struct cl_env *cle = &cl_env_percpu[i];
941
942                 lu_context_exit(&cle->ce_ses);
943                 lu_context_fini(&cle->ce_ses);
944                 lu_env_fini(&cle->ce_lu);
945         }
946 }
947
948 static void cl_env_percpu_refill(void)
949 {
950         int i;
951
952         for_each_possible_cpu(i)
953                 lu_env_refill(&cl_env_percpu[i].ce_lu);
954 }
955
956 void cl_env_percpu_put(struct lu_env *env)
957 {
958         struct cl_env *cle;
959         int cpu;
960
961         cpu = smp_processor_id();
962         cle = cl_env_container(env);
963         LASSERT(cle == &cl_env_percpu[cpu]);
964
965         cle->ce_ref--;
966         LASSERT(cle->ce_ref == 0);
967
968         cl_env_dec(CS_busy);
969         cle->ce_debug = NULL;
970
971         put_cpu();
972 }
973 EXPORT_SYMBOL(cl_env_percpu_put);
974
975 struct lu_env *cl_env_percpu_get()
976 {
977         struct cl_env *cle;
978
979         cle = &cl_env_percpu[get_cpu()];
980         cl_env_init0(cle, __builtin_return_address(0));
981
982         return &cle->ce_lu;
983 }
984 EXPORT_SYMBOL(cl_env_percpu_get);
985
986 /*****************************************************************************
987  *
988  * Temporary prototype thing: mirror obd-devices into cl devices.
989  *
990  */
991
992 struct cl_device *cl_type_setup(const struct lu_env *env, struct lu_site *site,
993                                 struct lu_device_type *ldt,
994                                 struct lu_device *next)
995 {
996         const char       *typename;
997         struct lu_device *d;
998
999         LASSERT(ldt != NULL);
1000
1001         typename = ldt->ldt_name;
1002         d = ldt->ldt_ops->ldto_device_alloc(env, ldt, NULL);
1003         if (!IS_ERR(d)) {
1004                 int rc;
1005
1006                 if (site != NULL)
1007                         d->ld_site = site;
1008                 rc = ldt->ldt_ops->ldto_device_init(env, d, typename, next);
1009                 if (rc == 0) {
1010                         lu_device_get(d);
1011                         lu_ref_add(&d->ld_reference,
1012                                    "lu-stack", &lu_site_init);
1013                 } else {
1014                         ldt->ldt_ops->ldto_device_free(env, d);
1015                         CERROR("can't init device '%s', %d\n", typename, rc);
1016                         d = ERR_PTR(rc);
1017                 }
1018         } else
1019                 CERROR("Cannot allocate device: '%s'\n", typename);
1020         return lu2cl_dev(d);
1021 }
1022 EXPORT_SYMBOL(cl_type_setup);
1023
1024 /**
1025  * Finalize device stack by calling lu_stack_fini().
1026  */
1027 void cl_stack_fini(const struct lu_env *env, struct cl_device *cl)
1028 {
1029         lu_stack_fini(env, cl2lu_dev(cl));
1030 }
1031 EXPORT_SYMBOL(cl_stack_fini);
1032
1033 static struct lu_context_key cl_key;
1034
1035 struct cl_thread_info *cl_env_info(const struct lu_env *env)
1036 {
1037         return lu_context_key_get(&env->le_ctx, &cl_key);
1038 }
1039
1040 /* defines cl_key_{init,fini}() */
1041 LU_KEY_INIT_FINI(cl, struct cl_thread_info);
1042
1043 static struct lu_context_key cl_key = {
1044         .lct_tags = LCT_CL_THREAD,
1045         .lct_init = cl_key_init,
1046         .lct_fini = cl_key_fini,
1047 };
1048
1049 static struct lu_kmem_descr cl_object_caches[] = {
1050         {
1051                 .ckd_cache = &cl_env_kmem,
1052                 .ckd_name  = "cl_env_kmem",
1053                 .ckd_size  = sizeof (struct cl_env)
1054         },
1055         {
1056                 .ckd_cache = NULL
1057         }
1058 };
1059
1060 /**
1061  * Global initialization of cl-data. Create kmem caches, register
1062  * lu_context_key's, etc.
1063  *
1064  * \see cl_global_fini()
1065  */
1066 int cl_global_init(void)
1067 {
1068         int result;
1069
1070         OBD_ALLOC(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1071         if (cl_envs == NULL)
1072                 GOTO(out, result = -ENOMEM);
1073
1074         result = lu_kmem_init(cl_object_caches);
1075         if (result)
1076                 GOTO(out_envs, result);
1077
1078         LU_CONTEXT_KEY_INIT(&cl_key);
1079         result = lu_context_key_register(&cl_key);
1080         if (result)
1081                 GOTO(out_kmem, result);
1082
1083         result = cl_env_percpu_init();
1084         if (result) /* no cl_env_percpu_fini on error */
1085                 GOTO(out_keys, result);
1086
1087         return 0;
1088
1089 out_keys:
1090         lu_context_key_degister(&cl_key);
1091 out_kmem:
1092         lu_kmem_fini(cl_object_caches);
1093 out_envs:
1094         OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1095 out:
1096         return result;
1097 }
1098
1099 /**
1100  * Finalization of global cl-data. Dual to cl_global_init().
1101  */
1102 void cl_global_fini(void)
1103 {
1104         cl_env_percpu_fini();
1105         lu_context_key_degister(&cl_key);
1106         lu_kmem_fini(cl_object_caches);
1107         OBD_FREE(cl_envs, sizeof(*cl_envs) * num_possible_cpus());
1108 }