* limit of following symlinks
@ 2002-03-02 7:25 T.Harada
0 siblings, 0 replies; only message in thread
From: T.Harada @ 2002-03-02 7:25 UTC (permalink / raw)
To: linux-kernel; +Cc: t-harada
Hi,
I'm using Linux-2.4.18 on some PC.
Linux-2.4.18 limits following sequential symlinks up to 5.
(All versions Linux-2.4 seem so.)
But the code and the comment of its code are different.
The comment tells the limit is 8, but the code seems to make the limit to 5.
Which should the limit be?
Here is the code.
linux/fs/namei.c:
/*
* This limits recursive symlink follows to 8, while
* limiting consecutive symlinks to 40.
*
* Without that kind of total limit, nasty chains of consecutive
* symlinks can cause almost arbitrarily long lookups.
*/
static inline int do_follow_link(struct dentry *dentry, struct nameidata *nd)
{
int err;
if (current->link_count >= 5)
goto loop;
if (current->total_link_count >= 40)
goto loop;
BTW, I always rewrite the code and change the limit to 20 because 5 is
too small for my project.
About Solaris, the limit is 20 and I'm happy on Solaris.
I hope the limit is grown to 20 on Linux.
I have not subscribed LKML, please CC me for reply.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-03-02 7:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-02 7:25 limit of following symlinks T.Harada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®