Whamcloud - gitweb
Branch b1_4_mountconf
[fs/lustre-release.git] / lustre / liblustre / dir.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Light directory handling
5  *
6  *  Copyright (c) 2002-2004 Cluster File Systems, Inc.
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  */
23
24 #define DEBUG_SUBSYSTEM S_LLITE
25
26 #include <unistd.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <assert.h>
30 #include <time.h>
31 #include <sys/types.h>
32 #include <sys/stat.h>
33 #include <sys/fcntl.h>
34 #include <sys/queue.h>
35
36 #ifdef HAVE_XTIO_H
37 #include <xtio.h>
38 #endif
39 #include <sysio.h>
40 #include <fs.h>
41 #include <mount.h>
42 #include <inode.h>
43 #ifdef HAVE_FILE_H
44 #include <file.h>
45 #endif
46
47 #undef LIST_HEAD
48
49 #ifdef HAVE_LINUX_TYPES_H
50 #include <linux/types.h>
51 #elif defined(HAVE_SYS_TYPES_H)
52 #include <sys/types.h>
53 #endif
54
55 #ifdef HAVE_LINUX_UNISTD_H
56 #include <linux/unistd.h>
57 #elif defined(HAVE_UNISTD_H)
58 #include <unistd.h>
59 #endif
60
61 #include <dirent.h>
62
63 #include "llite_lib.h"
64
65 static int llu_dir_do_readpage(struct inode *inode, struct page *page)
66 {
67         struct llu_inode_info *lli = llu_i2info(inode);
68         struct intnl_stat *st = llu_i2stat(inode);
69         struct llu_sb_info *sbi = llu_i2sbi(inode);
70         struct ll_fid mdc_fid;
71         __u64 offset;
72         int rc = 0;
73         struct ptlrpc_request *request;
74         struct lustre_handle lockh;
75         struct mds_body *body;
76         struct lookup_intent it = { .it_op = IT_READDIR };
77         struct mdc_op_data data;
78         struct obd_device *obddev = class_exp2obd(sbi->ll_mdc_exp);
79         struct ldlm_res_id res_id =
80                 { .name = {st->st_ino, (__u64)lli->lli_st_generation} };
81         ENTRY;
82
83         rc = ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
84                              &res_id, LDLM_PLAIN, NULL, LCK_PR, &lockh);
85         if (!rc) {
86                 llu_prepare_mdc_op_data(&data, inode, NULL, NULL, 0, 0);
87
88                 rc = mdc_enqueue(sbi->ll_mdc_exp, LDLM_PLAIN, &it, LCK_PR,
89                                  &data, &lockh, NULL, 0,
90                                  ldlm_completion_ast, llu_mdc_blocking_ast,
91                                  inode);
92                 request = (struct ptlrpc_request *)it.d.lustre.it_data;
93                 if (request)
94                         ptlrpc_req_finished(request);
95                 if (rc < 0) {
96                         CERROR("lock enqueue: err: %d\n", rc);
97                         RETURN(rc);
98                 }
99         }
100         ldlm_lock_dump_handle(D_OTHER, &lockh);
101
102         mdc_pack_fid(&mdc_fid, st->st_ino, lli->lli_st_generation, S_IFDIR);
103
104         offset = page->index << PAGE_SHIFT;
105         rc = mdc_readpage(sbi->ll_mdc_exp, &mdc_fid,
106                           offset, page, &request);
107         if (!rc) {
108                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof (*body));
109                 LASSERT (body != NULL);         /* checked by mdc_readpage() */
110                 LASSERT_REPSWABBED (request, 0); /* swabbed by mdc_readpage() */
111
112                 st->st_size = body->size;
113         } else {
114                 CERROR("read_dir_page(%ld) error %d\n", page->index, rc);
115         }
116         ptlrpc_req_finished(request);
117         EXIT;
118
119         ldlm_lock_decref(&lockh, LCK_PR);
120         return rc;
121 }
122
123 static struct page *llu_dir_read_page(struct inode *ino, int pgidx)
124 {
125         struct page *page;
126         int rc;
127         ENTRY;
128
129         page = alloc_page(0);
130         if (!page) {
131                 CERROR("alloc page failed\n");
132                 RETURN(ERR_PTR(-ENOMEM));
133         }
134         page->index = pgidx;
135
136         rc = llu_dir_do_readpage(ino, page);
137         if (rc) {
138                 free_page(page);
139                 RETURN(ERR_PTR(rc));
140         }
141
142         return page;
143 }
144
145 enum {
146         EXT2_FT_UNKNOWN,
147         EXT2_FT_REG_FILE,
148         EXT2_FT_DIR,
149         EXT2_FT_CHRDEV,
150         EXT2_FT_BLKDEV,
151         EXT2_FT_FIFO,
152         EXT2_FT_SOCK,
153         EXT2_FT_SYMLINK,
154         EXT2_FT_MAX
155 };
156
157 static unsigned char ext2_filetype_table[EXT2_FT_MAX] = {
158         [EXT2_FT_UNKNOWN]       DT_UNKNOWN,
159         [EXT2_FT_REG_FILE]      DT_REG,
160         [EXT2_FT_DIR]           DT_DIR,
161         [EXT2_FT_CHRDEV]        DT_CHR,
162         [EXT2_FT_BLKDEV]        DT_BLK,
163         [EXT2_FT_FIFO]          DT_FIFO,
164         [EXT2_FT_SOCK]          DT_SOCK,
165         [EXT2_FT_SYMLINK]       DT_LNK,
166 };
167
168 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
169 #define ROUND_UP64(x)   (((x)+sizeof(__u64)-1) & ~(sizeof(__u64)-1))
170
171 static int filldir(char *buf, int buflen,
172                    const char *name, int namelen, loff_t offset,
173                    ino_t ino, unsigned int d_type, int *filled)
174 {
175         struct dirent64 *dirent = (struct dirent64 *) (buf + *filled);
176         int reclen = ROUND_UP64(NAME_OFFSET(dirent) + namelen + 1);
177
178         /* check overflow */
179         if ((*filled + reclen) > buflen)
180                 return 1;
181
182         dirent->d_ino = ino;
183         dirent->d_off = offset;
184         dirent->d_reclen = reclen;
185         dirent->d_type = (unsigned short) d_type;
186         memcpy(dirent->d_name, name, namelen);
187         dirent->d_name[namelen] = 0;
188
189         *filled += reclen;
190
191         return 0;
192 }
193
194 ssize_t llu_iop_getdirentries(struct inode *ino, char *buf, size_t nbytes,
195                               _SYSIO_OFF_T *basep)
196 {
197         struct llu_inode_info *lli = llu_i2info(ino);
198         struct intnl_stat *st = llu_i2stat(ino);
199         loff_t pos = *basep, offset;
200         int maxpages, pgidx, filled = 0;
201         ENTRY;
202
203         if (st->st_size == 0) {
204                 CWARN("dir size is 0?\n");
205                 RETURN(0);
206         }
207
208         liblustre_wait_event(0);
209
210         if (pos == -1)
211                 pos = lli->lli_dir_pos;
212
213         maxpages = (st->st_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
214         pgidx = pos >> PAGE_SHIFT;
215         offset = pos & ~PAGE_MASK;
216
217         for ( ; pgidx < maxpages ; pgidx++, offset = 0) {
218                 struct page *page;
219                 struct ext2_dirent *de;
220                 char *addr, *limit;
221
222                 page = llu_dir_read_page(ino, pgidx);
223                 if (IS_ERR(page))
224                         continue;
225
226                 /* size might have been updated by mdc_readpage */
227                 maxpages = (st->st_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
228
229                 /* fill in buffer */
230                 addr = page->addr;
231                 limit = addr + PAGE_SIZE - EXT2_DIR_REC_LEN(1);
232                 de = (struct ext2_dirent *) (addr + offset);
233
234                 for ( ; (char*) de <= limit; de = ext2_next_entry(de)) {
235                         if (de->inode) {
236                                 int over;
237                                 unsigned char d_type = DT_UNKNOWN;
238
239                                 if (de->file_type < EXT2_FT_MAX)
240                                         d_type = ext2_filetype_table[de->file_type];
241
242                                 offset = (char*) de - addr;
243                                 over =  filldir(buf, nbytes, de->name, de->name_len,
244                                                 ((pgidx << PAGE_SHIFT) | offset) + le16_to_cpu(de->rec_len),
245                                                 le32_to_cpu(de->inode), d_type, &filled);
246                                 if (over) {
247                                         free_page(page);
248                                         GOTO(done, 0);
249                                 }
250                         }
251                 }
252                 
253                 free_page(page);
254         }
255 done:
256         lli->lli_dir_pos = pgidx << PAGE_SHIFT | offset;
257         *basep = lli->lli_dir_pos;
258         RETURN(filled);
259 }