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