Whamcloud - gitweb
LU-7638 recovery: do not abort update recovery.
[fs/lustre-release.git] / lustre / mdt / mdt_lproc.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mdt/mdt_lproc.c
37  *
38  * Author: Lai Siyao <lsy@clusterfs.com>
39  * Author: Fan Yong <fanyong@clusterfs.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_MDS
43
44 #include <linux/version.h>
45 #include <asm/statfs.h>
46
47 #include <linux/module.h>
48 #include <lnet/nidstr.h>
49 /* LUSTRE_VERSION_CODE */
50 #include <lustre_ver.h>
51 /*
52  * struct OBD_{ALLOC,FREE}*()
53  * MDT_FAIL_CHECK
54  */
55 #include <obd_support.h>
56 /* struct obd_export */
57 #include <lustre_export.h>
58 /* struct obd_device */
59 #include <obd.h>
60 #include <obd_class.h>
61 #include <lustre_mds.h>
62 #include <lprocfs_status.h>
63 #include "mdt_internal.h"
64
65 /**
66  * The rename stats output would be YAML formats, like
67  * rename_stats:
68  * - snapshot_time: 1234567890.123456
69  * - same_dir:
70  *     4kB: { samples: 1230, pct: 33, cum_pct: 45 }
71  *     8kB: { samples: 1242, pct: 33, cum_pct: 78 }
72  *     16kB: { samples: 132, pct: 3, cum_pct: 81 }
73  * - crossdir_src:
74  *     4kB: { samples: 123, pct: 33, cum_pct: 45 }
75  *     8kB: { samples: 124, pct: 33, cum_pct: 78 }
76  *     16kB: { samples: 12, pct: 3, cum_pct: 81 }
77  * - crossdir_tgt:
78  *     4kB: { samples: 123, pct: 33, cum_pct: 45 }
79  *     8kB: { samples: 124, pct: 33, cum_pct: 78 }
80  *     16kB: { samples: 12, pct: 3, cum_pct: 81 }
81  **/
82
83 #define pct(a, b) (b ? a * 100 / b : 0)
84
85 static void display_rename_stats(struct seq_file *seq, char *name,
86                                  struct obd_histogram *hist)
87 {
88         unsigned long tot, t, cum = 0;
89         int i;
90
91         tot = lprocfs_oh_sum(hist);
92         if (tot > 0)
93                 seq_printf(seq, "- %-15s\n", name);
94         /* dir size start from 4K, start i from 10(2^10) here */
95         for (i = 0; i < OBD_HIST_MAX; i++) {
96                 t = hist->oh_buckets[i];
97                 cum += t;
98                 if (cum == 0)
99                         continue;
100
101                 if (i < 10)
102                         seq_printf(seq, "%6s%d%s", " ", 1<< i, "bytes:");
103                 else if (i < 20)
104                         seq_printf(seq, "%6s%d%s", " ", 1<<(i-10), "KB:");
105                 else
106                         seq_printf(seq, "%6s%d%s", " ", 1<<(i-20), "MB:");
107
108                 seq_printf(seq, " { sample: %3lu, pct: %3lu, cum_pct: %3lu }\n",
109                            t, pct(t, tot), pct(cum, tot));
110
111                 if (cum == tot)
112                         break;
113         }
114 }
115
116 static void rename_stats_show(struct seq_file *seq,
117                               struct rename_stats *rename_stats)
118 {
119         struct timeval now;
120
121         /* this sampling races with updates */
122         do_gettimeofday(&now);
123         seq_printf(seq, "rename_stats:\n");
124         seq_printf(seq, "- %-15s %lu.%lu\n", "snapshot_time:",
125                    now.tv_sec, now.tv_usec);
126
127         display_rename_stats(seq, "same_dir",
128                              &rename_stats->hist[RENAME_SAMEDIR_SIZE]);
129         display_rename_stats(seq, "crossdir_src",
130                              &rename_stats->hist[RENAME_CROSSDIR_SRC_SIZE]);
131         display_rename_stats(seq, "crossdir_tgt",
132                              &rename_stats->hist[RENAME_CROSSDIR_TGT_SIZE]);
133 }
134
135 #undef pct
136
137 static int mdt_rename_stats_seq_show(struct seq_file *seq, void *v)
138 {
139         struct mdt_device *mdt = seq->private;
140
141         rename_stats_show(seq, &mdt->mdt_rename_stats);
142
143         return 0;
144 }
145
146 static ssize_t
147 mdt_rename_stats_seq_write(struct file *file, const char __user *buf,
148                            size_t len, loff_t *off)
149 {
150         struct seq_file *seq = file->private_data;
151         struct mdt_device *mdt = seq->private;
152         int i;
153
154         for (i = 0; i < RENAME_LAST; i++)
155                 lprocfs_oh_clear(&mdt->mdt_rename_stats.hist[i]);
156
157         return len;
158 }
159 LPROC_SEQ_FOPS(mdt_rename_stats);
160
161 static int lproc_mdt_attach_rename_seqstat(struct mdt_device *mdt)
162 {
163         int i;
164
165         for (i = 0; i < RENAME_LAST; i++)
166                 spin_lock_init(&mdt->mdt_rename_stats.hist[i].oh_lock);
167
168         return lprocfs_obd_seq_create(mdt2obd_dev(mdt), "rename_stats", 0644,
169                                       &mdt_rename_stats_fops, mdt);
170 }
171
172 void mdt_rename_counter_tally(struct mdt_thread_info *info,
173                               struct mdt_device *mdt,
174                               struct ptlrpc_request *req,
175                               struct mdt_object *src,
176                               struct mdt_object *tgt)
177 {
178         struct md_attr *ma = &info->mti_attr;
179         struct rename_stats *rstats = &mdt->mdt_rename_stats;
180         int rc;
181
182         ma->ma_need = MA_INODE;
183         ma->ma_valid = 0;
184         rc = mo_attr_get(info->mti_env, mdt_object_child(src), ma);
185         if (rc) {
186                 CERROR("%s: "DFID" attr_get, rc = %d\n",
187                        mdt_obd_name(mdt), PFID(mdt_object_fid(src)), rc);
188                 return;
189         }
190
191         if (src == tgt) {
192                 mdt_counter_incr(req, LPROC_MDT_SAMEDIR_RENAME);
193                 lprocfs_oh_tally_log2(&rstats->hist[RENAME_SAMEDIR_SIZE],
194                                       (unsigned int)ma->ma_attr.la_size);
195                 return;
196         }
197
198         mdt_counter_incr(req, LPROC_MDT_CROSSDIR_RENAME);
199         lprocfs_oh_tally_log2(&rstats->hist[RENAME_CROSSDIR_SRC_SIZE],
200                               (unsigned int)ma->ma_attr.la_size);
201
202         ma->ma_need = MA_INODE;
203         ma->ma_valid = 0;
204         rc = mo_attr_get(info->mti_env, mdt_object_child(tgt), ma);
205         if (rc) {
206                 CERROR("%s: "DFID" attr_get, rc = %d\n",
207                        mdt_obd_name(mdt), PFID(mdt_object_fid(tgt)), rc);
208                 return;
209         }
210
211         lprocfs_oh_tally_log2(&rstats->hist[RENAME_CROSSDIR_TGT_SIZE],
212                               (unsigned int)ma->ma_attr.la_size);
213 }
214
215 static int mdt_identity_expire_seq_show(struct seq_file *m, void *data)
216 {
217         struct obd_device *obd = m->private;
218         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
219
220         return seq_printf(m, "%u\n", mdt->mdt_identity_cache->uc_entry_expire);
221 }
222
223 static ssize_t
224 mdt_identity_expire_seq_write(struct file *file, const char __user *buffer,
225                               size_t count, loff_t *off)
226 {
227         struct seq_file   *m = file->private_data;
228         struct obd_device *obd = m->private;
229         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
230         int rc, val;
231
232         rc = lprocfs_write_helper(buffer, count, &val);
233         if (rc)
234                 return rc;
235
236         mdt->mdt_identity_cache->uc_entry_expire = val;
237         return count;
238 }
239 LPROC_SEQ_FOPS(mdt_identity_expire);
240
241 static int mdt_identity_acquire_expire_seq_show(struct seq_file *m, void *data)
242 {
243         struct obd_device *obd = m->private;
244         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
245
246         return seq_printf(m, "%u\n", mdt->mdt_identity_cache->uc_acquire_expire);
247 }
248
249 static ssize_t
250 mdt_identity_acquire_expire_seq_write(struct file *file,
251                                       const char __user *buffer,
252                                       size_t count, loff_t *off)
253 {
254         struct seq_file   *m = file->private_data;
255         struct obd_device *obd = m->private;
256         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
257         int rc, val;
258
259         rc = lprocfs_write_helper(buffer, count, &val);
260         if (rc)
261                 return rc;
262
263         mdt->mdt_identity_cache->uc_acquire_expire = val;
264         return count;
265 }
266 LPROC_SEQ_FOPS(mdt_identity_acquire_expire);
267
268 static int mdt_identity_upcall_seq_show(struct seq_file *m, void *data)
269 {
270         struct obd_device *obd = m->private;
271         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
272         struct upcall_cache *hash = mdt->mdt_identity_cache;
273
274         read_lock(&hash->uc_upcall_rwlock);
275         seq_printf(m, "%s\n", hash->uc_upcall);
276         read_unlock(&hash->uc_upcall_rwlock);
277         return 0;
278 }
279
280 static ssize_t
281 mdt_identity_upcall_seq_write(struct file *file, const char __user *buffer,
282                               size_t count, loff_t *off)
283 {
284         struct seq_file         *m = file->private_data;
285         struct obd_device       *obd = m->private;
286         struct mdt_device       *mdt = mdt_dev(obd->obd_lu_dev);
287         struct upcall_cache     *hash = mdt->mdt_identity_cache;
288         int                      rc;
289         char                    *kernbuf;
290
291         if (count >= UC_CACHE_UPCALL_MAXPATH) {
292                 CERROR("%s: identity upcall too long\n", mdt_obd_name(mdt));
293                 return -EINVAL;
294         }
295         OBD_ALLOC(kernbuf, count + 1);
296         if (kernbuf == NULL)
297                 GOTO(failed, rc = -ENOMEM);
298         if (copy_from_user(kernbuf, buffer, count))
299                 GOTO(failed, rc = -EFAULT);
300
301         /* Remove any extraneous bits from the upcall (e.g. linefeeds) */
302         write_lock(&hash->uc_upcall_rwlock);
303         sscanf(kernbuf, "%s", hash->uc_upcall);
304         write_unlock(&hash->uc_upcall_rwlock);
305
306         if (strcmp(hash->uc_name, mdt_obd_name(mdt)) != 0)
307                 CWARN("%s: write to upcall name %s\n",
308                       mdt_obd_name(mdt), hash->uc_upcall);
309
310         if (strcmp(hash->uc_upcall, "NONE") == 0 && mdt->mdt_opts.mo_acl)
311                 CWARN("%s: disable \"identity_upcall\" with ACL enabled maybe "
312                       "cause unexpected \"EACCESS\"\n", mdt_obd_name(mdt));
313
314         CDEBUG(D_CONFIG, "%s: identity upcall set to %s\n", mdt_obd_name(mdt),
315                hash->uc_upcall);
316         OBD_FREE(kernbuf, count + 1);
317         RETURN(count);
318
319  failed:
320         if (kernbuf)
321                 OBD_FREE(kernbuf, count + 1);
322         RETURN(rc);
323 }
324 LPROC_SEQ_FOPS(mdt_identity_upcall);
325
326 static ssize_t
327 lprocfs_identity_flush_seq_write(struct file *file, const char __user *buffer,
328                                  size_t count, void *data)
329 {
330         struct seq_file   *m = file->private_data;
331         struct obd_device *obd = m->private;
332         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
333         int rc, uid;
334
335         rc = lprocfs_write_helper(buffer, count, &uid);
336         if (rc)
337                 return rc;
338
339         mdt_flush_identity(mdt->mdt_identity_cache, uid);
340         return count;
341 }
342 LPROC_SEQ_FOPS_WO_TYPE(mdt, identity_flush);
343
344 static ssize_t
345 lprocfs_identity_info_seq_write(struct file *file, const char __user *buffer,
346                                 size_t count, void *data)
347 {
348         struct seq_file   *m = file->private_data;
349         struct obd_device *obd = m->private;
350         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
351         struct identity_downcall_data *param;
352         int size = sizeof(*param), rc, checked = 0;
353
354 again:
355         if (count < size) {
356                 CERROR("%s: invalid data count = %lu, size = %d\n",
357                        mdt_obd_name(mdt), (unsigned long) count, size);
358                 return -EINVAL;
359         }
360
361         OBD_ALLOC(param, size);
362         if (param == NULL)
363                 return -ENOMEM;
364
365         if (copy_from_user(param, buffer, size)) {
366                 CERROR("%s: bad identity data\n", mdt_obd_name(mdt));
367                 GOTO(out, rc = -EFAULT);
368         }
369
370         if (checked == 0) {
371                 checked = 1;
372                 if (param->idd_magic != IDENTITY_DOWNCALL_MAGIC) {
373                         CERROR("%s: MDS identity downcall bad params\n",
374                                mdt_obd_name(mdt));
375                         GOTO(out, rc = -EINVAL);
376                 }
377
378                 if (param->idd_nperms > N_PERMS_MAX) {
379                         CERROR("%s: perm count %d more than maximum %d\n",
380                                mdt_obd_name(mdt), param->idd_nperms,
381                                N_PERMS_MAX);
382                         GOTO(out, rc = -EINVAL);
383                 }
384
385                 if (param->idd_ngroups > NGROUPS_MAX) {
386                         CERROR("%s: group count %d more than maximum %d\n",
387                                mdt_obd_name(mdt), param->idd_ngroups,
388                                NGROUPS_MAX);
389                         GOTO(out, rc = -EINVAL);
390                 }
391
392                 if (param->idd_ngroups) {
393                         rc = param->idd_ngroups; /* save idd_ngroups */
394                         OBD_FREE(param, size);
395                         size = offsetof(struct identity_downcall_data,
396                                         idd_groups[rc]);
397                         goto again;
398                 }
399         }
400
401         rc = upcall_cache_downcall(mdt->mdt_identity_cache, param->idd_err,
402                                    param->idd_uid, param);
403
404 out:
405         if (param != NULL)
406                 OBD_FREE(param, size);
407
408         return rc ? rc : count;
409 }
410 LPROC_SEQ_FOPS_WO_TYPE(mdt, identity_info);
411
412 static int mdt_site_stats_seq_show(struct seq_file *m, void *data)
413 {
414         struct obd_device *obd = m->private;
415         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
416
417         return lu_site_stats_seq_print(mdt_lu_site(mdt), m);
418 }
419 LPROC_SEQ_FOPS_RO(mdt_site_stats);
420
421 #define BUFLEN (UUID_MAX + 4)
422
423 static ssize_t
424 lprocfs_mds_evict_client_seq_write(struct file *file, const char __user *buf,
425                                    size_t count, loff_t *off)
426 {
427         struct seq_file   *m = file->private_data;
428         struct obd_device *obd = m->private;
429         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
430         char *kbuf;
431         char *tmpbuf;
432         int rc = 0;
433
434         OBD_ALLOC(kbuf, BUFLEN);
435         if (kbuf == NULL)
436                 return -ENOMEM;
437
438         /*
439          * OBD_ALLOC() will zero kbuf, but we only copy BUFLEN - 1
440          * bytes into kbuf, to ensure that the string is NUL-terminated.
441          * UUID_MAX should include a trailing NUL already.
442          */
443         if (copy_from_user(kbuf, buf, min_t(unsigned long, BUFLEN - 1, count)))
444                 GOTO(out, rc = -EFAULT);
445         tmpbuf = cfs_firststr(kbuf, min_t(unsigned long, BUFLEN - 1, count));
446
447         if (strncmp(tmpbuf, "nid:", 4) != 0) {
448                 count = lprocfs_evict_client_seq_write(file, buf, count, off);
449                 goto out;
450         }
451
452         if (mdt->mdt_opts.mo_evict_tgt_nids) {
453                 rc = obd_set_info_async(NULL, mdt->mdt_child_exp,
454                                         sizeof(KEY_EVICT_BY_NID),
455                                         KEY_EVICT_BY_NID,
456                                         strlen(tmpbuf + 4) + 1,
457                                         tmpbuf + 4, NULL);
458                 if (rc)
459                         CERROR("Failed to evict nid %s from OSTs: rc %d\n",
460                                tmpbuf + 4, rc);
461         }
462
463         /* See the comments in function lprocfs_wr_evict_client()
464          * in ptlrpc/lproc_ptlrpc.c for details. - jay */
465         class_incref(obd, __func__, current);
466         obd_export_evict_by_nid(obd, tmpbuf + 4);
467         class_decref(obd, __func__, current);
468
469
470 out:
471         OBD_FREE(kbuf, BUFLEN);
472         return rc < 0 ? rc : count;
473 }
474
475 #undef BUFLEN
476
477 static int mdt_evict_tgt_nids_seq_show(struct seq_file *m, void *data)
478 {
479         struct obd_device *obd = m->private;
480         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
481
482         return seq_printf(m, "%u\n", mdt->mdt_opts.mo_evict_tgt_nids);
483 }
484
485 static ssize_t
486 mdt_evict_tgt_nids_seq_write(struct file *file, const char __user *buffer,
487                                size_t count, loff_t *off)
488 {
489         struct seq_file   *m = file->private_data;
490         struct obd_device *obd = m->private;
491         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
492         int val, rc;
493
494         rc = lprocfs_write_helper(buffer, count, &val);
495         if (rc)
496                 return rc;
497         mdt->mdt_opts.mo_evict_tgt_nids = !!val;
498         return count;
499 }
500 LPROC_SEQ_FOPS(mdt_evict_tgt_nids);
501
502
503 static int mdt_sec_level_seq_show(struct seq_file *m, void *data)
504 {
505         struct obd_device *obd = m->private;
506         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
507
508         return seq_printf(m, "%d\n", mdt->mdt_lut.lut_sec_level);
509 }
510
511 static ssize_t
512 mdt_sec_level_seq_write(struct file *file, const char __user *buffer,
513                         size_t count, loff_t *off)
514 {
515         struct seq_file   *m = file->private_data;
516         struct obd_device *obd = m->private;
517         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
518         int val, rc;
519
520         rc = lprocfs_write_helper(buffer, count, &val);
521         if (rc)
522                 return rc;
523
524         if (val > LUSTRE_SEC_ALL || val < LUSTRE_SEC_NONE)
525                 return -EINVAL;
526
527         if (val == LUSTRE_SEC_SPECIFY) {
528                 CWARN("security level %d will be supported in future.\n",
529                       LUSTRE_SEC_SPECIFY);
530                 return -EINVAL;
531         }
532
533         mdt->mdt_lut.lut_sec_level = val;
534         return count;
535 }
536 LPROC_SEQ_FOPS(mdt_sec_level);
537
538 static int mdt_cos_seq_show(struct seq_file *m, void *data)
539 {
540         struct obd_device *obd = m->private;
541         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
542
543         return seq_printf(m, "%u\n", mdt_cos_is_enabled(mdt));
544 }
545
546 static ssize_t
547 mdt_cos_seq_write(struct file *file, const char __user *buffer,
548                   size_t count, loff_t *off)
549 {
550         struct seq_file   *m = file->private_data;
551         struct obd_device *obd = m->private;
552         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
553         int val, rc;
554
555         rc = lprocfs_write_helper(buffer, count, &val);
556         if (rc)
557                 return rc;
558         mdt_enable_cos(mdt, val);
559         return count;
560 }
561 LPROC_SEQ_FOPS(mdt_cos);
562
563 static int mdt_root_squash_seq_show(struct seq_file *m, void *data)
564 {
565         struct obd_device *obd = m->private;
566         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
567         struct root_squash_info *squash = &mdt->mdt_squash;
568
569         return seq_printf(m, "%u:%u\n", squash->rsi_uid,
570                           squash->rsi_gid);
571 }
572
573 static ssize_t
574 mdt_root_squash_seq_write(struct file *file, const char __user *buffer,
575                           size_t count, loff_t *off)
576 {
577         struct seq_file   *m = file->private_data;
578         struct obd_device *obd = m->private;
579         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
580         struct root_squash_info *squash = &mdt->mdt_squash;
581
582         return lprocfs_wr_root_squash(buffer, count, squash,
583                                       mdt_obd_name(mdt));
584 }
585 LPROC_SEQ_FOPS(mdt_root_squash);
586
587 static int mdt_nosquash_nids_seq_show(struct seq_file *m, void *data)
588 {
589         struct obd_device *obd = m->private;
590         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
591         struct root_squash_info *squash = &mdt->mdt_squash;
592         int len = 0, rc;
593
594         down_read(&squash->rsi_sem);
595         if (!list_empty(&squash->rsi_nosquash_nids)) {
596                 len = cfs_print_nidlist(m->buf + m->count, m->size - m->count,
597                                         &squash->rsi_nosquash_nids);
598                 m->count += len;
599                 rc = seq_printf(m, "\n");
600         } else
601                 rc = seq_printf(m, "NONE\n");
602         up_read(&squash->rsi_sem);
603
604         return rc;
605 }
606
607 static ssize_t
608 mdt_nosquash_nids_seq_write(struct file *file, const char __user *buffer,
609                             size_t count, loff_t *off)
610 {
611         struct seq_file   *m = file->private_data;
612         struct obd_device *obd = m->private;
613         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
614         struct root_squash_info *squash = &mdt->mdt_squash;
615
616         return lprocfs_wr_nosquash_nids(buffer, count, squash,
617                                         mdt_obd_name(mdt));
618 }
619 LPROC_SEQ_FOPS(mdt_nosquash_nids);
620
621 static int mdt_enable_remote_dir_seq_show(struct seq_file *m, void *data)
622 {
623         struct obd_device *obd = m->private;
624         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
625
626         return seq_printf(m, "%u\n", mdt->mdt_enable_remote_dir);
627 }
628
629 static ssize_t
630 mdt_enable_remote_dir_seq_write(struct file *file, const char __user *buffer,
631                                 size_t count, loff_t *off)
632 {
633         struct seq_file   *m = file->private_data;
634         struct obd_device *obd = m->private;
635         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
636         __u32 val;
637         int rc;
638
639         rc = lprocfs_write_helper(buffer, count, &val);
640         if (rc)
641                 return rc;
642
643         if (val > 1)
644                 return -ERANGE;
645
646         mdt->mdt_enable_remote_dir = val;
647         return count;
648 }
649 LPROC_SEQ_FOPS(mdt_enable_remote_dir);
650
651 static int mdt_enable_remote_dir_gid_seq_show(struct seq_file *m, void *data)
652 {
653         struct obd_device *obd = m->private;
654         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
655
656         return seq_printf(m, "%d\n",
657                           (int)mdt->mdt_enable_remote_dir_gid);
658 }
659
660 static ssize_t
661 mdt_enable_remote_dir_gid_seq_write(struct file *file,
662                                     const char __user *buffer,
663                                     size_t count, loff_t *off)
664 {
665         struct seq_file   *m = file->private_data;
666         struct obd_device *obd = m->private;
667         struct mdt_device *mdt = mdt_dev(obd->obd_lu_dev);
668         __u32 val;
669         int rc;
670
671         rc = lprocfs_write_helper(buffer, count, &val);
672         if (rc)
673                 return rc;
674
675         mdt->mdt_enable_remote_dir_gid = val;
676         return count;
677 }
678 LPROC_SEQ_FOPS(mdt_enable_remote_dir_gid);
679
680 LPROC_SEQ_FOPS_RO_TYPE(mdt, uuid);
681 LPROC_SEQ_FOPS_RO_TYPE(mdt, recovery_status);
682 LPROC_SEQ_FOPS_RO_TYPE(mdt, num_exports);
683 LPROC_SEQ_FOPS_RO_TYPE(mdt, target_instance);
684 LPROC_SEQ_FOPS_RO_TYPE(mdt, hash);
685 LPROC_SEQ_FOPS_WO_TYPE(mdt, mds_evict_client);
686 LPROC_SEQ_FOPS_RW_TYPE(mdt, job_interval);
687 LPROC_SEQ_FOPS_RW_TYPE(mdt, ir_factor);
688 LPROC_SEQ_FOPS_RW_TYPE(mdt, nid_stats_clear);
689 LPROC_SEQ_FOPS(mdt_hsm_cdt_control);
690
691 LPROC_SEQ_FOPS_RW_TYPE(mdt, recovery_time_hard);
692 LPROC_SEQ_FOPS_RW_TYPE(mdt, recovery_time_soft);
693
694 static struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
695         { .name =       "uuid",
696           .fops =       &mdt_uuid_fops                          },
697         { .name =       "recovery_status",
698           .fops =       &mdt_recovery_status_fops               },
699         { .name =       "num_exports",
700           .fops =       &mdt_num_exports_fops                   },
701         { .name =       "identity_expire",
702           .fops =       &mdt_identity_expire_fops               },
703         { .name =       "identity_acquire_expire",
704           .fops =       &mdt_identity_acquire_expire_fops       },
705         { .name =       "identity_upcall",
706           .fops =       &mdt_identity_upcall_fops               },
707         { .name =       "identity_flush",
708           .fops =       &mdt_identity_flush_fops                },
709         { .name =       "identity_info",
710           .fops =       &mdt_identity_info_fops                 },
711         { .name =       "site_stats",
712           .fops =       &mdt_site_stats_fops                    },
713         { .name =       "evict_client",
714           .fops =       &mdt_mds_evict_client_fops              },
715         { .name =       "evict_tgt_nids",
716           .fops =       &mdt_evict_tgt_nids_fops                },
717         { .name =       "hash_stats",
718           .fops =       &mdt_hash_fops                          },
719         { .name =       "sec_level",
720           .fops =       &mdt_sec_level_fops                     },
721         { .name =       "commit_on_sharing",
722           .fops =       &mdt_cos_fops                           },
723         { .name =       "root_squash",
724           .fops =       &mdt_root_squash_fops                   },
725         { .name =       "nosquash_nids",
726           .fops =       &mdt_nosquash_nids_fops                 },
727         { .name =       "instance",
728           .fops =       &mdt_target_instance_fops               },
729         { .name =       "ir_factor",
730           .fops =       &mdt_ir_factor_fops                     },
731         { .name =       "job_cleanup_interval",
732           .fops =       &mdt_job_interval_fops                  },
733         { .name =       "enable_remote_dir",
734           .fops =       &mdt_enable_remote_dir_fops             },
735         { .name =       "enable_remote_dir_gid",
736           .fops =       &mdt_enable_remote_dir_gid_fops         },
737         { .name =       "hsm_control",
738           .fops =       &mdt_hsm_cdt_control_fops               },
739         { .name =       "recovery_time_hard",
740           .fops =       &mdt_recovery_time_hard_fops    },
741         { .name =       "recovery_time_soft",
742           .fops =       &mdt_recovery_time_soft_fops    },
743         { NULL }
744 };
745
746 static int
747 lprocfs_mdt_print_open_files(struct cfs_hash *hs, struct cfs_hash_bd *bd,
748                              struct hlist_node *hnode, void *v)
749 {
750         struct obd_export       *exp = cfs_hash_object(hs, hnode);
751         struct seq_file         *seq = v;
752
753         if (exp->exp_lock_hash != NULL) {
754                 struct mdt_export_data  *med = &exp->exp_mdt_data;
755                 struct mdt_file_data    *mfd;
756
757                 spin_lock(&med->med_open_lock);
758                 list_for_each_entry(mfd, &med->med_open_head, mfd_list) {
759                         seq_printf(seq, DFID"\n",
760                                    PFID(mdt_object_fid(mfd->mfd_object)));
761                 }
762                 spin_unlock(&med->med_open_lock);
763         }
764
765         return 0;
766 }
767
768 static int lprocfs_mdt_open_files_seq_show(struct seq_file *seq, void *v)
769 {
770         struct nid_stat *stats = seq->private;
771         struct obd_device *obd = stats->nid_obd;
772
773         cfs_hash_for_each_key(obd->obd_nid_hash, &stats->nid,
774                               lprocfs_mdt_print_open_files, seq);
775
776         return 0;
777 }
778
779 int lprocfs_mdt_open_files_seq_open(struct inode *inode, struct file *file)
780 {
781         struct seq_file         *seq;
782         int                     rc;
783
784         rc = single_open(file, &lprocfs_mdt_open_files_seq_show, NULL);
785         if (rc != 0)
786                 return rc;
787
788         seq = file->private_data;
789         seq->private = PDE_DATA(inode);
790
791         return 0;
792 }
793
794 void mdt_counter_incr(struct ptlrpc_request *req, int opcode)
795 {
796         struct obd_export *exp = req->rq_export;
797
798         if (exp->exp_obd && exp->exp_obd->obd_md_stats)
799                 lprocfs_counter_incr(exp->exp_obd->obd_md_stats, opcode);
800         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats != NULL)
801                 lprocfs_counter_incr(exp->exp_nid_stats->nid_stats, opcode);
802         if (exp->exp_obd && exp->exp_obd->u.obt.obt_jobstats.ojs_hash &&
803             (exp_connect_flags(exp) & OBD_CONNECT_JOBSTATS))
804                 lprocfs_job_stats_log(exp->exp_obd,
805                                       lustre_msg_get_jobid(req->rq_reqmsg),
806                                       opcode, 1);
807 }
808
809 void mdt_stats_counter_init(struct lprocfs_stats *stats)
810 {
811         lprocfs_counter_init(stats, LPROC_MDT_OPEN, 0, "open", "reqs");
812         lprocfs_counter_init(stats, LPROC_MDT_CLOSE, 0, "close", "reqs");
813         lprocfs_counter_init(stats, LPROC_MDT_MKNOD, 0, "mknod", "reqs");
814         lprocfs_counter_init(stats, LPROC_MDT_LINK, 0, "link", "reqs");
815         lprocfs_counter_init(stats, LPROC_MDT_UNLINK, 0, "unlink", "reqs");
816         lprocfs_counter_init(stats, LPROC_MDT_MKDIR, 0, "mkdir", "reqs");
817         lprocfs_counter_init(stats, LPROC_MDT_RMDIR, 0, "rmdir", "reqs");
818         lprocfs_counter_init(stats, LPROC_MDT_RENAME, 0, "rename", "reqs");
819         lprocfs_counter_init(stats, LPROC_MDT_GETATTR, 0, "getattr", "reqs");
820         lprocfs_counter_init(stats, LPROC_MDT_SETATTR, 0, "setattr", "reqs");
821         lprocfs_counter_init(stats, LPROC_MDT_GETXATTR, 0, "getxattr", "reqs");
822         lprocfs_counter_init(stats, LPROC_MDT_SETXATTR, 0, "setxattr", "reqs");
823         lprocfs_counter_init(stats, LPROC_MDT_STATFS, 0, "statfs", "reqs");
824         lprocfs_counter_init(stats, LPROC_MDT_SYNC, 0, "sync", "reqs");
825         lprocfs_counter_init(stats, LPROC_MDT_SAMEDIR_RENAME, 0,
826                              "samedir_rename", "reqs");
827         lprocfs_counter_init(stats, LPROC_MDT_CROSSDIR_RENAME, 0,
828                              "crossdir_rename", "reqs");
829 }
830
831 int mdt_procfs_init(struct mdt_device *mdt, const char *name)
832 {
833         struct obd_device               *obd = mdt2obd_dev(mdt);
834         int                              rc;
835         ENTRY;
836
837         LASSERT(name != NULL);
838
839         obd->obd_vars = lprocfs_mdt_obd_vars;
840         rc = lprocfs_obd_setup(obd);
841         if (rc) {
842                 CERROR("%s: cannot create proc entries: rc = %d\n",
843                        mdt_obd_name(mdt), rc);
844                 return rc;
845         }
846
847         rc = hsm_cdt_procfs_init(mdt);
848         if (rc) {
849                 CERROR("%s: cannot create hsm proc entries: rc = %d\n",
850                        mdt_obd_name(mdt), rc);
851                 return rc;
852         }
853
854         obd->obd_proc_exports_entry = proc_mkdir("exports",
855                                                  obd->obd_proc_entry);
856         if (obd->obd_proc_exports_entry)
857                 lprocfs_add_simple(obd->obd_proc_exports_entry, "clear",
858                                    obd, &mdt_nid_stats_clear_fops);
859         rc = lprocfs_alloc_md_stats(obd, LPROC_MDT_LAST);
860         if (rc)
861                 return rc;
862         mdt_stats_counter_init(obd->obd_md_stats);
863
864         rc = lprocfs_job_stats_init(obd, LPROC_MDT_LAST,
865                                     mdt_stats_counter_init);
866
867         rc = lproc_mdt_attach_rename_seqstat(mdt);
868         if (rc)
869                 CERROR("%s: MDT can not create rename stats rc = %d\n",
870                        mdt_obd_name(mdt), rc);
871
872         RETURN(rc);
873 }
874
875 void mdt_procfs_fini(struct mdt_device *mdt)
876 {
877         struct obd_device *obd = mdt2obd_dev(mdt);
878
879         if (obd->obd_proc_exports_entry != NULL) {
880                 lprocfs_remove_proc_entry("clear", obd->obd_proc_exports_entry);
881                 obd->obd_proc_exports_entry = NULL;
882         }
883
884         lprocfs_free_per_client_stats(obd);
885         hsm_cdt_procfs_fini(mdt);
886         lprocfs_obd_cleanup(obd);
887         lprocfs_free_md_stats(obd);
888         lprocfs_free_obd_stats(obd);
889         lprocfs_job_stats_fini(obd);
890 }