Whamcloud - gitweb
- unland b_fid to HEAD
[fs/lustre-release.git] / lustre / llite / dir.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 1992, 1993, 1994, 1995
5  * Remy Card (card@masi.ibp.fr)
6  * Laboratoire MASI - Institut Blaise Pascal
7  * Universite Pierre et Marie Curie (Paris VI)
8  *
9  *  from
10  *
11  *  linux/fs/minix/dir.c
12  *  linux/fs/ext2/dir.c
13  *
14  *  Copyright (C) 1991, 1992  Linus Torvalds
15  *
16  *  ext2 directory handling functions
17  *
18  *  Big-endian to little-endian byte-swapping/bitmaps by
19  *        David S. Miller (davem@caip.rutgers.edu), 1995
20  *
21  *  All code that works with directory layout had been switched to pagecache
22  *  and moved here. AV
23  *
24  *  Adapted for Lustre Light
25  *  Copyright (C) 2002-2003, Cluster File Systems, Inc.
26  *
27  */
28
29 #include <linux/fs.h>
30 #include <linux/ext2_fs.h>
31 #include <linux/pagemap.h>
32 #include <linux/mm.h>
33 #include <linux/version.h>
34 #include <linux/smp_lock.h>
35 #include <asm/uaccess.h>
36 #include <linux/file.h>
37 #include <linux/kmod.h>
38 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
39 # include <linux/locks.h>   // for wait_on_buffer
40 #else
41 # include <linux/buffer_head.h>   // for wait_on_buffer
42 #endif
43
44 #define DEBUG_SUBSYSTEM S_LLITE
45
46 #include <linux/obd_support.h>
47 #include <linux/obd_class.h>
48 #include <linux/lustre_lib.h>
49 #include <linux/lustre_idl.h>
50 #include <linux/lustre_mds.h>
51 #include <linux/lustre_lite.h>
52 #include <linux/lustre_dlm.h>
53 #include "llite_internal.h"
54
55 typedef struct ext2_dir_entry_2 ext2_dirent;
56
57 #define PageChecked(page)        test_bit(PG_checked, &(page)->flags)
58 #define SetPageChecked(page)     set_bit(PG_checked, &(page)->flags)
59
60 /* returns the page unlocked, but with a reference */
61 static int ll_dir_readpage(struct file *file, struct page *page)
62 {
63         struct inode *inode = page->mapping->host;
64         struct ll_fid mdc_fid;
65         __u64 offset;
66         struct ptlrpc_request *request;
67         struct mds_body *body;
68         int rc = 0;
69         ENTRY;
70
71         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p)\n", inode->i_ino,
72                inode->i_generation, inode);
73
74         mdc_pack_fid(&mdc_fid, inode->i_ino, inode->i_generation, S_IFDIR);
75         mdc_fid.mds = ll_i2info(inode)->lli_mds;
76         offset = page->index << PAGE_SHIFT;
77         rc = md_readpage(ll_i2sbi(inode)->ll_mdc_exp, &mdc_fid,
78                          offset, page, &request);
79         if (!rc) {
80                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof (*body));
81                 LASSERT (body != NULL);         /* checked by md_readpage() */
82                 LASSERT_REPSWABBED (request, 0); /* swabbed by md_readpage() */
83
84 #warning "FIXME ASAP!"
85                 //inode->i_size = body->size;
86                 SetPageUptodate(page);
87         }
88         ptlrpc_req_finished(request);
89
90         unlock_page(page);
91         EXIT;
92         return rc;
93 }
94
95 struct address_space_operations ll_dir_aops = {
96         .readpage  = ll_dir_readpage,
97 };
98
99 /*
100  * ext2 uses block-sized chunks. Arguably, sector-sized ones would be
101  * more robust, but we have what we have
102  */
103 static inline unsigned ext2_chunk_size(struct inode *inode)
104 {
105         return inode->i_sb->s_blocksize;
106 }
107
108 static inline void ext2_put_page(struct page *page)
109 {
110         kunmap(page);
111         page_cache_release(page);
112 }
113
114 static inline unsigned long dir_pages(struct inode *inode)
115 {
116         return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
117 }
118
119
120 static void ext2_check_page(struct page *page)
121 {
122         struct inode *dir = page->mapping->host;
123         unsigned chunk_size = ext2_chunk_size(dir);
124         char *kaddr = page_address(page);
125         //      u32 max_inumber = le32_to_cpu(sb->u.ext2_sb.s_es->s_inodes_count);
126         unsigned offs, rec_len;
127         unsigned limit = PAGE_CACHE_SIZE;
128         ext2_dirent *p;
129         char *error;
130
131         if ((dir->i_size >> PAGE_CACHE_SHIFT) == page->index) {
132                 limit = dir->i_size & ~PAGE_CACHE_MASK;
133                 if (limit & (chunk_size - 1)) {
134                         CERROR("limit %d dir size %lld index %ld\n",
135                                limit, dir->i_size, page->index);
136                         goto Ebadsize;
137                 }
138                 for (offs = limit; offs<PAGE_CACHE_SIZE; offs += chunk_size) {
139                         ext2_dirent *p = (ext2_dirent*)(kaddr + offs);
140                         p->rec_len = cpu_to_le16(chunk_size);
141                         p->name_len = 0;
142                         p->inode = 0;
143                 }
144                 if (!limit)
145                         goto out;
146         }
147         for (offs = 0; offs <= limit - EXT2_DIR_REC_LEN(1); offs += rec_len) {
148                 p = (ext2_dirent *)(kaddr + offs);
149                 rec_len = le16_to_cpu(p->rec_len);
150
151                 if (rec_len < EXT2_DIR_REC_LEN(1))
152                         goto Eshort;
153                 if (rec_len & 3)
154                         goto Ealign;
155                 if (rec_len < EXT2_DIR_REC_LEN(p->name_len))
156                         goto Enamelen;
157                 if (((offs + rec_len - 1) ^ offs) & ~(chunk_size-1))
158                         goto Espan;
159                 //              if (le32_to_cpu(p->inode) > max_inumber)
160                 //goto Einumber;
161         }
162         if (offs != limit)
163                 goto Eend;
164 out:
165         SetPageChecked(page);
166         return;
167
168         /* Too bad, we had an error */
169
170 Ebadsize:
171         CERROR("ext2_check_page"
172                 "size of directory #%lu is not a multiple of chunk size\n",
173                 dir->i_ino
174         );
175         goto fail;
176 Eshort:
177         error = "rec_len is smaller than minimal";
178         goto bad_entry;
179 Ealign:
180         error = "unaligned directory entry";
181         goto bad_entry;
182 Enamelen:
183         error = "rec_len is too small for name_len";
184         goto bad_entry;
185 Espan:
186         error = "directory entry across blocks";
187         goto bad_entry;
188         //Einumber:
189         // error = "inode out of bounds";
190 bad_entry:
191         CERROR("ext2_check_page: bad entry in directory #%lu: %s - "
192                 "offset=%lu+%u, inode=%lu, rec_len=%d, name_len=%d",
193                 dir->i_ino, error, (page->index<<PAGE_CACHE_SHIFT), offs,
194                 (unsigned long) le32_to_cpu(p->inode),
195                 rec_len, p->name_len);
196         goto fail;
197 Eend:
198         p = (ext2_dirent *)(kaddr + offs);
199         CERROR("ext2_check_page"
200                 "entry in directory #%lu spans the page boundary"
201                 "offset=%lu, inode=%lu",
202                 dir->i_ino, (page->index<<PAGE_CACHE_SHIFT)+offs,
203                 (unsigned long) le32_to_cpu(p->inode));
204 fail:
205         SetPageChecked(page);
206         SetPageError(page);
207 }
208
209 static struct page *ll_get_dir_page(struct inode *dir, unsigned long n)
210 {
211         struct ldlm_res_id res_id =
212                 { .name = { dir->i_ino, (__u64)dir->i_generation} };
213         struct lustre_handle lockh;
214         struct obd_device *obddev = class_exp2obd(ll_i2sbi(dir)->ll_mdc_exp);
215         struct address_space *mapping = dir->i_mapping;
216         struct page *page;
217         ldlm_policy_data_t policy = { .l_inodebits = { MDS_INODELOCK_UPDATE } };
218         int rc;
219
220         obddev = md_get_real_obd(ll_i2sbi(dir)->ll_mdc_exp, NULL, 0);
221         rc = ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
222                              &res_id, LDLM_IBITS, &policy, LCK_PR, &lockh);
223         if (!rc) {
224                 struct lookup_intent it = { .it_op = IT_READDIR };
225                 struct ptlrpc_request *request;
226                 struct mdc_op_data data;
227
228                 ll_prepare_mdc_op_data(&data, dir, NULL, NULL, 0, 0);
229
230                 rc = md_enqueue(ll_i2sbi(dir)->ll_mdc_exp, LDLM_IBITS, &it,
231                                 LCK_PR, &data, &lockh, NULL, 0,
232                                 ldlm_completion_ast, ll_mdc_blocking_ast, dir);
233
234                 request = (struct ptlrpc_request *)it.d.lustre.it_data;
235                 if (request)
236                         ptlrpc_req_finished(request);
237                 if (rc < 0) {
238                         CERROR("lock enqueue: rc: %d\n", rc);
239                         return ERR_PTR(rc);
240                 }
241         }
242         ldlm_lock_dump_handle(D_OTHER, &lockh);
243
244         page = read_cache_page(mapping, n,
245                                (filler_t*)mapping->a_ops->readpage, NULL);
246         if (!IS_ERR(page)) {
247                 wait_on_page(page);
248                 (void)kmap(page);
249                 if (!PageUptodate(page))
250                         goto fail;
251                 if (!PageChecked(page))
252                         ext2_check_page(page);
253                 if (PageError(page))
254                         goto fail;
255         }
256
257 out_unlock:
258         ldlm_lock_decref(&lockh, LCK_PR);
259         return page;
260
261 fail:
262         ext2_put_page(page);
263         page = ERR_PTR(-EIO);
264         goto out_unlock;
265 }
266
267 /*
268  * p is at least 6 bytes before the end of page
269  */
270 static inline ext2_dirent *ext2_next_entry(ext2_dirent *p)
271 {
272         return (ext2_dirent *)((char*)p + le16_to_cpu(p->rec_len));
273 }
274
275 static inline unsigned
276 ext2_validate_entry(char *base, unsigned offset, unsigned mask)
277 {
278         ext2_dirent *de = (ext2_dirent*)(base + offset);
279         ext2_dirent *p = (ext2_dirent*)(base + (offset&mask));
280         while ((char*)p < (char*)de)
281                 p = ext2_next_entry(p);
282         return (char *)p - base;
283 }
284
285 static unsigned char ext2_filetype_table[EXT2_FT_MAX] = {
286         [EXT2_FT_UNKNOWN]       DT_UNKNOWN,
287         [EXT2_FT_REG_FILE]      DT_REG,
288         [EXT2_FT_DIR]           DT_DIR,
289         [EXT2_FT_CHRDEV]        DT_CHR,
290         [EXT2_FT_BLKDEV]        DT_BLK,
291         [EXT2_FT_FIFO]          DT_FIFO,
292         [EXT2_FT_SOCK]          DT_SOCK,
293         [EXT2_FT_SYMLINK]       DT_LNK,
294 };
295
296
297 int ll_readdir(struct file * filp, void * dirent, filldir_t filldir)
298 {
299         struct inode *inode = filp->f_dentry->d_inode;
300         loff_t pos = filp->f_pos;
301         // XXX struct super_block *sb = inode->i_sb;
302         unsigned offset = pos & ~PAGE_CACHE_MASK;
303         unsigned long n = pos >> PAGE_CACHE_SHIFT;
304         unsigned long npages = dir_pages(inode);
305         unsigned chunk_mask = ~(ext2_chunk_size(inode)-1);
306         unsigned char *types = ext2_filetype_table;
307         int need_revalidate = (filp->f_version != inode->i_version);
308         int rc = 0;
309         ENTRY;
310
311         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p) pos %llu/%llu\n",
312                inode->i_ino, inode->i_generation, inode, pos, inode->i_size);
313
314         if (pos > inode->i_size - EXT2_DIR_REC_LEN(1))
315                 RETURN(0);
316
317         for ( ; n < npages; n++, offset = 0) {
318                 char *kaddr, *limit;
319                 ext2_dirent *de;
320                 struct page *page;
321
322                 CDEBUG(D_EXT2,"read %lu of dir %lu/%u page %lu/%lu size %llu\n",
323                        PAGE_CACHE_SIZE, inode->i_ino, inode->i_generation,
324                        n, npages, inode->i_size);
325                 page = ll_get_dir_page(inode, n);
326
327                 /* size might have been updated by md_readpage() */
328                 npages = dir_pages(inode);
329
330                 if (IS_ERR(page)) {
331                         rc = PTR_ERR(page);
332                         CERROR("error reading dir %lu/%u page %lu: rc %d\n",
333                                inode->i_ino, inode->i_generation, n, rc);
334                         continue;
335                 }
336
337                 kaddr = page_address(page);
338                 if (need_revalidate) {
339                         offset = ext2_validate_entry(kaddr, offset, chunk_mask);
340                         need_revalidate = 0;
341                 }
342                 de = (ext2_dirent *)(kaddr+offset);
343                 limit = kaddr + PAGE_CACHE_SIZE - EXT2_DIR_REC_LEN(1);
344                 for ( ;(char*)de <= limit; de = ext2_next_entry(de)) {
345                         if (de->inode) {
346                                 int over;
347                                 
348                                 rc = 0; /* no error if we return something */
349                                 
350                                 offset = (char *)de - kaddr;
351                                 over = filldir(dirent, de->name, de->name_len,
352                                                (n<<PAGE_CACHE_SHIFT) | offset,
353                                                le32_to_cpu(de->inode),
354                                                types[de->file_type &
355                                                      (EXT2_FT_MAX - 1)]);
356
357                                 if (over) {
358                                         ext2_put_page(page);
359                                         GOTO(done, rc);
360                                 }
361                         }
362                 }
363                 ext2_put_page(page);
364         }
365
366 done:
367         filp->f_pos = (n << PAGE_CACHE_SHIFT) | offset;
368         filp->f_version = inode->i_version;
369         update_atime(inode);
370         RETURN(rc);
371 }
372
373 static int ll_mkdir_stripe(struct inode *inode, unsigned long arg)
374 {
375         char *name;
376         struct ll_user_mkdir_stripe lums;
377         struct ptlrpc_request *request = NULL;
378         struct ll_sb_info *sbi = ll_i2sbi(inode);
379         struct mdc_op_data op_data;
380         u16 nstripes;
381         mode_t mode;
382         int err = 0;
383         ENTRY;
384
385         if (copy_from_user(&lums, (void *)arg, sizeof(lums)))
386                 RETURN(-EFAULT);
387
388         if (lums.lums_namelen <= 0)
389                 RETURN(-EINVAL);
390         OBD_ALLOC(name, lums.lums_namelen);
391         if (!name)
392                 RETURN(-ENOMEM);
393
394         if (copy_from_user(name, lums.lums_name, lums.lums_namelen))
395                 GOTO(out, err=-EFAULT);
396
397         CDEBUG(D_VFSTRACE, "ioctl Op:name=%s,dir=%lu/%u(%p)\n",
398                name, inode->i_ino, inode->i_generation, inode);
399         nstripes = lums.lums_nstripes;
400
401         mode = lums.lums_mode;
402         mode = (mode & (S_IRWXUGO|S_ISVTX) & ~current->fs->umask) | S_IFDIR;
403         ll_prepare_mdc_op_data(&op_data, inode, NULL, name,lums.lums_namelen,0);
404         err = md_create(sbi->ll_mdc_exp, &op_data, &nstripes, sizeof(nstripes),
405                         mode, current->fsuid, current->fsgid, 0, &request);
406         ptlrpc_req_finished(request);
407
408 out:
409         OBD_FREE(name, lums.lums_namelen);
410         RETURN(err);
411 }
412
413 static int ll_dir_ioctl(struct inode *inode, struct file *file,
414                         unsigned int cmd, unsigned long arg)
415 {
416         struct ll_sb_info *sbi = ll_i2sbi(inode);
417         struct obd_ioctl_data *data;
418         ENTRY;
419
420         CDEBUG(D_VFSTRACE, "VFS Op:inode=%lu/%u(%p), cmd=%#x\n",
421                inode->i_ino, inode->i_generation, inode, cmd);
422
423         if (_IOC_TYPE(cmd) == 'T') /* tty ioctls */
424                 return -ENOTTY;
425
426         lprocfs_counter_incr(ll_i2sbi(inode)->ll_stats, LPROC_LL_IOCTL);
427         switch(cmd) {
428         case EXT3_IOC_GETFLAGS:
429         case EXT3_IOC_SETFLAGS:
430                 RETURN(ll_iocontrol(inode, file, cmd, arg));
431         case IOC_MDC_LOOKUP: {
432                 struct ptlrpc_request *request = NULL;
433                 struct ll_fid fid;
434                 char *buf = NULL;
435                 char *filename;
436                 int namelen, rc, len = 0;
437                 unsigned long valid;
438
439                 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
440                 if (rc)
441                         RETURN(rc);
442                 data = (void *)buf;
443
444                 filename = data->ioc_inlbuf1;
445                 namelen = data->ioc_inllen1;
446
447                 if (namelen < 1) {
448                         CDEBUG(D_INFO, "IOC_MDC_LOOKUP missing filename\n");
449                         GOTO(out, rc = -EINVAL);
450                 }
451
452                 valid = OBD_MD_FLID;
453                 ll_inode2fid(&fid, inode);
454                 rc = md_getattr_name(sbi->ll_mdc_exp, &fid,
455                                      filename, namelen, valid, 0, &request);
456                 if (rc < 0) {
457                         CDEBUG(D_INFO, "md_getattr_name: %d\n", rc);
458                         GOTO(out, rc);
459                 }
460
461                 ptlrpc_req_finished(request);
462
463                 EXIT;
464         out:
465                 obd_ioctl_freedata(buf, len);
466                 return rc;
467         }
468         case LL_IOC_MDC_MKDIRSTRIPE:
469                 RETURN(ll_mkdir_stripe(inode, arg));
470         case IOC_MDC_FINISH_GNS:
471                 RETURN(ll_finish_gns(sbi));
472         case LL_IOC_LOV_SETSTRIPE: {
473                 struct ptlrpc_request *request = NULL;
474                 struct mdc_op_data op_data;
475                 struct iattr attr = { 0 };
476                 struct lov_user_md lum, *lump = (struct lov_user_md *)arg;
477                 int rc = 0;
478
479                 ll_prepare_mdc_op_data(&op_data, inode, NULL, NULL, 0, 0);
480
481                 LASSERT(sizeof(lum) == sizeof(*lump));
482                 LASSERT(sizeof(lum.lmm_objects[0]) ==
483                         sizeof(lump->lmm_objects[0]));
484                 rc = copy_from_user(&lum, lump, sizeof(lum));
485                 if (rc)
486                         return(-EFAULT);
487
488                 if (lum.lmm_magic != LOV_USER_MAGIC)
489                         RETURN(-EINVAL);
490
491                 rc = md_setattr(sbi->ll_mdc_exp, &op_data,
492                                 &attr, &lum, sizeof(lum), NULL, 0, &request);
493                 if (rc) {
494                         ptlrpc_req_finished(request);
495                         if (rc != -EPERM && rc != -EACCES)
496                                 CERROR("md_setattr fails: rc = %d\n", rc);
497                         return rc;
498                 }
499                 ptlrpc_req_finished(request);
500
501                 return rc;
502         }
503         case LL_IOC_LOV_GETSTRIPE: {
504                 struct ptlrpc_request *request = NULL;
505                 struct lov_user_md *lump = (struct lov_user_md *)arg;
506                 struct lov_mds_md *lmm;
507                 struct ll_fid fid;
508                 struct mds_body *body;
509                 unsigned long valid = 0;
510                 int rc, lmmsize;
511
512                 valid |= OBD_MD_FLDIREA;
513
514                 ll_inode2fid(&fid, inode);
515                 rc = md_getattr(sbi->ll_mdc_exp, &fid, valid,
516                                 obd_size_diskmd(sbi->ll_osc_exp, NULL),
517                                 &request);
518                 if (rc < 0) {
519                         CDEBUG(D_INFO, "md_getattr failed: rc = %d\n", rc);
520                         RETURN(rc);
521                 }
522
523                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof(*body));
524                 LASSERT(body != NULL);         /* checked by md_getattr_name */
525                 LASSERT_REPSWABBED(request, 0);/* swabbed by md_getattr_name */
526
527                 lmmsize = body->eadatasize;
528                 if (lmmsize == 0)
529                         GOTO(out_get, rc = -ENODATA);
530
531                 lmm = lustre_msg_buf(request->rq_repmsg, 1, lmmsize);
532                 LASSERT(lmm != NULL);
533                 LASSERT_REPSWABBED(request, 1);
534                 rc = copy_to_user(lump, lmm, lmmsize);
535                 if (rc)
536                         GOTO(out_get, rc = -EFAULT);
537
538                 EXIT;
539         out_get:
540                 ptlrpc_req_finished(request);
541                 RETURN(rc);
542         }
543         case IOC_MDC_GETSTRIPE: {
544                 struct ptlrpc_request *request = NULL;
545                 struct ll_fid fid;
546                 struct mds_body *body;
547                 struct lov_user_md *lump = (struct lov_user_md *)arg;
548                 struct lov_mds_md *lmm;
549                 char *filename;
550                 int rc, lmmsize;
551
552                 filename = getname((const char *)arg);
553                 if (IS_ERR(filename))
554                         RETURN(PTR_ERR(filename));
555
556                 ll_inode2fid(&fid, inode);
557                 rc = md_getattr_name(sbi->ll_mdc_exp, &fid, filename,
558                                      strlen(filename) + 1, OBD_MD_FLEASIZE,
559                                      obd_size_diskmd(sbi->ll_osc_exp, NULL),
560                                      &request);
561                 if (rc < 0) {
562                         CDEBUG(D_INFO, "md_getattr_name failed on %s: rc %d\n",
563                                filename, rc);
564                         GOTO(out_name, rc);
565                 }
566
567                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof (*body));
568                 LASSERT(body != NULL);         /* checked by md_getattr_name */
569                 LASSERT_REPSWABBED(request, 0);/* swabbed by md_getattr_name */
570
571                 lmmsize = body->eadatasize;
572
573                 if (!(body->valid & OBD_MD_FLEASIZE) || lmmsize == 0)
574                         GOTO(out_req, rc = -ENODATA);
575
576                 if (lmmsize > 4096)
577                         GOTO(out_req, rc = -EFBIG);
578
579                 lmm = lustre_msg_buf(request->rq_repmsg, 1, lmmsize);
580                 LASSERT(lmm != NULL);
581                 LASSERT_REPSWABBED(request, 1);
582
583                 rc = copy_to_user(lump, lmm, lmmsize);
584                 if (rc)
585                         GOTO(out_req, rc = -EFAULT);
586
587                 EXIT;
588         out_req:
589                 ptlrpc_req_finished(request);
590         out_name:
591                 putname(filename);
592                 return rc;
593         }
594         case OBD_IOC_PING: {
595                 struct ptlrpc_request *req = NULL;
596                 char *buf = NULL;
597                 int rc, len=0;
598                 struct client_obd *cli;
599                 struct obd_device *obd;
600
601                 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
602                 if (rc)
603                         RETURN(rc);
604                 data = (void *)buf;
605
606                 obd = class_name2obd(data->ioc_inlbuf1);
607
608                 if (!obd )
609                         GOTO(out_ping, rc = -ENODEV);
610
611                 if (!obd->obd_attached) {
612                         CERROR("Device %d not attached\n", obd->obd_minor);
613                         GOTO(out_ping, rc = -ENODEV);
614                 }
615                 if (!obd->obd_set_up) {
616                         CERROR("Device %d still not setup\n", obd->obd_minor);
617                         GOTO(out_ping, rc = -ENODEV);
618                 }
619                 cli = &obd->u.cli;
620                 req = ptlrpc_prep_req(cli->cl_import, LUSTRE_OBD_VERSION,
621                                       OBD_PING, 0, NULL, NULL);
622                 if (!req)
623                         GOTO(out_ping, rc = -ENOMEM);
624
625                 req->rq_replen = lustre_msg_size(0, NULL);
626                 req->rq_send_state = LUSTRE_IMP_FULL;
627
628                 rc = ptlrpc_queue_wait(req);
629
630                 ptlrpc_req_finished(req);
631         out_ping:
632                 obd_ioctl_freedata(buf, len);
633                 return rc;
634         }
635         case OBD_IOC_LLOG_CATINFO: {
636                 struct ptlrpc_request *req = NULL;
637                 char *buf = NULL;
638                 int rc, len = 0;
639                 char *bufs[2], *str;
640                 int lens[2], size;
641
642                 rc = obd_ioctl_getdata(&buf, &len, (void *)arg);
643                 if (rc)
644                         RETURN(rc);
645                 data = (void *)buf;
646
647                 if (!data->ioc_inlbuf1) {
648                         obd_ioctl_freedata(buf, len);
649                         RETURN(-EINVAL);
650                 }
651
652                 lens[0] = data->ioc_inllen1;
653                 bufs[0] = data->ioc_inlbuf1;
654                 if (data->ioc_inllen2) {
655                         lens[1] = data->ioc_inllen2;
656                         bufs[1] = data->ioc_inlbuf2;
657                 } else {
658                         lens[1] = 0;
659                         bufs[1] = NULL;
660                 }
661                 size = data->ioc_plen1;
662                 req = ptlrpc_prep_req(sbi2mdc(sbi)->cl_import,
663                                       LUSTRE_LOG_VERSION, LLOG_CATINFO,
664                                       2, lens, bufs);
665                 if (!req)
666                         GOTO(out_catinfo, rc = -ENOMEM);
667
668                 req->rq_replen = lustre_msg_size(1, &size);
669
670                 rc = ptlrpc_queue_wait(req);
671                 str = lustre_msg_string(req->rq_repmsg, 0, data->ioc_plen1);
672                 if (!rc)
673                         rc = copy_to_user(data->ioc_pbuf1, str,
674                                           data->ioc_plen1);
675                 ptlrpc_req_finished(req);
676         out_catinfo:
677                 obd_ioctl_freedata(buf, len);
678                 RETURN(rc);
679         }
680         default:
681                 return obd_iocontrol(cmd, sbi->ll_osc_exp,0,NULL,(void *)arg);
682         }
683 }
684
685 int ll_dir_open(struct inode *inode, struct file *file)
686 {
687         ENTRY;
688         RETURN(ll_file_open(inode, file));
689 }
690
691 int ll_dir_release(struct inode *inode, struct file *file)
692 {
693         ENTRY;
694         RETURN(ll_file_release(inode, file));
695 }
696
697 struct file_operations ll_dir_operations = {
698         .open     = ll_dir_open,
699         .release  = ll_dir_release,
700         .read     = generic_read_dir,
701         .readdir  = ll_readdir,
702         .ioctl    = ll_dir_ioctl
703 };
704