Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[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 Super operations
5  *
6  *  Copyright (c) 2002, 2003 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/dirent.h>
46 #include <linux/unistd.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         ENTRY;
66
67         if ((lli->lli_st_size + PAGE_CACHE_SIZE - 1) >> PAGE_SHIFT <= page->index) {
68                 /* XXX why do we need this exactly, and why do we think that
69                  *     an all-zero directory page is useful?
70                  */
71                 CERROR("memsetting dir page %lu to zero (size %lld)\n",
72                        page->index, lli->lli_st_size);
73                 memset(page->addr, 0, PAGE_CACHE_SIZE);
74                 GOTO(readpage_out, rc);
75         }
76
77         rc = ldlm_lock_match(obddev->obd_namespace, LDLM_FL_BLOCK_GRANTED,
78                              &res_id, LDLM_PLAIN, NULL, LCK_PR, &lockh);
79         if (!rc) {
80                 llu_prepare_mdc_op_data(&data, inode, NULL, NULL, 0, 0);
81
82                 rc = mdc_enqueue(sbi->ll_mdc_exp, LDLM_PLAIN, &it, LCK_PR,
83                                  &data, &lockh, NULL, 0,
84                                  ldlm_completion_ast, llu_mdc_blocking_ast,
85                                  inode);
86                 request = (struct ptlrpc_request *)it.d.lustre.it_data;
87                 if (request)
88                         ptlrpc_req_finished(request);
89                 if (rc < 0) {
90                         CERROR("lock enqueue: err: %d\n", rc);
91                         RETURN(rc);
92                 }
93         }
94         ldlm_lock_dump_handle(D_OTHER, &lockh);
95
96         mdc_pack_fid(&mdc_fid, lli->lli_st_ino, lli->lli_st_generation, S_IFDIR);
97
98         offset = page->index << PAGE_SHIFT;
99         rc = mdc_readpage(sbi->ll_mdc_exp, &mdc_fid,
100                           offset, page, &request);
101         if (!rc) {
102                 body = lustre_msg_buf(request->rq_repmsg, 0, sizeof (*body));
103                 LASSERT (body != NULL);         /* checked by mdc_readpage() */
104                 LASSERT_REPSWABBED (request, 0); /* swabbed by mdc_readpage() */
105
106                 lli->lli_st_size = body->size;
107         }
108         ptlrpc_req_finished(request);
109         EXIT;
110
111  readpage_out:
112         ldlm_lock_decref(&lockh, LCK_PR);
113         return rc;
114 }
115
116 static struct page *llu_dir_read_page(struct inode *ino, int pgidx)
117 {
118         struct page *page;
119         int rc;
120         ENTRY;
121
122         page = alloc_page(0);
123         if (!page) {
124                 CERROR("alloc page failed\n");
125                 RETURN(ERR_PTR(-ENOMEM));
126         }
127         page->index = pgidx;
128
129         rc = llu_dir_do_readpage(ino, page);
130         if (rc) {
131                 free_page(page);
132                 RETURN(ERR_PTR(rc));
133         }
134
135         return page;
136 }
137
138 #define NAME_OFFSET(de) ((int) ((de)->d_name - (char *) (de)))
139 #define ROUND_UP64(x)   (((x)+sizeof(__u64)-1) & ~(sizeof(__u64)-1))
140
141 static int filldir(char *buf, int buflen,
142                    const char *name, int namelen, loff_t offset,
143                    ino_t ino, unsigned int d_type, int *filled)
144 {
145         struct dirent64 *dirent = (struct dirent64 *) (buf + *filled);
146         int reclen = ROUND_UP64(NAME_OFFSET(dirent) + namelen + 1);
147
148         /* check overflow */
149         if ((*filled + reclen) > buflen)
150                 return 1;
151
152         dirent->d_ino = ino;
153         dirent->d_off = offset,
154         dirent->d_reclen = reclen;
155         dirent->d_type = (unsigned short) d_type;
156         memcpy(dirent->d_name, name, namelen);
157         dirent->d_name[namelen] = 0;
158
159         *filled += reclen;
160
161         return 0;
162 }
163
164 ssize_t llu_iop_getdirentries(struct inode *ino, char *buf, size_t nbytes,
165                               _SYSIO_OFF_T *basep)
166 {
167         struct llu_inode_info *lli = llu_i2info(ino);
168         loff_t pos = *basep, offset;
169         int maxpages, pgidx, filled = 0;
170         ENTRY;
171
172         if (pos == -1)
173                 pos = lli->lli_dir_pos;
174
175         maxpages = lli->lli_st_size >> PAGE_CACHE_SHIFT;
176         pgidx = pos >> PAGE_CACHE_SHIFT;
177         offset = pos & ~PAGE_CACHE_MASK;
178
179         for ( ; pgidx < maxpages ; pgidx++, offset = 0) {
180                 struct page *page;
181                 struct ext2_dirent *de;
182                 char *addr, *limit;
183
184                 page = llu_dir_read_page(ino, pgidx);
185                 if (IS_ERR(page))
186                         continue;
187
188                 /* size might have been updated by mdc_readpage */
189                 maxpages = lli->lli_st_size >> PAGE_CACHE_SHIFT;
190
191                 /* fill in buffer */
192                 addr = page->addr;
193                 limit = addr + PAGE_CACHE_SIZE - EXT2_DIR_REC_LEN(1);
194                 de = (struct ext2_dirent *) (addr + offset);
195
196                 for ( ; (char*) de <= limit; de = ext2_next_entry(de)) {
197                         if (de->inode) {
198                                 int over;
199                                 unsigned char d_type = 0;
200
201                                 /* XXX handle type, etc here */
202
203                                 offset = (char*) de - addr;
204                                 over =  filldir(buf, nbytes, de->name, de->name_len,
205                                                 (pgidx << PAGE_CACHE_SHIFT) | offset,
206                                                 le32_to_cpu(de->inode), d_type, &filled);
207                                 if (over) {
208                                         free_page(page);
209                                         GOTO(done, 0);
210                                 }
211                         }
212                 }
213                 
214                 free_page(page);
215         }
216 done:
217         lli->lli_dir_pos = pgidx << PAGE_CACHE_SHIFT | offset;
218         *basep = lli->lli_dir_pos;
219         RETURN(filled);
220 }