Whamcloud - gitweb
1f8b5a611914033c236d24f435ad9218df6ed36d
[fs/lustre-release.git] / lustre / lmv / lproc_lmv.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) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 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
37 #define DEBUG_SUBSYSTEM S_CLASS
38
39 #include <linux/version.h>
40 #include <linux/seq_file.h>
41 #include <asm/statfs.h>
42 #include <lprocfs_status.h>
43 #include <obd_class.h>
44
45 #include "lmv_internal.h"
46
47 #ifndef CONFIG_PROC_FS
48 static struct lprocfs_vars lprocfs_module_vars[] = { {0} };
49 static struct lprocfs_vars lprocfs_obd_vars[] = { {0} };
50 #else
51 static int lmv_numobd_seq_show(struct seq_file *m, void *v)
52 {
53         struct obd_device       *dev = (struct obd_device *)m->private;
54         struct lmv_desc         *desc;
55
56         LASSERT(dev != NULL);
57         desc = &dev->u.lmv.desc;
58         return seq_printf(m, "%u\n", desc->ld_tgt_count);
59 }
60 LPROC_SEQ_FOPS_RO(lmv_numobd);
61
62 static const char *placement_name[] = {
63         [PLACEMENT_CHAR_POLICY] = "CHAR",
64         [PLACEMENT_NID_POLICY]  = "NID",
65         [PLACEMENT_INVAL_POLICY]  = "INVAL"
66 };
67
68 static placement_policy_t placement_name2policy(char *name, int len)
69 {
70         int                     i;
71
72         for (i = 0; i < PLACEMENT_MAX_POLICY; i++) {
73                 if (!strncmp(placement_name[i], name, len))
74                         return i;
75         }
76         return PLACEMENT_INVAL_POLICY;
77 }
78
79 static const char *placement_policy2name(placement_policy_t placement)
80 {
81         LASSERT(placement < PLACEMENT_MAX_POLICY);
82         return placement_name[placement];
83 }
84
85 static int lmv_placement_seq_show(struct seq_file *m, void *v)
86 {
87         struct obd_device       *dev = (struct obd_device *)m->private;
88         struct lmv_obd          *lmv;
89
90         LASSERT(dev != NULL);
91         lmv = &dev->u.lmv;
92         return seq_printf(m, "%s\n", placement_policy2name(lmv->lmv_placement));
93 }
94
95 #define MAX_POLICY_STRING_SIZE 64
96
97 static ssize_t lmv_placement_seq_write(struct file *file,
98                                        const char __user *buffer,
99                                        size_t count, loff_t *off)
100 {
101         struct obd_device *dev = ((struct seq_file *)file->private_data)->private;
102         char                     dummy[MAX_POLICY_STRING_SIZE + 1];
103         int                      len = count;
104         placement_policy_t       policy;
105         struct lmv_obd          *lmv;
106
107         if (copy_from_user(dummy, buffer, MAX_POLICY_STRING_SIZE))
108                 return -EFAULT;
109
110         LASSERT(dev != NULL);
111         lmv = &dev->u.lmv;
112
113         if (len > MAX_POLICY_STRING_SIZE)
114                 len = MAX_POLICY_STRING_SIZE;
115
116         if (dummy[len - 1] == '\n')
117                 len--;
118         dummy[len] = '\0';
119
120         policy = placement_name2policy(dummy, len);
121         if (policy != PLACEMENT_INVAL_POLICY) {
122                 spin_lock(&lmv->lmv_lock);
123                 lmv->lmv_placement = policy;
124                 spin_unlock(&lmv->lmv_lock);
125         } else {
126                 CERROR("Invalid placement policy \"%s\"!\n", dummy);
127                 return -EINVAL;
128         }
129         return count;
130 }
131 LPROC_SEQ_FOPS(lmv_placement);
132
133 static int lmv_activeobd_seq_show(struct seq_file *m, void *v)
134 {
135         struct obd_device       *dev = (struct obd_device *)m->private;
136         struct lmv_desc         *desc;
137
138         LASSERT(dev != NULL);
139         desc = &dev->u.lmv.desc;
140         return seq_printf(m, "%u\n", desc->ld_active_tgt_count);
141 }
142 LPROC_SEQ_FOPS_RO(lmv_activeobd);
143
144 static int lmv_desc_uuid_seq_show(struct seq_file *m, void *v)
145 {
146         struct obd_device       *dev = (struct obd_device*)m->private;
147         struct lmv_obd          *lmv;
148
149         LASSERT(dev != NULL);
150         lmv = &dev->u.lmv;
151         return seq_printf(m, "%s\n", lmv->desc.ld_uuid.uuid);
152 }
153 LPROC_SEQ_FOPS_RO(lmv_desc_uuid);
154
155 static void *lmv_tgt_seq_start(struct seq_file *p, loff_t *pos)
156 {
157         struct obd_device       *dev = p->private;
158         struct lmv_obd          *lmv = &dev->u.lmv;
159         return (*pos >= lmv->desc.ld_tgt_count) ? NULL : lmv->tgts[*pos];
160 }
161
162 static void lmv_tgt_seq_stop(struct seq_file *p, void *v)
163 {
164         return;
165 }
166
167 static void *lmv_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos)
168 {
169         struct obd_device       *dev = p->private;
170         struct lmv_obd          *lmv = &dev->u.lmv;
171         ++*pos;
172         return (*pos >= lmv->desc.ld_tgt_count) ? NULL : lmv->tgts[*pos];
173 }
174
175 static int lmv_tgt_seq_show(struct seq_file *p, void *v)
176 {
177         struct lmv_tgt_desc     *tgt = v;
178
179         if (tgt == NULL)
180                 return 0;
181         return seq_printf(p, "%u: %s %sACTIVE\n", tgt->ltd_idx,
182                           tgt->ltd_uuid.uuid, tgt->ltd_active ? "" : "IN");
183 }
184
185 static const struct seq_operations lmv_tgt_sops = {
186         .start                 = lmv_tgt_seq_start,
187         .stop                  = lmv_tgt_seq_stop,
188         .next                  = lmv_tgt_seq_next,
189         .show                  = lmv_tgt_seq_show,
190 };
191
192 static int lmv_target_seq_open(struct inode *inode, struct file *file)
193 {
194         struct seq_file         *seq;
195         int                     rc;
196
197         rc = seq_open(file, &lmv_tgt_sops);
198         if (rc)
199                 return rc;
200
201         seq = file->private_data;
202         seq->private = PDE_DATA(inode);
203         return 0;
204 }
205
206 LPROC_SEQ_FOPS_RO_TYPE(lmv, uuid);
207
208 struct lprocfs_vars lprocfs_lmv_obd_vars[] = {
209         { .name =       "numobd",
210           .fops =       &lmv_numobd_fops        },
211         { .name =       "placement",
212           .fops =       &lmv_placement_fops     },
213         { .name =       "activeobd",
214           .fops =       &lmv_activeobd_fops     },
215         { .name =       "uuid",
216           .fops =       &lmv_uuid_fops          },
217         { .name =       "desc_uuid",
218           .fops =       &lmv_desc_uuid_fops     },
219         { NULL }
220 };
221
222 struct file_operations lmv_proc_target_fops = {
223         .owner                = THIS_MODULE,
224         .open                 = lmv_target_seq_open,
225         .read                 = seq_read,
226         .llseek               = seq_lseek,
227         .release              = seq_release,
228 };
229 #endif /* CONFIG_PROC_FS */