Can I somehow change the default file permissions when using the store function from Storable?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

There are a couple of different approaches to this. (Of course there are; it's Perl :-) )

First option: use sysopen() to create the file with the specified permissions, then use store_fd() and fd_retrieve(). See also the Perl open() tutorial, particularly the "Permissions a la mode" section.

Second option: use umask() to limit the file permissions. Don't forget to set it back to its original value if you're working with multiple files.

Third option: use chmod() to set the file permissions manually on a pre-existing file.

The first option is conceptually better because it allows the user to tighten permissions further by controlling the umask themselves. (Try help umask at a shell prompt. The umask set there applies to all programs run from the shell. Again, see perlopentut.)

link|improve this answer
I know some of your approaches. But I am interested, if I can do this with the store-function or by setting some Storable-options. – sid_com Nov 28 '10 at 9:26
I will use chmod(); it's not much additional work. – sid_com Nov 28 '10 at 9:34
Changed my mind: I'll try it with sysopen(); – sid_com Nov 28 '10 at 11:48
@sid_com: Note that sysopen() also pays attention to the umask so you'll have to chmod() by hand if you absolutely need certain permissions. – mu is too short Nov 28 '10 at 20:43
1  
@mu is too short, If you need an exact permission then there is probably a security related reason and chmod after the file is created is probably not appropriate as it can open you to a race condition. Although if umask is the issue I don't know how it would make the permissions less secure. But it's a better habit to change your umask, create the file, and reset your umask. This ensures that the action is atomic. – Ven'Tatsu Nov 29 '10 at 19:58
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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