提交 5f0c20ec 创建 作者: rsc's avatar rsc

fix . .. unlink bug

上级 5bbba977
......@@ -33,7 +33,5 @@ ide.c: synchronous disk write -> polling disk write. search for
fs.c: split all name operations off in name.c? (starting with namei but move
wdir keep in fs.c)
unlink . and .. should be disallowed
ls.c: apply tim's patch
......@@ -579,6 +579,12 @@ namei(char *path, int mode, uint *ret_off,
found:
if(mode == NAMEI_DELETE && *cp == '\0'){
// can't unlink . and ..
if((i == 1 && memcmp(cp-1, ".", 1) == 0) ||
(i == 2 && memcmp(cp-2, "..", 2) == 0)){
iput(dp);
return 0;
}
*ret_off = off;
return dp;
}
......
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论