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

Is it possible to disable access of some program to files completely? Because I don't want it to have any kind of access to files on system, is it possible to compile it so it doesn't have access to file stream or to run it someway it cant access files?

share|improve this question
Unfortunately, the OS is a Singleton you can't do anything about. :-( See: object-oriented-security.org/lets-argue/singletons In my opinion, Linux needs a way to drop all permissions for a process so you can force it to use IPC (through a pre-existing pipe) to request another process open files for it and the like. – Omnifarious Sep 29 '10 at 2:46

5 Answers

up vote 6 down vote accepted

The closest you'd be able to come to that is to run your program in a chroot jail.

share|improve this answer
how could I chroot program so it could be still executable, I tried few ways but it would trow up errors because some libraries could not be found – srolija Sep 28 '10 at 18:04
1  
@user460907: If you have access to the source, you should be able to do it from there without much trouble. Run the program from outside the jail, then have the program cd to the jail and chroot itself. Alternatively, you can start the program in the jail, but the required libraries for the program must be present in the jail. Google, there exist tutorials for this. – Thanatos Sep 28 '10 at 18:08
Or use SELinux... – David Gelhar Sep 28 '10 at 18:15
and @Thanatos ty very very much that is exactly what I needed – srolija Sep 28 '10 at 18:52
Please note that a "chroot jail" is a fairly weak security measure. Breaking out of them is trivial for a process with chroot privileges. If you intend to use chroot as a security mechanism, after the chroot is done you'll need to either change your process UID/GID to non-root or use the Capabilities system to explicitly disable chroot & capability granting. – Rakis Sep 28 '10 at 19:49

In an unmanaged environment, code cannot tell itself not to do something it shouldn't. CAS is part of managed environments only, where the runtime provides an extra level of access control. It's up to the OS to prevent applications from doing things that the user they are running on behalf of cannot do. You should be able to run the application as if you were a different, more limited user; then, you could limit the user's access rights to the resource and the OS will prevent the code from accessing it.

share|improve this answer

In Linux, you can change the owner of the process to nobody. This is no big security increase, as nobody still can access files etc. but it's better than running as a local user or root:

      struct passwd *pw = getpwnam("nobody");
      if (!pw)
         printf("Error: Unable to look up info about user nobody");
      else{
         setuid(pw->pw_uid);
         setgid(pw->pw_gid);
      }
share|improve this answer

In theory you can direct the linker not to link fopen and so on. You'll probably have to use static linkage.


But, often, when you come to a requirement like this you're approaching the problem from the wrong direction. What is it you are trying to achieve with this hack? Why do you want this?

share|improve this answer
Even if functions like fopen() aren't linked, the process can always directly make syscalls without needing any external library code. – caf Sep 29 '10 at 9:45

Under Windows, you can start the process under a restricted token

This requires more than just a basic knowledge of Windows API, but it's possible.

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.