Linux 4.19.133
[linux/fpc-iii.git] / fs / jfs / namei.c
blob14528c0ffe635a30cb1a3efb403e4f2a429d5034
1 /*
2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/fs.h>
21 #include <linux/namei.h>
22 #include <linux/ctype.h>
23 #include <linux/quotaops.h>
24 #include <linux/exportfs.h>
25 #include "jfs_incore.h"
26 #include "jfs_superblock.h"
27 #include "jfs_inode.h"
28 #include "jfs_dinode.h"
29 #include "jfs_dmap.h"
30 #include "jfs_unicode.h"
31 #include "jfs_metapage.h"
32 #include "jfs_xattr.h"
33 #include "jfs_acl.h"
34 #include "jfs_debug.h"
37 * forward references
39 const struct dentry_operations jfs_ci_dentry_operations;
41 static s64 commitZeroLink(tid_t, struct inode *);
44 * NAME: free_ea_wmap(inode)
46 * FUNCTION: free uncommitted extended attributes from working map
49 static inline void free_ea_wmap(struct inode *inode)
51 dxd_t *ea = &JFS_IP(inode)->ea;
53 if (ea->flag & DXD_EXTENT) {
54 /* free EA pages from cache */
55 invalidate_dxd_metapages(inode, *ea);
56 dbFree(inode, addressDXD(ea), lengthDXD(ea));
58 ea->flag = 0;
62 * NAME: jfs_create(dip, dentry, mode)
64 * FUNCTION: create a regular file in the parent directory <dip>
65 * with name = <from dentry> and mode = <mode>
67 * PARAMETER: dip - parent directory vnode
68 * dentry - dentry of new file
69 * mode - create mode (rwxrwxrwx).
70 * nd- nd struct
72 * RETURN: Errors from subroutines
75 static int jfs_create(struct inode *dip, struct dentry *dentry, umode_t mode,
76 bool excl)
78 int rc = 0;
79 tid_t tid; /* transaction id */
80 struct inode *ip = NULL; /* child directory inode */
81 ino_t ino;
82 struct component_name dname; /* child directory name */
83 struct btstack btstack;
84 struct inode *iplist[2];
85 struct tblock *tblk;
87 jfs_info("jfs_create: dip:0x%p name:%pd", dip, dentry);
89 rc = dquot_initialize(dip);
90 if (rc)
91 goto out1;
94 * search parent directory for entry/freespace
95 * (dtSearch() returns parent directory page pinned)
97 if ((rc = get_UCSname(&dname, dentry)))
98 goto out1;
101 * Either iAlloc() or txBegin() may block. Deadlock can occur if we
102 * block there while holding dtree page, so we allocate the inode &
103 * begin the transaction before we search the directory.
105 ip = ialloc(dip, mode);
106 if (IS_ERR(ip)) {
107 rc = PTR_ERR(ip);
108 goto out2;
111 tid = txBegin(dip->i_sb, 0);
113 mutex_lock_nested(&JFS_IP(dip)->commit_mutex, COMMIT_MUTEX_PARENT);
114 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
116 rc = jfs_init_acl(tid, ip, dip);
117 if (rc)
118 goto out3;
120 rc = jfs_init_security(tid, ip, dip, &dentry->d_name);
121 if (rc) {
122 txAbort(tid, 0);
123 goto out3;
126 if ((rc = dtSearch(dip, &dname, &ino, &btstack, JFS_CREATE))) {
127 jfs_err("jfs_create: dtSearch returned %d", rc);
128 txAbort(tid, 0);
129 goto out3;
132 tblk = tid_to_tblock(tid);
133 tblk->xflag |= COMMIT_CREATE;
134 tblk->ino = ip->i_ino;
135 tblk->u.ixpxd = JFS_IP(ip)->ixpxd;
137 iplist[0] = dip;
138 iplist[1] = ip;
141 * initialize the child XAD tree root in-line in inode
143 xtInitRoot(tid, ip);
146 * create entry in parent directory for child directory
147 * (dtInsert() releases parent directory page)
149 ino = ip->i_ino;
150 if ((rc = dtInsert(tid, dip, &dname, &ino, &btstack))) {
151 if (rc == -EIO) {
152 jfs_err("jfs_create: dtInsert returned -EIO");
153 txAbort(tid, 1); /* Marks Filesystem dirty */
154 } else
155 txAbort(tid, 0); /* Filesystem full */
156 goto out3;
159 ip->i_op = &jfs_file_inode_operations;
160 ip->i_fop = &jfs_file_operations;
161 ip->i_mapping->a_ops = &jfs_aops;
163 mark_inode_dirty(ip);
165 dip->i_ctime = dip->i_mtime = current_time(dip);
167 mark_inode_dirty(dip);
169 rc = txCommit(tid, 2, &iplist[0], 0);
171 out3:
172 txEnd(tid);
173 mutex_unlock(&JFS_IP(ip)->commit_mutex);
174 mutex_unlock(&JFS_IP(dip)->commit_mutex);
175 if (rc) {
176 free_ea_wmap(ip);
177 clear_nlink(ip);
178 discard_new_inode(ip);
179 } else {
180 d_instantiate_new(dentry, ip);
183 out2:
184 free_UCSname(&dname);
186 out1:
188 jfs_info("jfs_create: rc:%d", rc);
189 return rc;
194 * NAME: jfs_mkdir(dip, dentry, mode)
196 * FUNCTION: create a child directory in the parent directory <dip>
197 * with name = <from dentry> and mode = <mode>
199 * PARAMETER: dip - parent directory vnode
200 * dentry - dentry of child directory
201 * mode - create mode (rwxrwxrwx).
203 * RETURN: Errors from subroutines
205 * note:
206 * EACCESS: user needs search+write permission on the parent directory
208 static int jfs_mkdir(struct inode *dip, struct dentry *dentry, umode_t mode)
210 int rc = 0;
211 tid_t tid; /* transaction id */
212 struct inode *ip = NULL; /* child directory inode */
213 ino_t ino;
214 struct component_name dname; /* child directory name */
215 struct btstack btstack;
216 struct inode *iplist[2];
217 struct tblock *tblk;
219 jfs_info("jfs_mkdir: dip:0x%p name:%pd", dip, dentry);
221 rc = dquot_initialize(dip);
222 if (rc)
223 goto out1;
226 * search parent directory for entry/freespace
227 * (dtSearch() returns parent directory page pinned)
229 if ((rc = get_UCSname(&dname, dentry)))
230 goto out1;
233 * Either iAlloc() or txBegin() may block. Deadlock can occur if we
234 * block there while holding dtree page, so we allocate the inode &
235 * begin the transaction before we search the directory.
237 ip = ialloc(dip, S_IFDIR | mode);
238 if (IS_ERR(ip)) {
239 rc = PTR_ERR(ip);
240 goto out2;
243 tid = txBegin(dip->i_sb, 0);
245 mutex_lock_nested(&JFS_IP(dip)->commit_mutex, COMMIT_MUTEX_PARENT);
246 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
248 rc = jfs_init_acl(tid, ip, dip);
249 if (rc)
250 goto out3;
252 rc = jfs_init_security(tid, ip, dip, &dentry->d_name);
253 if (rc) {
254 txAbort(tid, 0);
255 goto out3;
258 if ((rc = dtSearch(dip, &dname, &ino, &btstack, JFS_CREATE))) {
259 jfs_err("jfs_mkdir: dtSearch returned %d", rc);
260 txAbort(tid, 0);
261 goto out3;
264 tblk = tid_to_tblock(tid);
265 tblk->xflag |= COMMIT_CREATE;
266 tblk->ino = ip->i_ino;
267 tblk->u.ixpxd = JFS_IP(ip)->ixpxd;
269 iplist[0] = dip;
270 iplist[1] = ip;
273 * initialize the child directory in-line in inode
275 dtInitRoot(tid, ip, dip->i_ino);
278 * create entry in parent directory for child directory
279 * (dtInsert() releases parent directory page)
281 ino = ip->i_ino;
282 if ((rc = dtInsert(tid, dip, &dname, &ino, &btstack))) {
283 if (rc == -EIO) {
284 jfs_err("jfs_mkdir: dtInsert returned -EIO");
285 txAbort(tid, 1); /* Marks Filesystem dirty */
286 } else
287 txAbort(tid, 0); /* Filesystem full */
288 goto out3;
291 set_nlink(ip, 2); /* for '.' */
292 ip->i_op = &jfs_dir_inode_operations;
293 ip->i_fop = &jfs_dir_operations;
295 mark_inode_dirty(ip);
297 /* update parent directory inode */
298 inc_nlink(dip); /* for '..' from child directory */
299 dip->i_ctime = dip->i_mtime = current_time(dip);
300 mark_inode_dirty(dip);
302 rc = txCommit(tid, 2, &iplist[0], 0);
304 out3:
305 txEnd(tid);
306 mutex_unlock(&JFS_IP(ip)->commit_mutex);
307 mutex_unlock(&JFS_IP(dip)->commit_mutex);
308 if (rc) {
309 free_ea_wmap(ip);
310 clear_nlink(ip);
311 discard_new_inode(ip);
312 } else {
313 d_instantiate_new(dentry, ip);
316 out2:
317 free_UCSname(&dname);
320 out1:
322 jfs_info("jfs_mkdir: rc:%d", rc);
323 return rc;
327 * NAME: jfs_rmdir(dip, dentry)
329 * FUNCTION: remove a link to child directory
331 * PARAMETER: dip - parent inode
332 * dentry - child directory dentry
334 * RETURN: -EINVAL - if name is . or ..
335 * -EINVAL - if . or .. exist but are invalid.
336 * errors from subroutines
338 * note:
339 * if other threads have the directory open when the last link
340 * is removed, the "." and ".." entries, if present, are removed before
341 * rmdir() returns and no new entries may be created in the directory,
342 * but the directory is not removed until the last reference to
343 * the directory is released (cf.unlink() of regular file).
345 static int jfs_rmdir(struct inode *dip, struct dentry *dentry)
347 int rc;
348 tid_t tid; /* transaction id */
349 struct inode *ip = d_inode(dentry);
350 ino_t ino;
351 struct component_name dname;
352 struct inode *iplist[2];
353 struct tblock *tblk;
355 jfs_info("jfs_rmdir: dip:0x%p name:%pd", dip, dentry);
357 /* Init inode for quota operations. */
358 rc = dquot_initialize(dip);
359 if (rc)
360 goto out;
361 rc = dquot_initialize(ip);
362 if (rc)
363 goto out;
365 /* directory must be empty to be removed */
366 if (!dtEmpty(ip)) {
367 rc = -ENOTEMPTY;
368 goto out;
371 if ((rc = get_UCSname(&dname, dentry))) {
372 goto out;
375 tid = txBegin(dip->i_sb, 0);
377 mutex_lock_nested(&JFS_IP(dip)->commit_mutex, COMMIT_MUTEX_PARENT);
378 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
380 iplist[0] = dip;
381 iplist[1] = ip;
383 tblk = tid_to_tblock(tid);
384 tblk->xflag |= COMMIT_DELETE;
385 tblk->u.ip = ip;
388 * delete the entry of target directory from parent directory
390 ino = ip->i_ino;
391 if ((rc = dtDelete(tid, dip, &dname, &ino, JFS_REMOVE))) {
392 jfs_err("jfs_rmdir: dtDelete returned %d", rc);
393 if (rc == -EIO)
394 txAbort(tid, 1);
395 txEnd(tid);
396 mutex_unlock(&JFS_IP(ip)->commit_mutex);
397 mutex_unlock(&JFS_IP(dip)->commit_mutex);
399 goto out2;
402 /* update parent directory's link count corresponding
403 * to ".." entry of the target directory deleted
405 dip->i_ctime = dip->i_mtime = current_time(dip);
406 inode_dec_link_count(dip);
409 * OS/2 could have created EA and/or ACL
411 /* free EA from both persistent and working map */
412 if (JFS_IP(ip)->ea.flag & DXD_EXTENT) {
413 /* free EA pages */
414 txEA(tid, ip, &JFS_IP(ip)->ea, NULL);
416 JFS_IP(ip)->ea.flag = 0;
418 /* free ACL from both persistent and working map */
419 if (JFS_IP(ip)->acl.flag & DXD_EXTENT) {
420 /* free ACL pages */
421 txEA(tid, ip, &JFS_IP(ip)->acl, NULL);
423 JFS_IP(ip)->acl.flag = 0;
425 /* mark the target directory as deleted */
426 clear_nlink(ip);
427 mark_inode_dirty(ip);
429 rc = txCommit(tid, 2, &iplist[0], 0);
431 txEnd(tid);
433 mutex_unlock(&JFS_IP(ip)->commit_mutex);
434 mutex_unlock(&JFS_IP(dip)->commit_mutex);
437 * Truncating the directory index table is not guaranteed. It
438 * may need to be done iteratively
440 if (test_cflag(COMMIT_Stale, dip)) {
441 if (dip->i_size > 1)
442 jfs_truncate_nolock(dip, 0);
444 clear_cflag(COMMIT_Stale, dip);
447 out2:
448 free_UCSname(&dname);
450 out:
451 jfs_info("jfs_rmdir: rc:%d", rc);
452 return rc;
456 * NAME: jfs_unlink(dip, dentry)
458 * FUNCTION: remove a link to object <vp> named by <name>
459 * from parent directory <dvp>
461 * PARAMETER: dip - inode of parent directory
462 * dentry - dentry of object to be removed
464 * RETURN: errors from subroutines
466 * note:
467 * temporary file: if one or more processes have the file open
468 * when the last link is removed, the link will be removed before
469 * unlink() returns, but the removal of the file contents will be
470 * postponed until all references to the files are closed.
472 * JFS does NOT support unlink() on directories.
475 static int jfs_unlink(struct inode *dip, struct dentry *dentry)
477 int rc;
478 tid_t tid; /* transaction id */
479 struct inode *ip = d_inode(dentry);
480 ino_t ino;
481 struct component_name dname; /* object name */
482 struct inode *iplist[2];
483 struct tblock *tblk;
484 s64 new_size = 0;
485 int commit_flag;
487 jfs_info("jfs_unlink: dip:0x%p name:%pd", dip, dentry);
489 /* Init inode for quota operations. */
490 rc = dquot_initialize(dip);
491 if (rc)
492 goto out;
493 rc = dquot_initialize(ip);
494 if (rc)
495 goto out;
497 if ((rc = get_UCSname(&dname, dentry)))
498 goto out;
500 IWRITE_LOCK(ip, RDWRLOCK_NORMAL);
502 tid = txBegin(dip->i_sb, 0);
504 mutex_lock_nested(&JFS_IP(dip)->commit_mutex, COMMIT_MUTEX_PARENT);
505 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
507 iplist[0] = dip;
508 iplist[1] = ip;
511 * delete the entry of target file from parent directory
513 ino = ip->i_ino;
514 if ((rc = dtDelete(tid, dip, &dname, &ino, JFS_REMOVE))) {
515 jfs_err("jfs_unlink: dtDelete returned %d", rc);
516 if (rc == -EIO)
517 txAbort(tid, 1); /* Marks FS Dirty */
518 txEnd(tid);
519 mutex_unlock(&JFS_IP(ip)->commit_mutex);
520 mutex_unlock(&JFS_IP(dip)->commit_mutex);
521 IWRITE_UNLOCK(ip);
522 goto out1;
525 ASSERT(ip->i_nlink);
527 ip->i_ctime = dip->i_ctime = dip->i_mtime = current_time(ip);
528 mark_inode_dirty(dip);
530 /* update target's inode */
531 inode_dec_link_count(ip);
534 * commit zero link count object
536 if (ip->i_nlink == 0) {
537 assert(!test_cflag(COMMIT_Nolink, ip));
538 /* free block resources */
539 if ((new_size = commitZeroLink(tid, ip)) < 0) {
540 txAbort(tid, 1); /* Marks FS Dirty */
541 txEnd(tid);
542 mutex_unlock(&JFS_IP(ip)->commit_mutex);
543 mutex_unlock(&JFS_IP(dip)->commit_mutex);
544 IWRITE_UNLOCK(ip);
545 rc = new_size;
546 goto out1;
548 tblk = tid_to_tblock(tid);
549 tblk->xflag |= COMMIT_DELETE;
550 tblk->u.ip = ip;
554 * Incomplete truncate of file data can
555 * result in timing problems unless we synchronously commit the
556 * transaction.
558 if (new_size)
559 commit_flag = COMMIT_SYNC;
560 else
561 commit_flag = 0;
564 * If xtTruncate was incomplete, commit synchronously to avoid
565 * timing complications
567 rc = txCommit(tid, 2, &iplist[0], commit_flag);
569 txEnd(tid);
571 mutex_unlock(&JFS_IP(ip)->commit_mutex);
572 mutex_unlock(&JFS_IP(dip)->commit_mutex);
574 while (new_size && (rc == 0)) {
575 tid = txBegin(dip->i_sb, 0);
576 mutex_lock(&JFS_IP(ip)->commit_mutex);
577 new_size = xtTruncate_pmap(tid, ip, new_size);
578 if (new_size < 0) {
579 txAbort(tid, 1); /* Marks FS Dirty */
580 rc = new_size;
581 } else
582 rc = txCommit(tid, 2, &iplist[0], COMMIT_SYNC);
583 txEnd(tid);
584 mutex_unlock(&JFS_IP(ip)->commit_mutex);
587 if (ip->i_nlink == 0)
588 set_cflag(COMMIT_Nolink, ip);
590 IWRITE_UNLOCK(ip);
593 * Truncating the directory index table is not guaranteed. It
594 * may need to be done iteratively
596 if (test_cflag(COMMIT_Stale, dip)) {
597 if (dip->i_size > 1)
598 jfs_truncate_nolock(dip, 0);
600 clear_cflag(COMMIT_Stale, dip);
603 out1:
604 free_UCSname(&dname);
605 out:
606 jfs_info("jfs_unlink: rc:%d", rc);
607 return rc;
611 * NAME: commitZeroLink()
613 * FUNCTION: for non-directory, called by jfs_remove(),
614 * truncate a regular file, directory or symbolic
615 * link to zero length. return 0 if type is not
616 * one of these.
618 * if the file is currently associated with a VM segment
619 * only permanent disk and inode map resources are freed,
620 * and neither the inode nor indirect blocks are modified
621 * so that the resources can be later freed in the work
622 * map by ctrunc1.
623 * if there is no VM segment on entry, the resources are
624 * freed in both work and permanent map.
625 * (? for temporary file - memory object is cached even
626 * after no reference:
627 * reference count > 0 - )
629 * PARAMETERS: cd - pointer to commit data structure.
630 * current inode is the one to truncate.
632 * RETURN: Errors from subroutines
634 static s64 commitZeroLink(tid_t tid, struct inode *ip)
636 int filetype;
637 struct tblock *tblk;
639 jfs_info("commitZeroLink: tid = %d, ip = 0x%p", tid, ip);
641 filetype = ip->i_mode & S_IFMT;
642 switch (filetype) {
643 case S_IFREG:
644 break;
645 case S_IFLNK:
646 /* fast symbolic link */
647 if (ip->i_size < IDATASIZE) {
648 ip->i_size = 0;
649 return 0;
651 break;
652 default:
653 assert(filetype != S_IFDIR);
654 return 0;
657 set_cflag(COMMIT_Freewmap, ip);
659 /* mark transaction of block map update type */
660 tblk = tid_to_tblock(tid);
661 tblk->xflag |= COMMIT_PMAP;
664 * free EA
666 if (JFS_IP(ip)->ea.flag & DXD_EXTENT)
667 /* acquire maplock on EA to be freed from block map */
668 txEA(tid, ip, &JFS_IP(ip)->ea, NULL);
671 * free ACL
673 if (JFS_IP(ip)->acl.flag & DXD_EXTENT)
674 /* acquire maplock on EA to be freed from block map */
675 txEA(tid, ip, &JFS_IP(ip)->acl, NULL);
678 * free xtree/data (truncate to zero length):
679 * free xtree/data pages from cache if COMMIT_PWMAP,
680 * free xtree/data blocks from persistent block map, and
681 * free xtree/data blocks from working block map if COMMIT_PWMAP;
683 if (ip->i_size)
684 return xtTruncate_pmap(tid, ip, 0);
686 return 0;
691 * NAME: jfs_free_zero_link()
693 * FUNCTION: for non-directory, called by iClose(),
694 * free resources of a file from cache and WORKING map
695 * for a file previously committed with zero link count
696 * while associated with a pager object,
698 * PARAMETER: ip - pointer to inode of file.
700 void jfs_free_zero_link(struct inode *ip)
702 int type;
704 jfs_info("jfs_free_zero_link: ip = 0x%p", ip);
706 /* return if not reg or symbolic link or if size is
707 * already ok.
709 type = ip->i_mode & S_IFMT;
711 switch (type) {
712 case S_IFREG:
713 break;
714 case S_IFLNK:
715 /* if its contained in inode nothing to do */
716 if (ip->i_size < IDATASIZE)
717 return;
718 break;
719 default:
720 return;
724 * free EA
726 if (JFS_IP(ip)->ea.flag & DXD_EXTENT) {
727 s64 xaddr = addressDXD(&JFS_IP(ip)->ea);
728 int xlen = lengthDXD(&JFS_IP(ip)->ea);
729 struct maplock maplock; /* maplock for COMMIT_WMAP */
730 struct pxd_lock *pxdlock; /* maplock for COMMIT_WMAP */
732 /* free EA pages from cache */
733 invalidate_dxd_metapages(ip, JFS_IP(ip)->ea);
735 /* free EA extent from working block map */
736 maplock.index = 1;
737 pxdlock = (struct pxd_lock *) & maplock;
738 pxdlock->flag = mlckFREEPXD;
739 PXDaddress(&pxdlock->pxd, xaddr);
740 PXDlength(&pxdlock->pxd, xlen);
741 txFreeMap(ip, pxdlock, NULL, COMMIT_WMAP);
745 * free ACL
747 if (JFS_IP(ip)->acl.flag & DXD_EXTENT) {
748 s64 xaddr = addressDXD(&JFS_IP(ip)->acl);
749 int xlen = lengthDXD(&JFS_IP(ip)->acl);
750 struct maplock maplock; /* maplock for COMMIT_WMAP */
751 struct pxd_lock *pxdlock; /* maplock for COMMIT_WMAP */
753 invalidate_dxd_metapages(ip, JFS_IP(ip)->acl);
755 /* free ACL extent from working block map */
756 maplock.index = 1;
757 pxdlock = (struct pxd_lock *) & maplock;
758 pxdlock->flag = mlckFREEPXD;
759 PXDaddress(&pxdlock->pxd, xaddr);
760 PXDlength(&pxdlock->pxd, xlen);
761 txFreeMap(ip, pxdlock, NULL, COMMIT_WMAP);
765 * free xtree/data (truncate to zero length):
766 * free xtree/data pages from cache, and
767 * free xtree/data blocks from working block map;
769 if (ip->i_size)
770 xtTruncate(0, ip, 0, COMMIT_WMAP);
774 * NAME: jfs_link(vp, dvp, name, crp)
776 * FUNCTION: create a link to <vp> by the name = <name>
777 * in the parent directory <dvp>
779 * PARAMETER: vp - target object
780 * dvp - parent directory of new link
781 * name - name of new link to target object
782 * crp - credential
784 * RETURN: Errors from subroutines
786 * note:
787 * JFS does NOT support link() on directories (to prevent circular
788 * path in the directory hierarchy);
789 * EPERM: the target object is a directory, and either the caller
790 * does not have appropriate privileges or the implementation prohibits
791 * using link() on directories [XPG4.2].
793 * JFS does NOT support links between file systems:
794 * EXDEV: target object and new link are on different file systems and
795 * implementation does not support links between file systems [XPG4.2].
797 static int jfs_link(struct dentry *old_dentry,
798 struct inode *dir, struct dentry *dentry)
800 int rc;
801 tid_t tid;
802 struct inode *ip = d_inode(old_dentry);
803 ino_t ino;
804 struct component_name dname;
805 struct btstack btstack;
806 struct inode *iplist[2];
808 jfs_info("jfs_link: %pd %pd", old_dentry, dentry);
810 rc = dquot_initialize(dir);
811 if (rc)
812 goto out;
814 tid = txBegin(ip->i_sb, 0);
816 mutex_lock_nested(&JFS_IP(dir)->commit_mutex, COMMIT_MUTEX_PARENT);
817 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
820 * scan parent directory for entry/freespace
822 if ((rc = get_UCSname(&dname, dentry)))
823 goto out_tx;
825 if ((rc = dtSearch(dir, &dname, &ino, &btstack, JFS_CREATE)))
826 goto free_dname;
829 * create entry for new link in parent directory
831 ino = ip->i_ino;
832 if ((rc = dtInsert(tid, dir, &dname, &ino, &btstack)))
833 goto free_dname;
835 /* update object inode */
836 inc_nlink(ip); /* for new link */
837 ip->i_ctime = current_time(ip);
838 dir->i_ctime = dir->i_mtime = current_time(dir);
839 mark_inode_dirty(dir);
840 ihold(ip);
842 iplist[0] = ip;
843 iplist[1] = dir;
844 rc = txCommit(tid, 2, &iplist[0], 0);
846 if (rc) {
847 drop_nlink(ip); /* never instantiated */
848 iput(ip);
849 } else
850 d_instantiate(dentry, ip);
852 free_dname:
853 free_UCSname(&dname);
855 out_tx:
856 txEnd(tid);
858 mutex_unlock(&JFS_IP(ip)->commit_mutex);
859 mutex_unlock(&JFS_IP(dir)->commit_mutex);
861 out:
862 jfs_info("jfs_link: rc:%d", rc);
863 return rc;
867 * NAME: jfs_symlink(dip, dentry, name)
869 * FUNCTION: creates a symbolic link to <symlink> by name <name>
870 * in directory <dip>
872 * PARAMETER: dip - parent directory vnode
873 * dentry - dentry of symbolic link
874 * name - the path name of the existing object
875 * that will be the source of the link
877 * RETURN: errors from subroutines
879 * note:
880 * ENAMETOOLONG: pathname resolution of a symbolic link produced
881 * an intermediate result whose length exceeds PATH_MAX [XPG4.2]
884 static int jfs_symlink(struct inode *dip, struct dentry *dentry,
885 const char *name)
887 int rc;
888 tid_t tid;
889 ino_t ino = 0;
890 struct component_name dname;
891 int ssize; /* source pathname size */
892 struct btstack btstack;
893 struct inode *ip = d_inode(dentry);
894 s64 xlen = 0;
895 int bmask = 0, xsize;
896 s64 xaddr;
897 struct metapage *mp;
898 struct super_block *sb;
899 struct tblock *tblk;
901 struct inode *iplist[2];
903 jfs_info("jfs_symlink: dip:0x%p name:%s", dip, name);
905 rc = dquot_initialize(dip);
906 if (rc)
907 goto out1;
909 ssize = strlen(name) + 1;
912 * search parent directory for entry/freespace
913 * (dtSearch() returns parent directory page pinned)
916 if ((rc = get_UCSname(&dname, dentry)))
917 goto out1;
920 * allocate on-disk/in-memory inode for symbolic link:
921 * (iAlloc() returns new, locked inode)
923 ip = ialloc(dip, S_IFLNK | 0777);
924 if (IS_ERR(ip)) {
925 rc = PTR_ERR(ip);
926 goto out2;
929 tid = txBegin(dip->i_sb, 0);
931 mutex_lock_nested(&JFS_IP(dip)->commit_mutex, COMMIT_MUTEX_PARENT);
932 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
934 rc = jfs_init_security(tid, ip, dip, &dentry->d_name);
935 if (rc)
936 goto out3;
938 tblk = tid_to_tblock(tid);
939 tblk->xflag |= COMMIT_CREATE;
940 tblk->ino = ip->i_ino;
941 tblk->u.ixpxd = JFS_IP(ip)->ixpxd;
943 /* fix symlink access permission
944 * (dir_create() ANDs in the u.u_cmask,
945 * but symlinks really need to be 777 access)
947 ip->i_mode |= 0777;
950 * write symbolic link target path name
952 xtInitRoot(tid, ip);
955 * write source path name inline in on-disk inode (fast symbolic link)
958 if (ssize <= IDATASIZE) {
959 ip->i_op = &jfs_fast_symlink_inode_operations;
961 ip->i_link = JFS_IP(ip)->i_inline;
962 memcpy(ip->i_link, name, ssize);
963 ip->i_size = ssize - 1;
966 * if symlink is > 128 bytes, we don't have the space to
967 * store inline extended attributes
969 if (ssize > sizeof (JFS_IP(ip)->i_inline))
970 JFS_IP(ip)->mode2 &= ~INLINEEA;
972 jfs_info("jfs_symlink: fast symlink added ssize:%d name:%s ",
973 ssize, name);
976 * write source path name in a single extent
978 else {
979 jfs_info("jfs_symlink: allocate extent ip:0x%p", ip);
981 ip->i_op = &jfs_symlink_inode_operations;
982 inode_nohighmem(ip);
983 ip->i_mapping->a_ops = &jfs_aops;
986 * even though the data of symlink object (source
987 * path name) is treated as non-journaled user data,
988 * it is read/written thru buffer cache for performance.
990 sb = ip->i_sb;
991 bmask = JFS_SBI(sb)->bsize - 1;
992 xsize = (ssize + bmask) & ~bmask;
993 xaddr = 0;
994 xlen = xsize >> JFS_SBI(sb)->l2bsize;
995 if ((rc = xtInsert(tid, ip, 0, 0, xlen, &xaddr, 0))) {
996 txAbort(tid, 0);
997 goto out3;
999 ip->i_size = ssize - 1;
1000 while (ssize) {
1001 /* This is kind of silly since PATH_MAX == 4K */
1002 int copy_size = min(ssize, PSIZE);
1004 mp = get_metapage(ip, xaddr, PSIZE, 1);
1006 if (mp == NULL) {
1007 xtTruncate(tid, ip, 0, COMMIT_PWMAP);
1008 rc = -EIO;
1009 txAbort(tid, 0);
1010 goto out3;
1012 memcpy(mp->data, name, copy_size);
1013 flush_metapage(mp);
1014 ssize -= copy_size;
1015 name += copy_size;
1016 xaddr += JFS_SBI(sb)->nbperpage;
1021 * create entry for symbolic link in parent directory
1023 rc = dtSearch(dip, &dname, &ino, &btstack, JFS_CREATE);
1024 if (rc == 0) {
1025 ino = ip->i_ino;
1026 rc = dtInsert(tid, dip, &dname, &ino, &btstack);
1028 if (rc) {
1029 if (xlen)
1030 xtTruncate(tid, ip, 0, COMMIT_PWMAP);
1031 txAbort(tid, 0);
1032 /* discard new inode */
1033 goto out3;
1036 mark_inode_dirty(ip);
1038 dip->i_ctime = dip->i_mtime = current_time(dip);
1039 mark_inode_dirty(dip);
1041 * commit update of parent directory and link object
1044 iplist[0] = dip;
1045 iplist[1] = ip;
1046 rc = txCommit(tid, 2, &iplist[0], 0);
1048 out3:
1049 txEnd(tid);
1050 mutex_unlock(&JFS_IP(ip)->commit_mutex);
1051 mutex_unlock(&JFS_IP(dip)->commit_mutex);
1052 if (rc) {
1053 free_ea_wmap(ip);
1054 clear_nlink(ip);
1055 discard_new_inode(ip);
1056 } else {
1057 d_instantiate_new(dentry, ip);
1060 out2:
1061 free_UCSname(&dname);
1063 out1:
1064 jfs_info("jfs_symlink: rc:%d", rc);
1065 return rc;
1070 * NAME: jfs_rename
1072 * FUNCTION: rename a file or directory
1074 static int jfs_rename(struct inode *old_dir, struct dentry *old_dentry,
1075 struct inode *new_dir, struct dentry *new_dentry,
1076 unsigned int flags)
1078 struct btstack btstack;
1079 ino_t ino;
1080 struct component_name new_dname;
1081 struct inode *new_ip;
1082 struct component_name old_dname;
1083 struct inode *old_ip;
1084 int rc;
1085 tid_t tid;
1086 struct tlock *tlck;
1087 struct dt_lock *dtlck;
1088 struct lv *lv;
1089 int ipcount;
1090 struct inode *iplist[4];
1091 struct tblock *tblk;
1092 s64 new_size = 0;
1093 int commit_flag;
1095 if (flags & ~RENAME_NOREPLACE)
1096 return -EINVAL;
1098 jfs_info("jfs_rename: %pd %pd", old_dentry, new_dentry);
1100 rc = dquot_initialize(old_dir);
1101 if (rc)
1102 goto out1;
1103 rc = dquot_initialize(new_dir);
1104 if (rc)
1105 goto out1;
1107 old_ip = d_inode(old_dentry);
1108 new_ip = d_inode(new_dentry);
1110 if ((rc = get_UCSname(&old_dname, old_dentry)))
1111 goto out1;
1113 if ((rc = get_UCSname(&new_dname, new_dentry)))
1114 goto out2;
1117 * Make sure source inode number is what we think it is
1119 rc = dtSearch(old_dir, &old_dname, &ino, &btstack, JFS_LOOKUP);
1120 if (rc || (ino != old_ip->i_ino)) {
1121 rc = -ENOENT;
1122 goto out3;
1126 * Make sure dest inode number (if any) is what we think it is
1128 rc = dtSearch(new_dir, &new_dname, &ino, &btstack, JFS_LOOKUP);
1129 if (!rc) {
1130 if ((!new_ip) || (ino != new_ip->i_ino)) {
1131 rc = -ESTALE;
1132 goto out3;
1134 } else if (rc != -ENOENT)
1135 goto out3;
1136 else if (new_ip) {
1137 /* no entry exists, but one was expected */
1138 rc = -ESTALE;
1139 goto out3;
1142 if (S_ISDIR(old_ip->i_mode)) {
1143 if (new_ip) {
1144 if (!dtEmpty(new_ip)) {
1145 rc = -ENOTEMPTY;
1146 goto out3;
1149 } else if (new_ip) {
1150 IWRITE_LOCK(new_ip, RDWRLOCK_NORMAL);
1151 /* Init inode for quota operations. */
1152 rc = dquot_initialize(new_ip);
1153 if (rc)
1154 goto out_unlock;
1158 * The real work starts here
1160 tid = txBegin(new_dir->i_sb, 0);
1163 * How do we know the locking is safe from deadlocks?
1164 * The vfs does the hard part for us. Any time we are taking nested
1165 * commit_mutexes, the vfs already has i_mutex held on the parent.
1166 * Here, the vfs has already taken i_mutex on both old_dir and new_dir.
1168 mutex_lock_nested(&JFS_IP(new_dir)->commit_mutex, COMMIT_MUTEX_PARENT);
1169 mutex_lock_nested(&JFS_IP(old_ip)->commit_mutex, COMMIT_MUTEX_CHILD);
1170 if (old_dir != new_dir)
1171 mutex_lock_nested(&JFS_IP(old_dir)->commit_mutex,
1172 COMMIT_MUTEX_SECOND_PARENT);
1174 if (new_ip) {
1175 mutex_lock_nested(&JFS_IP(new_ip)->commit_mutex,
1176 COMMIT_MUTEX_VICTIM);
1178 * Change existing directory entry to new inode number
1180 ino = new_ip->i_ino;
1181 rc = dtModify(tid, new_dir, &new_dname, &ino,
1182 old_ip->i_ino, JFS_RENAME);
1183 if (rc)
1184 goto out_tx;
1185 drop_nlink(new_ip);
1186 if (S_ISDIR(new_ip->i_mode)) {
1187 drop_nlink(new_ip);
1188 if (new_ip->i_nlink) {
1189 mutex_unlock(&JFS_IP(new_ip)->commit_mutex);
1190 if (old_dir != new_dir)
1191 mutex_unlock(&JFS_IP(old_dir)->commit_mutex);
1192 mutex_unlock(&JFS_IP(old_ip)->commit_mutex);
1193 mutex_unlock(&JFS_IP(new_dir)->commit_mutex);
1194 if (!S_ISDIR(old_ip->i_mode) && new_ip)
1195 IWRITE_UNLOCK(new_ip);
1196 jfs_error(new_ip->i_sb,
1197 "new_ip->i_nlink != 0\n");
1198 return -EIO;
1200 tblk = tid_to_tblock(tid);
1201 tblk->xflag |= COMMIT_DELETE;
1202 tblk->u.ip = new_ip;
1203 } else if (new_ip->i_nlink == 0) {
1204 assert(!test_cflag(COMMIT_Nolink, new_ip));
1205 /* free block resources */
1206 if ((new_size = commitZeroLink(tid, new_ip)) < 0) {
1207 txAbort(tid, 1); /* Marks FS Dirty */
1208 rc = new_size;
1209 goto out_tx;
1211 tblk = tid_to_tblock(tid);
1212 tblk->xflag |= COMMIT_DELETE;
1213 tblk->u.ip = new_ip;
1214 } else {
1215 new_ip->i_ctime = current_time(new_ip);
1216 mark_inode_dirty(new_ip);
1218 } else {
1220 * Add new directory entry
1222 rc = dtSearch(new_dir, &new_dname, &ino, &btstack,
1223 JFS_CREATE);
1224 if (rc) {
1225 jfs_err("jfs_rename didn't expect dtSearch to fail w/rc = %d",
1226 rc);
1227 goto out_tx;
1230 ino = old_ip->i_ino;
1231 rc = dtInsert(tid, new_dir, &new_dname, &ino, &btstack);
1232 if (rc) {
1233 if (rc == -EIO)
1234 jfs_err("jfs_rename: dtInsert returned -EIO");
1235 goto out_tx;
1237 if (S_ISDIR(old_ip->i_mode))
1238 inc_nlink(new_dir);
1241 * Remove old directory entry
1244 ino = old_ip->i_ino;
1245 rc = dtDelete(tid, old_dir, &old_dname, &ino, JFS_REMOVE);
1246 if (rc) {
1247 jfs_err("jfs_rename did not expect dtDelete to return rc = %d",
1248 rc);
1249 txAbort(tid, 1); /* Marks Filesystem dirty */
1250 goto out_tx;
1252 if (S_ISDIR(old_ip->i_mode)) {
1253 drop_nlink(old_dir);
1254 if (old_dir != new_dir) {
1256 * Change inode number of parent for moved directory
1259 JFS_IP(old_ip)->i_dtroot.header.idotdot =
1260 cpu_to_le32(new_dir->i_ino);
1262 /* Linelock header of dtree */
1263 tlck = txLock(tid, old_ip,
1264 (struct metapage *) &JFS_IP(old_ip)->bxflag,
1265 tlckDTREE | tlckBTROOT | tlckRELINK);
1266 dtlck = (struct dt_lock *) & tlck->lock;
1267 ASSERT(dtlck->index == 0);
1268 lv = & dtlck->lv[0];
1269 lv->offset = 0;
1270 lv->length = 1;
1271 dtlck->index++;
1276 * Update ctime on changed/moved inodes & mark dirty
1278 old_ip->i_ctime = current_time(old_ip);
1279 mark_inode_dirty(old_ip);
1281 new_dir->i_ctime = new_dir->i_mtime = current_time(new_dir);
1282 mark_inode_dirty(new_dir);
1284 /* Build list of inodes modified by this transaction */
1285 ipcount = 0;
1286 iplist[ipcount++] = old_ip;
1287 if (new_ip)
1288 iplist[ipcount++] = new_ip;
1289 iplist[ipcount++] = old_dir;
1291 if (old_dir != new_dir) {
1292 iplist[ipcount++] = new_dir;
1293 old_dir->i_ctime = old_dir->i_mtime = current_time(old_dir);
1294 mark_inode_dirty(old_dir);
1298 * Incomplete truncate of file data can
1299 * result in timing problems unless we synchronously commit the
1300 * transaction.
1302 if (new_size)
1303 commit_flag = COMMIT_SYNC;
1304 else
1305 commit_flag = 0;
1307 rc = txCommit(tid, ipcount, iplist, commit_flag);
1309 out_tx:
1310 txEnd(tid);
1311 if (new_ip)
1312 mutex_unlock(&JFS_IP(new_ip)->commit_mutex);
1313 if (old_dir != new_dir)
1314 mutex_unlock(&JFS_IP(old_dir)->commit_mutex);
1315 mutex_unlock(&JFS_IP(old_ip)->commit_mutex);
1316 mutex_unlock(&JFS_IP(new_dir)->commit_mutex);
1318 while (new_size && (rc == 0)) {
1319 tid = txBegin(new_ip->i_sb, 0);
1320 mutex_lock(&JFS_IP(new_ip)->commit_mutex);
1321 new_size = xtTruncate_pmap(tid, new_ip, new_size);
1322 if (new_size < 0) {
1323 txAbort(tid, 1);
1324 rc = new_size;
1325 } else
1326 rc = txCommit(tid, 1, &new_ip, COMMIT_SYNC);
1327 txEnd(tid);
1328 mutex_unlock(&JFS_IP(new_ip)->commit_mutex);
1330 if (new_ip && (new_ip->i_nlink == 0))
1331 set_cflag(COMMIT_Nolink, new_ip);
1333 * Truncating the directory index table is not guaranteed. It
1334 * may need to be done iteratively
1336 if (test_cflag(COMMIT_Stale, old_dir)) {
1337 if (old_dir->i_size > 1)
1338 jfs_truncate_nolock(old_dir, 0);
1340 clear_cflag(COMMIT_Stale, old_dir);
1342 out_unlock:
1343 if (new_ip && !S_ISDIR(new_ip->i_mode))
1344 IWRITE_UNLOCK(new_ip);
1345 out3:
1346 free_UCSname(&new_dname);
1347 out2:
1348 free_UCSname(&old_dname);
1349 out1:
1350 jfs_info("jfs_rename: returning %d", rc);
1351 return rc;
1356 * NAME: jfs_mknod
1358 * FUNCTION: Create a special file (device)
1360 static int jfs_mknod(struct inode *dir, struct dentry *dentry,
1361 umode_t mode, dev_t rdev)
1363 struct jfs_inode_info *jfs_ip;
1364 struct btstack btstack;
1365 struct component_name dname;
1366 ino_t ino;
1367 struct inode *ip;
1368 struct inode *iplist[2];
1369 int rc;
1370 tid_t tid;
1371 struct tblock *tblk;
1373 jfs_info("jfs_mknod: %pd", dentry);
1375 rc = dquot_initialize(dir);
1376 if (rc)
1377 goto out;
1379 if ((rc = get_UCSname(&dname, dentry)))
1380 goto out;
1382 ip = ialloc(dir, mode);
1383 if (IS_ERR(ip)) {
1384 rc = PTR_ERR(ip);
1385 goto out1;
1387 jfs_ip = JFS_IP(ip);
1389 tid = txBegin(dir->i_sb, 0);
1391 mutex_lock_nested(&JFS_IP(dir)->commit_mutex, COMMIT_MUTEX_PARENT);
1392 mutex_lock_nested(&JFS_IP(ip)->commit_mutex, COMMIT_MUTEX_CHILD);
1394 rc = jfs_init_acl(tid, ip, dir);
1395 if (rc)
1396 goto out3;
1398 rc = jfs_init_security(tid, ip, dir, &dentry->d_name);
1399 if (rc) {
1400 txAbort(tid, 0);
1401 goto out3;
1404 if ((rc = dtSearch(dir, &dname, &ino, &btstack, JFS_CREATE))) {
1405 txAbort(tid, 0);
1406 goto out3;
1409 tblk = tid_to_tblock(tid);
1410 tblk->xflag |= COMMIT_CREATE;
1411 tblk->ino = ip->i_ino;
1412 tblk->u.ixpxd = JFS_IP(ip)->ixpxd;
1414 ino = ip->i_ino;
1415 if ((rc = dtInsert(tid, dir, &dname, &ino, &btstack))) {
1416 txAbort(tid, 0);
1417 goto out3;
1420 ip->i_op = &jfs_file_inode_operations;
1421 jfs_ip->dev = new_encode_dev(rdev);
1422 init_special_inode(ip, ip->i_mode, rdev);
1424 mark_inode_dirty(ip);
1426 dir->i_ctime = dir->i_mtime = current_time(dir);
1428 mark_inode_dirty(dir);
1430 iplist[0] = dir;
1431 iplist[1] = ip;
1432 rc = txCommit(tid, 2, iplist, 0);
1434 out3:
1435 txEnd(tid);
1436 mutex_unlock(&JFS_IP(ip)->commit_mutex);
1437 mutex_unlock(&JFS_IP(dir)->commit_mutex);
1438 if (rc) {
1439 free_ea_wmap(ip);
1440 clear_nlink(ip);
1441 discard_new_inode(ip);
1442 } else {
1443 d_instantiate_new(dentry, ip);
1446 out1:
1447 free_UCSname(&dname);
1449 out:
1450 jfs_info("jfs_mknod: returning %d", rc);
1451 return rc;
1454 static struct dentry *jfs_lookup(struct inode *dip, struct dentry *dentry, unsigned int flags)
1456 struct btstack btstack;
1457 ino_t inum;
1458 struct inode *ip;
1459 struct component_name key;
1460 int rc;
1462 jfs_info("jfs_lookup: name = %pd", dentry);
1464 if ((rc = get_UCSname(&key, dentry)))
1465 return ERR_PTR(rc);
1466 rc = dtSearch(dip, &key, &inum, &btstack, JFS_LOOKUP);
1467 free_UCSname(&key);
1468 if (rc == -ENOENT) {
1469 ip = NULL;
1470 } else if (rc) {
1471 jfs_err("jfs_lookup: dtSearch returned %d", rc);
1472 ip = ERR_PTR(rc);
1473 } else {
1474 ip = jfs_iget(dip->i_sb, inum);
1475 if (IS_ERR(ip))
1476 jfs_err("jfs_lookup: iget failed on inum %d", (uint)inum);
1479 return d_splice_alias(ip, dentry);
1482 static struct inode *jfs_nfs_get_inode(struct super_block *sb,
1483 u64 ino, u32 generation)
1485 struct inode *inode;
1487 if (ino == 0)
1488 return ERR_PTR(-ESTALE);
1489 inode = jfs_iget(sb, ino);
1490 if (IS_ERR(inode))
1491 return ERR_CAST(inode);
1493 if (generation && inode->i_generation != generation) {
1494 iput(inode);
1495 return ERR_PTR(-ESTALE);
1498 return inode;
1501 struct dentry *jfs_fh_to_dentry(struct super_block *sb, struct fid *fid,
1502 int fh_len, int fh_type)
1504 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
1505 jfs_nfs_get_inode);
1508 struct dentry *jfs_fh_to_parent(struct super_block *sb, struct fid *fid,
1509 int fh_len, int fh_type)
1511 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
1512 jfs_nfs_get_inode);
1515 struct dentry *jfs_get_parent(struct dentry *dentry)
1517 unsigned long parent_ino;
1519 parent_ino =
1520 le32_to_cpu(JFS_IP(d_inode(dentry))->i_dtroot.header.idotdot);
1522 return d_obtain_alias(jfs_iget(dentry->d_sb, parent_ino));
1525 const struct inode_operations jfs_dir_inode_operations = {
1526 .create = jfs_create,
1527 .lookup = jfs_lookup,
1528 .link = jfs_link,
1529 .unlink = jfs_unlink,
1530 .symlink = jfs_symlink,
1531 .mkdir = jfs_mkdir,
1532 .rmdir = jfs_rmdir,
1533 .mknod = jfs_mknod,
1534 .rename = jfs_rename,
1535 .listxattr = jfs_listxattr,
1536 .setattr = jfs_setattr,
1537 #ifdef CONFIG_JFS_POSIX_ACL
1538 .get_acl = jfs_get_acl,
1539 .set_acl = jfs_set_acl,
1540 #endif
1543 const struct file_operations jfs_dir_operations = {
1544 .read = generic_read_dir,
1545 .iterate = jfs_readdir,
1546 .fsync = jfs_fsync,
1547 .unlocked_ioctl = jfs_ioctl,
1548 #ifdef CONFIG_COMPAT
1549 .compat_ioctl = jfs_compat_ioctl,
1550 #endif
1551 .llseek = generic_file_llseek,
1554 static int jfs_ci_hash(const struct dentry *dir, struct qstr *this)
1556 unsigned long hash;
1557 int i;
1559 hash = init_name_hash(dir);
1560 for (i=0; i < this->len; i++)
1561 hash = partial_name_hash(tolower(this->name[i]), hash);
1562 this->hash = end_name_hash(hash);
1564 return 0;
1567 static int jfs_ci_compare(const struct dentry *dentry,
1568 unsigned int len, const char *str, const struct qstr *name)
1570 int i, result = 1;
1572 if (len != name->len)
1573 goto out;
1574 for (i=0; i < len; i++) {
1575 if (tolower(str[i]) != tolower(name->name[i]))
1576 goto out;
1578 result = 0;
1579 out:
1580 return result;
1583 static int jfs_ci_revalidate(struct dentry *dentry, unsigned int flags)
1586 * This is not negative dentry. Always valid.
1588 * Note, rename() to existing directory entry will have ->d_inode,
1589 * and will use existing name which isn't specified name by user.
1591 * We may be able to drop this positive dentry here. But dropping
1592 * positive dentry isn't good idea. So it's unsupported like
1593 * rename("filename", "FILENAME") for now.
1595 if (d_really_is_positive(dentry))
1596 return 1;
1599 * This may be nfsd (or something), anyway, we can't see the
1600 * intent of this. So, since this can be for creation, drop it.
1602 if (!flags)
1603 return 0;
1606 * Drop the negative dentry, in order to make sure to use the
1607 * case sensitive name which is specified by user if this is
1608 * for creation.
1610 if (flags & (LOOKUP_CREATE | LOOKUP_RENAME_TARGET))
1611 return 0;
1612 return 1;
1615 const struct dentry_operations jfs_ci_dentry_operations =
1617 .d_hash = jfs_ci_hash,
1618 .d_compare = jfs_ci_compare,
1619 .d_revalidate = jfs_ci_revalidate,