Whamcloud - gitweb
- fixed some warnings in the DLM
[fs/lustre-release.git] / lustre / mdc / mdc_request.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2001, 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.sf.net/projects/lustre/
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #define EXPORT_SYMTAB
24
25 #include <linux/module.h>
26 #include <linux/miscdevice.h>
27
28 #define DEBUG_SUBSYSTEM S_MDC
29
30 #include <linux/lustre_mds.h>
31
32 #define REQUEST_MINOR 244
33
34 extern int mds_queue_req(struct ptlrpc_request *);
35
36 int mdc_connect(struct ptlrpc_client *cl, struct ptlrpc_connection *conn,
37                 ino_t ino, int type, int valid, struct ptlrpc_request **request)
38 {
39         struct ptlrpc_request *req;
40         struct mds_body *body;
41         int rc, size = sizeof(*body);
42         ENTRY;
43
44         req = ptlrpc_prep_req(cl, conn, MDS_CONNECT, 1, &size, NULL);
45         if (!req)
46                 GOTO(out, rc = -ENOMEM);
47
48         body = lustre_msg_buf(req->rq_reqmsg, 0);
49         ll_ino2fid(&body->fid1, ino, 0, type);
50         body->valid = valid;
51
52         req->rq_replen = lustre_msg_size(1, &size);
53
54         rc = ptlrpc_queue_wait(req);
55         rc = ptlrpc_check_status(req, rc);
56
57         if (!rc) {
58                 mds_unpack_body(req);
59                 body = lustre_msg_buf(req->rq_repmsg, 0);
60                 CDEBUG(D_NET, "mode: %o\n", body->mode);
61         }
62
63         EXIT;
64  out:
65         *request = req;
66         return rc;
67 }
68
69
70 int mdc_getattr(struct ptlrpc_client *cl, struct ptlrpc_connection *conn,
71                 ino_t ino, int type, int valid, struct ptlrpc_request **request)
72 {
73         struct ptlrpc_request *req;
74         struct mds_body *body;
75         int rc, size = sizeof(*body);
76         ENTRY;
77
78         req = ptlrpc_prep_req(cl, conn, MDS_GETATTR, 1, &size, NULL);
79         if (!req)
80                 GOTO(out, rc = -ENOMEM);
81
82         body = lustre_msg_buf(req->rq_reqmsg, 0);
83         ll_ino2fid(&body->fid1, ino, 0, type);
84         body->valid = valid;
85
86         req->rq_replen = lustre_msg_size(1, &size);
87
88         rc = ptlrpc_queue_wait(req);
89         rc = ptlrpc_check_status(req, rc);
90
91         if (!rc) {
92                 mds_unpack_body(req);
93                 body = lustre_msg_buf(req->rq_repmsg, 0);
94                 CDEBUG(D_NET, "mode: %o\n", body->mode);
95         }
96
97         EXIT;
98  out:
99         *request = req;
100         return rc;
101 }
102
103 int mdc_open(struct ptlrpc_client *cl, struct ptlrpc_connection *conn,
104              ino_t ino, int type, int flags, __u64 *fh,
105              struct ptlrpc_request **request)
106 {
107         struct mds_body *body;
108         int rc, size = sizeof(*body);
109         struct ptlrpc_request *req;
110
111         req = ptlrpc_prep_req(cl, conn, MDS_OPEN, 1, &size, NULL);
112         if (!req)
113                 GOTO(out, rc = -ENOMEM);
114
115         body = lustre_msg_buf(req->rq_reqmsg, 0);
116         ll_ino2fid(&body->fid1, ino, 0, type);
117         body->flags = HTON__u32(flags);
118
119         req->rq_replen = lustre_msg_size(1, &size);
120
121         rc = ptlrpc_queue_wait(req);
122         rc = ptlrpc_check_status(req, rc);
123
124         if (!rc) {
125                 mds_unpack_body(req);
126                 body = lustre_msg_buf(req->rq_repmsg, 0);
127                 *fh = body->objid;
128         }
129
130         EXIT;
131  out:
132         *request = req;
133         return rc;
134 }
135
136 int mdc_close(struct ptlrpc_client *cl, struct ptlrpc_connection *conn,
137               ino_t ino, int type, __u64 fh, struct ptlrpc_request **request)
138 {
139         struct mds_body *body;
140         int rc, size = sizeof(*body);
141         struct ptlrpc_request *req;
142
143         req = ptlrpc_prep_req(cl, conn, MDS_CLOSE, 1, &size, NULL);
144         if (!req)
145                 GOTO(out, rc = -ENOMEM);
146
147         body = lustre_msg_buf(req->rq_reqmsg, 0);
148         ll_ino2fid(&body->fid1, ino, 0, type);
149         body->objid = fh;
150
151         req->rq_replen = lustre_msg_size(1, &size);
152
153         rc = ptlrpc_queue_wait(req);
154         rc = ptlrpc_check_status(req, rc);
155
156         EXIT;
157  out:
158         *request = req;
159         return rc;
160 }
161
162 int mdc_readpage(struct ptlrpc_client *cl, struct ptlrpc_connection *conn,
163                  ino_t ino, int type, __u64 offset, char *addr,
164                  struct ptlrpc_request **request)
165 {
166         struct ptlrpc_request *req = NULL;
167         struct ptlrpc_bulk_desc *bulk = NULL;
168         struct niobuf niobuf;
169         struct mds_body *body;
170         int rc, size[2] = {sizeof(*body), sizeof(struct niobuf)};
171         char *bufs[2] = {NULL, (char *)&niobuf};
172
173         niobuf.addr = (__u64) (long) addr;
174
175         CDEBUG(D_INODE, "inode: %ld\n", ino);
176
177         bulk = ptlrpc_prep_bulk(conn);
178         if (bulk == NULL) {
179                 CERROR("%s: cannot init bulk desc\n", __FUNCTION__);
180                 rc = -ENOMEM;
181                 goto out;
182         }
183
184         req = ptlrpc_prep_req(cl, conn, MDS_READPAGE, 2, size, bufs);
185         if (!req)
186                 GOTO(out, rc = -ENOMEM);
187
188         bulk->b_buflen = PAGE_SIZE;
189         bulk->b_buf = (void *)(long)niobuf.addr;
190         bulk->b_portal = MDS_BULK_PORTAL;
191         bulk->b_xid = req->rq_reqmsg->xid;
192
193         rc = ptlrpc_register_bulk(bulk);
194         if (rc) {
195                 CERROR("couldn't setup bulk sink: error %d.\n", rc);
196                 GOTO(out, rc);
197         }
198
199         body = lustre_msg_buf(req->rq_reqmsg, 0);
200         body->fid1.id = ino;
201         body->fid1.f_type = type;
202         body->size = offset;
203
204         req->rq_replen = lustre_msg_size(1, size);
205
206         rc = ptlrpc_queue_wait(req);
207         if (rc) {
208                 CERROR("error in handling %d\n", rc);
209                 ptlrpc_abort_bulk(bulk);
210                 GOTO(out, rc);
211         }
212
213         mds_unpack_body(req);
214         EXIT;
215
216  out:
217         *request = req;
218         ptlrpc_free_bulk(bulk);
219         return rc;
220 }
221
222 static int request_ioctl(struct inode *inode, struct file *file,
223                          unsigned int cmd, unsigned long arg)
224 {
225         int err = 0;
226         struct ptlrpc_client cl;
227         struct ptlrpc_connection *conn;
228         struct ptlrpc_request *request;
229
230         ENTRY;
231
232         if (MINOR(inode->i_rdev) != REQUEST_MINOR)
233                 RETURN(-EINVAL);
234
235         if (_IOC_TYPE(cmd) != IOC_REQUEST_TYPE ||
236             _IOC_NR(cmd) < IOC_REQUEST_MIN_NR  ||
237             _IOC_NR(cmd) > IOC_REQUEST_MAX_NR ) {
238                 CDEBUG(D_IOCTL, "invalid ioctl ( type %d, nr %d, size %d )\n",
239                        _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
240                 RETURN(-EINVAL);
241         }
242
243         ptlrpc_init_client(NULL, MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL, &cl);
244         conn = ptlrpc_uuid_to_connection("mds");
245         if (err) {
246                 CERROR("cannot create client\n");
247                 RETURN(-EINVAL);
248         }
249
250         switch (cmd) {
251         case IOC_REQUEST_GETATTR: {
252                 CERROR("-- getting attr for ino %lu\n", arg);
253                 err = mdc_getattr(&cl, conn, arg, S_IFDIR, ~0, &request);
254                 CERROR("-- done err %d\n", err);
255
256                 GOTO(out, err);
257         }
258
259         case IOC_REQUEST_READPAGE: {
260                 char *buf;
261                 OBD_ALLOC(buf, PAGE_SIZE);
262                 if (!buf) {
263                         err = -ENOMEM;
264                         GOTO(out, err);
265                 }
266                 CERROR("-- readpage 0 for ino %lu\n", arg);
267                 err = mdc_readpage(&cl, conn, arg, S_IFDIR, 0, buf, &request);
268                 CERROR("-- done err %d\n", err);
269                 OBD_FREE(buf, PAGE_SIZE);
270
271                 GOTO(out, err);
272         }
273
274         case IOC_REQUEST_SETATTR: {
275                 struct inode inode;
276                 struct iattr iattr;
277
278                 inode.i_ino = arg;
279                 inode.i_generation = 0;
280                 iattr.ia_mode = 040777;
281                 iattr.ia_atime = 0;
282                 iattr.ia_valid = ATTR_MODE | ATTR_ATIME;
283
284                 err = mdc_setattr(&cl, conn, &inode, &iattr, &request);
285                 CERROR("-- done err %d\n", err);
286
287                 GOTO(out, err);
288         }
289
290         case IOC_REQUEST_CREATE: {
291                 struct inode inode;
292                 struct iattr iattr;
293
294                 inode.i_ino = arg;
295                 inode.i_generation = 0;
296                 iattr.ia_mode = 040777;
297                 iattr.ia_atime = 0;
298                 iattr.ia_valid = ATTR_MODE | ATTR_ATIME;
299
300                 err = mdc_create(&cl, conn, &inode,
301                                  "foofile", strlen("foofile"),
302                                  NULL, 0, 0100707, 47114711,
303                                  11, 47, 0, &request);
304                 CERROR("-- done err %d\n", err);
305
306                 GOTO(out, err);
307         }
308
309         case IOC_REQUEST_OPEN: {
310                 __u64 fh, ino;
311                 copy_from_user(&ino, (__u64 *)arg, sizeof(ino));
312                 CERROR("-- opening ino %llu\n", ino);
313                 err = mdc_open(&cl, conn, ino, S_IFDIR, O_RDONLY, &fh,
314                                &request);
315                 copy_to_user((__u64 *)arg, &fh, sizeof(fh));
316                 CERROR("-- done err %d (fh=%Lu)\n", err, fh);
317
318                 GOTO(out, err);
319         }
320
321         case IOC_REQUEST_CLOSE: {
322                 CERROR("-- closing ino 2, filehandle %lu\n", arg);
323                 err = mdc_close(&cl, conn, 2, S_IFDIR, arg, &request);
324                 CERROR("-- done err %d\n", err);
325
326                 GOTO(out, err);
327         }
328
329         default:
330                 RETURN(-EINVAL);
331         }
332
333  out:
334         ptlrpc_free_req(request);
335         ptlrpc_put_connection(conn);
336
337         RETURN(err);
338 }
339
340
341 static struct file_operations requestdev_fops = {
342         ioctl: request_ioctl,
343 };
344
345 static struct miscdevice request_dev = {
346         REQUEST_MINOR,
347         "request",
348         &requestdev_fops
349 };
350
351 static int __init ptlrpc_request_init(void)
352 {
353         misc_register(&request_dev);
354         return 0;
355 }
356
357 static void __exit ptlrpc_request_exit(void)
358 {
359         misc_deregister(&request_dev);
360 }
361
362 MODULE_AUTHOR("Peter J. Braam <braam@clusterfs.com>");
363 MODULE_DESCRIPTION("Lustre MDS Request Tester v1.0");
364 MODULE_LICENSE("GPL");
365
366 EXPORT_SYMBOL(mdc_create);
367 EXPORT_SYMBOL(mdc_unlink);
368 EXPORT_SYMBOL(mdc_rename);
369 EXPORT_SYMBOL(mdc_link);
370 EXPORT_SYMBOL(mdc_getattr);
371 EXPORT_SYMBOL(mdc_readpage);
372 EXPORT_SYMBOL(mdc_setattr);
373 EXPORT_SYMBOL(mdc_close);
374 EXPORT_SYMBOL(mdc_open);
375
376 module_init(ptlrpc_request_init);
377 module_exit(ptlrpc_request_exit);