1 /* -*- linux-c -*- --------------------------------------------------------- *
3 * linux/fs/autofs/dirhash.c
5 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
7 * This file is part of the Linux kernel and is made available under
8 * the terms of the GNU General Public License, version 2, or at your
9 * option, any later version, incorporated herein by reference.
11 * ------------------------------------------------------------------------- */
15 /* Functions for maintenance of expiry queue */
17 static void autofs_init_usage(struct autofs_dirhash
*dh
,
18 struct autofs_dir_ent
*ent
)
20 list_add_tail(&ent
->exp
, &dh
->expiry_head
);
21 ent
->last_usage
= jiffies
;
24 static void autofs_delete_usage(struct autofs_dir_ent
*ent
)
29 void autofs_update_usage(struct autofs_dirhash
*dh
,
30 struct autofs_dir_ent
*ent
)
32 autofs_delete_usage(ent
); /* Unlink from current position */
33 autofs_init_usage(dh
,ent
); /* Relink at queue tail */
36 struct autofs_dir_ent
*autofs_expire(struct super_block
*sb
,
37 struct autofs_sb_info
*sbi
,
40 struct autofs_dirhash
*dh
= &sbi
->dirhash
;
41 struct autofs_dir_ent
*ent
;
42 unsigned long timeout
= sbi
->exp_timeout
;
48 if ( list_empty(&dh
->expiry_head
) || sbi
->catatonic
)
49 return NULL
; /* No entries */
50 /* We keep the list sorted by last_usage and want old stuff */
51 ent
= list_entry(dh
->expiry_head
.next
, struct autofs_dir_ent
, exp
);
52 if (jiffies
- ent
->last_usage
< timeout
)
54 /* Move to end of list in case expiry isn't desirable */
55 autofs_update_usage(dh
, ent
);
57 /* Check to see that entry is expirable */
58 if ( ent
->ino
< AUTOFS_FIRST_DIR_INO
)
59 return ent
; /* Symlinks are always expirable */
61 /* Get the dentry for the autofs subdirectory */
62 path
.dentry
= ent
->dentry
;
65 /* Should only happen in catatonic mode */
66 printk("autofs: dentry == NULL but inode range is directory, entry %s\n", ent
->name
);
67 autofs_delete_usage(ent
);
71 if (!path
.dentry
->d_inode
) {
73 printk("autofs: negative dentry on expiry queue: %s\n",
75 autofs_delete_usage(ent
);
79 /* Make sure entry is mounted and unused; note that dentry will
80 point to the mounted-on-top root. */
81 if (!S_ISDIR(path
.dentry
->d_inode
->i_mode
) ||
82 !d_mountpoint(path
.dentry
)) {
83 DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent
->name
));
88 if (!follow_down(&path
)) {
90 DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent
->name
));
93 while (d_mountpoint(path
.dentry
) && follow_down(&path
))
95 umount_ok
= may_umount(path
.mnt
);
99 DPRINTK(("autofs: signaling expire on %s\n", ent
->name
));
100 return ent
; /* Expirable! */
102 DPRINTK(("autofs: didn't expire due to may_umount: %s\n", ent
->name
));
104 return NULL
; /* No expirable entries */
107 void autofs_initialize_hash(struct autofs_dirhash
*dh
) {
108 memset(&dh
->h
, 0, AUTOFS_HASH_SIZE
*sizeof(struct autofs_dir_ent
*));
109 INIT_LIST_HEAD(&dh
->expiry_head
);
112 struct autofs_dir_ent
*autofs_hash_lookup(const struct autofs_dirhash
*dh
, struct qstr
*name
)
114 struct autofs_dir_ent
*dhn
;
116 DPRINTK(("autofs_hash_lookup: hash = 0x%08x, name = ", name
->hash
));
117 autofs_say(name
->name
,name
->len
);
119 for ( dhn
= dh
->h
[(unsigned) name
->hash
% AUTOFS_HASH_SIZE
] ; dhn
; dhn
= dhn
->next
) {
120 if ( name
->hash
== dhn
->hash
&&
121 name
->len
== dhn
->len
&&
122 !memcmp(name
->name
, dhn
->name
, name
->len
) )
129 void autofs_hash_insert(struct autofs_dirhash
*dh
, struct autofs_dir_ent
*ent
)
131 struct autofs_dir_ent
**dhnp
;
133 DPRINTK(("autofs_hash_insert: hash = 0x%08x, name = ", ent
->hash
));
134 autofs_say(ent
->name
,ent
->len
);
136 autofs_init_usage(dh
,ent
);
140 dhnp
= &dh
->h
[(unsigned) ent
->hash
% AUTOFS_HASH_SIZE
];
145 ent
->next
->back
= &(ent
->next
);
148 void autofs_hash_delete(struct autofs_dir_ent
*ent
)
150 *(ent
->back
) = ent
->next
;
152 ent
->next
->back
= ent
->back
;
154 autofs_delete_usage(ent
);
163 * Used by readdir(). We must validate "ptr", so we can't simply make it
164 * a pointer. Values below 0xffff are reserved; calling with any value
165 * <= 0x10000 will return the first entry found.
167 * "last" can be NULL or the value returned by the last search *if* we
168 * want the next sequential entry.
170 struct autofs_dir_ent
*autofs_hash_enum(const struct autofs_dirhash
*dh
,
171 off_t
*ptr
, struct autofs_dir_ent
*last
)
173 int bucket
, ecount
, i
;
174 struct autofs_dir_ent
*ent
;
176 bucket
= (*ptr
>> 16) - 1;
177 ecount
= *ptr
& 0xffff;
183 DPRINTK(("autofs_hash_enum: bucket %d, entry %d\n", bucket
, ecount
));
185 ent
= last
? last
->next
: NULL
;
190 while ( bucket
< AUTOFS_HASH_SIZE
) {
192 for ( i
= ecount
; ent
&& i
; i
-- )
196 ecount
++; /* Point to *next* entry */
200 bucket
++; ecount
= 0;
206 printk("autofs_hash_enum: nothing found\n");
208 printk("autofs_hash_enum: found hash %08x, name", ent
->hash
);
209 autofs_say(ent
->name
,ent
->len
);
213 *ptr
= ((bucket
+1) << 16) + ecount
;
217 /* Iterate over all the ents, and remove all dentry pointers. Used on
218 entering catatonic mode, in order to make the filesystem unmountable. */
219 void autofs_hash_dputall(struct autofs_dirhash
*dh
)
222 struct autofs_dir_ent
*ent
;
224 for ( i
= 0 ; i
< AUTOFS_HASH_SIZE
; i
++ ) {
225 for ( ent
= dh
->h
[i
] ; ent
; ent
= ent
->next
) {
234 /* Delete everything. This is used on filesystem destruction, so we
235 make no attempt to keep the pointers valid */
236 void autofs_hash_nuke(struct autofs_sb_info
*sbi
)
239 struct autofs_dir_ent
*ent
, *nent
;
241 for ( i
= 0 ; i
< AUTOFS_HASH_SIZE
; i
++ ) {
242 for ( ent
= sbi
->dirhash
.h
[i
] ; ent
; ent
= nent
) {