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