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