I'm working on a linux C project and I'm having trouble working with file descriptors.

I have an orphan file descriptor (the file was open()'d then unlink()'d but the fd is still good) that has write-only permission. The original backing file had full permissions (created with S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH), but alas the file was opened with O_WRONLY. Is it possible to duplicate the file descriptor and change the copy to O_RDWR?

psudo-code:


//open orphan file
int fd = open(fname, O_WRONLY, ...)
unlink(fname)
//fd is still good, but I can't read from it

//...

//I want to be able to read from orphan file
int fd2 = dup(fd)
//----change fd2 to read/write???----

Thanks in advance! -Andrew

link|improve this question

71% accept rate
1  
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_RDWR)) seems like it would be the thing, except the man page specifically says that won't work. I guess there's some reason the kernel "needs" this to be impossible? – aschepler Jan 9 '11 at 3:44
2  
so why do you open it in wronly mode if you plan to read it? – MK. Jan 9 '11 at 3:45
1  
I would assume if a file has been unlinked and the only references to it are write-only, the kernel would be perfectly justified in deleting it and replacing it with the equivalent of /dev/null, i.e. discarding all further data written and just keeping a dummy file position. – R.. Jan 9 '11 at 4:26
1  
@aschepler: You need to remove the O_WRONLY flag before adding O_RDWR. O_WRONLY|O_RDWR != O_RDWR. – R.. Jan 9 '11 at 4:26
1  
@R..: under Linux the very same rules apply. It isn't allowed to change access modes, and also doesn't return an error (in this case a NULL stream). Any attempt to read/write will cause EBADF too. If you want a reason for not allowing it, imagine changing stdin to allow writes, and stdout to allow reads - nonsense – jweyrich Jan 9 '11 at 5:41
show 5 more comments
feedback

1 Answer

up vote 4 down vote accepted

No, there is no POSIX function to change the open mode. You will need to open it in read / write mode. Since you are created a temporary file, though, I strongly recommend that you use mkstemp. That function properly opens the file in read/write mode and unlinks it. Most importantly, it avoids a race condition in naming and creating the file, thereby avoiding a vulnerability in the creation of temporary files.

link|improve this answer
2  
mkstemp doesn't unlink AFAIK? – MK. Jan 9 '11 at 3:44
what MK said. I can always add O_EXCL to open() and retry on fail – Andrew Klofas Jan 9 '11 at 4:03
feedback

Your Answer

 
or
required, but never shown

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