vote up 1 vote down star

How can I programmatically lock/unlock, or otherwise prevent/enable editing, a source file on Linux using C++.

I want to be able to lock source file so that if I open it in an editor it will not allow me to save back to the same source file.

I am thinking of maybe changing the permissions to read-only (and change it back to read-write later): how do I do that from C++?

flag

Be careful. It is still possible to modify a file which is read-only in an editor. For example vim does it (but it asks the user). The trick to do it is to delete the file first and then re-create it. This is possible if you have write permissions to the directory which contains the file. – ypnos Oct 7 '08 at 23:25

3 Answers

vote up 5 vote down check

Try man fchmod:

NAME
       chmod, fchmod - change permissions of a file

SYNOPSIS
       #include <sys/types.h>
       #include <sys/stat.h>

       int chmod(const char *path, mode_t mode);
       int fchmod(int fildes, mode_t mode);
link|flag
thanks...it helps to know where & what to look for. man, have i got a lot of catch-up to do! – slashmais Oct 7 '08 at 9:14
vote up 1 vote down

Why aren't you using a source code management tool like CVS or Subversion? CVS does nice locking (so does Subversion). More importantly, you have the history of changes. Better still (with CVS anyway) you have to make the step of doing a "checkout" to make the file writeable.

link|flag
Well spotted! I'm doing this to gain experience; first try doing things my way, & later look at relevant open-source modules for how it should be done. I always learn things easier if I play with it by myself first. – slashmais Oct 7 '08 at 14:57
Ummm... That often leads to a hopeless bias. It's too easy to deprecate the solution everyone else uses because it wasn't your first idea on the subject. – S.Lott Oct 7 '08 at 16:21
vote up 0 vote down

Yes, it is a bit hard to tell what you are looking for

  • Security against other users editing you files -> use "chmod, fchmod"

  • Security against you yourself accidentally messing with your source files -> you should really change your thinking and use a source control tool. Like Subversion (SVN) or even better Mercurial.

link|flag

Your Answer

Get an OpenID
or

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