Whamcloud - gitweb
64-bit warning fixes. Someone should take a closer look at ext2_obd.c
[fs/lustre-release.git] / lustre / llite / namei.c
1 /*
2  *
3  * This code is issued under the GNU General Public License.
4  * See the file COPYING in this distribution
5  *
6  * Copyright (C) 1992, 1993, 1994, 1995
7  * Remy Card (card@masi.ibp.fr)
8  * Laboratoire MASI - Institut Blaise Pascal
9  * Universite Pierre et Marie Curie (Paris VI)
10  *
11  *  from
12  *
13  *  linux/fs/ext2/namei.c
14  *
15  *  Copyright (C) 1991, 1992  Linus Torvalds
16  *
17  *  Big-endian to little-endian byte-swapping/bitmaps by
18  *        David S. Miller (davem@caip.rutgers.edu), 1995
19  *  Directory entry file type support and forward compatibility hooks
20  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
21  * 
22  *  Changes for use in OBDFS
23  *  Copyright (c) 1999, Seagate Technology Inc.
24  *  Copyright (C) 2001, Cluster File Systems, Inc.
25  *                       Rewritten based on recent ext2 page cache use.
26  * 
27  */
28
29 #include <linux/fs.h>
30 #include <linux/locks.h>
31 #include <linux/quotaops.h>
32
33 #define DEBUG_SUBSYSTEM S_LLITE
34
35 #include <linux/obd_support.h>
36 #include <linux/lustre_lite.h>
37 extern struct address_space_operations ll_aops;
38
39 /* from super.c */
40 extern void ll_change_inode(struct inode *inode);
41 extern int ll_setattr(struct dentry *de, struct iattr *attr);
42
43 /* from dir.c */
44 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
45 ino_t ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
46 int ext2_make_empty(struct inode *inode, struct inode *parent);
47 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
48                    struct dentry *dentry, struct page ** res_page);
49 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
50 int ext2_empty_dir (struct inode * inode);
51 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
52 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
53                    struct page *page, struct inode *inode);
54
55 /*
56  * Couple of helper functions - make the code slightly cleaner.
57  */
58 static inline void ext2_inc_count(struct inode *inode)
59 {
60         inode->i_nlink++;
61 }
62
63 /* postpone the disk update until the inode really goes away */ 
64 static inline void ext2_dec_count(struct inode *inode)
65 {
66         inode->i_nlink--;
67 }
68
69 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
70 {
71         int err;
72         err = ll_add_link(dentry, inode);
73         if (!err) {
74                 d_instantiate(dentry, inode);
75                 return 0;
76         }
77         ext2_dec_count(inode);
78         iput(inode);
79         return err;
80 }
81
82 /* methods */
83 static int ll_find_inode(struct inode *inode, unsigned long ino, void *opaque)
84 {
85         struct mds_body *body = (struct mds_body *)opaque;
86
87         if (inode->i_generation != body->generation)
88                 return 0;
89
90         return 1;
91 }
92
93 static struct dentry *ll_lookup(struct inode * dir, struct dentry *dentry)
94 {
95         struct ptlrpc_request *request = NULL;
96         struct inode * inode = NULL;
97         struct ll_sb_info *sbi = ll_i2sbi(dir);
98         int err;
99         int type;
100         ino_t ino;
101         
102         ENTRY;
103         if (dentry->d_name.len > EXT2_NAME_LEN)
104                 RETURN(ERR_PTR(-ENAMETOOLONG));
105
106         ino = ll_inode_by_name(dir, dentry, &type);
107         if (!ino)
108                 GOTO(negative, NULL);
109
110         err = mdc_getattr(&sbi->ll_mds_client, sbi->ll_mds_conn, ino, type,
111                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, &request);
112         if (err) {
113                 CERROR("failure %d inode %ld\n", err, (long)ino);
114                 ptlrpc_free_req(request);
115                 RETURN(ERR_PTR(-abs(err)));
116         }
117
118         inode = iget4(dir->i_sb, ino, ll_find_inode,
119                       lustre_msg_buf(request->rq_repmsg, 0));
120
121         ptlrpc_free_req(request);
122         if (!inode) 
123                 RETURN(ERR_PTR(-ENOMEM));
124
125         EXIT;
126  negative:
127         d_add(dentry, inode);
128         return NULL;
129 }
130
131 static struct inode *ll_create_node(struct inode *dir, const char *name, 
132                                     int namelen, const char *tgt, int tgtlen, 
133                                     int mode, __u64 id)
134 {
135         struct inode *inode;
136         struct ptlrpc_request *request = NULL;
137         struct mds_body *body;
138         int err;
139         time_t time = CURRENT_TIME;
140         struct ll_sb_info *sbi = ll_i2sbi(dir);
141
142         ENTRY;
143
144         err = mdc_create(&sbi->ll_mds_client, sbi->ll_mds_conn, dir, name,
145                          namelen, tgt, tgtlen, mode, id,  current->uid,
146                          current->gid, time, &request);
147         if (err) { 
148                 inode = ERR_PTR(err);
149                 GOTO(out, err);
150         }
151         body = lustre_msg_buf(request->rq_repmsg, 0);
152         body->valid = (__u32)OBD_MD_FLNOTOBD;
153
154         body->objid = id; 
155         body->nlink = 1;
156         body->atime = body->ctime = body->mtime = time;
157         body->mode = mode;
158         CDEBUG(D_INODE, "-- new_inode: objid %lld, ino %d, mode %o\n",
159                (unsigned long long)body->objid, body->ino, body->mode); 
160
161         inode = iget4(dir->i_sb, body->ino, ll_find_inode, body);
162         if (IS_ERR(inode)) {
163                 CERROR("new_inode -fatal:  %ld\n", PTR_ERR(inode));
164                 inode = ERR_PTR(-EIO);
165                 LBUG();
166                 GOTO(out, -EIO);
167         }
168
169         if (!list_empty(&inode->i_dentry)) {
170                 CERROR("new_inode -fatal: inode %d, ct %d lnk %d\n", 
171                        body->ino, atomic_read(&inode->i_count), 
172                        inode->i_nlink);
173                 iput(inode);
174                 LBUG();
175                 inode = ERR_PTR(-EIO);
176                 GOTO(out, -EIO);
177         }
178
179         EXIT;
180  out:
181         ptlrpc_free_req(request);
182         return inode;
183 } /* ll_new_inode */
184
185 int ll_mdc_unlink(struct inode *dir, struct inode *child,
186                   const char *name, int len)
187 {
188         struct ptlrpc_request *request = NULL;
189         int err;
190         struct ll_sb_info *sbi = ll_i2sbi(dir);
191
192         ENTRY;
193
194         err = mdc_unlink(&sbi->ll_mds_client, sbi->ll_mds_conn, dir, child,
195                          name, len, &request);
196         ptlrpc_free_req(request);
197
198         EXIT;
199         return err;
200 }
201
202 int ll_mdc_link(struct dentry *src, struct inode *dir, 
203                 const char *name, int len)
204 {
205         struct ptlrpc_request *request = NULL;
206         int err;
207         struct ll_sb_info *sbi = ll_i2sbi(dir);
208
209         ENTRY;
210
211         err = mdc_link(&sbi->ll_mds_client, sbi->ll_mds_conn, src, dir, name,
212                        len, &request);
213         ptlrpc_free_req(request);
214
215         EXIT;
216         return err;
217 }
218
219 int ll_mdc_rename(struct inode *src, struct inode *tgt, 
220                   struct dentry *old, struct dentry *new)
221 {
222         struct ptlrpc_request *request = NULL;
223         int err;
224         struct ll_sb_info *sbi = ll_i2sbi(src);
225
226         ENTRY;
227
228         err = mdc_rename(&sbi->ll_mds_client, sbi->ll_mds_conn, src, tgt, 
229                          old->d_name.name, old->d_name.len, 
230                          new->d_name.name, new->d_name.len, &request);
231         ptlrpc_free_req(request);
232
233         EXIT;
234         return err;
235 }
236
237 /*
238  * By the time this is called, we already have created
239  * the directory cache entry for the new file, but it
240  * is so far negative - it has no inode.
241  *
242  * If the create succeeds, we fill in the inode information
243  * with d_instantiate(). 
244  */
245
246 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
247 {
248         int err; 
249         struct obdo oa;
250         struct inode * inode;
251
252         memset(&oa, 0, sizeof(oa)); 
253         oa.o_valid = OBD_MD_FLMODE; 
254         oa.o_mode = S_IFREG | 0600;
255         err = obd_create(ll_i2obdconn(dir), &oa);  
256         if (err) { 
257                 RETURN(err);
258         }
259
260         mode = mode | S_IFREG;
261         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n",
262                dentry->d_name.name, mode, (unsigned long long)oa.o_id);
263         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
264                                NULL, 0, mode, oa.o_id);
265         err = PTR_ERR(inode);
266         if (!IS_ERR(inode)) {
267                 // XXX clean up the object
268                 inode->i_op = &ll_file_inode_operations;
269                 inode->i_fop = &ll_file_operations;
270                 inode->i_mapping->a_ops = &ll_aops;
271                 err = ext2_add_nondir(dentry, inode);
272         }
273         RETURN(err);
274 } /* ll_create */
275
276
277 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
278 {
279         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
280                                               dentry->d_name.len, NULL, 0,
281                                               mode, 0);
282         int err = PTR_ERR(inode);
283         if (!IS_ERR(inode)) {
284                 init_special_inode(inode, mode, rdev);
285                 err = ext2_add_nondir(dentry, inode);
286         }
287         return err;
288 }
289
290 static int ll_symlink (struct inode * dir, struct dentry * dentry,
291         const char * symname)
292 {
293         int err = -ENAMETOOLONG;
294         unsigned l = strlen(symname);
295         struct inode * inode;
296         struct ll_inode_info *oinfo;
297
298         if (l > LL_INLINESZ)
299                 return err;
300
301         inode = ll_create_node(dir, dentry->d_name.name, 
302                                dentry->d_name.len, symname, l,
303                                S_IFLNK | S_IRWXUGO, 0);
304         err = PTR_ERR(inode);
305         if (IS_ERR(inode))
306                 return err;
307
308         oinfo = ll_i2info(inode);
309         
310         inode->i_op = &ll_fast_symlink_inode_operations;
311         memcpy(oinfo->lli_inline, symname, l);
312         inode->i_size = l-1;
313
314         err = ext2_add_nondir(dentry, inode);
315
316         if (err) { 
317                 ext2_dec_count(inode);
318                 iput (inode);
319         }
320         return err;
321 }
322
323 static int ll_link (struct dentry * old_dentry, struct inode * dir,
324         struct dentry *dentry)
325 {
326         int err;
327         struct inode *inode = old_dentry->d_inode;
328
329         if (S_ISDIR(inode->i_mode))
330                 return -EPERM;
331
332         if (inode->i_nlink >= EXT2_LINK_MAX)
333                 return -EMLINK;
334
335         err = ll_mdc_link(old_dentry, dir, 
336                           dentry->d_name.name, dentry->d_name.len);
337         if (err) { 
338                 EXIT;
339                 return err;
340         }
341
342         inode->i_ctime = CURRENT_TIME;
343         ext2_inc_count(inode);
344         atomic_inc(&inode->i_count);
345
346         return ext2_add_nondir(dentry, inode);
347 }
348
349
350 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
351 {
352         struct inode * inode;
353         int err = -EMLINK;
354         ENTRY;
355
356         if (dir->i_nlink >= EXT2_LINK_MAX)
357                 goto out;
358
359         ext2_inc_count(dir);
360
361         inode = ll_create_node (dir, dentry->d_name.name, 
362                                 dentry->d_name.len, NULL, 0, 
363                                 S_IFDIR | mode, 0);
364         err = PTR_ERR(inode);
365         if (IS_ERR(inode))
366                 goto out_dir;
367
368         inode->i_op = &ll_dir_inode_operations;
369         inode->i_fop = &ll_dir_operations;
370         inode->i_mapping->a_ops = &ll_aops;
371         inode->i_nlink = 1;
372         ext2_inc_count(inode);
373
374         err = ext2_make_empty(inode, dir);
375         if (err)
376                 goto out_fail;
377
378         err = ll_add_link(dentry, inode);
379         if (err)
380                 goto out_fail;
381
382         d_instantiate(dentry, inode);
383 out:
384         EXIT;
385         return err;
386
387 out_fail:
388         ext2_dec_count(inode);
389         ext2_dec_count(inode);
390         iput(inode);
391         EXIT;
392 out_dir:
393         ext2_dec_count(dir);
394         EXIT;
395         goto out;
396 }
397
398 static int ll_unlink(struct inode * dir, struct dentry *dentry)
399 {
400         struct inode * inode = dentry->d_inode;
401         struct ext2_dir_entry_2 * de;
402         struct page * page;
403         int err = -ENOENT;
404
405         de = ext2_find_entry (dir, dentry, &page);
406         if (!de)
407                 goto out;
408         
409         err = ll_mdc_unlink(dir, dentry->d_inode,
410                             dentry->d_name.name, dentry->d_name.len);
411         if (err) 
412                 goto out;
413
414         err = ext2_delete_entry (de, page);
415         if (err)
416                 goto out;
417
418         inode->i_ctime = dir->i_ctime;
419         ext2_dec_count(inode);
420         err = 0;
421 out:
422         return err;
423 }
424
425 static int ll_rmdir(struct inode * dir, struct dentry *dentry)
426 {
427         struct inode * inode = dentry->d_inode;
428         int err = -ENOTEMPTY;
429
430         if (ext2_empty_dir(inode)) {
431                 err = ll_unlink(dir, dentry);
432                 if (!err) {
433                         inode->i_size = 0;
434                         ext2_dec_count(inode);
435                         ext2_dec_count(dir);
436                 }
437         }
438         return err;
439 }
440
441 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
442         struct inode * new_dir, struct dentry * new_dentry )
443 {
444         struct inode * old_inode = old_dentry->d_inode;
445         struct inode * new_inode = new_dentry->d_inode;
446         struct page * dir_page = NULL;
447         struct ext2_dir_entry_2 * dir_de = NULL;
448         struct page * old_page;
449         struct ext2_dir_entry_2 * old_de;
450         int err = -ENOENT;
451
452         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
453         if (err) 
454                 goto out;
455
456         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
457         if (!old_de)
458                 goto out;
459
460         if (S_ISDIR(old_inode->i_mode)) {
461                 err = -EIO;
462                 dir_de = ext2_dotdot(old_inode, &dir_page);
463                 if (!dir_de)
464                         goto out_old;
465         }
466
467         if (new_inode) {
468                 struct page *new_page;
469                 struct ext2_dir_entry_2 *new_de;
470
471                 err = -ENOTEMPTY;
472                 if (dir_de && !ext2_empty_dir (new_inode))
473                         goto out_dir;
474
475                 err = -ENOENT;
476                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
477                 if (!new_de)
478                         goto out_dir;
479                 ext2_inc_count(old_inode);
480                 ext2_set_link(new_dir, new_de, new_page, old_inode);
481                 new_inode->i_ctime = CURRENT_TIME;
482                 if (dir_de)
483                         new_inode->i_nlink--;
484                 ext2_dec_count(new_inode);
485         } else {
486                 if (dir_de) {
487                         err = -EMLINK;
488                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
489                                 goto out_dir;
490                 }
491                 ext2_inc_count(old_inode);
492                 err = ll_add_link(new_dentry, old_inode);
493                 if (err) {
494                         ext2_dec_count(old_inode);
495                         goto out_dir;
496                 }
497                 if (dir_de)
498                         ext2_inc_count(new_dir);
499         }
500
501         ext2_delete_entry (old_de, old_page);
502         ext2_dec_count(old_inode);
503
504         if (dir_de) {
505                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
506                 ext2_dec_count(old_dir);
507         }
508         return 0;
509
510
511 out_dir:
512         if (dir_de) {
513                 kunmap(dir_page);
514                 page_cache_release(dir_page);
515         }
516 out_old:
517         kunmap(old_page);
518         page_cache_release(old_page);
519 out:
520         return err;
521 }
522
523 struct inode_operations ll_dir_inode_operations = {
524         create:         ll_create,
525         lookup:         ll_lookup,
526         link:           ll_link,
527         unlink:         ll_unlink,
528         symlink:        ll_symlink,
529         mkdir:          ll_mkdir,
530         rmdir:          ll_rmdir,
531         mknod:          ll_mknod,
532         rename:         ll_rename,
533         setattr:        ll_setattr
534 };