Assuming we have some PID and absolute file path [not a symlink, just a regular file] - what is the most efficient way to determine that PID has read access to this file?
|
I'm only aware of one way to do this. First, find the UID and GID of the process by constructing the path (It is assumed you already constructed the "/proc/[PID]" path in
Note that the code is not perfect. It does not handle the possibility that the user of the process actually belongs to the file's group without it being the user's primary group. To deal with that, you will need to make use of getgrouplist() (which means you will need to convert the process UID to a string containing the actual username first, and then compare all returned groups to the file's group and if one matches, check for group read access (S_IRGRP).) |
||||
|
Open the file. That's really the only way to know. The answers involving |
|||||||||
|

man 3 stat– Eddy_Em Feb 13 at 21:13man 2 stat;-) – Nikos C. Feb 13 at 21:28man 2 statis more detailed thanman 3 stat. – Eddy_Em Feb 13 at 21:30