]> sourceware.org Git - glibc.git/blame - nis/nis_creategroup.c
Update.
[glibc.git] / nis / nis_creategroup.c
CommitLineData
54eb84d0 1/* Copyright (c) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
51702635 2 This file is part of the GNU C Library.
7d853c90 3 Contributed by Thorsten Kukuk <kukuk@suse.de>, 1997.
51702635
UD
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
51702635
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
51702635 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
51702635 19
7d853c90 20#include <time.h>
51702635
UD
21#include <string.h>
22#include <rpcsvc/nis.h>
51702635
UD
23
24nis_error
a1129917 25nis_creategroup (const_nis_name group, unsigned int flags)
51702635 26{
a53bad16 27 if (group != NULL && group[0] != '\0')
51702635 28 {
a53bad16
UD
29 size_t grouplen = strlen (group);
30 char buf[grouplen + 50];
31 char leafbuf[grouplen + 2];
32 char domainbuf[grouplen + 2];
51702635
UD
33 nis_error status;
34 nis_result *res;
35 char *cp, *cp2;
36 nis_object *obj;
37
38 cp = stpcpy (buf, nis_leaf_of_r (group, leafbuf, sizeof (leafbuf) - 1));
39 cp = stpcpy (cp, ".groups_dir");
40 cp2 = nis_domain_of_r (group, domainbuf, sizeof (domainbuf) - 1);
a53bad16 41 if (cp2 != NULL && cp2[0] != '\0')
51702635 42 {
714a562f
UD
43 *cp++ = '.';
44 stpcpy (cp, cp2);
51702635
UD
45 }
46 else
47 return NIS_BADNAME;
48
7d853c90 49 obj = malloc (sizeof (nis_object));
54eb84d0 50 if (__builtin_expect (obj == NULL, 0))
26a60f90
UD
51 return NIS_NOMEMORY;
52
7d853c90 53 obj->zo_oid.ctime = obj->zo_oid.mtime = time (NULL);
26a60f90 54 obj->zo_name = strdup (leafbuf);
51702635
UD
55 obj->zo_owner = strdup (__nis_default_owner (NULL));
56 obj->zo_group = strdup (__nis_default_group (NULL));
26a60f90 57 obj->zo_domain = strdup (domainbuf);
7d853c90
UD
58 if (obj->zo_name == NULL || obj->zo_owner == NULL
59 || obj->zo_group == NULL || obj->zo_domain == NULL)
60 return NIS_NOMEMORY;
51702635 61 obj->zo_access = __nis_default_access (NULL, 0);
26a60f90 62 obj->zo_ttl = 60 * 60;
dfd2257a 63 obj->zo_data.zo_type = NIS_GROUP_OBJ;
51702635
UD
64 obj->zo_data.objdata_u.gr_data.gr_flags = flags;
65 obj->zo_data.objdata_u.gr_data.gr_members.gr_members_len = 0;
66 obj->zo_data.objdata_u.gr_data.gr_members.gr_members_val = NULL;
67
68 res = nis_add (buf, obj);
26a60f90
UD
69 if (res == NULL)
70 return NIS_NOMEMORY;
91eee4dd 71 status = NIS_RES_STATUS (res);
51702635
UD
72 nis_freeresult (res);
73 nis_free_object (obj);
74
75 return status;
76 }
77 return NIS_FAIL;
78}
This page took 0.220899 seconds and 5 git commands to generate.