2007-10-07 17:14:02 +05:30
|
|
|
/*
|
2008-04-27 06:10:09 +05:30
|
|
|
* Copyright (c) 1990 - 1994, Julianne Frances Haugh
|
|
|
|
* Copyright (c) 1996 - 1998, Marek Michałkiewicz
|
|
|
|
* Copyright (c) 2005 , Tomasz Kłoczko
|
|
|
|
* Copyright (c) 2008 , Nicolas François
|
2007-10-07 17:14:02 +05:30
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2008-04-27 06:10:09 +05:30
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
2007-10-07 17:14:02 +05:30
|
|
|
*
|
2008-04-27 06:10:09 +05:30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
/* Newer versions of Linux libc already have shadow support. */
|
2007-10-07 17:16:07 +05:30
|
|
|
#if defined(SHADOWGRP) && !defined(HAVE_SHADOWGRP) /*{ */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "defines.h"
|
2007-10-07 17:16:07 +05:30
|
|
|
static FILE *shadow;
|
|
|
|
static char sgrbuf[BUFSIZ * 4];
|
|
|
|
static char **members = NULL;
|
|
|
|
static size_t nmembers = 0;
|
|
|
|
static char **admins = NULL;
|
|
|
|
static size_t nadmins = 0;
|
|
|
|
static struct sgrp sgroup;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#define FIELDS 4
|
|
|
|
|
|
|
|
#ifdef USE_NIS
|
2008-05-26 14:10:04 +05:30
|
|
|
static bool nis_used;
|
2007-10-07 17:16:07 +05:30
|
|
|
static int nis_ignore;
|
|
|
|
static enum { native, start, middle, native2 } nis_state;
|
2008-05-26 14:10:04 +05:30
|
|
|
static bool nis_bound;
|
2007-10-07 17:16:07 +05:30
|
|
|
static char *nis_domain;
|
|
|
|
static char *nis_key;
|
|
|
|
static int nis_keylen;
|
|
|
|
static char *nis_val;
|
|
|
|
static int nis_vallen;
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#define IS_NISCHAR(c) ((c)=='+')
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef USE_NIS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* __setsgNIS - turn on or off NIS searches
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
void __setsgNIS (int flag)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
nis_ignore = !flag;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
if (nis_ignore) {
|
|
|
|
nis_used = false;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* bind_nis - bind to NIS server
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static int bind_nis (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
if (yp_get_default_domain (&nis_domain))
|
|
|
|
return -1;
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
nis_bound = true;
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-01-05 19:26:21 +05:30
|
|
|
static char **build_list (char *s, char **list[], size_t * nlist)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
char **ptr = *list;
|
|
|
|
size_t nelem = *nlist, size;
|
|
|
|
|
|
|
|
while (s != NULL && *s != '\0') {
|
|
|
|
size = (nelem + 1) * sizeof (ptr);
|
|
|
|
if ((ptr = realloc (*list, size)) != NULL) {
|
|
|
|
ptr[nelem++] = s;
|
|
|
|
*list = ptr;
|
|
|
|
*nlist = nelem;
|
|
|
|
if ((s = strchr (s, ',')))
|
|
|
|
*s++ = '\0';
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
size = (nelem + 1) * sizeof (ptr);
|
|
|
|
if ((ptr = realloc (*list, size)) != NULL) {
|
|
|
|
ptr[nelem] = '\0';
|
|
|
|
*list = ptr;
|
|
|
|
}
|
|
|
|
return ptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
void setsgent (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
#ifdef USE_NIS
|
|
|
|
nis_state = native;
|
|
|
|
#endif
|
2008-05-26 14:10:04 +05:30
|
|
|
if (NULL != shadow) {
|
2007-10-07 17:14:02 +05:30
|
|
|
rewind (shadow);
|
2008-05-26 14:10:04 +05:30
|
|
|
} else {
|
2007-10-07 17:16:07 +05:30
|
|
|
shadow = fopen (SGROUP_FILE, "r");
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
void endsgent (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2008-05-26 14:10:04 +05:30
|
|
|
if (NULL != shadow) {
|
2007-10-07 17:14:02 +05:30
|
|
|
(void) fclose (shadow);
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
shadow = (FILE *) 0;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
struct sgrp *sgetsgent (const char *string)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
char *fields[FIELDS];
|
|
|
|
char *cp;
|
|
|
|
int i;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
strncpy (sgrbuf, string, (int) sizeof sgrbuf - 1);
|
|
|
|
sgrbuf[sizeof sgrbuf - 1] = '\0';
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
cp = strrchr (sgrbuf, '\n');
|
|
|
|
if (NULL != cp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp = '\0';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be exactly 4 colon separated fields. Find
|
|
|
|
* all 4 of them and save the starting addresses in fields[].
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
for (cp = sgrbuf, i = 0; (i < FIELDS) && (NULL != cp); i++) {
|
2007-10-07 17:14:02 +05:30
|
|
|
fields[i] = cp;
|
2008-05-26 14:10:04 +05:30
|
|
|
cp = strchr (cp, ':');
|
|
|
|
if (NULL != cp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp++ = '\0';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If there was an extra field somehow, or perhaps not enough,
|
|
|
|
* the line is invalid.
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
if ((NULL != cp) || (i != FIELDS))
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef USE_NIS
|
2008-05-26 14:10:04 +05:30
|
|
|
if (!IS_NISCHAR (fields[0][0])) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
2008-05-26 14:10:04 +05:30
|
|
|
} else {
|
|
|
|
nis_used = true;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sgroup.sg_name = fields[0];
|
|
|
|
sgroup.sg_passwd = fields[1];
|
2008-05-26 14:10:04 +05:30
|
|
|
if (0 != nadmins) {
|
2007-10-07 17:16:07 +05:30
|
|
|
nadmins = 0;
|
|
|
|
free (admins);
|
|
|
|
admins = NULL;
|
|
|
|
}
|
2008-05-26 14:10:04 +05:30
|
|
|
if (0 != nmembers) {
|
2007-10-07 17:16:07 +05:30
|
|
|
nmembers = 0;
|
|
|
|
free (members);
|
|
|
|
members = NULL;
|
|
|
|
}
|
2008-01-05 19:26:21 +05:30
|
|
|
sgroup.sg_adm = build_list (fields[2], &admins, &nadmins);
|
|
|
|
sgroup.sg_mem = build_list (fields[3], &members, &nmembers);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
return &sgroup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* fgetsgent - convert next line in stream to (struct sgrp)
|
|
|
|
*
|
|
|
|
* fgetsgent() reads the next line from the provided stream and
|
|
|
|
* converts it to a (struct sgrp). NULL is returned on EOF.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
struct sgrp *fgetsgent (FILE * fp)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
char buf[sizeof sgrbuf];
|
|
|
|
char *cp;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
if (NULL == fp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return (0);
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#ifdef USE_NIS
|
|
|
|
while (fgetsx (buf, sizeof buf, fp) != (char *) 0)
|
|
|
|
#else
|
|
|
|
if (fgetsx (buf, sizeof buf, fp) != (char *) 0)
|
|
|
|
#endif
|
|
|
|
{
|
2008-05-26 14:10:04 +05:30
|
|
|
cp = strchr (buf, '\n');
|
|
|
|
if (NULL != cp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp = '\0';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef USE_NIS
|
2008-05-26 14:10:04 +05:30
|
|
|
if ((0 != nis_ignore) && IS_NISCHAR (buf[0])) {
|
2007-10-07 17:14:02 +05:30
|
|
|
continue;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
return (sgetsgent (buf));
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* getsgent - get a single shadow group entry
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
struct sgrp *getsgent (void)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
#ifdef USE_NIS
|
2007-10-07 17:16:07 +05:30
|
|
|
int nis_1_group = 0;
|
|
|
|
struct sgrp *val;
|
|
|
|
char buf[BUFSIZ];
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2008-05-26 14:10:04 +05:30
|
|
|
if (NULL == shadow) {
|
2007-10-07 17:14:02 +05:30
|
|
|
setsgent ();
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#ifdef USE_NIS
|
2007-10-07 17:16:07 +05:30
|
|
|
again:
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* See if we are reading from the local file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (nis_state == native || nis_state == native2) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the next entry from the shadow group file. Return
|
|
|
|
* NULL right away if there is none.
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
val = fgetsgent (shadow);
|
|
|
|
if (NULL == val) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* If this entry began with a NIS escape character, we have
|
|
|
|
* to see if this is just a single group, or if the entire
|
|
|
|
* map is being asked for.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (IS_NISCHAR (val->sg_name[0])) {
|
2008-05-26 14:10:04 +05:30
|
|
|
if ('\0' != val->sg_name[1]) {
|
2007-10-07 17:14:02 +05:30
|
|
|
nis_1_group = 1;
|
2008-05-26 14:10:04 +05:30
|
|
|
} else {
|
2007-10-07 17:14:02 +05:30
|
|
|
nis_state = start;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this isn't a NIS group and this isn't an escape to go
|
|
|
|
* use a NIS map, it must be a regular local group.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (nis_1_group == 0 && nis_state != start)
|
|
|
|
return val;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is an escape to use an NIS map, switch over to
|
|
|
|
* that bunch of code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (nis_state == start)
|
|
|
|
goto again;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* NEEDSWORK. Here we substitute pieces-parts of this entry.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
} else {
|
2008-05-26 14:10:04 +05:30
|
|
|
if (!nis_bound) {
|
2007-10-07 17:14:02 +05:30
|
|
|
if (bind_nis ()) {
|
|
|
|
nis_state = native2;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nis_state == start) {
|
|
|
|
if (yp_first (nis_domain, "gshadow.byname", &nis_key,
|
2007-10-07 17:16:07 +05:30
|
|
|
&nis_keylen, &nis_val, &nis_vallen)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
nis_state = native2;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
nis_state = middle;
|
|
|
|
} else if (nis_state == middle) {
|
|
|
|
if (yp_next (nis_domain, "gshadow.byname", nis_key,
|
2007-10-07 17:16:07 +05:30
|
|
|
nis_keylen, &nis_key, &nis_keylen,
|
|
|
|
&nis_val, &nis_vallen)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
nis_state = native2;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sgetsgent (nis_val);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
return (fgetsgent (shadow));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* getsgnam - get a shadow group entry by name
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
struct sgrp *getsgnam (const char *name)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
struct sgrp *sgrp;
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#ifdef USE_NIS
|
2007-10-07 17:16:07 +05:30
|
|
|
char buf[BUFSIZ];
|
|
|
|
static char save_name[16];
|
|
|
|
int nis_disabled = 0;
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
setsgent ();
|
|
|
|
|
|
|
|
#ifdef USE_NIS
|
|
|
|
if (nis_used) {
|
2007-10-07 17:16:07 +05:30
|
|
|
again:
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Search the gshadow.byname map for this group.
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
if (!nis_bound) {
|
2007-10-07 17:14:02 +05:30
|
|
|
bind_nis ();
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
if (nis_bound) {
|
2007-10-07 17:16:07 +05:30
|
|
|
char *cp;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
if (yp_match (nis_domain, "gshadow.byname", name,
|
2007-10-07 17:16:07 +05:30
|
|
|
strlen (name), &nis_val,
|
|
|
|
&nis_vallen) == 0) {
|
2008-05-26 14:10:04 +05:30
|
|
|
cp = strchr (nis_val, '\n');
|
|
|
|
if (NULL != cp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp = '\0';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
nis_state = middle;
|
2008-05-26 14:10:04 +05:30
|
|
|
sgrp = sgetsgent (nis_val);
|
|
|
|
if (NULL != sgrp) {
|
2007-10-07 17:14:02 +05:30
|
|
|
strcpy (save_name, sgrp->sg_name);
|
|
|
|
nis_key = save_name;
|
|
|
|
nis_keylen = strlen (save_name);
|
|
|
|
}
|
|
|
|
return sgrp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nis_state = native2;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef USE_NIS
|
|
|
|
if (nis_used) {
|
|
|
|
nis_ignore++;
|
2008-05-26 14:10:04 +05:30
|
|
|
nis_disabled = true;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
while ((sgrp = getsgent ()) != (struct sgrp *) 0) {
|
2008-05-26 14:10:04 +05:30
|
|
|
if (strcmp (name, sgrp->sg_name) == 0) {
|
2007-10-07 17:14:02 +05:30
|
|
|
break;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
#ifdef USE_NIS
|
|
|
|
nis_ignore--;
|
|
|
|
#endif
|
2008-05-26 14:10:04 +05:30
|
|
|
return sgrp;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* putsgent - output shadow group entry in text form
|
|
|
|
*
|
|
|
|
* putsgent() converts the contents of a (struct sgrp) to text and
|
|
|
|
* writes the result to the given stream. This is the logical
|
|
|
|
* opposite of fgetsgent.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int putsgent (const struct sgrp *sgrp, FILE * fp)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
char *buf, *cp;
|
|
|
|
int i;
|
|
|
|
size_t size;
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
if ((NULL == fp) || (NULL == sgrp)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/* calculate the required buffer size */
|
2007-10-07 17:16:07 +05:30
|
|
|
size = strlen (sgrp->sg_name) + strlen (sgrp->sg_passwd) + 10;
|
2008-05-26 14:10:04 +05:30
|
|
|
for (i = 0; (NULL != sgrp->sg_adm) && (NULL != sgrp->sg_adm[i]); i++) {
|
2007-10-07 17:16:07 +05:30
|
|
|
size += strlen (sgrp->sg_adm[i]) + 1;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
|
|
|
for (i = 0; (NULL != sgrp->sg_mem) && (NULL != sgrp->sg_mem[i]); i++) {
|
2007-10-07 17:16:07 +05:30
|
|
|
size += strlen (sgrp->sg_mem[i]) + 1;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
buf = malloc (size);
|
2008-05-26 14:10:04 +05:30
|
|
|
if (NULL == buf) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
cp = buf;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy the group name and passwd.
|
|
|
|
*/
|
|
|
|
|
|
|
|
strcpy (cp, sgrp->sg_name);
|
|
|
|
cp += strlen (cp);
|
|
|
|
*cp++ = ':';
|
|
|
|
|
|
|
|
strcpy (cp, sgrp->sg_passwd);
|
|
|
|
cp += strlen (cp);
|
|
|
|
*cp++ = ':';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy the administrators, separating each from the other
|
|
|
|
* with a ",".
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
for (i = 0; NULL != sgrp->sg_adm[i]; i++) {
|
|
|
|
if (i > 0) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp++ = ',';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
strcpy (cp, sgrp->sg_adm[i]);
|
|
|
|
cp += strlen (cp);
|
|
|
|
}
|
|
|
|
*cp++ = ':';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now do likewise with the group members.
|
|
|
|
*/
|
|
|
|
|
2008-05-26 14:10:04 +05:30
|
|
|
for (i = 0; NULL != sgrp->sg_mem[i]; i++) {
|
|
|
|
if (i > 0) {
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp++ = ',';
|
2008-05-26 14:10:04 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
strcpy (cp, sgrp->sg_mem[i]);
|
|
|
|
cp += strlen (cp);
|
|
|
|
}
|
|
|
|
*cp++ = '\n';
|
|
|
|
*cp = '\0';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Output using the function which understands the line
|
|
|
|
* continuation conventions.
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fputsx (buf, fp) == EOF) {
|
|
|
|
free (buf);
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
free (buf);
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int errno; /* warning: ANSI C forbids an empty source file */
|
|
|
|
#endif /*} SHADOWGRP */
|