Sponsored Content
Full Discussion: getgroups usage on linux
Top Forums Programming getgroups usage on linux Post 302517998 by jim mcnamara on Thursday 28th of April 2011 12:14:19 PM
Old 04-28-2011
You have to seteuid to the user, get the group, then return to uid 0. Because setuid() will change all of the uid settings (real, effective, etc.) you may think you can call seteuid() instead, so that you can later call setuid to root. But seteuid() does not change groups. Which does not work for what you want....

So, you have to exec(), setuid() to nobody, write the result of getgroups to shared memory, exit the child process.

IMO, It is probably less complicated to try this:
Code:
char *
get_gid(char *dest, const char *uid)
{
   FILE *sh=NULL;
   char cmd[40]={0x0};
   char result[80]={0x0};
   
   sprintf(cmd, "/usr/bin/id -G %s";, uid);
   sh=popen(cmd, "r");
   if(fgets(result, sizeof(result), sh)!=NULL)
       strcpy(dest, result);
   pclose(sh);
   return dest;
}

Then parse out the uids, usually nobody is a single group so one atoi call returns the group.

Last edited by jim mcnamara; 04-28-2011 at 02:15 PM.. Reason: change -g to -R see red text
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Linux diskspace usage

when /var directory of my machine gets filled up (85%) i removed some old logs. but after cleaning df -k command still shows that /var is still 85% full. It can detect the actual disk space only after I restart the machine. Is there a way to force df to reflect actual free space without... (1 Reply)
Discussion started by: necro
1 Replies

2. Red Hat

Linux memory usage

What's the best way to find out how much memory is being used/available? I tried using free, but I didn't quite understand the output. Can someone explain it? $ free total used free shared buffers cached Mem: 16304536 16256376 48160 0 ... (6 Replies)
Discussion started by: junkmail426
6 Replies

3. Linux

Linux Mem Usage

What is amount of free RAM i have now? total used free shared buffers cached Mem: 1010 963 46 0 215 256 -/+ buffers/cache: 491 518 Swap: 1983 0 1983 Above is the output of... (1 Reply)
Discussion started by: new2ss
1 Replies

4. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

5. UNIX for Dummies Questions & Answers

Memory Usage on Linux server

Hi , As I am new to Linux server, I am facing some doubts like: On linux server virtual memory usage goes to 99%, but I have Threshold limit of 95%. So it crossed the threshold limit and alarmd. Yesterday I moniterd the server using TOP command, and found some of Tibco process was consuming... (1 Reply)
Discussion started by: Jaywantmm
1 Replies

6. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

7. Linux

Internet Usage Monitor for Linux

I have installed Ubuntu and i want to monitor the internet usage. Is there any software for linux for monitoring the internet usage? (preferabaly opensource) (1 Reply)
Discussion started by: vkca
1 Replies

8. Shell Programming and Scripting

Script for CPU usage -Linux

Hi all I was wondering if its possible to write a script to keep CPU usage at 90%-95%? for a single cpu linux server? I have a perl script I run on servers with multple cpu's and all I do is max all but one cpu to get into the 90'% utilised area. I now need a script that raises the CPU to... (4 Replies)
Discussion started by: sudobash
4 Replies

9. Shell Programming and Scripting

Linux Application Memory usage

Hello We are in the process of migrating few of our applications in our linux boxes to new linux box to streamline our applications . In this context , i would like to know how we can calculate a particular application is used .? This data will then be used to select which applications need... (7 Replies)
Discussion started by: ron5174
7 Replies

10. UNIX for Advanced & Expert Users

OpenSSL usage on Linux Distros

Hi, My server is Centos 6 i686. Is it possible get an openssl download from this site "https://www.openssl.org/source/" (which is used for 64 bit platforms) and use it on 32 bit platforms also? Thx, Aigini (5 Replies)
Discussion started by: anaigini45
5 Replies
GETGROUPS(2)						     Linux Programmer's Manual						      GETGROUPS(2)

NAME
getgroups, setgroups - get/set list of supplementary group IDs SYNOPSIS
#include <sys/types.h> #include <unistd.h> int getgroups(int size, gid_t list[]); #include <grp.h> int setgroups(size_t size, const gid_t *list); DESCRIPTION
getgroups Up to size supplementary group IDs are returned in list. It is unspecified whether the effective group ID of the calling process is included in the returned list. (Thus, an application should also call getegid(2) and add or remove the resulting value.) If size is zero, list is not modified, but the total number of supplementary group IDs for the process is returned. setgroups Sets the supplementary group IDs for the process. Only the super-user may use this function. RETURN VALUE
getgroups On success, the number of supplementary group IDs is returned. On error, -1 is returned, and errno is set appropriately. setgroups On success, zero is returned. On error, -1 is returned, and errno is set appropriately. ERRORS
EFAULT list has an invalid address. EPERM For setgroups, the user is not the super-user. EINVAL For setgroups, size is greater than NGROUPS (32 for Linux 2.0.32). For getgroups, size is less than the number of supplementary group IDs, but is not zero. NOTES
A process can have up to at least NGROUPS_MAX supplementary group IDs in addition to the effective group ID. The set of supplementary group IDs is inherited from the parent process and may be changed using setgroups. The maximum number of supplementary group IDs can be found using sysconf(3): long ngroups_max; ngroups_max = sysconf(_SC_NGROUPS_MAX); The maximal return value of getgroups cannot be larger than one more than the value obtained this way. The prototype for setgroups is only available if _BSD_SOURCE is defined (either explicitly, or implicitly, by not defining _POSIX_SOURCE or compiling with the -ansi flag). CONFORMING TO
SVr4, SVID (issue 4 only; these calls were not present in SVr3), X/OPEN, 4.3BSD. The getgroups function is in POSIX.1. Since setgroups requires privilege, it is not covered by POSIX.1. SEE ALSO
initgroups(3), getgid(2), setgid(2) Linux 2.0.32 1997-12-10 GETGROUPS(2)
All times are GMT -4. The time now is 02:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy