summaryrefslogblamecommitdiff
path: root/libgcompat/pwd.c
blob: 50d8da0527bc72268efed434cf9eb49e5a8079b9 (plain) (tree)
1
2
3
4
5
6
7
8


                                                                        

                  
                  

                   


                                                              

                           
                                              
                              
         
 
                         
                              
         
 
                          
                            
         











                                         


                                                                           

                           
                                              
                              
         
 
                         
                              
         
 
                          
                            
         










                                              
/* some musl versions incorrectly mark fgetpwent() as a GNU extension */
#define _GNU_SOURCE

#include <errno.h>
#include <pwd.h>
#include <stdio.h>
#include <string.h>

int getpwent_r(struct passwd *pwbuf, char *buf, size_t buflen,
               struct passwd **pwbufp)
{
	struct passwd *pwd;

	if (pwbufp == NULL || pwbuf == NULL) {
		return ERANGE;
	}

	if (buflen < 1) {
		return ERANGE;
	}

	if (buf != NULL) {
		*buf = '\0';
	}

	if ((pwd = getpwent()) == NULL) {
		*pwbufp = NULL;
		return ENOENT;
	}

	memcpy(pwbuf, pwd, sizeof(*pwd));
	*pwbufp = pwbuf;

	return 0;
}

int fgetpwent_r(FILE *filp, struct passwd *pwbuf, char *buf, size_t buflen,
                struct passwd **pwbufp)
{
	struct passwd *pwd;

	if (pwbufp == NULL || pwbuf == NULL) {
		return ERANGE;
	}

	if (buflen < 1) {
		return ERANGE;
	}

	if (buf != NULL) {
		*buf = '\0';
	}

	if ((pwd = fgetpwent(filp)) == NULL) {
		*pwbufp = NULL;
		return ENOENT;
	}

	memcpy(pwbuf, pwd, sizeof(*pwd));
	*pwbufp = pwbuf;

	return 0;
}