Whamcloud - gitweb
a52b2ee15243487dd2d5344526f2141a42a2bd7e
[fs/lustre-release.git] / lustre / fld / lproc_fld.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, 2012, Whamcloud, Inc.
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/fld/lproc_fld.c
37  *
38  * FLD (FIDs Location Database)
39  *
40  * Author: Yury Umanets <umka@clusterfs.com>
41  *      Di Wang <di.wang@whamcloud.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_FLD
45
46 #ifdef __KERNEL__
47 # include <libcfs/libcfs.h>
48 # include <linux/module.h>
49 #else /* __KERNEL__ */
50 # include <liblustre.h>
51 #endif
52
53 #include <obd.h>
54 #include <obd_class.h>
55 #include <dt_object.h>
56 #include <md_object.h>
57 #include <obd_support.h>
58 #include <lustre_req_layout.h>
59 #include <lustre_fld.h>
60 #include <lustre_fid.h>
61 #include "fld_internal.h"
62
63 #ifdef LPROCFS
64 static int
65 fld_proc_read_targets(char *page, char **start, off_t off,
66                       int count, int *eof, void *data)
67 {
68         struct lu_client_fld *fld = (struct lu_client_fld *)data;
69         struct lu_fld_target *target;
70         int total = 0, rc;
71         ENTRY;
72
73         LASSERT(fld != NULL);
74
75         spin_lock(&fld->lcf_lock);
76         cfs_list_for_each_entry(target,
77                                 &fld->lcf_targets, ft_chain)
78         {
79                 rc = snprintf(page, count, "%s\n",
80                               fld_target_name(target));
81                 page += rc;
82                 count -= rc;
83                 total += rc;
84                 if (count == 0)
85                         break;
86         }
87         spin_unlock(&fld->lcf_lock);
88         RETURN(total);
89 }
90
91 static int
92 fld_proc_read_hash(char *page, char **start, off_t off,
93                    int count, int *eof, void *data)
94 {
95         struct lu_client_fld *fld = (struct lu_client_fld *)data;
96         int rc;
97         ENTRY;
98
99         LASSERT(fld != NULL);
100
101         spin_lock(&fld->lcf_lock);
102         rc = snprintf(page, count, "%s\n", fld->lcf_hash->fh_name);
103         spin_unlock(&fld->lcf_lock);
104
105         RETURN(rc);
106 }
107
108 static int
109 fld_proc_write_hash(struct file *file, const char *buffer,
110                     unsigned long count, void *data)
111 {
112         struct lu_client_fld *fld = (struct lu_client_fld *)data;
113         struct lu_fld_hash *hash = NULL;
114         int i;
115         ENTRY;
116
117         LASSERT(fld != NULL);
118
119         for (i = 0; fld_hash[i].fh_name != NULL; i++) {
120                 if (count != strlen(fld_hash[i].fh_name))
121                         continue;
122
123                 if (!strncmp(fld_hash[i].fh_name, buffer, count)) {
124                         hash = &fld_hash[i];
125                         break;
126                 }
127         }
128
129         if (hash != NULL) {
130                 spin_lock(&fld->lcf_lock);
131                 fld->lcf_hash = hash;
132                 spin_unlock(&fld->lcf_lock);
133
134                 CDEBUG(D_INFO, "%s: Changed hash to \"%s\"\n",
135                        fld->lcf_name, hash->fh_name);
136         }
137
138         RETURN(count);
139 }
140
141 static int
142 fld_proc_write_cache_flush(struct file *file, const char *buffer,
143                            unsigned long count, void *data)
144 {
145         struct lu_client_fld *fld = (struct lu_client_fld *)data;
146         ENTRY;
147
148         LASSERT(fld != NULL);
149
150         fld_cache_flush(fld->lcf_cache);
151
152         CDEBUG(D_INFO, "%s: Lookup cache is flushed\n", fld->lcf_name);
153
154         RETURN(count);
155 }
156
157 struct fld_seq_param {
158         struct lu_env  fsp_env;
159         struct dt_it  *fsp_it;
160 };
161
162 static void *fldb_seq_start(struct seq_file *p, loff_t *pos)
163 {
164         struct lu_server_fld    *fld = p->private;
165         struct dt_object        *obj;
166         const struct dt_it_ops  *iops;
167         struct fld_seq_param    *param;
168
169         if (fld->lsf_obj == NULL)
170                 return NULL;
171
172         obj = fld->lsf_obj;
173         iops = &obj->do_index_ops->dio_it;
174
175         OBD_ALLOC_PTR(param);
176         if (param == NULL)
177                 return ERR_PTR(-ENOMEM);
178
179         lu_env_init(&param->fsp_env, LCT_MD_THREAD);
180         param->fsp_it = iops->init(&param->fsp_env, obj, 0, NULL);
181
182         iops->load(&param->fsp_env, param->fsp_it, *pos);
183
184         return param;
185 }
186
187 static void fldb_seq_stop(struct seq_file *p, void *v)
188 {
189         struct lu_server_fld    *fld = p->private;
190         struct dt_object        *obj;
191         const struct dt_it_ops  *iops;
192         struct fld_seq_param    *param = (struct fld_seq_param *)v;
193
194         if (fld->lsf_obj == NULL)
195                 return;
196
197         obj = fld->lsf_obj;
198         iops = &obj->do_index_ops->dio_it;
199         if (IS_ERR(param) || param == NULL)
200                 return;
201
202         iops->put(&param->fsp_env, param->fsp_it);
203         iops->fini(&param->fsp_env, param->fsp_it);
204         lu_env_fini(&param->fsp_env);
205         OBD_FREE_PTR(param);
206
207         return;
208 }
209
210 static void *fldb_seq_next(struct seq_file *p, void *v, loff_t *pos)
211 {
212         struct lu_server_fld    *fld = p->private;
213         struct dt_object        *obj;
214         const struct dt_it_ops  *iops;
215         struct fld_seq_param    *param = (struct fld_seq_param *)v;
216         int                     rc;
217
218         if (fld->lsf_obj == NULL)
219                 return NULL;
220
221         obj = fld->lsf_obj;
222         iops = &obj->do_index_ops->dio_it;
223
224         iops->get(&param->fsp_env, param->fsp_it,
225                   (const struct dt_key *)pos);
226
227         rc = iops->next(&param->fsp_env, param->fsp_it);
228         if (rc > 0) {
229                 iops->put(&param->fsp_env, param->fsp_it);
230                 iops->fini(&param->fsp_env, param->fsp_it);
231                 lu_env_fini(&param->fsp_env);
232                 OBD_FREE_PTR(param);
233                 return NULL;
234         }
235
236         *pos = *(loff_t *)iops->key(&param->fsp_env, param->fsp_it);
237
238         return param;
239 }
240
241 static int fldb_seq_show(struct seq_file *p, void *v)
242 {
243         struct lu_server_fld    *fld = p->private;
244         struct dt_object        *obj = fld->lsf_obj;
245         struct fld_seq_param    *param = (struct fld_seq_param *)v;
246         const struct dt_it_ops  *iops;
247         struct fld_thread_info  *info;
248         struct lu_seq_range     *fld_rec;
249         int                     rc;
250
251         if (fld->lsf_obj == NULL)
252                 return 0;
253
254         obj = fld->lsf_obj;
255         iops = &obj->do_index_ops->dio_it;
256
257         info = lu_context_key_get(&param->fsp_env.le_ctx,
258                                   &fld_thread_key);
259         fld_rec = &info->fti_rec;
260         rc = iops->rec(&param->fsp_env, param->fsp_it,
261                        (struct dt_rec *)fld_rec, 0);
262         if (rc != 0) {
263                 CERROR("%s:read record error: rc %d\n",
264                        fld->lsf_name, rc);
265         } else if (fld_rec->lsr_start != 0) {
266                 range_be_to_cpu(fld_rec, fld_rec);
267                 rc = seq_printf(p, DRANGE"\n", PRANGE(fld_rec));
268         }
269
270         iops->put(&param->fsp_env, param->fsp_it);
271
272         return rc;
273 }
274
275 struct seq_operations fldb_sops = {
276         .start = fldb_seq_start,
277         .stop = fldb_seq_stop,
278         .next = fldb_seq_next,
279         .show = fldb_seq_show,
280 };
281
282 static int fldb_seq_open(struct inode *inode, struct file *file)
283 {
284         struct proc_dir_entry *dp = PDE(inode);
285         struct seq_file *seq;
286         int rc;
287
288         LPROCFS_ENTRY_AND_CHECK(dp);
289         rc = seq_open(file, &fldb_sops);
290         if (rc) {
291                 LPROCFS_EXIT();
292                 return rc;
293         }
294
295         seq = file->private_data;
296         seq->private = dp->data;
297         return 0;
298 }
299
300 struct lprocfs_vars fld_server_proc_list[] = {
301         { NULL }};
302
303 struct lprocfs_vars fld_client_proc_list[] = {
304         { "targets",     fld_proc_read_targets, NULL, NULL },
305         { "hash",        fld_proc_read_hash, fld_proc_write_hash, NULL },
306         { "cache_flush", NULL, fld_proc_write_cache_flush, NULL },
307         { NULL }};
308
309 struct file_operations fld_proc_seq_fops = {
310         .owner   = THIS_MODULE,
311         .open    = fldb_seq_open,
312         .read    = seq_read,
313         .llseek  = seq_lseek,
314         .release = lprocfs_seq_release,
315 };
316
317 #endif