Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a write only file in c on Linux (ubuntu). This is my code:

 int fd2 = open ("/tmp/test.svg", O_RDWR|O_CREAT);

 if (fd2 != -1) {
   //....
 }

But why the file I created are in 'xr' mode? How can I create it so that I can open it myself at command prompt?

------xr--  1 michael michael  55788 2010-03-06 21:57 test.txt*
------xr--  1 michael michael   9703 2010-03-06 22:41 test.svg*

Thank you.

share|improve this question
1  
Awesome example of unsafe code. – Michael Foukarakis Mar 7 '10 at 7:27
1  
@Michael Foukarakis: temporarily, there are bigger problems to deal with, but you're right. O_EXCL should be added (to avoid following malicious broken symlinks, and to avoid clobbering other people's file when they're running the same program on the same machine); the fixed name will be problematic in production code, so it should be using 'mkstemp()' or a relative to create the file name. And the list goes on, no doubt. – Jonathan Leffler Mar 7 '10 at 7:30

2 Answers

up vote 9 down vote accepted

You need the three-argument form of open() when you specify O_CREAT. When you omit the third argument, open() uses whatever value happens to be on the stack where the third argument was expected; this is seldom a coherent set of permissions.

The third argument is the permissions on the file - which will be modified by the umask() value.

int fd2 = open("/tmp/test.svg", O_RDWR | O_CREAT, S_IRUSR | S_IRGRP | S_IROTH);

Note that you can create a file without write permissions (to anyone else, or any other process) while still being able to write to it from the current process. There is seldom a need to use execute bits on files created from a program - unless you are writing a compiler (and '.svg' files are not normally executables!).

The S_xxxx flags come from '<sys/stat.h>'.

share|improve this answer
1  
If you have recent versions of both the glibc headers and gcc, gcc can warn you about leaving out that third argument to open. – caf Mar 7 '10 at 7:27
@Jonathan: is there something wrong in what i have posted? You have mentioned about following malicious broken symlinks and problem with fixed name in production code. What/why are these problems? – N 1.1 Mar 7 '10 at 8:07
1  
@nvl: Let's say that two users, bill and joe, both run your program at the same time. Both create a file /tmp/test.svg...whose data is used? Let's say Mr Malicious works on your machine, and manages to do: ln -s /etc/passwd /tmp/test.svg. Now one of two things is going to happen when your program runs: (1) you get an open error because you can't write to /etc/passwd (you aren't root), or (2) you get a copy of your SVG image in /etc/passwd because you are root. Neither is normally considered desirable. And Mr Malicious can also do: ln -s /usr/lib/security/libmalpam.so /tmp/test.svg... – Jonathan Leffler Mar 7 '10 at 8:10
1  
@nvl: ...where libmalpam.so doesn't yet exist; if your code leaves that publicly writable, then the bad guy has a chance to create a shared library in the PAM (pluggable authentication module) area, which can then, perhaps, be leveraged. Etc. So, not being careful with how you open files can lead to all sorts of problems. This assumes root is inveigled into running your code, of course. If it is someone else, then they won't be able to do any damage...probably. – Jonathan Leffler Mar 7 '10 at 8:12
1  
@nvl The fopen is a buffered C Library "high-level" function, versus the open which is an OS syscall (man 2 intro). See Secure Programming for Linux and Unix HOWTO dwheeler.com/secure-programs for details about secure programming. – mctylr Mar 7 '10 at 8:20
show 2 more comments
    //give access permissions as the third parameter 
    //example



    int fd2 = open ("/tmp/test.svg", O_RDWR|O_CREAT,777);

    if (fd2 != -1) {
    //
    }

    //by doing this all read write and execute  permissions will be given to user group               and others.
    //Modify 3rd parameter according to your use.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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