Whamcloud - gitweb
LU-5829 obdclass: remove unnecessary EXPORT_SYMBOL
[fs/lustre-release.git] / lustre / obdclass / linux / linux-module.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/obdclass/linux/linux-module.c
37  *
38  * Object Devices Class Driver
39  * These are the only exported functions, they provide some generic
40  * infrastructure for managing object devices
41  */
42
43 #define DEBUG_SUBSYSTEM S_CLASS
44
45 #include <linux/module.h>
46 #include <linux/errno.h>
47 #include <linux/kernel.h>
48 #include <linux/major.h>
49 #include <linux/sched.h>
50 #include <linux/lp.h>
51 #include <linux/slab.h>
52 #include <linux/ioport.h>
53 #include <linux/fcntl.h>
54 #include <linux/delay.h>
55 #include <linux/skbuff.h>
56 #include <linux/proc_fs.h>
57 #include <linux/fs.h>
58 #include <linux/poll.h>
59 #include <linux/init.h>
60 #include <linux/list.h>
61 #include <linux/highmem.h>
62 #include <asm/io.h>
63 #include <asm/ioctls.h>
64 #include <asm/poll.h>
65 #include <asm/uaccess.h>
66 #include <linux/miscdevice.h>
67 #include <linux/seq_file.h>
68
69 #include <libcfs/libcfs.h>
70 #include <obd_support.h>
71 #include <obd_class.h>
72 #include <lnet/lnetctl.h>
73 #include <lprocfs_status.h>
74 #include <lustre_ioctl.h>
75 #include <lustre_ver.h>
76 #include <lustre/lustre_build_version.h>
77
78 int proc_version;
79
80 /* buffer MUST be at least the size of obd_ioctl_hdr */
81 int obd_ioctl_getdata(char **buf, int *len, void __user *arg)
82 {
83         struct obd_ioctl_hdr hdr;
84         struct obd_ioctl_data *data;
85         int offset = 0;
86         ENTRY;
87
88         if (copy_from_user(&hdr, arg, sizeof(hdr)))
89                 RETURN(-EFAULT);
90
91         if (hdr.ioc_version != OBD_IOCTL_VERSION) {
92                 CERROR("Version mismatch kernel (%x) vs application (%x)\n",
93                        OBD_IOCTL_VERSION, hdr.ioc_version);
94                 RETURN(-EINVAL);
95         }
96
97         if (hdr.ioc_len > OBD_MAX_IOCTL_BUFFER) {
98                 CERROR("User buffer len %d exceeds %d max buffer\n",
99                        hdr.ioc_len, OBD_MAX_IOCTL_BUFFER);
100                 RETURN(-EINVAL);
101         }
102
103         if (hdr.ioc_len < sizeof(struct obd_ioctl_data)) {
104                 CERROR("User buffer too small for ioctl (%d)\n", hdr.ioc_len);
105                 RETURN(-EINVAL);
106         }
107
108         /* When there are lots of processes calling vmalloc on multi-core
109          * system, the high lock contention will hurt performance badly,
110          * obdfilter-survey is an example, which relies on ioctl. So we'd
111          * better avoid vmalloc on ioctl path. LU-66 */
112         OBD_ALLOC_LARGE(*buf, hdr.ioc_len);
113         if (*buf == NULL) {
114                 CERROR("Cannot allocate control buffer of len %d\n",
115                        hdr.ioc_len);
116                 RETURN(-EINVAL);
117         }
118         *len = hdr.ioc_len;
119         data = (struct obd_ioctl_data *)*buf;
120
121         if (copy_from_user(*buf, arg, hdr.ioc_len)) {
122                 OBD_FREE_LARGE(*buf, hdr.ioc_len);
123                 RETURN(-EFAULT);
124         }
125
126         if (obd_ioctl_is_invalid(data)) {
127                 CERROR("ioctl not correctly formatted\n");
128                 OBD_FREE_LARGE(*buf, hdr.ioc_len);
129                 RETURN(-EINVAL);
130         }
131
132         if (data->ioc_inllen1) {
133                 data->ioc_inlbuf1 = &data->ioc_bulk[0];
134                 offset += cfs_size_round(data->ioc_inllen1);
135         }
136
137         if (data->ioc_inllen2) {
138                 data->ioc_inlbuf2 = &data->ioc_bulk[0] + offset;
139                 offset += cfs_size_round(data->ioc_inllen2);
140         }
141
142         if (data->ioc_inllen3) {
143                 data->ioc_inlbuf3 = &data->ioc_bulk[0] + offset;
144                 offset += cfs_size_round(data->ioc_inllen3);
145         }
146
147         if (data->ioc_inllen4)
148                 data->ioc_inlbuf4 = &data->ioc_bulk[0] + offset;
149
150         RETURN(0);
151 }
152 EXPORT_SYMBOL(obd_ioctl_getdata);
153
154 int obd_ioctl_popdata(void __user *arg, void *data, int len)
155 {
156         int err;
157         ENTRY;
158
159         err = copy_to_user(arg, data, len) ? -EFAULT : 0;
160         RETURN(err);
161 }
162
163 /*  opening /dev/obd */
164 static int obd_class_open(struct inode * inode, struct file * file)
165 {
166         ENTRY;
167
168         try_module_get(THIS_MODULE);
169         RETURN(0);
170 }
171
172 /*  closing /dev/obd */
173 static int obd_class_release(struct inode * inode, struct file * file)
174 {
175         ENTRY;
176
177         module_put(THIS_MODULE);
178         RETURN(0);
179 }
180
181 /* to control /dev/obd */
182 static long obd_class_ioctl(struct file *filp, unsigned int cmd,
183                             unsigned long arg)
184 {
185         int err = 0;
186         ENTRY;
187
188         /* Allow non-root access for OBD_IOC_PING_TARGET - used by lfs check */
189         if (!cfs_capable(CFS_CAP_SYS_ADMIN) && (cmd != OBD_IOC_PING_TARGET))
190                 RETURN(err = -EACCES);
191         if ((cmd & 0xffffff00) == ((int)'T') << 8) /* ignore all tty ioctls */
192                 RETURN(err = -ENOTTY);
193
194         err = class_handle_ioctl(cmd, (unsigned long)arg);
195
196         RETURN(err);
197 }
198
199 /* declare character device */
200 static struct file_operations obd_psdev_fops = {
201         .owner          = THIS_MODULE,
202         .unlocked_ioctl = obd_class_ioctl, /* unlocked_ioctl */
203         .open           = obd_class_open,      /* open */
204         .release        = obd_class_release,   /* release */
205 };
206
207 /* modules setup */
208 struct miscdevice obd_psdev = {
209         .minor = OBD_DEV_MINOR,
210         .name  = OBD_DEV_NAME,
211         .fops  = &obd_psdev_fops,
212 };
213
214
215 #ifdef CONFIG_PROC_FS
216 static int obd_proc_version_seq_show(struct seq_file *m, void *v)
217 {
218         return seq_printf(m, "lustre: %s\nkernel: %s\nbuild:  %s\n",
219                           LUSTRE_VERSION_STRING, "patchless_client",
220                           BUILD_VERSION);
221 }
222 LPROC_SEQ_FOPS_RO(obd_proc_version);
223
224 static int obd_proc_pinger_seq_show(struct seq_file *m, void *v)
225 {
226         return seq_printf(m, "%s\n",
227 #ifdef ENABLE_PINGER
228                              "on"
229 #else
230                              "off"
231 #endif
232                          );
233 }
234 LPROC_SEQ_FOPS_RO(obd_proc_pinger);
235
236 /**
237  * Check all obd devices health
238  *
239  * \param seq_file
240  * \param data [in] unused
241  *
242  * \retval number of characters printed if healthy
243  */
244 static int obd_proc_health_seq_show(struct seq_file *m, void *data)
245 {
246         bool healthy = true;
247         int i;
248
249         if (libcfs_catastrophe)
250                 seq_printf(m, "LBUG\n");
251
252         read_lock(&obd_dev_lock);
253         for (i = 0; i < class_devno_max(); i++) {
254                 struct obd_device *obd;
255
256                 obd = class_num2obd(i);
257                 if (obd == NULL || !obd->obd_attached || !obd->obd_set_up)
258                         continue;
259
260                 LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
261                 if (obd->obd_stopping)
262                         continue;
263
264                 class_incref(obd, __FUNCTION__, current);
265                 read_unlock(&obd_dev_lock);
266
267                 if (obd_health_check(NULL, obd)) {
268                         seq_printf(m, "device %s reported unhealthy\n",
269                                         obd->obd_name);
270                         healthy = false;
271                 }
272                 class_decref(obd, __FUNCTION__, current);
273                 read_lock(&obd_dev_lock);
274         }
275         read_unlock(&obd_dev_lock);
276
277         if (healthy)
278                 return seq_printf(m, "healthy\n");
279
280         seq_printf(m, "NOT HEALTHY\n");
281         return 0;
282 }
283 LPROC_SEQ_FOPS_RO(obd_proc_health);
284
285 static int obd_proc_jobid_var_seq_show(struct seq_file *m, void *v)
286 {
287         return seq_printf(m, "%s\n", obd_jobid_var);
288 }
289
290 static ssize_t
291 obd_proc_jobid_var_seq_write(struct file *file, const char __user *buffer,
292                              size_t count, loff_t *off)
293 {
294         if (!count || count > JOBSTATS_JOBID_VAR_MAX_LEN)
295                 return -EINVAL;
296
297         memset(obd_jobid_var, 0, JOBSTATS_JOBID_VAR_MAX_LEN + 1);
298
299         /* This might leave the var invalid on error, which is probably fine.*/
300         if (copy_from_user(obd_jobid_var, buffer, count))
301                 return -EFAULT;
302
303         /* Trim the trailing '\n' if any */
304         if (obd_jobid_var[count - 1] == '\n')
305                 obd_jobid_var[count - 1] = 0;
306
307         return count;
308 }
309 LPROC_SEQ_FOPS(obd_proc_jobid_var);
310
311 /* Root for /proc/fs/lustre */
312 struct proc_dir_entry *proc_lustre_root = NULL;
313 EXPORT_SYMBOL(proc_lustre_root);
314
315 static struct lprocfs_vars lprocfs_base[] = {
316         { .name =       "version",
317           .fops =       &obd_proc_version_fops  },
318         { .name =       "pinger",
319           .fops =       &obd_proc_pinger_fops   },
320         { .name =       "health_check",
321           .fops =       &obd_proc_health_fops   },
322         { .name =       "jobid_var",
323           .fops =       &obd_proc_jobid_var_fops},
324         { NULL }
325 };
326 #else
327 #define lprocfs_base NULL
328 #endif /* CONFIG_PROC_FS */
329
330 static void *obd_device_list_seq_start(struct seq_file *p, loff_t *pos)
331 {
332         if (*pos >= class_devno_max())
333                 return NULL;
334
335         return pos;
336 }
337
338 static void obd_device_list_seq_stop(struct seq_file *p, void *v)
339 {
340 }
341
342 static void *obd_device_list_seq_next(struct seq_file *p, void *v, loff_t *pos)
343 {
344         ++*pos;
345         if (*pos >= class_devno_max())
346                 return NULL;
347
348         return pos;
349 }
350
351 static int obd_device_list_seq_show(struct seq_file *p, void *v)
352 {
353         loff_t index = *(loff_t *)v;
354         struct obd_device *obd = class_num2obd((int)index);
355         char *status;
356
357         if (obd == NULL)
358                 return 0;
359
360         LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
361         if (obd->obd_stopping)
362                 status = "ST";
363         else if (obd->obd_inactive)
364                 status = "IN";
365         else if (obd->obd_set_up)
366                 status = "UP";
367         else if (obd->obd_attached)
368                 status = "AT";
369         else
370                 status = "--";
371
372         return seq_printf(p, "%3d %s %s %s %s %d\n",
373                           (int)index, status, obd->obd_type->typ_name,
374                           obd->obd_name, obd->obd_uuid.uuid,
375                           atomic_read(&obd->obd_refcount));
376 }
377
378 static const struct seq_operations obd_device_list_sops = {
379         .start = obd_device_list_seq_start,
380         .stop = obd_device_list_seq_stop,
381         .next = obd_device_list_seq_next,
382         .show = obd_device_list_seq_show,
383 };
384
385 static int obd_device_list_open(struct inode *inode, struct file *file)
386 {
387         struct seq_file *seq;
388         int rc = seq_open(file, &obd_device_list_sops);
389
390         if (rc)
391                 return rc;
392
393         seq = file->private_data;
394         seq->private = PDE_DATA(inode);
395         return 0;
396 }
397
398 static const struct file_operations obd_device_list_fops = {
399         .owner   = THIS_MODULE,
400         .open    = obd_device_list_open,
401         .read    = seq_read,
402         .llseek  = seq_lseek,
403         .release = seq_release,
404 };
405
406 int class_procfs_init(void)
407 {
408         struct proc_dir_entry *entry;
409         int rc;
410         ENTRY;
411
412         obd_sysctl_init();
413
414         entry = lprocfs_register("fs/lustre", NULL, lprocfs_base, NULL);
415         if (IS_ERR(entry)) {
416                 rc = PTR_ERR(entry);
417                 CERROR("cannot create '/proc/fs/lustre': rc = %d\n", rc);
418                 RETURN(rc);
419         }
420
421         proc_lustre_root = entry;
422
423         rc = lprocfs_seq_create(proc_lustre_root, "devices", 0444,
424                                 &obd_device_list_fops, NULL);
425         if (rc < 0) {
426                 CERROR("cannot create '/proc/fs/lustre/devices': rc = %d\n",
427                        rc);
428                 GOTO(out_proc, rc);
429         }
430
431         RETURN(rc);
432
433 out_proc:
434         lprocfs_remove(&proc_lustre_root);
435
436         RETURN(rc);
437 }
438
439 int class_procfs_clean(void)
440 {
441         ENTRY;
442         if (proc_lustre_root) {
443                 lprocfs_remove(&proc_lustre_root);
444         }
445         RETURN(0);
446 }