]> Pileus Git - ~andy/linux/blob - drivers/staging/lustre/lustre/libcfs/module.c
Merge tag 'pci-v3.14-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaa...
[~andy/linux] / drivers / staging / lustre / lustre / libcfs / 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) 2008, 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
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <linux/libcfs/libcfs.h>
40 #include <linux/libcfs/libcfs_crypto.h>
41 #include <linux/lnet/lib-lnet.h>
42 #include <linux/lnet/lnet.h>
43 #include "tracefile.h"
44
45 void
46 kportal_memhog_free (struct libcfs_device_userstate *ldu)
47 {
48         struct page **level0p = &ldu->ldu_memhog_root_page;
49         struct page **level1p;
50         struct page **level2p;
51         int        count1;
52         int        count2;
53
54         if (*level0p != NULL) {
55
56                 level1p = (struct page **)page_address(*level0p);
57                 count1 = 0;
58
59                 while (count1 < PAGE_CACHE_SIZE/sizeof(struct page *) &&
60                        *level1p != NULL) {
61
62                         level2p = (struct page **)page_address(*level1p);
63                         count2 = 0;
64
65                         while (count2 < PAGE_CACHE_SIZE/sizeof(struct page *) &&
66                                *level2p != NULL) {
67
68                                 __free_page(*level2p);
69                                 ldu->ldu_memhog_pages--;
70                                 level2p++;
71                                 count2++;
72                         }
73
74                         __free_page(*level1p);
75                         ldu->ldu_memhog_pages--;
76                         level1p++;
77                         count1++;
78                 }
79
80                 __free_page(*level0p);
81                 ldu->ldu_memhog_pages--;
82
83                 *level0p = NULL;
84         }
85
86         LASSERT (ldu->ldu_memhog_pages == 0);
87 }
88
89 int
90 kportal_memhog_alloc (struct libcfs_device_userstate *ldu, int npages, int flags)
91 {
92         struct page **level0p;
93         struct page **level1p;
94         struct page **level2p;
95         int        count1;
96         int        count2;
97
98         LASSERT (ldu->ldu_memhog_pages == 0);
99         LASSERT (ldu->ldu_memhog_root_page == NULL);
100
101         if (npages < 0)
102                 return -EINVAL;
103
104         if (npages == 0)
105                 return 0;
106
107         level0p = &ldu->ldu_memhog_root_page;
108         *level0p = alloc_page(flags);
109         if (*level0p == NULL)
110                 return -ENOMEM;
111         ldu->ldu_memhog_pages++;
112
113         level1p = (struct page **)page_address(*level0p);
114         count1 = 0;
115         memset(level1p, 0, PAGE_CACHE_SIZE);
116
117         while (ldu->ldu_memhog_pages < npages &&
118                count1 < PAGE_CACHE_SIZE/sizeof(struct page *)) {
119
120                 if (cfs_signal_pending())
121                         return (-EINTR);
122
123                 *level1p = alloc_page(flags);
124                 if (*level1p == NULL)
125                         return -ENOMEM;
126                 ldu->ldu_memhog_pages++;
127
128                 level2p = (struct page **)page_address(*level1p);
129                 count2 = 0;
130                 memset(level2p, 0, PAGE_CACHE_SIZE);
131
132                 while (ldu->ldu_memhog_pages < npages &&
133                        count2 < PAGE_CACHE_SIZE/sizeof(struct page *)) {
134
135                         if (cfs_signal_pending())
136                                 return (-EINTR);
137
138                         *level2p = alloc_page(flags);
139                         if (*level2p == NULL)
140                                 return (-ENOMEM);
141                         ldu->ldu_memhog_pages++;
142
143                         level2p++;
144                         count2++;
145                 }
146
147                 level1p++;
148                 count1++;
149         }
150
151         return 0;
152 }
153
154 /* called when opening /dev/device */
155 static int libcfs_psdev_open(unsigned long flags, void *args)
156 {
157         struct libcfs_device_userstate *ldu;
158
159         try_module_get(THIS_MODULE);
160
161         LIBCFS_ALLOC(ldu, sizeof(*ldu));
162         if (ldu != NULL) {
163                 ldu->ldu_memhog_pages = 0;
164                 ldu->ldu_memhog_root_page = NULL;
165         }
166         *(struct libcfs_device_userstate **)args = ldu;
167
168         return 0;
169 }
170
171 /* called when closing /dev/device */
172 static int libcfs_psdev_release(unsigned long flags, void *args)
173 {
174         struct libcfs_device_userstate *ldu;
175
176         ldu = (struct libcfs_device_userstate *)args;
177         if (ldu != NULL) {
178                 kportal_memhog_free(ldu);
179                 LIBCFS_FREE(ldu, sizeof(*ldu));
180         }
181
182         module_put(THIS_MODULE);
183         return 0;
184 }
185
186 static struct rw_semaphore ioctl_list_sem;
187 static struct list_head ioctl_list;
188
189 int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand)
190 {
191         int rc = 0;
192
193         down_write(&ioctl_list_sem);
194         if (!list_empty(&hand->item))
195                 rc = -EBUSY;
196         else
197                 list_add_tail(&hand->item, &ioctl_list);
198         up_write(&ioctl_list_sem);
199
200         return rc;
201 }
202 EXPORT_SYMBOL(libcfs_register_ioctl);
203
204 int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand)
205 {
206         int rc = 0;
207
208         down_write(&ioctl_list_sem);
209         if (list_empty(&hand->item))
210                 rc = -ENOENT;
211         else
212                 list_del_init(&hand->item);
213         up_write(&ioctl_list_sem);
214
215         return rc;
216 }
217 EXPORT_SYMBOL(libcfs_deregister_ioctl);
218
219 static int libcfs_ioctl_int(struct cfs_psdev_file *pfile,unsigned long cmd,
220                             void *arg, struct libcfs_ioctl_data *data)
221 {
222         int err = -EINVAL;
223
224         switch (cmd) {
225         case IOC_LIBCFS_CLEAR_DEBUG:
226                 libcfs_debug_clear_buffer();
227                 return 0;
228         /*
229          * case IOC_LIBCFS_PANIC:
230          * Handled in arch/cfs_module.c
231          */
232         case IOC_LIBCFS_MARK_DEBUG:
233                 if (data->ioc_inlbuf1 == NULL ||
234                     data->ioc_inlbuf1[data->ioc_inllen1 - 1] != '\0')
235                         return -EINVAL;
236                 libcfs_debug_mark_buffer(data->ioc_inlbuf1);
237                 return 0;
238         case IOC_LIBCFS_MEMHOG:
239                 if (pfile->private_data == NULL) {
240                         err = -EINVAL;
241                 } else {
242                         kportal_memhog_free(pfile->private_data);
243                         /* XXX The ioc_flags is not GFP flags now, need to be fixed */
244                         err = kportal_memhog_alloc(pfile->private_data,
245                                                    data->ioc_count,
246                                                    data->ioc_flags);
247                         if (err != 0)
248                                 kportal_memhog_free(pfile->private_data);
249                 }
250                 break;
251
252         case IOC_LIBCFS_PING_TEST: {
253                 extern void (kping_client)(struct libcfs_ioctl_data *);
254                 void (*ping)(struct libcfs_ioctl_data *);
255
256                 CDEBUG(D_IOCTL, "doing %d pings to nid %s (%s)\n",
257                        data->ioc_count, libcfs_nid2str(data->ioc_nid),
258                        libcfs_nid2str(data->ioc_nid));
259                 ping = symbol_get(kping_client);
260                 if (!ping)
261                         CERROR("symbol_get failed\n");
262                 else {
263                         ping(data);
264                         symbol_put(kping_client);
265                 }
266                 return 0;
267         }
268
269         default: {
270                 struct libcfs_ioctl_handler *hand;
271                 err = -EINVAL;
272                 down_read(&ioctl_list_sem);
273                 list_for_each_entry(hand, &ioctl_list, item) {
274                         err = hand->handle_ioctl(cmd, data);
275                         if (err != -EINVAL) {
276                                 if (err == 0)
277                                         err = libcfs_ioctl_popdata(arg,
278                                                         data, sizeof (*data));
279                                 break;
280                         }
281                 }
282                 up_read(&ioctl_list_sem);
283                 break;
284         }
285         }
286
287         return err;
288 }
289
290 static int libcfs_ioctl(struct cfs_psdev_file *pfile, unsigned long cmd, void *arg)
291 {
292         char    *buf;
293         struct libcfs_ioctl_data *data;
294         int err = 0;
295
296         LIBCFS_ALLOC_GFP(buf, 1024, GFP_IOFS);
297         if (buf == NULL)
298                 return -ENOMEM;
299
300         /* 'cmd' and permissions get checked in our arch-specific caller */
301         if (libcfs_ioctl_getdata(buf, buf + 800, (void *)arg)) {
302                 CERROR("PORTALS ioctl: data error\n");
303                 GOTO(out, err = -EINVAL);
304         }
305         data = (struct libcfs_ioctl_data *)buf;
306
307         err = libcfs_ioctl_int(pfile, cmd, arg, data);
308
309 out:
310         LIBCFS_FREE(buf, 1024);
311         return err;
312 }
313
314
315 struct cfs_psdev_ops libcfs_psdev_ops = {
316         libcfs_psdev_open,
317         libcfs_psdev_release,
318         NULL,
319         NULL,
320         libcfs_ioctl
321 };
322
323 extern int insert_proc(void);
324 extern void remove_proc(void);
325 MODULE_AUTHOR("Peter J. Braam <braam@clusterfs.com>");
326 MODULE_DESCRIPTION("Portals v3.1");
327 MODULE_LICENSE("GPL");
328
329 extern struct miscdevice libcfs_dev;
330 extern struct rw_semaphore cfs_tracefile_sem;
331 extern struct mutex cfs_trace_thread_mutex;
332 extern struct cfs_wi_sched *cfs_sched_rehash;
333
334 extern void libcfs_init_nidstrings(void);
335 extern int libcfs_arch_init(void);
336 extern void libcfs_arch_cleanup(void);
337
338 static int init_libcfs_module(void)
339 {
340         int rc;
341
342         libcfs_arch_init();
343         libcfs_init_nidstrings();
344         init_rwsem(&cfs_tracefile_sem);
345         mutex_init(&cfs_trace_thread_mutex);
346         init_rwsem(&ioctl_list_sem);
347         INIT_LIST_HEAD(&ioctl_list);
348         init_waitqueue_head(&cfs_race_waitq);
349
350         rc = libcfs_debug_init(5 * 1024 * 1024);
351         if (rc < 0) {
352                 printk(KERN_ERR "LustreError: libcfs_debug_init: %d\n", rc);
353                 return (rc);
354         }
355
356         rc = cfs_cpu_init();
357         if (rc != 0)
358                 goto cleanup_debug;
359
360         rc = misc_register(&libcfs_dev);
361         if (rc) {
362                 CERROR("misc_register: error %d\n", rc);
363                 goto cleanup_cpu;
364         }
365
366         rc = cfs_wi_startup();
367         if (rc) {
368                 CERROR("initialize workitem: error %d\n", rc);
369                 goto cleanup_deregister;
370         }
371
372         /* max to 4 threads, should be enough for rehash */
373         rc = min(cfs_cpt_weight(cfs_cpt_table, CFS_CPT_ANY), 4);
374         rc = cfs_wi_sched_create("cfs_rh", cfs_cpt_table, CFS_CPT_ANY,
375                                  rc, &cfs_sched_rehash);
376         if (rc != 0) {
377                 CERROR("Startup workitem scheduler: error: %d\n", rc);
378                 goto cleanup_deregister;
379         }
380
381         rc = cfs_crypto_register();
382         if (rc) {
383                 CERROR("cfs_crypto_register: error %d\n", rc);
384                 goto cleanup_wi;
385         }
386
387
388         rc = insert_proc();
389         if (rc) {
390                 CERROR("insert_proc: error %d\n", rc);
391                 goto cleanup_crypto;
392         }
393
394         CDEBUG (D_OTHER, "portals setup OK\n");
395         return 0;
396  cleanup_crypto:
397         cfs_crypto_unregister();
398  cleanup_wi:
399         cfs_wi_shutdown();
400  cleanup_deregister:
401         misc_deregister(&libcfs_dev);
402 cleanup_cpu:
403         cfs_cpu_fini();
404  cleanup_debug:
405         libcfs_debug_cleanup();
406         return rc;
407 }
408
409 static void exit_libcfs_module(void)
410 {
411         int rc;
412
413         remove_proc();
414
415         CDEBUG(D_MALLOC, "before Portals cleanup: kmem %d\n",
416                atomic_read(&libcfs_kmemory));
417
418         if (cfs_sched_rehash != NULL) {
419                 cfs_wi_sched_destroy(cfs_sched_rehash);
420                 cfs_sched_rehash = NULL;
421         }
422
423         cfs_crypto_unregister();
424         cfs_wi_shutdown();
425
426         rc = misc_deregister(&libcfs_dev);
427         if (rc)
428                 CERROR("misc_deregister error %d\n", rc);
429
430         cfs_cpu_fini();
431
432         if (atomic_read(&libcfs_kmemory) != 0)
433                 CERROR("Portals memory leaked: %d bytes\n",
434                        atomic_read(&libcfs_kmemory));
435
436         rc = libcfs_debug_cleanup();
437         if (rc)
438                 printk(KERN_ERR "LustreError: libcfs_debug_cleanup: %d\n",
439                        rc);
440
441         fini_rwsem(&ioctl_list_sem);
442         fini_rwsem(&cfs_tracefile_sem);
443
444         libcfs_arch_cleanup();
445 }
446
447 MODULE_VERSION("1.0.0");
448 module_init(init_libcfs_module);
449 module_exit(exit_libcfs_module);