Whamcloud - gitweb
LU-2800 autoconf: remove LC_PROCFS_USERS test
[fs/lustre-release.git] / lustre / lov / lproc_lov.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 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 #define DEBUG_SUBSYSTEM S_CLASS
37
38 #include <linux/version.h>
39 #include <asm/statfs.h>
40 #include <lprocfs_status.h>
41 #include <obd_class.h>
42 #include <linux/seq_file.h>
43 #include "lov_internal.h"
44
45 #ifdef LPROCFS
46 static int lov_rd_stripesize(char *page, char **start, off_t off, int count,
47                              int *eof, void *data)
48 {
49         struct obd_device *dev = (struct obd_device *)data;
50         struct lov_desc *desc;
51
52         LASSERT(dev != NULL);
53         desc = &dev->u.lov.desc;
54         *eof = 1;
55         return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_size);
56 }
57
58 static int lov_wr_stripesize(struct file *file, const char *buffer,
59                                unsigned long count, void *data)
60 {
61         struct obd_device *dev = (struct obd_device *)data;
62         struct lov_desc *desc;
63         __u64 val;
64         int rc;
65         
66         LASSERT(dev != NULL);
67         desc = &dev->u.lov.desc;
68         rc = lprocfs_write_u64_helper(buffer, count, &val);
69         if (rc)
70                 return rc;
71
72         lov_fix_desc_stripe_size(&val);
73         desc->ld_default_stripe_size = val;
74         return count;
75 }
76
77 static int lov_rd_stripeoffset(char *page, char **start, off_t off, int count,
78                                int *eof, void *data)
79 {
80         struct obd_device *dev = (struct obd_device *)data;
81         struct lov_desc *desc;
82
83         LASSERT(dev != NULL);
84         desc = &dev->u.lov.desc;
85         *eof = 1;
86         return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_offset);
87 }
88
89 static int lov_wr_stripeoffset(struct file *file, const char *buffer,
90                                unsigned long count, void *data)
91 {
92         struct obd_device *dev = (struct obd_device *)data;
93         struct lov_desc *desc;
94         __u64 val;
95         int rc;
96         
97         LASSERT(dev != NULL);
98         desc = &dev->u.lov.desc;
99         rc = lprocfs_write_u64_helper(buffer, count, &val);
100         if (rc)
101                 return rc;
102
103         desc->ld_default_stripe_offset = val;
104         return count;
105 }
106
107 static int lov_rd_stripetype(char *page, char **start, off_t off, int count,
108                              int *eof, void *data)
109 {
110         struct obd_device* dev = (struct obd_device*)data;
111         struct lov_desc *desc;
112
113         LASSERT(dev != NULL);
114         desc = &dev->u.lov.desc;
115         *eof = 1;
116         return snprintf(page, count, "%u\n", desc->ld_pattern);
117 }
118
119 static int lov_wr_stripetype(struct file *file, const char *buffer,
120                              unsigned long count, void *data)
121 {
122         struct obd_device *dev = (struct obd_device *)data;
123         struct lov_desc *desc;
124         int val, rc;
125         
126         LASSERT(dev != NULL);
127         desc = &dev->u.lov.desc;
128         rc = lprocfs_write_helper(buffer, count, &val);
129         if (rc)
130                 return rc;
131
132         lov_fix_desc_pattern(&val);
133         desc->ld_pattern = val;
134         return count;
135 }
136
137 static int lov_rd_stripecount(char *page, char **start, off_t off, int count,
138                               int *eof, void *data)
139 {
140         struct obd_device *dev = (struct obd_device *)data;
141         struct lov_desc *desc;
142
143         LASSERT(dev != NULL);
144         desc = &dev->u.lov.desc;
145         *eof = 1;
146         return snprintf(page, count, "%d\n",
147                         (__s16)(desc->ld_default_stripe_count + 1) - 1);
148 }
149
150 static int lov_wr_stripecount(struct file *file, const char *buffer,
151                               unsigned long count, void *data)
152 {
153         struct obd_device *dev = (struct obd_device *)data;
154         struct lov_desc *desc;
155         int val, rc;
156         
157         LASSERT(dev != NULL);
158         desc = &dev->u.lov.desc;
159         rc = lprocfs_write_helper(buffer, count, &val);
160         if (rc)
161                 return rc;
162
163         lov_fix_desc_stripe_count(&val);
164         desc->ld_default_stripe_count = val;
165         return count;
166 }
167
168 static int lov_rd_numobd(char *page, char **start, off_t off, int count,
169                          int *eof, void *data)
170 {
171         struct obd_device *dev = (struct obd_device*)data;
172         struct lov_desc *desc;
173
174         LASSERT(dev != NULL);
175         desc = &dev->u.lov.desc;
176         *eof = 1;
177         return snprintf(page, count, "%u\n", desc->ld_tgt_count);
178
179 }
180
181 static int lov_rd_activeobd(char *page, char **start, off_t off, int count,
182                             int *eof, void *data)
183 {
184         struct obd_device* dev = (struct obd_device*)data;
185         struct lov_desc *desc;
186
187         LASSERT(dev != NULL);
188         desc = &dev->u.lov.desc;
189         *eof = 1;
190         return snprintf(page, count, "%u\n", desc->ld_active_tgt_count);
191 }
192
193 static int lov_rd_desc_uuid(char *page, char **start, off_t off, int count,
194                             int *eof, void *data)
195 {
196         struct obd_device *dev = (struct obd_device*) data;
197         struct lov_obd *lov;
198
199         LASSERT(dev != NULL);
200         lov = &dev->u.lov;
201         *eof = 1;
202         return snprintf(page, count, "%s\n", lov->desc.ld_uuid.uuid);
203 }
204
205 static void *lov_tgt_seq_start(struct seq_file *p, loff_t *pos)
206 {
207         struct obd_device *dev = p->private;
208         struct lov_obd *lov = &dev->u.lov;
209
210         while (*pos < lov->desc.ld_tgt_count) {
211                 if (lov->lov_tgts[*pos])
212                         return lov->lov_tgts[*pos];
213                 ++*pos;
214         }
215         return NULL;
216 }
217
218 static void lov_tgt_seq_stop(struct seq_file *p, void *v)
219 {
220 }
221
222 static void *lov_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos)
223 {
224         struct obd_device *dev = p->private;
225         struct lov_obd *lov = &dev->u.lov;
226
227         while (++*pos < lov->desc.ld_tgt_count) {
228                 if (lov->lov_tgts[*pos])
229                         return lov->lov_tgts[*pos];
230         }
231         return NULL;
232 }
233
234 static int lov_tgt_seq_show(struct seq_file *p, void *v)
235 {
236         struct lov_tgt_desc *tgt = v;
237         return seq_printf(p, "%d: %s %sACTIVE\n", tgt->ltd_index, 
238                           obd_uuid2str(&tgt->ltd_uuid), 
239                           tgt->ltd_active ? "" : "IN");
240 }
241
242 struct seq_operations lov_tgt_sops = {
243         .start = lov_tgt_seq_start,
244         .stop = lov_tgt_seq_stop,
245         .next = lov_tgt_seq_next,
246         .show = lov_tgt_seq_show,
247 };
248
249 static int lov_target_seq_open(struct inode *inode, struct file *file)
250 {
251         struct proc_dir_entry *dp = PDE(inode);
252         struct seq_file *seq;
253         int rc;
254
255         LPROCFS_ENTRY_CHECK(dp);
256         rc = seq_open(file, &lov_tgt_sops);
257         if (rc)
258                 return rc;
259
260         seq = file->private_data;
261         seq->private = dp->data;
262         return 0;
263 }
264
265 struct lprocfs_vars lprocfs_lov_obd_vars[] = {
266         { "uuid",         lprocfs_rd_uuid,        0, 0 },
267         { "stripesize",   lov_rd_stripesize,      lov_wr_stripesize, 0 },
268         { "stripeoffset", lov_rd_stripeoffset,    lov_wr_stripeoffset, 0 },
269         { "stripecount",  lov_rd_stripecount,     lov_wr_stripecount, 0 },
270         { "stripetype",   lov_rd_stripetype,      lov_wr_stripetype, 0 },
271         { "numobd",       lov_rd_numobd,          0, 0 },
272         { "activeobd",    lov_rd_activeobd,       0, 0 },
273         { "filestotal",   lprocfs_rd_filestotal,  0, 0 },
274         { "filesfree",    lprocfs_rd_filesfree,   0, 0 },
275         /*{ "filegroups", lprocfs_rd_filegroups,  0, 0 },*/
276         { "blocksize",    lprocfs_rd_blksize,     0, 0 },
277         { "kbytestotal",  lprocfs_rd_kbytestotal, 0, 0 },
278         { "kbytesfree",   lprocfs_rd_kbytesfree,  0, 0 },
279         { "kbytesavail",  lprocfs_rd_kbytesavail, 0, 0 },
280         { "desc_uuid",    lov_rd_desc_uuid,       0, 0 },
281         { 0 }
282 };
283
284 static struct lprocfs_vars lprocfs_lov_module_vars[] = {
285         { "num_refs",     lprocfs_rd_numrefs,     0, 0 },
286         { 0 }
287 };
288
289 void lprocfs_lov_init_vars(struct lprocfs_static_vars *lvars)
290 {
291     lvars->module_vars  = lprocfs_lov_module_vars;
292     lvars->obd_vars     = lprocfs_lov_obd_vars;
293 }
294
295 struct file_operations lov_proc_target_fops = {
296         .owner   = THIS_MODULE,
297         .open    = lov_target_seq_open,
298         .read    = seq_read,
299         .llseek  = seq_lseek,
300         .release = lprocfs_seq_release,
301 };
302 #endif /* LPROCFS */