Whamcloud - gitweb
LU-2728 fld: check for NULL param in fldb_seq_stop()
[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) 2012, 2013, 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/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         struct lu_server_fld    *fsp_fld;
161         int                     fsp_stop:1;
162 };
163
164 static void *fldb_seq_start(struct seq_file *p, loff_t *pos)
165 {
166         struct fld_seq_param    *param = p->private;
167         struct lu_server_fld    *fld;
168         struct dt_object        *obj;
169         const struct dt_it_ops  *iops;
170
171         if (param == NULL || param->fsp_stop)
172                 return NULL;
173
174         fld = param->fsp_fld;
175         obj = fld->lsf_obj;
176         LASSERT(obj != NULL);
177         iops = &obj->do_index_ops->dio_it;
178
179         iops->load(&param->fsp_env, param->fsp_it, *pos);
180
181         *pos = be64_to_cpu(*(__u64 *)iops->key(&param->fsp_env, param->fsp_it));
182         return param;
183 }
184
185 static void fldb_seq_stop(struct seq_file *p, void *v)
186 {
187         struct fld_seq_param    *param = p->private;
188         const struct dt_it_ops  *iops;
189         struct lu_server_fld    *fld;
190         struct dt_object        *obj;
191
192         if (param == NULL)
193                 return;
194
195         fld = param->fsp_fld;
196         obj = fld->lsf_obj;
197         LASSERT(obj != NULL);
198         iops = &obj->do_index_ops->dio_it;
199
200         iops->put(&param->fsp_env, param->fsp_it);
201 }
202
203 static void *fldb_seq_next(struct seq_file *p, void *v, loff_t *pos)
204 {
205         struct fld_seq_param    *param = p->private;
206         struct lu_server_fld    *fld;
207         struct dt_object        *obj;
208         const struct dt_it_ops  *iops;
209         int                     rc;
210
211         if (param == NULL || param->fsp_stop)
212                 return NULL;
213
214         fld = param->fsp_fld;
215         obj = fld->lsf_obj;
216         LASSERT(obj != NULL);
217         iops = &obj->do_index_ops->dio_it;
218
219         rc = iops->next(&param->fsp_env, param->fsp_it);
220         if (rc > 0) {
221                 param->fsp_stop = 1;
222                 return NULL;
223         }
224
225         *pos = be64_to_cpu(*(__u64 *)iops->key(&param->fsp_env, param->fsp_it));
226         return param;
227 }
228
229 static int fldb_seq_show(struct seq_file *p, void *v)
230 {
231         struct fld_seq_param    *param = p->private;
232         struct lu_server_fld    *fld;
233         struct dt_object        *obj;
234         const struct dt_it_ops  *iops;
235         struct fld_thread_info  *info;
236         struct lu_seq_range     *fld_rec;
237         int                     rc;
238
239         if (param == NULL || param->fsp_stop)
240                 return 0;
241
242         fld = param->fsp_fld;
243         obj = fld->lsf_obj;
244         LASSERT(obj != NULL);
245         iops = &obj->do_index_ops->dio_it;
246
247         info = lu_context_key_get(&param->fsp_env.le_ctx,
248                                   &fld_thread_key);
249         fld_rec = &info->fti_rec;
250         rc = iops->rec(&param->fsp_env, param->fsp_it,
251                        (struct dt_rec *)fld_rec, 0);
252         if (rc != 0) {
253                 CERROR("%s:read record error: rc %d\n",
254                        fld->lsf_name, rc);
255         } else if (fld_rec->lsr_start != 0) {
256                 range_be_to_cpu(fld_rec, fld_rec);
257                 rc = seq_printf(p, DRANGE"\n", PRANGE(fld_rec));
258         }
259
260         return rc;
261 }
262
263 struct seq_operations fldb_sops = {
264         .start = fldb_seq_start,
265         .stop = fldb_seq_stop,
266         .next = fldb_seq_next,
267         .show = fldb_seq_show,
268 };
269
270 static int fldb_seq_open(struct inode *inode, struct file *file)
271 {
272         struct proc_dir_entry   *dp = PDE(inode);
273         struct seq_file         *seq;
274         struct lu_server_fld    *fld = (struct lu_server_fld *)dp->data;
275         struct dt_object        *obj;
276         const struct dt_it_ops  *iops;
277         struct fld_seq_param    *param = NULL;
278         int                     env_init = 0;
279         int                     rc;
280
281         LPROCFS_ENTRY_AND_CHECK(dp);
282         rc = seq_open(file, &fldb_sops);
283         if (rc)
284                 GOTO(out, rc);
285
286         obj = fld->lsf_obj;
287         if (obj == NULL) {
288                 seq = file->private_data;
289                 seq->private = NULL;
290                 return 0;
291         }
292
293         OBD_ALLOC_PTR(param);
294         if (param == NULL)
295                 GOTO(out, rc = -ENOMEM);
296
297         rc = lu_env_init(&param->fsp_env, LCT_MD_THREAD);
298         if (rc != 0)
299                 GOTO(out, rc);
300
301         env_init = 1;
302         iops = &obj->do_index_ops->dio_it;
303         param->fsp_it = iops->init(&param->fsp_env, obj, 0, NULL);
304         if (IS_ERR(param->fsp_it))
305                 GOTO(out, rc = PTR_ERR(param->fsp_it));
306
307         param->fsp_fld = fld;
308         param->fsp_stop = 0;
309
310         seq = file->private_data;
311         seq->private = param;
312 out:
313         if (rc != 0) {
314                 if (env_init == 1)
315                         lu_env_fini(&param->fsp_env);
316                 if (param != NULL)
317                         OBD_FREE_PTR(param);
318                 LPROCFS_EXIT();
319         }
320         return rc;
321 }
322
323 static int fldb_seq_release(struct inode *inode, struct file *file)
324 {
325         struct seq_file         *seq = file->private_data;
326         struct fld_seq_param    *param;
327         struct lu_server_fld    *fld;
328         struct dt_object        *obj;
329         const struct dt_it_ops  *iops;
330
331         param = seq->private;
332         if (param == NULL) {
333                 lprocfs_seq_release(inode, file);
334                 return 0;
335         }
336
337         fld = param->fsp_fld;
338         obj = fld->lsf_obj;
339         LASSERT(obj != NULL);
340         iops = &obj->do_index_ops->dio_it;
341
342         LASSERT(iops != NULL);
343         LASSERT(obj != NULL);
344         LASSERT(param->fsp_it != NULL);
345         iops->fini(&param->fsp_env, param->fsp_it);
346         lu_env_fini(&param->fsp_env);
347         OBD_FREE_PTR(param);
348         lprocfs_seq_release(inode, file);
349
350         return 0;
351 }
352
353 struct lprocfs_vars fld_server_proc_list[] = {
354         { NULL }};
355
356 struct lprocfs_vars fld_client_proc_list[] = {
357         { "targets",     fld_proc_read_targets, NULL, NULL },
358         { "hash",        fld_proc_read_hash, fld_proc_write_hash, NULL },
359         { "cache_flush", NULL, fld_proc_write_cache_flush, NULL },
360         { NULL }};
361
362 struct file_operations fld_proc_seq_fops = {
363         .owner   = THIS_MODULE,
364         .open    = fldb_seq_open,
365         .read    = seq_read,
366         .release = fldb_seq_release,
367 };
368
369 #endif