]> git.ipfire.org Git - thirdparty/glibc.git/blame - nis/nis_add.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / nis / nis_add.c
CommitLineData
04277e02 1/* Copyright (C) 1997-2019 Free Software Foundation, Inc.
51702635
UD
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1997.
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 15 You should have received a copy of the GNU Lesser General Public
59ba27a6 16 License along with the GNU C Library; if not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
51702635 18
ba9234d9 19#include <string.h>
51702635 20#include <rpcsvc/nis.h>
82f43dd2 21#include <shlib-compat.h>
51702635 22
91eee4dd 23#include "nis_xdr.h"
51702635
UD
24#include "nis_intern.h"
25
26nis_result *
91eee4dd 27nis_add (const_nis_name name, const nis_object *obj2)
51702635 28{
91eee4dd 29 nis_object obj;
51702635
UD
30 nis_result *res;
31 nis_error status;
32 struct ns_request req;
a53bad16
UD
33 size_t namelen = strlen (name);
34 char buf1 [namelen + 20];
35 char buf4 [namelen + 20];
51702635
UD
36
37 res = calloc (1, sizeof (nis_result));
91eee4dd
UD
38 if (res == NULL)
39 return NULL;
51702635
UD
40
41 req.ns_name = (char *)name;
42
91eee4dd
UD
43 memcpy (&obj, obj2, sizeof (nis_object));
44
a53bad16 45 if (obj.zo_name == NULL || obj.zo_name[0] == '\0')
91eee4dd 46 obj.zo_name = nis_leaf_of_r (name, buf1, sizeof (buf1));
51702635 47
a53bad16 48 if (obj.zo_owner == NULL || obj.zo_owner[0] == '\0')
91eee4dd 49 obj.zo_owner = nis_local_principal ();
51702635 50
a53bad16 51 if (obj.zo_group == NULL || obj.zo_group[0] == '\0')
91eee4dd 52 obj.zo_group = nis_local_group ();
51702635 53
91eee4dd 54 obj.zo_domain = nis_domain_of_r (name, buf4, sizeof (buf4));
51702635 55
91eee4dd
UD
56 req.ns_object.ns_object_val = nis_clone_object (&obj, NULL);
57 if (req.ns_object.ns_object_val == NULL)
58 {
59 NIS_RES_STATUS (res) = NIS_NOMEMORY;
60 return res;
61 }
62 req.ns_object.ns_object_len = 1;
51702635 63
a53bad16
UD
64 status = __do_niscall (req.ns_object.ns_object_val[0].zo_domain,
65 NIS_ADD, (xdrproc_t) _xdr_ns_request,
66 (caddr_t) &req, (xdrproc_t) _xdr_nis_result,
67 (caddr_t) res, MASTER_ONLY, NULL);
a0bf67cc 68 if (status != NIS_SUCCESS)
91eee4dd 69 NIS_RES_STATUS (res) = status;
51702635
UD
70
71 nis_destroy_object (req.ns_object.ns_object_val);
72
73 return res;
74}
1e4d83f6 75libnsl_hidden_nolink_def (nis_add, GLIBC_2_1)