Whamcloud - gitweb
ac255bae366cdccd44d8e65b28ce424614f5352d
[fs/lustre-release.git] / libcfs / libcfs / winnt / winnt-module.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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
38 #define DEBUG_SUBSYSTEM S_LIBCFS
39
40 #include <libcfs/libcfs.h>
41
42 #define LIBCFS_MINOR 240
43
44 int libcfs_ioctl_getdata(char *buf, char *end, void *arg)
45 {
46         struct libcfs_ioctl_hdr *hdr;
47         struct libcfs_ioctl_data *data;
48         int err;
49         ENTRY;
50
51         hdr = (struct libcfs_ioctl_hdr *)buf;
52         data = (struct libcfs_ioctl_data *)buf;
53
54         err = copy_from_user(buf, (void *)arg, sizeof(*hdr));
55         if (err)
56                 RETURN(err);
57
58         if (hdr->ioc_version != LIBCFS_IOCTL_VERSION) {
59                 CERROR(("LIBCFS: version mismatch kernel vs application\n"));
60                 RETURN(-EINVAL);
61         }
62
63         if (hdr->ioc_len + buf >= end) {
64                 CERROR(("LIBCFS: user buffer exceeds kernel buffer\n"));
65                 RETURN(-EINVAL);
66         }
67
68         if (hdr->ioc_len < sizeof(struct libcfs_ioctl_data)) {
69                 CERROR(("LIBCFS: user buffer too small for ioctl\n"));
70                 RETURN(-EINVAL);
71         }
72
73         err = copy_from_user(buf, (void *)arg, hdr->ioc_len);
74         if (err)
75                 RETURN(err);
76
77         if (libcfs_ioctl_is_invalid(data)) {
78                 CERROR(("LIBCFS: ioctl not correctly formatted\n"));
79                 RETURN(-EINVAL);
80         }
81
82         if (data->ioc_inllen1)
83                 data->ioc_inlbuf1 = &data->ioc_bulk[0];
84
85         if (data->ioc_inllen2)
86                 data->ioc_inlbuf2 = &data->ioc_bulk[0] +
87                         size_round(data->ioc_inllen1);
88
89         RETURN(0);
90 }
91                                                                                                                                                                         
92 extern struct cfs_psdev_ops          libcfs_psdev_ops;
93
94 static int 
95 libcfs_psdev_open(cfs_file_t * file)
96
97         struct libcfs_device_userstate **pdu = NULL;
98         int    rc = 0;
99
100         pdu = (struct libcfs_device_userstate **)&file->private_data;
101         if (libcfs_psdev_ops.p_open != NULL)
102                 rc = libcfs_psdev_ops.p_open(0, (void *)pdu);
103         else
104                 return (-EPERM);
105         return rc;
106 }
107
108 /* called when closing /dev/device */
109 static int 
110 libcfs_psdev_release(cfs_file_t * file)
111 {
112         struct libcfss_device_userstate *pdu;
113         int    rc = 0;
114
115         pdu = file->private_data;
116         if (libcfs_psdev_ops.p_close != NULL)
117                 rc = libcfs_psdev_ops.p_close(0, (void *)pdu);
118         else
119                 rc = -EPERM;
120         return rc;
121 }
122
123 static int 
124 libcfs_ioctl(cfs_file_t * file, unsigned int cmd, ulong_ptr arg)
125
126         struct cfs_psdev_file    pfile;
127         int    rc = 0;
128
129         if ( _IOC_TYPE(cmd) != IOC_LIBCFS_TYPE || 
130              _IOC_NR(cmd) < IOC_LIBCFS_MIN_NR  || 
131              _IOC_NR(cmd) > IOC_LIBCFS_MAX_NR ) { 
132                 CDEBUG(D_IOCTL, ("invalid ioctl ( type %d, nr %d, size %d )\n", 
133                        _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd))); 
134                 return (-EINVAL); 
135         } 
136         
137         /* Handle platform-dependent IOC requests */
138         switch (cmd) { 
139         case IOC_LIBCFS_PANIC: 
140                 if (!cfs_capable(CFS_CAP_SYS_BOOT)) 
141                         return (-EPERM); 
142                 CERROR(("debugctl-invoked panic"));
143         KeBugCheckEx('LUFS', (ULONG_PTR)libcfs_ioctl, (ULONG_PTR)NULL, (ULONG_PTR)NULL, (ULONG_PTR)NULL);
144
145                 return (0);
146         case IOC_LIBCFS_MEMHOG:
147
148                 if (!cfs_capable(CFS_CAP_SYS_ADMIN)) 
149                         return -EPERM;
150         break;
151         }
152
153         pfile.off = 0;
154         pfile.private_data = file->private_data;
155         if (libcfs_psdev_ops.p_ioctl != NULL) 
156                 rc = libcfs_psdev_ops.p_ioctl(&pfile, cmd, (void *)arg); 
157         else
158                 rc = -EPERM;
159         return (rc);
160 }
161
162 static struct file_operations libcfs_fops = {
163     /* lseek: */  NULL,
164     /* read: */   NULL,
165     /* write: */  NULL,
166     /* ioctl: */  libcfs_ioctl,
167     /* open: */   libcfs_psdev_open,
168     /* release:*/ libcfs_psdev_release
169 };
170
171 cfs_psdev_t libcfs_dev = { 
172         LIBCFS_MINOR, 
173         "lnet", 
174         &libcfs_fops
175 };