Whamcloud - gitweb
LU-10308 misc: update Intel copyright messages for 2017
[fs/lustre-release.git] / lustre / ldlm / ldlm_resource.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2010, 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  * lustre/ldlm/ldlm_resource.c
33  *
34  * Author: Phil Schwan <phil@clusterfs.com>
35  * Author: Peter Braam <braam@clusterfs.com>
36  */
37
38 #define DEBUG_SUBSYSTEM S_LDLM
39 #include <lustre_dlm.h>
40 #include <lustre_fid.h>
41 #include <obd_class.h>
42 #include "ldlm_internal.h"
43
44 struct kmem_cache *ldlm_resource_slab, *ldlm_lock_slab;
45 struct kmem_cache *ldlm_interval_tree_slab;
46
47 int ldlm_srv_namespace_nr = 0;
48 int ldlm_cli_namespace_nr = 0;
49
50 DEFINE_MUTEX(ldlm_srv_namespace_lock);
51 LIST_HEAD(ldlm_srv_namespace_list);
52
53 DEFINE_MUTEX(ldlm_cli_namespace_lock);
54 /* Client Namespaces that have active resources in them.
55  * Once all resources go away, ldlm_poold moves such namespaces to the
56  * inactive list */
57 LIST_HEAD(ldlm_cli_active_namespace_list);
58 /* Client namespaces that don't have any locks in them */
59 LIST_HEAD(ldlm_cli_inactive_namespace_list);
60
61 static struct proc_dir_entry *ldlm_type_proc_dir;
62 static struct proc_dir_entry *ldlm_ns_proc_dir;
63 struct proc_dir_entry *ldlm_svc_proc_dir;
64
65 /* during debug dump certain amount of granted locks for one resource to avoid
66  * DDOS. */
67 static unsigned int ldlm_dump_granted_max = 256;
68
69 #ifdef CONFIG_PROC_FS
70 static ssize_t
71 lprocfs_dump_ns_seq_write(struct file *file, const char __user *buffer,
72                           size_t count, loff_t *off)
73 {
74         ldlm_dump_all_namespaces(LDLM_NAMESPACE_SERVER, D_DLMTRACE);
75         ldlm_dump_all_namespaces(LDLM_NAMESPACE_CLIENT, D_DLMTRACE);
76         RETURN(count);
77 }
78 LPROC_SEQ_FOPS_WR_ONLY(ldlm, dump_ns);
79
80 LPROC_SEQ_FOPS_RW_TYPE(ldlm_rw, uint);
81
82 #ifdef HAVE_SERVER_SUPPORT
83
84 static int seq_watermark_show(struct seq_file *m, void *data)
85 {
86         seq_printf(m, "%llu\n", *(__u64 *)m->private);
87         return 0;
88 }
89
90 static ssize_t seq_watermark_write(struct file *file,
91                                    const char __user *buffer, size_t count,
92                                    loff_t *off)
93 {
94         __s64 value;
95         __u64 watermark;
96         __u64 *data = ((struct seq_file *)file->private_data)->private;
97         bool wm_low = (data == &ldlm_reclaim_threshold_mb) ? true : false;
98         int rc;
99
100         rc = lprocfs_str_with_units_to_s64(buffer, count, &value, 'M');
101         if (rc) {
102                 CERROR("Failed to set %s, rc = %d.\n",
103                        wm_low ? "lock_reclaim_threshold_mb" : "lock_limit_mb",
104                        rc);
105                 return rc;
106         } else if (value != 0 && value < (1 << 20)) {
107                 CERROR("%s should be greater than 1MB.\n",
108                        wm_low ? "lock_reclaim_threshold_mb" : "lock_limit_mb");
109                 return -EINVAL;
110         }
111         watermark = value >> 20;
112
113         if (wm_low) {
114                 if (ldlm_lock_limit_mb != 0 && watermark > ldlm_lock_limit_mb) {
115                         CERROR("lock_reclaim_threshold_mb must be smaller than "
116                                "lock_limit_mb.\n");
117                         return -EINVAL;
118                 }
119
120                 *data = watermark;
121                 if (watermark != 0) {
122                         watermark <<= 20;
123                         do_div(watermark, sizeof(struct ldlm_lock));
124                 }
125                 ldlm_reclaim_threshold = watermark;
126         } else {
127                 if (ldlm_reclaim_threshold_mb != 0 &&
128                     watermark < ldlm_reclaim_threshold_mb) {
129                         CERROR("lock_limit_mb must be greater than "
130                                "lock_reclaim_threshold_mb.\n");
131                         return -EINVAL;
132                 }
133
134                 *data = watermark;
135                 if (watermark != 0) {
136                         watermark <<= 20;
137                         do_div(watermark, sizeof(struct ldlm_lock));
138                 }
139                 ldlm_lock_limit = watermark;
140         }
141
142         return count;
143 }
144
145 static int seq_watermark_open(struct inode *inode, struct file *file)
146 {
147         return single_open(file, seq_watermark_show, PDE_DATA(inode));
148 }
149
150 static const struct file_operations ldlm_watermark_fops = {
151         .owner          = THIS_MODULE,
152         .open           = seq_watermark_open,
153         .read           = seq_read,
154         .write          = seq_watermark_write,
155         .llseek         = seq_lseek,
156         .release        = lprocfs_single_release,
157 };
158
159 static int seq_granted_show(struct seq_file *m, void *data)
160 {
161         seq_printf(m, "%llu\n", percpu_counter_sum_positive(
162                    (struct percpu_counter *)m->private));
163         return 0;
164 }
165
166 static int seq_granted_open(struct inode *inode, struct file *file)
167 {
168         return single_open(file, seq_granted_show, PDE_DATA(inode));
169 }
170
171 static const struct file_operations ldlm_granted_fops = {
172         .owner  = THIS_MODULE,
173         .open   = seq_granted_open,
174         .read   = seq_read,
175         .llseek = seq_lseek,
176         .release = seq_release,
177 };
178
179 #endif /* HAVE_SERVER_SUPPORT */
180
181 int ldlm_proc_setup(void)
182 {
183         int rc;
184         struct lprocfs_vars list[] = {
185                 { .name =       "dump_namespaces",
186                   .fops =       &ldlm_dump_ns_fops,
187                   .proc_mode =  0222 },
188                 { .name =       "dump_granted_max",
189                   .fops =       &ldlm_rw_uint_fops,
190                   .data =       &ldlm_dump_granted_max },
191 #ifdef HAVE_SERVER_SUPPORT
192                 { .name =       "lock_reclaim_threshold_mb",
193                   .fops =       &ldlm_watermark_fops,
194                   .data =       &ldlm_reclaim_threshold_mb },
195                 { .name =       "lock_limit_mb",
196                   .fops =       &ldlm_watermark_fops,
197                   .data =       &ldlm_lock_limit_mb },
198                 { .name =       "lock_granted_count",
199                   .fops =       &ldlm_granted_fops,
200                   .data =       &ldlm_granted_total },
201 #endif
202                 { NULL }};
203         ENTRY;
204         LASSERT(ldlm_ns_proc_dir == NULL);
205
206         ldlm_type_proc_dir = lprocfs_register(OBD_LDLM_DEVICENAME,
207                                               proc_lustre_root,
208                                               NULL, NULL);
209         if (IS_ERR(ldlm_type_proc_dir)) {
210                 CERROR("LProcFS failed in ldlm-init\n");
211                 rc = PTR_ERR(ldlm_type_proc_dir);
212                 GOTO(err, rc);
213         }
214
215         ldlm_ns_proc_dir = lprocfs_register("namespaces",
216                                             ldlm_type_proc_dir,
217                                             NULL, NULL);
218         if (IS_ERR(ldlm_ns_proc_dir)) {
219                 CERROR("LProcFS failed in ldlm-init\n");
220                 rc = PTR_ERR(ldlm_ns_proc_dir);
221                 GOTO(err_type, rc);
222         }
223
224         ldlm_svc_proc_dir = lprocfs_register("services",
225                                              ldlm_type_proc_dir,
226                                              NULL, NULL);
227         if (IS_ERR(ldlm_svc_proc_dir)) {
228                 CERROR("LProcFS failed in ldlm-init\n");
229                 rc = PTR_ERR(ldlm_svc_proc_dir);
230                 GOTO(err_ns, rc);
231         }
232
233         rc = lprocfs_add_vars(ldlm_type_proc_dir, list, NULL);
234         if (rc != 0) {
235                 CERROR("LProcFS failed in ldlm-init\n");
236                 GOTO(err_svc, rc);
237         }
238
239         RETURN(0);
240
241 err_svc:
242         lprocfs_remove(&ldlm_svc_proc_dir);
243 err_ns:
244         lprocfs_remove(&ldlm_ns_proc_dir);
245 err_type:
246         lprocfs_remove(&ldlm_type_proc_dir);
247 err:
248         ldlm_svc_proc_dir = NULL;
249         RETURN(rc);
250 }
251
252 void ldlm_proc_cleanup(void)
253 {
254         if (ldlm_svc_proc_dir)
255                 lprocfs_remove(&ldlm_svc_proc_dir);
256
257         if (ldlm_ns_proc_dir)
258                 lprocfs_remove(&ldlm_ns_proc_dir);
259
260         if (ldlm_type_proc_dir)
261                 lprocfs_remove(&ldlm_type_proc_dir);
262 }
263
264 static ssize_t resource_count_show(struct kobject *kobj, struct attribute *attr,
265                                    char *buf)
266 {
267         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
268                                                  ns_kobj);
269         __u64                   res = 0;
270         struct cfs_hash_bd              bd;
271         int                     i;
272
273         /* result is not strictly consistant */
274         cfs_hash_for_each_bucket(ns->ns_rs_hash, &bd, i)
275                 res += cfs_hash_bd_count_get(&bd);
276         return sprintf(buf, "%lld\n", res);
277 }
278 LUSTRE_RO_ATTR(resource_count);
279
280 static ssize_t lock_count_show(struct kobject *kobj, struct attribute *attr,
281                                char *buf)
282 {
283         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
284                                                  ns_kobj);
285         __u64                   locks;
286
287         locks = lprocfs_stats_collector(ns->ns_stats, LDLM_NSS_LOCKS,
288                                         LPROCFS_FIELDS_FLAGS_SUM);
289         return sprintf(buf, "%lld\n", locks);
290 }
291 LUSTRE_RO_ATTR(lock_count);
292
293 static ssize_t lock_unused_count_show(struct kobject *kobj,
294                                       struct attribute *attr,
295                                       char *buf)
296 {
297         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
298                                                  ns_kobj);
299
300         return sprintf(buf, "%d\n", ns->ns_nr_unused);
301 }
302 LUSTRE_RO_ATTR(lock_unused_count);
303
304 static ssize_t lru_size_show(struct kobject *kobj, struct attribute *attr,
305                              char *buf)
306 {
307         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
308                                                  ns_kobj);
309         __u32 *nr = &ns->ns_max_unused;
310
311         if (ns_connect_lru_resize(ns))
312                 nr = &ns->ns_nr_unused;
313         return sprintf(buf, "%u\n", *nr);
314 }
315
316 static ssize_t lru_size_store(struct kobject *kobj, struct attribute *attr,
317                               const char *buffer, size_t count)
318 {
319         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
320                                                  ns_kobj);
321         unsigned long tmp;
322         int lru_resize;
323         int err;
324
325         if (strncmp(buffer, "clear", 5) == 0) {
326                 CDEBUG(D_DLMTRACE,
327                        "dropping all unused locks from namespace %s\n",
328                        ldlm_ns_name(ns));
329                 if (ns_connect_lru_resize(ns)) {
330                         /* Try to cancel all @ns_nr_unused locks. */
331                         ldlm_cancel_lru(ns, ns->ns_nr_unused, 0,
332                                         LDLM_LRU_FLAG_PASSED |
333                                         LDLM_LRU_FLAG_CLEANUP);
334                 } else {
335                         tmp = ns->ns_max_unused;
336                         ns->ns_max_unused = 0;
337                         ldlm_cancel_lru(ns, 0, 0, LDLM_LRU_FLAG_PASSED |
338                                         LDLM_LRU_FLAG_CLEANUP);
339                         ns->ns_max_unused = tmp;
340                 }
341                 return count;
342         }
343
344         err = kstrtoul(buffer, 10, &tmp);
345         if (err != 0) {
346                 CERROR("lru_size: invalid value written\n");
347                 return -EINVAL;
348         }
349         lru_resize = (tmp == 0);
350
351         if (ns_connect_lru_resize(ns)) {
352                 if (!lru_resize)
353                         ns->ns_max_unused = (unsigned int)tmp;
354
355                 if (tmp > ns->ns_nr_unused)
356                         tmp = ns->ns_nr_unused;
357                 tmp = ns->ns_nr_unused - tmp;
358
359                 CDEBUG(D_DLMTRACE,
360                        "changing namespace %s unused locks from %u to %u\n",
361                        ldlm_ns_name(ns), ns->ns_nr_unused,
362                        (unsigned int)tmp);
363                 ldlm_cancel_lru(ns, tmp, LCF_ASYNC, LDLM_LRU_FLAG_PASSED);
364
365                 if (!lru_resize) {
366                         CDEBUG(D_DLMTRACE,
367                                "disable lru_resize for namespace %s\n",
368                                ldlm_ns_name(ns));
369                         ns->ns_connect_flags &= ~OBD_CONNECT_LRU_RESIZE;
370                 }
371         } else {
372                 CDEBUG(D_DLMTRACE,
373                        "changing namespace %s max_unused from %u to %u\n",
374                        ldlm_ns_name(ns), ns->ns_max_unused,
375                        (unsigned int)tmp);
376                 ns->ns_max_unused = (unsigned int)tmp;
377                 ldlm_cancel_lru(ns, 0, LCF_ASYNC, LDLM_LRU_FLAG_PASSED);
378
379                 /* Make sure that LRU resize was originally supported before
380                  * turning it on here.
381                  */
382                 if (lru_resize &&
383                     (ns->ns_orig_connect_flags & OBD_CONNECT_LRU_RESIZE)) {
384                         CDEBUG(D_DLMTRACE,
385                                "enable lru_resize for namespace %s\n",
386                                ldlm_ns_name(ns));
387                         ns->ns_connect_flags |= OBD_CONNECT_LRU_RESIZE;
388                 }
389         }
390
391         return count;
392 }
393 LUSTRE_RW_ATTR(lru_size);
394
395 static ssize_t lru_max_age_show(struct kobject *kobj, struct attribute *attr,
396                                 char *buf)
397 {
398         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
399                                                  ns_kobj);
400
401         return sprintf(buf, "%lld\n", ktime_to_ms(ns->ns_max_age));
402 }
403
404 static ssize_t lru_max_age_store(struct kobject *kobj, struct attribute *attr,
405                                  const char *buffer, size_t count)
406 {
407         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
408                                                  ns_kobj);
409         int scale = NSEC_PER_MSEC;
410         unsigned long long tmp;
411         char *buf;
412
413         /* Did the user ask in seconds or milliseconds. Default is in ms */
414         buf = strstr(buffer, "ms");
415         if (!buf) {
416                 buf = strchr(buffer, 's');
417                 if (buf)
418                         scale = NSEC_PER_SEC;
419         }
420
421         if (buf)
422                 *buf = '\0';
423
424         if (kstrtoull(buffer, 10, &tmp))
425                 return -EINVAL;
426
427         ns->ns_max_age = ktime_set(0, tmp * scale);
428
429         return count;
430 }
431 LUSTRE_RW_ATTR(lru_max_age);
432
433 static ssize_t early_lock_cancel_show(struct kobject *kobj,
434                                       struct attribute *attr,
435                                       char *buf)
436 {
437         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
438                                                  ns_kobj);
439
440         return sprintf(buf, "%d\n", ns_connect_cancelset(ns));
441 }
442
443 static ssize_t early_lock_cancel_store(struct kobject *kobj,
444                                        struct attribute *attr,
445                                        const char *buffer,
446                                        size_t count)
447 {
448         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
449                                                  ns_kobj);
450         unsigned long supp = -1;
451         int rc;
452
453         rc = kstrtoul(buffer, 10, &supp);
454         if (rc < 0)
455                 return rc;
456
457         if (supp == 0)
458                 ns->ns_connect_flags &= ~OBD_CONNECT_CANCELSET;
459         else if (ns->ns_orig_connect_flags & OBD_CONNECT_CANCELSET)
460                 ns->ns_connect_flags |= OBD_CONNECT_CANCELSET;
461         return count;
462 }
463 LUSTRE_RW_ATTR(early_lock_cancel);
464
465 #ifdef HAVE_SERVER_SUPPORT
466 static ssize_t ctime_age_limit_show(struct kobject *kobj,
467                                     struct attribute *attr, char *buf)
468 {
469         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
470                                                  ns_kobj);
471
472         return sprintf(buf, "%llu\n", ns->ns_ctime_age_limit);
473 }
474
475 static ssize_t ctime_age_limit_store(struct kobject *kobj,
476                                      struct attribute *attr,
477                                      const char *buffer, size_t count)
478 {
479         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
480                                                  ns_kobj);
481         unsigned long long tmp;
482
483         if (kstrtoull(buffer, 10, &tmp))
484                 return -EINVAL;
485
486         ns->ns_ctime_age_limit = tmp;
487
488         return count;
489 }
490 LUSTRE_RW_ATTR(ctime_age_limit);
491
492 static ssize_t lock_timeouts_show(struct kobject *kobj, struct attribute *attr,
493                                   char *buf)
494 {
495         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
496                                                  ns_kobj);
497
498         return sprintf(buf, "%d\n", ns->ns_timeouts);
499 }
500 LUSTRE_RO_ATTR(lock_timeouts);
501
502 static ssize_t max_nolock_bytes_show(struct kobject *kobj,
503                                      struct attribute *attr, char *buf)
504 {
505         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
506                                                  ns_kobj);
507
508         return sprintf(buf, "%u\n", ns->ns_max_nolock_size);
509 }
510
511 static ssize_t max_nolock_bytes_store(struct kobject *kobj,
512                                       struct attribute *attr,
513                                       const char *buffer, size_t count)
514 {
515         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
516                                                  ns_kobj);
517         unsigned long tmp;
518         int err;
519
520         err = kstrtoul(buffer, 10, &tmp);
521         if (err != 0)
522                 return -EINVAL;
523
524         ns->ns_max_nolock_size = tmp;
525
526         return count;
527 }
528 LUSTRE_RW_ATTR(max_nolock_bytes);
529
530 static ssize_t contention_seconds_show(struct kobject *kobj,
531                                        struct attribute *attr, char *buf)
532 {
533         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
534                                                  ns_kobj);
535
536         return sprintf(buf, "%llu\n", ns->ns_contention_time);
537 }
538
539 static ssize_t contention_seconds_store(struct kobject *kobj,
540                                         struct attribute *attr,
541                                         const char *buffer, size_t count)
542 {
543         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
544                                                  ns_kobj);
545         unsigned long long tmp;
546
547         if (kstrtoull(buffer, 10, &tmp))
548                 return -EINVAL;
549
550         ns->ns_contention_time = tmp;
551
552         return count;
553 }
554 LUSTRE_RW_ATTR(contention_seconds);
555
556 static ssize_t contended_locks_show(struct kobject *kobj,
557                                     struct attribute *attr, char *buf)
558 {
559         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
560                                                  ns_kobj);
561
562         return sprintf(buf, "%u\n", ns->ns_contended_locks);
563 }
564
565 static ssize_t contended_locks_store(struct kobject *kobj,
566                                      struct attribute *attr,
567                                      const char *buffer, size_t count)
568 {
569         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
570                                                  ns_kobj);
571         unsigned long tmp;
572         int err;
573
574         err = kstrtoul(buffer, 10, &tmp);
575         if (err != 0)
576                 return -EINVAL;
577
578         ns->ns_contended_locks = tmp;
579
580         return count;
581 }
582 LUSTRE_RW_ATTR(contended_locks);
583
584 static ssize_t max_parallel_ast_show(struct kobject *kobj,
585                                      struct attribute *attr, char *buf)
586 {
587         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
588                                                  ns_kobj);
589
590         return sprintf(buf, "%u\n", ns->ns_max_parallel_ast);
591 }
592
593 static ssize_t max_parallel_ast_store(struct kobject *kobj,
594                                       struct attribute *attr,
595                                       const char *buffer, size_t count)
596 {
597         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
598                                                  ns_kobj);
599         unsigned long tmp;
600         int err;
601
602         err = kstrtoul(buffer, 10, &tmp);
603         if (err != 0)
604                 return -EINVAL;
605
606         ns->ns_max_parallel_ast = tmp;
607
608         return count;
609 }
610 LUSTRE_RW_ATTR(max_parallel_ast);
611
612 #endif /* HAVE_SERVER_SUPPORT */
613
614 /* These are for namespaces in /sys/fs/lustre/ldlm/namespaces/ */
615 static struct attribute *ldlm_ns_attrs[] = {
616         &lustre_attr_resource_count.attr,
617         &lustre_attr_lock_count.attr,
618         &lustre_attr_lock_unused_count.attr,
619         &lustre_attr_lru_size.attr,
620         &lustre_attr_lru_max_age.attr,
621         &lustre_attr_early_lock_cancel.attr,
622 #ifdef HAVE_SERVER_SUPPORT
623         &lustre_attr_ctime_age_limit.attr,
624         &lustre_attr_lock_timeouts.attr,
625         &lustre_attr_max_nolock_bytes.attr,
626         &lustre_attr_contention_seconds.attr,
627         &lustre_attr_contended_locks.attr,
628         &lustre_attr_max_parallel_ast.attr,
629 #endif
630         NULL,
631 };
632
633 static void ldlm_ns_release(struct kobject *kobj)
634 {
635         struct ldlm_namespace *ns = container_of(kobj, struct ldlm_namespace,
636                                                  ns_kobj);
637         complete(&ns->ns_kobj_unregister);
638 }
639
640 static struct kobj_type ldlm_ns_ktype = {
641         .default_attrs  = ldlm_ns_attrs,
642         .sysfs_ops      = &lustre_sysfs_ops,
643         .release        = ldlm_ns_release,
644 };
645
646 static void ldlm_namespace_proc_unregister(struct ldlm_namespace *ns)
647 {
648         if (ns->ns_proc_dir_entry == NULL)
649                 CERROR("dlm namespace %s has no procfs dir?\n",
650                        ldlm_ns_name(ns));
651         else
652                 lprocfs_remove(&ns->ns_proc_dir_entry);
653
654         if (ns->ns_stats != NULL)
655                 lprocfs_free_stats(&ns->ns_stats);
656 }
657
658 void ldlm_namespace_sysfs_unregister(struct ldlm_namespace *ns)
659 {
660         kobject_put(&ns->ns_kobj);
661         wait_for_completion(&ns->ns_kobj_unregister);
662 }
663
664 int ldlm_namespace_sysfs_register(struct ldlm_namespace *ns)
665 {
666         int err;
667
668         ns->ns_kobj.kset = ldlm_ns_kset;
669         init_completion(&ns->ns_kobj_unregister);
670         err = kobject_init_and_add(&ns->ns_kobj, &ldlm_ns_ktype, NULL,
671                                    "%s", ldlm_ns_name(ns));
672
673         ns->ns_stats = lprocfs_alloc_stats(LDLM_NSS_LAST, 0);
674         if (!ns->ns_stats) {
675                 kobject_put(&ns->ns_kobj);
676                 return -ENOMEM;
677         }
678
679         lprocfs_counter_init(ns->ns_stats, LDLM_NSS_LOCKS,
680                              LPROCFS_CNTR_AVGMINMAX, "locks", "locks");
681
682         return err;
683 }
684
685 static int ldlm_namespace_proc_register(struct ldlm_namespace *ns)
686 {
687         struct proc_dir_entry *ns_pde;
688
689         LASSERT(ns != NULL);
690         LASSERT(ns->ns_rs_hash != NULL);
691
692         if (ns->ns_proc_dir_entry != NULL) {
693                 ns_pde = ns->ns_proc_dir_entry;
694         } else {
695                 ns_pde = proc_mkdir(ldlm_ns_name(ns), ldlm_ns_proc_dir);
696                 if (ns_pde == NULL)
697                         return -ENOMEM;
698                 ns->ns_proc_dir_entry = ns_pde;
699         }
700
701         return 0;
702 }
703 #undef MAX_STRING_SIZE
704 #else /* CONFIG_PROC_FS */
705
706 #define ldlm_namespace_proc_unregister(ns)      ({;})
707 #define ldlm_namespace_proc_register(ns)        ({0;})
708
709 #endif /* CONFIG_PROC_FS */
710
711 static unsigned ldlm_res_hop_hash(struct cfs_hash *hs,
712                                   const void *key, unsigned mask)
713 {
714         const struct ldlm_res_id     *id  = key;
715         unsigned                val = 0;
716         unsigned                i;
717
718         for (i = 0; i < RES_NAME_SIZE; i++)
719                 val += id->name[i];
720         return val & mask;
721 }
722
723 static unsigned ldlm_res_hop_fid_hash(struct cfs_hash *hs,
724                                       const void *key, unsigned mask)
725 {
726         const struct ldlm_res_id *id = key;
727         struct lu_fid       fid;
728         __u32               hash;
729         __u32               val;
730
731         fid.f_seq = id->name[LUSTRE_RES_ID_SEQ_OFF];
732         fid.f_oid = (__u32)id->name[LUSTRE_RES_ID_VER_OID_OFF];
733         fid.f_ver = (__u32)(id->name[LUSTRE_RES_ID_VER_OID_OFF] >> 32);
734
735         hash = fid_flatten32(&fid);
736         hash += (hash >> 4) + (hash << 12); /* mixing oid and seq */
737         if (id->name[LUSTRE_RES_ID_HSH_OFF] != 0) {
738                 val = id->name[LUSTRE_RES_ID_HSH_OFF];
739                 hash += (val >> 5) + (val << 11);
740         } else {
741                 val = fid_oid(&fid);
742         }
743         hash = hash_long(hash, hs->hs_bkt_bits);
744         /* give me another random factor */
745         hash -= hash_long((unsigned long)hs, val % 11 + 3);
746
747         hash <<= hs->hs_cur_bits - hs->hs_bkt_bits;
748         hash |= ldlm_res_hop_hash(hs, key, CFS_HASH_NBKT(hs) - 1);
749
750         return hash & mask;
751 }
752
753 static void *ldlm_res_hop_key(struct hlist_node *hnode)
754 {
755         struct ldlm_resource   *res;
756
757         res = hlist_entry(hnode, struct ldlm_resource, lr_hash);
758         return &res->lr_name;
759 }
760
761 static int ldlm_res_hop_keycmp(const void *key, struct hlist_node *hnode)
762 {
763         struct ldlm_resource   *res;
764
765         res = hlist_entry(hnode, struct ldlm_resource, lr_hash);
766         return ldlm_res_eq((const struct ldlm_res_id *)key,
767                            (const struct ldlm_res_id *)&res->lr_name);
768 }
769
770 static void *ldlm_res_hop_object(struct hlist_node *hnode)
771 {
772         return hlist_entry(hnode, struct ldlm_resource, lr_hash);
773 }
774
775 static void
776 ldlm_res_hop_get_locked(struct cfs_hash *hs, struct hlist_node *hnode)
777 {
778         struct ldlm_resource *res;
779
780         res = hlist_entry(hnode, struct ldlm_resource, lr_hash);
781         ldlm_resource_getref(res);
782 }
783
784 static void ldlm_res_hop_put(struct cfs_hash *hs, struct hlist_node *hnode)
785 {
786         struct ldlm_resource *res;
787
788         res = hlist_entry(hnode, struct ldlm_resource, lr_hash);
789         ldlm_resource_putref(res);
790 }
791
792 static struct cfs_hash_ops ldlm_ns_hash_ops = {
793         .hs_hash        = ldlm_res_hop_hash,
794         .hs_key         = ldlm_res_hop_key,
795         .hs_keycmp      = ldlm_res_hop_keycmp,
796         .hs_keycpy      = NULL,
797         .hs_object      = ldlm_res_hop_object,
798         .hs_get         = ldlm_res_hop_get_locked,
799         .hs_put         = ldlm_res_hop_put
800 };
801
802 static struct cfs_hash_ops ldlm_ns_fid_hash_ops = {
803         .hs_hash        = ldlm_res_hop_fid_hash,
804         .hs_key         = ldlm_res_hop_key,
805         .hs_keycmp      = ldlm_res_hop_keycmp,
806         .hs_keycpy      = NULL,
807         .hs_object      = ldlm_res_hop_object,
808         .hs_get         = ldlm_res_hop_get_locked,
809         .hs_put         = ldlm_res_hop_put
810 };
811
812 typedef struct ldlm_ns_hash_def {
813         enum ldlm_ns_type       nsd_type;
814         /** hash bucket bits */
815         unsigned                nsd_bkt_bits;
816         /** hash bits */
817         unsigned                nsd_all_bits;
818         /** hash operations */
819         struct cfs_hash_ops *nsd_hops;
820 } ldlm_ns_hash_def_t;
821
822 static struct ldlm_ns_hash_def ldlm_ns_hash_defs[] =
823 {
824         {
825                 .nsd_type       = LDLM_NS_TYPE_MDC,
826                 .nsd_bkt_bits   = 11,
827                 .nsd_all_bits   = 16,
828                 .nsd_hops       = &ldlm_ns_fid_hash_ops,
829         },
830         {
831                 .nsd_type       = LDLM_NS_TYPE_MDT,
832                 .nsd_bkt_bits   = 14,
833                 .nsd_all_bits   = 21,
834                 .nsd_hops       = &ldlm_ns_fid_hash_ops,
835         },
836         {
837                 .nsd_type       = LDLM_NS_TYPE_OSC,
838                 .nsd_bkt_bits   = 8,
839                 .nsd_all_bits   = 12,
840                 .nsd_hops       = &ldlm_ns_hash_ops,
841         },
842         {
843                 .nsd_type       = LDLM_NS_TYPE_OST,
844                 .nsd_bkt_bits   = 11,
845                 .nsd_all_bits   = 17,
846                 .nsd_hops       = &ldlm_ns_hash_ops,
847         },
848         {
849                 .nsd_type       = LDLM_NS_TYPE_MGC,
850                 .nsd_bkt_bits   = 4,
851                 .nsd_all_bits   = 4,
852                 .nsd_hops       = &ldlm_ns_hash_ops,
853         },
854         {
855                 .nsd_type       = LDLM_NS_TYPE_MGT,
856                 .nsd_bkt_bits   = 4,
857                 .nsd_all_bits   = 4,
858                 .nsd_hops       = &ldlm_ns_hash_ops,
859         },
860         {
861                 .nsd_type       = LDLM_NS_TYPE_UNKNOWN,
862         },
863 };
864
865 /**
866  * Create and initialize new empty namespace.
867  */
868 struct ldlm_namespace *ldlm_namespace_new(struct obd_device *obd, char *name,
869                                           enum ldlm_side client,
870                                           enum ldlm_appetite apt,
871                                           enum ldlm_ns_type ns_type)
872 {
873         struct ldlm_namespace *ns = NULL;
874         struct ldlm_ns_bucket *nsb;
875         struct ldlm_ns_hash_def *nsd;
876         struct cfs_hash_bd bd;
877         int idx;
878         int rc;
879         ENTRY;
880
881         LASSERT(obd != NULL);
882
883         rc = ldlm_get_ref();
884         if (rc) {
885                 CERROR("ldlm_get_ref failed: %d\n", rc);
886                 RETURN(NULL);
887         }
888
889         for (idx = 0;;idx++) {
890                 nsd = &ldlm_ns_hash_defs[idx];
891                 if (nsd->nsd_type == LDLM_NS_TYPE_UNKNOWN) {
892                         CERROR("Unknown type %d for ns %s\n", ns_type, name);
893                         GOTO(out_ref, NULL);
894                 }
895
896                 if (nsd->nsd_type == ns_type)
897                         break;
898         }
899
900         OBD_ALLOC_PTR(ns);
901         if (!ns)
902                 GOTO(out_ref, NULL);
903
904         ns->ns_rs_hash = cfs_hash_create(name,
905                                          nsd->nsd_all_bits, nsd->nsd_all_bits,
906                                          nsd->nsd_bkt_bits, sizeof(*nsb),
907                                          CFS_HASH_MIN_THETA,
908                                          CFS_HASH_MAX_THETA,
909                                          nsd->nsd_hops,
910                                          CFS_HASH_DEPTH |
911                                          CFS_HASH_BIGNAME |
912                                          CFS_HASH_SPIN_BKTLOCK |
913                                          CFS_HASH_NO_ITEMREF);
914         if (ns->ns_rs_hash == NULL)
915                 GOTO(out_ns, NULL);
916
917         cfs_hash_for_each_bucket(ns->ns_rs_hash, &bd, idx) {
918                 nsb = cfs_hash_bd_extra_get(ns->ns_rs_hash, &bd);
919                 at_init(&nsb->nsb_at_estimate, ldlm_enqueue_min, 0);
920                 nsb->nsb_namespace = ns;
921                 nsb->nsb_reclaim_start = 0;
922         }
923
924         ns->ns_obd      = obd;
925         ns->ns_appetite = apt;
926         ns->ns_client   = client;
927
928         INIT_LIST_HEAD(&ns->ns_list_chain);
929         INIT_LIST_HEAD(&ns->ns_unused_list);
930         spin_lock_init(&ns->ns_lock);
931         atomic_set(&ns->ns_bref, 0);
932         init_waitqueue_head(&ns->ns_waitq);
933
934         ns->ns_max_nolock_size    = NS_DEFAULT_MAX_NOLOCK_BYTES;
935         ns->ns_contention_time    = NS_DEFAULT_CONTENTION_SECONDS;
936         ns->ns_contended_locks    = NS_DEFAULT_CONTENDED_LOCKS;
937
938         ns->ns_max_parallel_ast   = LDLM_DEFAULT_PARALLEL_AST_LIMIT;
939         ns->ns_nr_unused          = 0;
940         ns->ns_max_unused         = LDLM_DEFAULT_LRU_SIZE;
941         ns->ns_max_age            = ktime_set(LDLM_DEFAULT_MAX_ALIVE, 0);
942         ns->ns_ctime_age_limit    = LDLM_CTIME_AGE_LIMIT;
943         ns->ns_timeouts           = 0;
944         ns->ns_orig_connect_flags = 0;
945         ns->ns_connect_flags      = 0;
946         ns->ns_stopping           = 0;
947         ns->ns_reclaim_start      = 0;
948
949         rc = ldlm_namespace_sysfs_register(ns);
950         if (rc) {
951                 CERROR("Can't initialize ns sysfs, rc %d\n", rc);
952                 GOTO(out_hash, rc);
953         }
954
955         rc = ldlm_namespace_proc_register(ns);
956         if (rc) {
957                 CERROR("Can't initialize ns proc, rc %d\n", rc);
958                 GOTO(out_sysfs, rc);
959         }
960
961         idx = ldlm_namespace_nr_read(client);
962         rc = ldlm_pool_init(&ns->ns_pool, ns, idx, client);
963         if (rc) {
964                 CERROR("Can't initialize lock pool, rc %d\n", rc);
965                 GOTO(out_proc, rc);
966         }
967
968         ldlm_namespace_register(ns, client);
969         RETURN(ns);
970 out_proc:
971         ldlm_namespace_proc_unregister(ns);
972 out_sysfs:
973         ldlm_namespace_sysfs_unregister(ns);
974         ldlm_namespace_cleanup(ns, 0);
975 out_hash:
976         cfs_hash_putref(ns->ns_rs_hash);
977 out_ns:
978         OBD_FREE_PTR(ns);
979 out_ref:
980         ldlm_put_ref();
981         RETURN(NULL);
982 }
983 EXPORT_SYMBOL(ldlm_namespace_new);
984
985 extern struct ldlm_lock *ldlm_lock_get(struct ldlm_lock *lock);
986
987 /**
988  * Cancel and destroy all locks on a resource.
989  *
990  * If flags contains FL_LOCAL_ONLY, don't try to tell the server, just
991  * clean up.  This is currently only used for recovery, and we make
992  * certain assumptions as a result--notably, that we shouldn't cancel
993  * locks with refs.
994  */
995 static void cleanup_resource(struct ldlm_resource *res, struct list_head *q,
996                              __u64 flags)
997 {
998         struct list_head *tmp;
999         int rc = 0, client = ns_is_client(ldlm_res_to_ns(res));
1000         bool local_only = !!(flags & LDLM_FL_LOCAL_ONLY);
1001
1002         do {
1003                 struct ldlm_lock *lock = NULL;
1004
1005                 /* First, we look for non-cleaned-yet lock
1006                  * all cleaned locks are marked by CLEANED flag. */
1007                 lock_res(res);
1008                 list_for_each(tmp, q) {
1009                         lock = list_entry(tmp, struct ldlm_lock,
1010                                           l_res_link);
1011                         if (ldlm_is_cleaned(lock)) {
1012                                 lock = NULL;
1013                                 continue;
1014                         }
1015                         LDLM_LOCK_GET(lock);
1016                         ldlm_set_cleaned(lock);
1017                         break;
1018                 }
1019
1020                 if (lock == NULL) {
1021                         unlock_res(res);
1022                         break;
1023                 }
1024
1025                 /* Set CBPENDING so nothing in the cancellation path
1026                  * can match this lock. */
1027                 ldlm_set_cbpending(lock);
1028                 ldlm_set_failed(lock);
1029                 lock->l_flags |= flags;
1030
1031                 /* ... without sending a CANCEL message for local_only. */
1032                 if (local_only)
1033                         ldlm_set_local_only(lock);
1034
1035                 if (local_only && (lock->l_readers || lock->l_writers)) {
1036                         /* This is a little bit gross, but much better than the
1037                          * alternative: pretend that we got a blocking AST from
1038                          * the server, so that when the lock is decref'd, it
1039                          * will go away ... */
1040                         unlock_res(res);
1041                         LDLM_DEBUG(lock, "setting FL_LOCAL_ONLY");
1042                         if (lock->l_flags & LDLM_FL_FAIL_LOC) {
1043                                 set_current_state(TASK_UNINTERRUPTIBLE);
1044                                 schedule_timeout(cfs_time_seconds(4));
1045                                 set_current_state(TASK_RUNNING);
1046                         }
1047                         if (lock->l_completion_ast)
1048                                 lock->l_completion_ast(lock,
1049                                                        LDLM_FL_FAILED, NULL);
1050                         LDLM_LOCK_RELEASE(lock);
1051                         continue;
1052                 }
1053
1054                 if (client) {
1055                         struct lustre_handle lockh;
1056
1057                         unlock_res(res);
1058                         ldlm_lock2handle(lock, &lockh);
1059                         rc = ldlm_cli_cancel(&lockh, LCF_LOCAL);
1060                         if (rc)
1061                                 CERROR("ldlm_cli_cancel: %d\n", rc);
1062                 } else {
1063                         unlock_res(res);
1064                         LDLM_DEBUG(lock, "Freeing a lock still held by a "
1065                                    "client node");
1066                         ldlm_lock_cancel(lock);
1067                 }
1068                 LDLM_LOCK_RELEASE(lock);
1069         } while (1);
1070 }
1071
1072 static int ldlm_resource_clean(struct cfs_hash *hs, struct cfs_hash_bd *bd,
1073                                struct hlist_node *hnode, void *arg)
1074 {
1075         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
1076         __u64 flags = *(__u64 *)arg;
1077
1078         cleanup_resource(res, &res->lr_granted, flags);
1079         cleanup_resource(res, &res->lr_converting, flags);
1080         cleanup_resource(res, &res->lr_waiting, flags);
1081
1082         return 0;
1083 }
1084
1085 static int ldlm_resource_complain(struct cfs_hash *hs, struct cfs_hash_bd *bd,
1086                                   struct hlist_node *hnode, void *arg)
1087 {
1088         struct ldlm_resource  *res = cfs_hash_object(hs, hnode);
1089
1090         lock_res(res);
1091         CERROR("%s: namespace resource "DLDLMRES" (%p) refcount nonzero "
1092                "(%d) after lock cleanup; forcing cleanup.\n",
1093                ldlm_ns_name(ldlm_res_to_ns(res)), PLDLMRES(res), res,
1094                atomic_read(&res->lr_refcount) - 1);
1095
1096         ldlm_resource_dump(D_ERROR, res);
1097         unlock_res(res);
1098         return 0;
1099 }
1100
1101 /**
1102  * Cancel and destroy all locks in the namespace.
1103  *
1104  * Typically used during evictions when server notified client that it was
1105  * evicted and all of its state needs to be destroyed.
1106  * Also used during shutdown.
1107  */
1108 int ldlm_namespace_cleanup(struct ldlm_namespace *ns, __u64 flags)
1109 {
1110         if (ns == NULL) {
1111                 CDEBUG(D_INFO, "NULL ns, skipping cleanup\n");
1112                 return ELDLM_OK;
1113         }
1114
1115         cfs_hash_for_each_nolock(ns->ns_rs_hash, ldlm_resource_clean,
1116                                  &flags, 0);
1117         cfs_hash_for_each_nolock(ns->ns_rs_hash, ldlm_resource_complain,
1118                                  NULL, 0);
1119         return ELDLM_OK;
1120 }
1121 EXPORT_SYMBOL(ldlm_namespace_cleanup);
1122
1123 /**
1124  * Attempts to free namespace.
1125  *
1126  * Only used when namespace goes away, like during an unmount.
1127  */
1128 static int __ldlm_namespace_free(struct ldlm_namespace *ns, int force)
1129 {
1130         ENTRY;
1131
1132         /* At shutdown time, don't call the cancellation callback */
1133         ldlm_namespace_cleanup(ns, force ? LDLM_FL_LOCAL_ONLY : 0);
1134
1135         if (atomic_read(&ns->ns_bref) > 0) {
1136                 struct l_wait_info lwi = LWI_INTR(LWI_ON_SIGNAL_NOOP, NULL);
1137                 int rc;
1138                 CDEBUG(D_DLMTRACE,
1139                        "dlm namespace %s free waiting on refcount %d\n",
1140                        ldlm_ns_name(ns), atomic_read(&ns->ns_bref));
1141 force_wait:
1142                 if (force)
1143                         lwi = LWI_TIMEOUT(msecs_to_jiffies(obd_timeout *
1144                                           MSEC_PER_SEC) / 4, NULL, NULL);
1145
1146                 rc = l_wait_event(ns->ns_waitq,
1147                                   atomic_read(&ns->ns_bref) == 0, &lwi);
1148
1149                 /* Forced cleanups should be able to reclaim all references,
1150                  * so it's safe to wait forever... we can't leak locks... */
1151                 if (force && rc == -ETIMEDOUT) {
1152                         LCONSOLE_ERROR("Forced cleanup waiting for %s "
1153                                        "namespace with %d resources in use, "
1154                                        "(rc=%d)\n", ldlm_ns_name(ns),
1155                                        atomic_read(&ns->ns_bref), rc);
1156                         GOTO(force_wait, rc);
1157                 }
1158
1159                 if (atomic_read(&ns->ns_bref)) {
1160                         LCONSOLE_ERROR("Cleanup waiting for %s namespace "
1161                                        "with %d resources in use, (rc=%d)\n",
1162                                        ldlm_ns_name(ns),
1163                                        atomic_read(&ns->ns_bref), rc);
1164                         RETURN(ELDLM_NAMESPACE_EXISTS);
1165                 }
1166                 CDEBUG(D_DLMTRACE, "dlm namespace %s free done waiting\n",
1167                        ldlm_ns_name(ns));
1168         }
1169
1170         RETURN(ELDLM_OK);
1171 }
1172
1173 /**
1174  * Performs various cleanups for passed \a ns to make it drop refc and be
1175  * ready for freeing. Waits for refc == 0.
1176  *
1177  * The following is done:
1178  * (0) Unregister \a ns from its list to make inaccessible for potential
1179  * users like pools thread and others;
1180  * (1) Clear all locks in \a ns.
1181  */
1182 void ldlm_namespace_free_prior(struct ldlm_namespace *ns,
1183                                struct obd_import *imp,
1184                                int force)
1185 {
1186         int rc;
1187         ENTRY;
1188         if (!ns) {
1189                 EXIT;
1190                 return;
1191         }
1192
1193         spin_lock(&ns->ns_lock);
1194         ns->ns_stopping = 1;
1195         spin_unlock(&ns->ns_lock);
1196
1197         /*
1198          * Can fail with -EINTR when force == 0 in which case try harder.
1199          */
1200         rc = __ldlm_namespace_free(ns, force);
1201         if (rc != ELDLM_OK) {
1202                 if (imp) {
1203                         ptlrpc_disconnect_import(imp, 0);
1204                         ptlrpc_invalidate_import(imp);
1205                 }
1206
1207                 /*
1208                  * With all requests dropped and the import inactive
1209                  * we are gaurenteed all reference will be dropped.
1210                  */
1211                 rc = __ldlm_namespace_free(ns, 1);
1212                 LASSERT(rc == 0);
1213         }
1214         EXIT;
1215 }
1216 EXPORT_SYMBOL(ldlm_namespace_free_prior);
1217
1218 /**
1219  * Performs freeing memory structures related to \a ns. This is only done
1220  * when ldlm_namespce_free_prior() successfully removed all resources
1221  * referencing \a ns and its refc == 0.
1222  */
1223 void ldlm_namespace_free_post(struct ldlm_namespace *ns)
1224 {
1225         ENTRY;
1226         if (!ns) {
1227                 EXIT;
1228                 return;
1229         }
1230
1231         /* Make sure that nobody can find this ns in its list. */
1232         ldlm_namespace_unregister(ns, ns->ns_client);
1233         /* Fini pool _before_ parent proc dir is removed. This is important as
1234          * ldlm_pool_fini() removes own proc dir which is child to @dir.
1235          * Removing it after @dir may cause oops. */
1236         ldlm_pool_fini(&ns->ns_pool);
1237
1238         ldlm_namespace_proc_unregister(ns);
1239         ldlm_namespace_sysfs_unregister(ns);
1240         cfs_hash_putref(ns->ns_rs_hash);
1241         /* Namespace \a ns should be not on list at this time, otherwise
1242          * this will cause issues related to using freed \a ns in poold
1243          * thread. */
1244         LASSERT(list_empty(&ns->ns_list_chain));
1245         OBD_FREE_PTR(ns);
1246         ldlm_put_ref();
1247         EXIT;
1248 }
1249 EXPORT_SYMBOL(ldlm_namespace_free_post);
1250
1251 /**
1252  * Cleanup the resource, and free namespace.
1253  * bug 12864:
1254  * Deadlock issue:
1255  * proc1: destroy import
1256  *        class_disconnect_export(grab cl_sem) ->
1257  *              -> ldlm_namespace_free ->
1258  *              -> lprocfs_remove(grab _lprocfs_lock).
1259  * proc2: read proc info
1260  *        lprocfs_fops_read(grab _lprocfs_lock) ->
1261  *              -> osc_rd_active, etc(grab cl_sem).
1262  *
1263  * So that I have to split the ldlm_namespace_free into two parts - the first
1264  * part ldlm_namespace_free_prior is used to cleanup the resource which is
1265  * being used; the 2nd part ldlm_namespace_free_post is used to unregister the
1266  * lprocfs entries, and then free memory. It will be called w/o cli->cl_sem
1267  * held.
1268  */
1269 void ldlm_namespace_free(struct ldlm_namespace *ns,
1270                          struct obd_import *imp,
1271                          int force)
1272 {
1273         ldlm_namespace_free_prior(ns, imp, force);
1274         ldlm_namespace_free_post(ns);
1275 }
1276 EXPORT_SYMBOL(ldlm_namespace_free);
1277
1278 void ldlm_namespace_get(struct ldlm_namespace *ns)
1279 {
1280         atomic_inc(&ns->ns_bref);
1281 }
1282
1283 /* This is only for callers that care about refcount */
1284 static int ldlm_namespace_get_return(struct ldlm_namespace *ns)
1285 {
1286         return atomic_inc_return(&ns->ns_bref);
1287 }
1288
1289 void ldlm_namespace_put(struct ldlm_namespace *ns)
1290 {
1291         if (atomic_dec_and_lock(&ns->ns_bref, &ns->ns_lock)) {
1292                 wake_up(&ns->ns_waitq);
1293                 spin_unlock(&ns->ns_lock);
1294         }
1295 }
1296
1297 /** Register \a ns in the list of namespaces */
1298 void ldlm_namespace_register(struct ldlm_namespace *ns, enum ldlm_side client)
1299 {
1300         mutex_lock(ldlm_namespace_lock(client));
1301         LASSERT(list_empty(&ns->ns_list_chain));
1302         list_add(&ns->ns_list_chain, ldlm_namespace_inactive_list(client));
1303         ldlm_namespace_nr_inc(client);
1304         mutex_unlock(ldlm_namespace_lock(client));
1305 }
1306
1307 /** Unregister \a ns from the list of namespaces. */
1308 void ldlm_namespace_unregister(struct ldlm_namespace *ns, enum ldlm_side client)
1309 {
1310         mutex_lock(ldlm_namespace_lock(client));
1311         LASSERT(!list_empty(&ns->ns_list_chain));
1312         /* Some asserts and possibly other parts of the code are still
1313          * using list_empty(&ns->ns_list_chain). This is why it is
1314          * important to use list_del_init() here. */
1315         list_del_init(&ns->ns_list_chain);
1316         ldlm_namespace_nr_dec(client);
1317         mutex_unlock(ldlm_namespace_lock(client));
1318 }
1319
1320 /** Should be called with ldlm_namespace_lock(client) taken. */
1321 void ldlm_namespace_move_to_active_locked(struct ldlm_namespace *ns,
1322                                           enum ldlm_side client)
1323 {
1324         LASSERT(!list_empty(&ns->ns_list_chain));
1325         LASSERT(mutex_is_locked(ldlm_namespace_lock(client)));
1326         list_move_tail(&ns->ns_list_chain, ldlm_namespace_list(client));
1327 }
1328
1329 /** Should be called with ldlm_namespace_lock(client) taken. */
1330 void ldlm_namespace_move_to_inactive_locked(struct ldlm_namespace *ns,
1331                                             enum ldlm_side client)
1332 {
1333         LASSERT(!list_empty(&ns->ns_list_chain));
1334         LASSERT(mutex_is_locked(ldlm_namespace_lock(client)));
1335         list_move_tail(&ns->ns_list_chain,
1336                        ldlm_namespace_inactive_list(client));
1337 }
1338
1339 /** Should be called with ldlm_namespace_lock(client) taken. */
1340 struct ldlm_namespace *ldlm_namespace_first_locked(enum ldlm_side client)
1341 {
1342         LASSERT(mutex_is_locked(ldlm_namespace_lock(client)));
1343         LASSERT(!list_empty(ldlm_namespace_list(client)));
1344         return container_of(ldlm_namespace_list(client)->next,
1345                             struct ldlm_namespace, ns_list_chain);
1346 }
1347
1348 /** Create and initialize new resource. */
1349 static struct ldlm_resource *ldlm_resource_new(enum ldlm_type ldlm_type)
1350 {
1351         struct ldlm_resource *res;
1352         int idx;
1353
1354         OBD_SLAB_ALLOC_PTR_GFP(res, ldlm_resource_slab, GFP_NOFS);
1355         if (res == NULL)
1356                 return NULL;
1357
1358         if (ldlm_type == LDLM_EXTENT) {
1359                 OBD_SLAB_ALLOC(res->lr_itree, ldlm_interval_tree_slab,
1360                                sizeof(*res->lr_itree) * LCK_MODE_NUM);
1361                 if (res->lr_itree == NULL) {
1362                         OBD_SLAB_FREE_PTR(res, ldlm_resource_slab);
1363                         return NULL;
1364                 }
1365                 /* Initialize interval trees for each lock mode. */
1366                 for (idx = 0; idx < LCK_MODE_NUM; idx++) {
1367                         res->lr_itree[idx].lit_size = 0;
1368                         res->lr_itree[idx].lit_mode = 1 << idx;
1369                         res->lr_itree[idx].lit_root = NULL;
1370                 }
1371         }
1372
1373         INIT_LIST_HEAD(&res->lr_granted);
1374         INIT_LIST_HEAD(&res->lr_converting);
1375         INIT_LIST_HEAD(&res->lr_waiting);
1376
1377         atomic_set(&res->lr_refcount, 1);
1378         spin_lock_init(&res->lr_lock);
1379         lu_ref_init(&res->lr_reference);
1380
1381         /* Since LVB init can be delayed now, there is no longer need to
1382          * immediatelly acquire mutex here. */
1383         mutex_init(&res->lr_lvb_mutex);
1384         res->lr_lvb_initialized = false;
1385
1386         return res;
1387 }
1388
1389 /**
1390  * Return a reference to resource with given name, creating it if necessary.
1391  * Args: namespace with ns_lock unlocked
1392  * Locks: takes and releases NS hash-lock and res->lr_lock
1393  * Returns: referenced, unlocked ldlm_resource or NULL
1394  */
1395 struct ldlm_resource *
1396 ldlm_resource_get(struct ldlm_namespace *ns, struct ldlm_resource *parent,
1397                   const struct ldlm_res_id *name, enum ldlm_type type,
1398                   int create)
1399 {
1400         struct hlist_node       *hnode;
1401         struct ldlm_resource    *res = NULL;
1402         struct cfs_hash_bd              bd;
1403         __u64                   version;
1404         int                     ns_refcount = 0;
1405
1406         LASSERT(ns != NULL);
1407         LASSERT(parent == NULL);
1408         LASSERT(ns->ns_rs_hash != NULL);
1409         LASSERT(name->name[0] != 0);
1410
1411         cfs_hash_bd_get_and_lock(ns->ns_rs_hash, (void *)name, &bd, 0);
1412         hnode = cfs_hash_bd_lookup_locked(ns->ns_rs_hash, &bd, (void *)name);
1413         if (hnode != NULL) {
1414                 cfs_hash_bd_unlock(ns->ns_rs_hash, &bd, 0);
1415                 GOTO(found, res);
1416         }
1417
1418         version = cfs_hash_bd_version_get(&bd);
1419         cfs_hash_bd_unlock(ns->ns_rs_hash, &bd, 0);
1420
1421         if (create == 0)
1422                 return ERR_PTR(-ENOENT);
1423
1424         LASSERTF(type >= LDLM_MIN_TYPE && type < LDLM_MAX_TYPE,
1425                  "type: %d\n", type);
1426         res = ldlm_resource_new(type);
1427         if (res == NULL)
1428                 return ERR_PTR(-ENOMEM);
1429
1430         res->lr_ns_bucket = cfs_hash_bd_extra_get(ns->ns_rs_hash, &bd);
1431         res->lr_name = *name;
1432         res->lr_type = type;
1433
1434         cfs_hash_bd_lock(ns->ns_rs_hash, &bd, 1);
1435         hnode = (version == cfs_hash_bd_version_get(&bd)) ? NULL :
1436                 cfs_hash_bd_lookup_locked(ns->ns_rs_hash, &bd, (void *)name);
1437
1438         if (hnode != NULL) {
1439                 /* Someone won the race and already added the resource. */
1440                 cfs_hash_bd_unlock(ns->ns_rs_hash, &bd, 1);
1441                 /* Clean lu_ref for failed resource. */
1442                 lu_ref_fini(&res->lr_reference);
1443                 if (res->lr_itree != NULL)
1444                         OBD_SLAB_FREE(res->lr_itree, ldlm_interval_tree_slab,
1445                                       sizeof(*res->lr_itree) * LCK_MODE_NUM);
1446                 OBD_SLAB_FREE(res, ldlm_resource_slab, sizeof *res);
1447 found:
1448                 res = hlist_entry(hnode, struct ldlm_resource, lr_hash);
1449                 return res;
1450         }
1451         /* We won! Let's add the resource. */
1452         cfs_hash_bd_add_locked(ns->ns_rs_hash, &bd, &res->lr_hash);
1453         if (cfs_hash_bd_count_get(&bd) == 1)
1454                 ns_refcount = ldlm_namespace_get_return(ns);
1455
1456         cfs_hash_bd_unlock(ns->ns_rs_hash, &bd, 1);
1457
1458         OBD_FAIL_TIMEOUT(OBD_FAIL_LDLM_CREATE_RESOURCE, 2);
1459
1460         /* Let's see if we happened to be the very first resource in this
1461          * namespace. If so, and this is a client namespace, we need to move
1462          * the namespace into the active namespaces list to be patrolled by
1463          * the ldlm_poold. */
1464         if (ns_is_client(ns) && ns_refcount == 1) {
1465                 mutex_lock(ldlm_namespace_lock(LDLM_NAMESPACE_CLIENT));
1466                 ldlm_namespace_move_to_active_locked(ns, LDLM_NAMESPACE_CLIENT);
1467                 mutex_unlock(ldlm_namespace_lock(LDLM_NAMESPACE_CLIENT));
1468         }
1469
1470         return res;
1471 }
1472 EXPORT_SYMBOL(ldlm_resource_get);
1473
1474 struct ldlm_resource *ldlm_resource_getref(struct ldlm_resource *res)
1475 {
1476         LASSERT(res != NULL);
1477         LASSERT(res != LP_POISON);
1478         atomic_inc(&res->lr_refcount);
1479         CDEBUG(D_INFO, "getref res: %p count: %d\n", res,
1480                atomic_read(&res->lr_refcount));
1481         return res;
1482 }
1483
1484 static void __ldlm_resource_putref_final(struct cfs_hash_bd *bd,
1485                                          struct ldlm_resource *res)
1486 {
1487         struct ldlm_ns_bucket *nsb = res->lr_ns_bucket;
1488
1489         if (!list_empty(&res->lr_granted)) {
1490                 ldlm_resource_dump(D_ERROR, res);
1491                 LBUG();
1492         }
1493
1494         if (!list_empty(&res->lr_converting)) {
1495                 ldlm_resource_dump(D_ERROR, res);
1496                 LBUG();
1497         }
1498
1499         if (!list_empty(&res->lr_waiting)) {
1500                 ldlm_resource_dump(D_ERROR, res);
1501                 LBUG();
1502         }
1503
1504         cfs_hash_bd_del_locked(nsb->nsb_namespace->ns_rs_hash,
1505                                bd, &res->lr_hash);
1506         lu_ref_fini(&res->lr_reference);
1507         if (cfs_hash_bd_count_get(bd) == 0)
1508                 ldlm_namespace_put(nsb->nsb_namespace);
1509 }
1510
1511 /* Returns 1 if the resource was freed, 0 if it remains. */
1512 int ldlm_resource_putref(struct ldlm_resource *res)
1513 {
1514         struct ldlm_namespace *ns = ldlm_res_to_ns(res);
1515         struct cfs_hash_bd   bd;
1516
1517         LASSERT_ATOMIC_GT_LT(&res->lr_refcount, 0, LI_POISON);
1518         CDEBUG(D_INFO, "putref res: %p count: %d\n",
1519                res, atomic_read(&res->lr_refcount) - 1);
1520
1521         cfs_hash_bd_get(ns->ns_rs_hash, &res->lr_name, &bd);
1522         if (cfs_hash_bd_dec_and_lock(ns->ns_rs_hash, &bd, &res->lr_refcount)) {
1523                 __ldlm_resource_putref_final(&bd, res);
1524                 cfs_hash_bd_unlock(ns->ns_rs_hash, &bd, 1);
1525                 if (ns->ns_lvbo && ns->ns_lvbo->lvbo_free)
1526                         ns->ns_lvbo->lvbo_free(res);
1527                 if (res->lr_itree != NULL)
1528                         OBD_SLAB_FREE(res->lr_itree, ldlm_interval_tree_slab,
1529                                       sizeof(*res->lr_itree) * LCK_MODE_NUM);
1530                 OBD_SLAB_FREE(res, ldlm_resource_slab, sizeof *res);
1531                 return 1;
1532         }
1533         return 0;
1534 }
1535 EXPORT_SYMBOL(ldlm_resource_putref);
1536
1537 /**
1538  * Add a lock into a given resource into specified lock list.
1539  */
1540 void ldlm_resource_add_lock(struct ldlm_resource *res, struct list_head *head,
1541                             struct ldlm_lock *lock)
1542 {
1543         check_res_locked(res);
1544
1545         LDLM_DEBUG(lock, "About to add this lock");
1546
1547         if (ldlm_is_destroyed(lock)) {
1548                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
1549                 return;
1550         }
1551
1552         LASSERT(list_empty(&lock->l_res_link));
1553
1554         list_add_tail(&lock->l_res_link, head);
1555 }
1556
1557 /**
1558  * Insert a lock into resource after specified lock.
1559  *
1560  * Obtain resource description from the lock we are inserting after.
1561  */
1562 void ldlm_resource_insert_lock_after(struct ldlm_lock *original,
1563                                      struct ldlm_lock *new)
1564 {
1565         struct ldlm_resource *res = original->l_resource;
1566
1567         check_res_locked(res);
1568
1569         ldlm_resource_dump(D_INFO, res);
1570         LDLM_DEBUG(new, "About to insert this lock after %p: ", original);
1571
1572         if (ldlm_is_destroyed(new)) {
1573                 CDEBUG(D_OTHER, "Lock destroyed, not adding to resource\n");
1574                 goto out;
1575         }
1576
1577         LASSERT(list_empty(&new->l_res_link));
1578
1579         list_add(&new->l_res_link, &original->l_res_link);
1580  out:;
1581 }
1582
1583 void ldlm_resource_unlink_lock(struct ldlm_lock *lock)
1584 {
1585         int type = lock->l_resource->lr_type;
1586
1587         check_res_locked(lock->l_resource);
1588         if (type == LDLM_IBITS || type == LDLM_PLAIN)
1589                 ldlm_unlink_lock_skiplist(lock);
1590         else if (type == LDLM_EXTENT)
1591                 ldlm_extent_unlink_lock(lock);
1592         list_del_init(&lock->l_res_link);
1593 }
1594 EXPORT_SYMBOL(ldlm_resource_unlink_lock);
1595
1596 void ldlm_res2desc(struct ldlm_resource *res, struct ldlm_resource_desc *desc)
1597 {
1598         desc->lr_type = res->lr_type;
1599         desc->lr_name = res->lr_name;
1600 }
1601
1602 /**
1603  * Print information about all locks in all namespaces on this node to debug
1604  * log.
1605  */
1606 void ldlm_dump_all_namespaces(enum ldlm_side client, int level)
1607 {
1608         struct list_head *tmp;
1609
1610         if (!((libcfs_debug | D_ERROR) & level))
1611                 return;
1612
1613         mutex_lock(ldlm_namespace_lock(client));
1614
1615         list_for_each(tmp, ldlm_namespace_list(client)) {
1616                 struct ldlm_namespace *ns;
1617
1618                 ns = list_entry(tmp, struct ldlm_namespace, ns_list_chain);
1619                 ldlm_namespace_dump(level, ns);
1620         }
1621
1622         mutex_unlock(ldlm_namespace_lock(client));
1623 }
1624
1625 static int ldlm_res_hash_dump(struct cfs_hash *hs, struct cfs_hash_bd *bd,
1626                               struct hlist_node *hnode, void *arg)
1627 {
1628         struct ldlm_resource *res = cfs_hash_object(hs, hnode);
1629         int    level = (int)(unsigned long)arg;
1630
1631         lock_res(res);
1632         ldlm_resource_dump(level, res);
1633         unlock_res(res);
1634
1635         return 0;
1636 }
1637
1638 /**
1639  * Print information about all locks in this namespace on this node to debug
1640  * log.
1641  */
1642 void ldlm_namespace_dump(int level, struct ldlm_namespace *ns)
1643 {
1644         if (!((libcfs_debug | D_ERROR) & level))
1645                 return;
1646
1647         CDEBUG(level, "--- Namespace: %s (rc: %d, side: %s)\n",
1648                ldlm_ns_name(ns), atomic_read(&ns->ns_bref),
1649                ns_is_client(ns) ? "client" : "server");
1650
1651         if (ktime_get_seconds() < ns->ns_next_dump)
1652                 return;
1653
1654         cfs_hash_for_each_nolock(ns->ns_rs_hash,
1655                                  ldlm_res_hash_dump,
1656                                  (void *)(unsigned long)level, 0);
1657         spin_lock(&ns->ns_lock);
1658         ns->ns_next_dump = ktime_get_seconds() + 10;
1659         spin_unlock(&ns->ns_lock);
1660 }
1661
1662 /**
1663  * Print information about all locks in this resource to debug log.
1664  */
1665 void ldlm_resource_dump(int level, struct ldlm_resource *res)
1666 {
1667         struct ldlm_lock *lock;
1668         unsigned int granted = 0;
1669
1670         CLASSERT(RES_NAME_SIZE == 4);
1671
1672         if (!((libcfs_debug | D_ERROR) & level))
1673                 return;
1674
1675         CDEBUG(level, "--- Resource: "DLDLMRES" (%p) refcount = %d\n",
1676                PLDLMRES(res), res, atomic_read(&res->lr_refcount));
1677
1678         if (!list_empty(&res->lr_granted)) {
1679                 CDEBUG(level, "Granted locks (in reverse order):\n");
1680                 list_for_each_entry_reverse(lock, &res->lr_granted,
1681                                                 l_res_link) {
1682                         LDLM_DEBUG_LIMIT(level, lock, "###");
1683                         if (!(level & D_CANTMASK) &&
1684                             ++granted > ldlm_dump_granted_max) {
1685                                 CDEBUG(level, "only dump %d granted locks to "
1686                                        "avoid DDOS.\n", granted);
1687                                 break;
1688                         }
1689                 }
1690         }
1691         if (!list_empty(&res->lr_converting)) {
1692                 CDEBUG(level, "Converting locks:\n");
1693                 list_for_each_entry(lock, &res->lr_converting, l_res_link)
1694                         LDLM_DEBUG_LIMIT(level, lock, "###");
1695         }
1696         if (!list_empty(&res->lr_waiting)) {
1697                 CDEBUG(level, "Waiting locks:\n");
1698                 list_for_each_entry(lock, &res->lr_waiting, l_res_link)
1699                         LDLM_DEBUG_LIMIT(level, lock, "###");
1700         }
1701 }
1702 EXPORT_SYMBOL(ldlm_resource_dump);