]> git.ipfire.org Git - thirdparty/glibc.git/blame - pwd/putpwent.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / pwd / putpwent.c
CommitLineData
04277e02 1/* Copyright (C) 1991-2019 Free Software Foundation, Inc.
c84142e8 2 This file is part of the GNU C Library.
28f540f4 3
c84142e8 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
c84142e8
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; if not, see
5a82c748 16 <https://www.gnu.org/licenses/>. */
28f540f4 17
28f540f4
RM
18#include <errno.h>
19#include <stdio.h>
20#include <pwd.h>
676599b3 21#include <nss.h>
28f540f4 22
537e7234 23#define _S(x) x ?: ""
28f540f4 24
676599b3
FW
25/* Write an entry to the given stream. This must know the format of
26 the password file. If the input contains invalid characters,
27 return EINVAL, or replace them with spaces (if they are contained
28 in the GECOS field). */
28f540f4 29int
676599b3 30putpwent (const struct passwd *p, FILE *stream)
28f540f4 31{
676599b3
FW
32 if (p == NULL || stream == NULL
33 || p->pw_name == NULL || !__nss_valid_field (p->pw_name)
34 || !__nss_valid_field (p->pw_passwd)
35 || !__nss_valid_field (p->pw_dir)
36 || !__nss_valid_field (p->pw_shell))
28f540f4 37 {
c4029823 38 __set_errno (EINVAL);
28f540f4
RM
39 return -1;
40 }
41
676599b3
FW
42 int ret;
43 char *gecos_alloc;
44 const char *gecos = __nss_rewrite_field (p->pw_gecos, &gecos_alloc);
45
46 if (gecos == NULL)
47 return -1;
48
537e7234 49 if (p->pw_name[0] == '+' || p->pw_name[0] == '-')
676599b3
FW
50 ret = fprintf (stream, "%s:%s:::%s:%s:%s\n",
51 p->pw_name, _S (p->pw_passwd),
52 gecos, _S (p->pw_dir), _S (p->pw_shell));
537e7234 53 else
676599b3
FW
54 ret = fprintf (stream, "%s:%s:%lu:%lu:%s:%s:%s\n",
55 p->pw_name, _S (p->pw_passwd),
56 (unsigned long int) p->pw_uid,
57 (unsigned long int) p->pw_gid,
58 gecos, _S (p->pw_dir), _S (p->pw_shell));
59
60 free (gecos_alloc);
61 if (ret >= 0)
62 ret = 0;
63 return ret;
28f540f4 64}