vote up 0 vote down star

Hi, i'm hacking some samba internals, and I want to log, what's written in read_file and write_file, exactly I want to get file name, directory, and how much bytes are written.

in struct files_struct, there is defined file name (char* fsp_name), and I can count number of written bytes, but in files_struct there is no field with directory.

Is there any way, how to determine opened file's directory in samba guts?

flag

2 Answers

vote up 0 vote down

Assuming that the char* fsp_name contains the full file (and not the relative name), could you use strpbrk () (man 3 strpbrk)? Loop searching for "/", until it returns NULL. Then your directory is from fsp_name to the pointer it returned the last time.

link|flag
fsp_name doesn't contain full path, only file name :( – Yossarian Mar 23 at 23:35
vote up 0 vote down check

OK, so - solution: files_struct contains 'conn' field, which has 'char * origpath' - which contains current file's directory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.