92 lines
1.7 KiB
C
92 lines
1.7 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 1990 - 1994, Julianne Frances Haugh
|
|
* SPDX-FileCopyrightText: 1996 - 1998, Marek Michałkiewicz
|
|
* SPDX-FileCopyrightText: 2005 , Tomasz Kłoczko
|
|
* SPDX-FileCopyrightText: 2008 , Nicolas François
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ident "$Id$"
|
|
|
|
#include <grp.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "alloc/malloc.h"
|
|
#include "atoi/getnum.h"
|
|
#include "defines.h"
|
|
#include "prototypes.h"
|
|
#include "string/strcmp/streq.h"
|
|
#include "string/strtok/stpsep.h"
|
|
#include "string/strtok/strsep2arr.h"
|
|
#include "string/strtok/astrsep2ls.h"
|
|
|
|
|
|
/*
|
|
* list - turn a comma-separated string into an array of (char *)'s
|
|
*
|
|
* list() converts the comma-separated list of member names into
|
|
* an array of character pointers.
|
|
*
|
|
* FINALLY added dynamic allocation. Still need to fix sgetsgent().
|
|
* --marekm
|
|
*/
|
|
static char **
|
|
list(char *s)
|
|
{
|
|
static char **members = NULL;
|
|
|
|
size_t n;
|
|
|
|
free(members);
|
|
|
|
members = astrsep2ls(s, ",", &n);
|
|
if (members == NULL)
|
|
return NULL;
|
|
|
|
if (streq(members[n-1], ""))
|
|
members[n-1] = NULL;
|
|
|
|
return members;
|
|
}
|
|
|
|
|
|
struct group *
|
|
sgetgrent(const char *s)
|
|
{
|
|
static char *dup = NULL;
|
|
static struct group grent;
|
|
|
|
char *fields[4];
|
|
|
|
free(dup);
|
|
dup = strdup(s);
|
|
if (dup == NULL)
|
|
return NULL;
|
|
|
|
stpsep(dup, "\n");
|
|
|
|
if (STRSEP2ARR(dup, ":", fields) == -1)
|
|
return NULL;
|
|
|
|
if (streq(fields[2], ""))
|
|
return NULL;
|
|
|
|
grent.gr_name = fields[0];
|
|
grent.gr_passwd = fields[1];
|
|
if (get_gid(fields[2], &grent.gr_gid) == -1) {
|
|
return NULL;
|
|
}
|
|
grent.gr_mem = list(fields[3]);
|
|
if (NULL == grent.gr_mem) {
|
|
return NULL; /* out of memory */
|
|
}
|
|
|
|
return &grent;
|
|
}
|