Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to find a way to get a list of all groups a unix user has access to. I want to be able to pass either the unix username or the uid of a user to a c++ program as an arguement and then return a list of groups that this user has access to. I have done some reading about this and as far as I can see this can be achieved using getgroups() but I can't find an example of how to do this by passing in a particular username or uid to getgroups. All the examples I have found seem to just display all the groups for my user account or whoever is the effective uid of the person running the program. Please can you help me with how I can do this? Thanks

I can get all the user account info from struct passwd and am able to pass argv[1] which is a unix users username and pass this to getgrgid: (getpwnam_r(argv[1], my_passwd, pwdbuffer, pwdlinelen, &tempPwdPtr)) != 0) I just dont know how to use the value of argv[1] and find out all the groups a unix user has access to using getgroups

share|improve this question

1 Answer

Use getgrouplist(3) function, it does exactly what you want. It expected username so if you want to list all the groups user with given UID is part of, you need first to translate UID to username with help of getpwuid_r(3) function.

share|improve this answer
Brilliant, thanks alot for your help :-) – user1914520 Jan 3 at 14:57
If this solved your issue, please accept my answer -- this will also mark your question as solved and will help everyone :-) – anydot Jan 3 at 15:08
Thanks Anydot, just one more thing if you or anyone might be able to help. Whenever I try to use the function getgroups list I just can't get my program to compile. It keeps saying "error: 'getgrouplist' was not declared in this scope" – user1914520 Jan 3 at 21:09
I have looked at the following example and instead of using the value "user" I am changing this to argv[1] and passing username as argument but still it errors with "error: 'getgrouplist' was not declared in this scope" homepages.cwi.nl/~aeb/linux/man2html/man3/… – user1914520 Jan 3 at 21:14
Infact any example code that I can find where getgrouplist is used they all wont compile and come back with the same error saying its not declared. Is there something I am missing here? I am including grp.h aswell – user1914520 Jan 3 at 21:18
show 5 more comments

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.