Why in Unix system with hardlinks we use DAG structure?

226 Views Asked by At

My question is that why do we need to make it acyclic? In textbook, it says because we need to detect cycle in the structure if it's not acyclic. But why do we have to detect them? I don't see any need to detect them.

1

There are 1 best solutions below

0
On

Cycles in the file system graph can come about through soft links, which are typically allowed alongside hard links. Cycle detection is necessary to deal with instances when soft links drive you into a loop. Hard links are restricted to files only, which automatically enforces the DAG, but soft links can refer to directories.

One (degenerate) case where that's handy:

% ln -s symlink symlink
% ls -l
total 0
lrwxrwxrwx 1 doug doug 7 Jul 17 16:29 symlink -> symlink
% ls -L symlink
ls: cannot access symlink: Too many levels of symbolic links
%