* Sansonetti Laurent <[EMAIL PROTECTED]> [010816 12:22] wrote:
> Hi hackers,
>
> I'm confronted to a problem when I try to hack getdirentries(2) in a kld
> module :
>
> To summarize, getdirentries() filled in a buffer a series of dirent struct,
> and the 'd_name' field represents the filename (without the full path). I
> must recover the full path because I've on disk a list of files to hide ...
>
> The field 'fd' in getdirentries_args is the file descriptor of the
> directory.. and I've discovered that the field 'p_fd' from struct proc is a
> filedesc struct which contains a vnode struct representing the current
> directory ('fd_cdir').
>
> VOP_GETATTR() doesn't allow me to recover this..
>
> If someone could help me, thanks in advance !
Since a vnode may be referenced by multiple hardlinks it can't have
a name really. You could hack on struct file so that it keeps a
copy of the filename passed to open(2).
--
-Alfred Perlstein [[EMAIL PROTECTED]]
Ok, who wrote this damn function called '??'?
And why do my programs keep crashing in it?
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message