Whamcloud - gitweb
- unland b_fid to HEAD
[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 #include <sysio.h>
37 #include <fs.h>
38 #include <mount.h>
39 #include <inode.h>
40 #include <file.h>
41
42 #undef LIST_HEAD
43
44 #include <linux/types.h>
45 #include <linux/unistd.h>
46 #include <dirent.h>
47
48 #include "llite_lib.h"
49
50 static int llu_dir_do_readpage(struct inode *inode, struct page *page)
51 {
52         struct llu_inode_info *lli = llu_i2info(inode);
53         struct llu_sb_info *sbi = llu_i2sbi(inode);
54         struct ll_fid mdc_fid;
55         __u64 offset;
56         int rc = 0;
57         struct ptlrpc_request *request;
58         struct lustre_handle lockh;
59         struct mds_body *body;
60         struct lookup_intent it = { .it_op = IT_READDIR };
61         struct mdc_op_data data;
62         struct obd_device *obddev = class_exp2obd(sbi->ll_mdc_exp);
63         struct ldlm_res_id res_id =
64                 { .name = {lli->lli_st_ino, (__u64)lli->lli_st_generation} };
65         ldlm_policy_data_t policy = { .l_inodebits = { MDS_INODELOCK_UPDATE } };
66         ENTRY;
67
68         rc = ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
69                              &res_id, LDLM_IBITS, &policy, LCK_PR, &lockh);
70         if (!rc) {
71                 llu_prepare_mdc_op_data(&data, inode, NULL, NULL, 0, 0);
72
73                 rc = mdc_enqueue(sbi->ll_mdc_exp, LDLM_IBITS, &it, LCK_PR,
74                                  &data, &lockh, NULL, 0,
75                                  ldlm_completion_ast, llu_mdc_blocking_ast,
76                                  inode);
77                 request = (struct ptlrpc_request *)it.d.lustre.it_data;
78                 if (request)
79                         ptlrpc_req_finished(request);
80                 if (rc < 0) {
81                         CERROR("lock enqueue: err: %d\n", rc);
82                         RETURN(rc);
83                 }
84         }
85         ldlm_lock_dump_handle(D_OTHER, &lockh);
86
87         mdc_pack_fid(&mdc_fid, lli->lli_st_ino, lli->lli_st_generation, S_IFDIR);
88
89         offset = page->index << PAGE_SHIFT;
90         rc = mdc_readpage(sbi->ll_mdc_exp, &mdc_fid,
91                           offset, page, &request);
92         if (!rc) {
93                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof (*body));
94                 LASSERT (body != NULL);         /* checked by mdc_readpage() */
95                 LASSERT_REPSWABBED (request, 0); /* swabbed by mdc_readpage() */
96
97                 lli->lli_st_size = body->size;
98         } else {
99                 CERROR("read_dir_page(%ld) error %d\n", page->index, rc);
100         }
101         ptlrpc_req_finished(request);
102         EXIT;
103
104         ldlm_lock_decref(&lockh, LCK_PR);
105         return rc;
106 }
107
108 static struct page *llu_dir_read_page(struct inode *ino, int pgidx)
109 {
110         struct page *page;
111         int rc;
112         ENTRY;
113
114         page = alloc_page(0);
115         if (!page) {
116                 CERROR("alloc page failed\n");
117                 RETURN(ERR_PTR(-ENOMEM));
118         }
119         page->index = pgidx;
120
121         rc = llu_dir_do_readpage(ino, page);
122         if (rc) {
123                 free_page(page);
124                 RETURN(ERR_PTR(rc));
125         }
126
127         return page;
128 }
129
130 enum {
131         EXT2_FT_UNKNOWN,
132         EXT2_FT_REG_FILE,
133         EXT2_FT_DIR,
134         EXT2_FT_CHRDEV,
135         EXT2_FT_BLKDEV,
136         EXT2_FT_FIFO,
137         EXT2_FT_SOCK,
138         EXT2_FT_SYMLINK,
139         EXT2_FT_MAX
140 };
141
142 static unsigned char ext2_filetype_table[EXT2_FT_MAX] = {
143         [EXT2_FT_UNKNOWN]       DT_UNKNOWN,
144         [EXT2_FT_REG_FILE]      DT_REG,
145         [EXT2_FT_DIR]           DT_DIR,
146         [EXT2_FT_CHRDEV]        DT_CHR,
147         [EXT2_FT_BLKDEV]        DT_BLK,
148         [EXT2_FT_FIFO]          DT_FIFO,
149         [EXT2_FT_SOCK]          DT_SOCK,
150         [EXT2_FT_SYMLINK]       DT_LNK,
151 };
152
153 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
154 #define ROUND_UP64(x)   (((x)+sizeof(__u64)-1) & ~(sizeof(__u64)-1))
155
156 static int filldir(char *buf, int buflen,
157                    const char *name, int namelen, loff_t offset,
158                    ino_t ino, unsigned int d_type, int *filled)
159 {
160         struct dirent64 *dirent = (struct dirent64 *) (buf + *filled);
161         int reclen = ROUND_UP64(NAME_OFFSET(dirent) + namelen + 1);
162
163         /* check overflow */
164         if ((*filled + reclen) > buflen)
165                 return 1;
166
167         dirent->d_ino = ino;
168         dirent->d_off = offset,
169         dirent->d_reclen = reclen;
170         dirent->d_type = (unsigned short) d_type;
171         memcpy(dirent->d_name, name, namelen);
172         dirent->d_name[namelen] = 0;
173
174         *filled += reclen;
175
176         return 0;
177 }
178
179 ssize_t llu_iop_getdirentries(struct inode *ino, char *buf, size_t nbytes,
180                               _SYSIO_OFF_T *basep)
181 {
182         struct llu_inode_info *lli = llu_i2info(ino);
183         loff_t pos = *basep, offset;
184         int maxpages, pgidx, filled = 0;
185         ENTRY;
186
187         if (lli->lli_st_size == 0) {
188                 CWARN("dir size is 0?\n");
189                 RETURN(0);
190         }
191
192         liblustre_wait_event(0);
193
194         if (pos == -1)
195                 pos = lli->lli_dir_pos;
196
197         maxpages = (lli->lli_st_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
198         pgidx = pos >> PAGE_SHIFT;
199         offset = pos & ~PAGE_MASK;
200
201         for ( ; pgidx < maxpages ; pgidx++, offset = 0) {
202                 struct page *page;
203                 struct ext2_dirent *de;
204                 char *addr, *limit;
205
206                 page = llu_dir_read_page(ino, pgidx);
207                 if (IS_ERR(page))
208                         continue;
209
210                 /* size might have been updated by mdc_readpage */
211                 maxpages = (lli->lli_st_size + PAGE_SIZE - 1) >> PAGE_SHIFT;
212
213                 /* fill in buffer */
214                 addr = page->addr;
215                 limit = addr + PAGE_SIZE - EXT2_DIR_REC_LEN(1);
216                 de = (struct ext2_dirent *) (addr + offset);
217
218                 for ( ; (char*) de <= limit; de = ext2_next_entry(de)) {
219                         if (de->inode) {
220                                 int over;
221                                 unsigned char d_type = DT_UNKNOWN;
222
223                                 if (de->file_type < EXT2_FT_MAX)
224                                         d_type = ext2_filetype_table[de->file_type];
225
226                                 offset = (char*) de - addr;
227                                 over =  filldir(buf, nbytes, de->name, de->name_len,
228                                                 (pgidx << PAGE_SHIFT) | offset,
229                                                 le32_to_cpu(de->inode), d_type, &filled);
230                                 if (over) {
231                                         free_page(page);
232                                         GOTO(done, 0);
233                                 }
234                         }
235                 }
236                 
237                 free_page(page);
238         }
239 done:
240         lli->lli_dir_pos = pgidx << PAGE_SHIFT | offset;
241         *basep = lli->lli_dir_pos;
242         RETURN(filled);
243 }