xref: /freebsd/usr.sbin/pw/pw_nis.c (revision eba230afba4932f02a1ca44efc797cf7499a5cb0)
1f1d684faSDavid Nugent /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
31de7b4b8SPedro F. Giffuni  *
4f1d684faSDavid Nugent  * Copyright (C) 1996
5f1d684faSDavid Nugent  *	David L. Nugent.  All rights reserved.
6f1d684faSDavid Nugent  *
7f1d684faSDavid Nugent  * Redistribution and use in source and binary forms, with or without
8f1d684faSDavid Nugent  * modification, are permitted provided that the following conditions
9f1d684faSDavid Nugent  * are met:
10f1d684faSDavid Nugent  * 1. Redistributions of source code must retain the above copyright
11f1d684faSDavid Nugent  *    notice, this list of conditions and the following disclaimer.
12f1d684faSDavid Nugent  * 2. Redistributions in binary form must reproduce the above copyright
13f1d684faSDavid Nugent  *    notice, this list of conditions and the following disclaimer in the
14f1d684faSDavid Nugent  *    documentation and/or other materials provided with the distribution.
15f1d684faSDavid Nugent  *
16f1d684faSDavid Nugent  * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
17f1d684faSDavid Nugent  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18f1d684faSDavid Nugent  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19f1d684faSDavid Nugent  * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
20f1d684faSDavid Nugent  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21f1d684faSDavid Nugent  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22f1d684faSDavid Nugent  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23f1d684faSDavid Nugent  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24f1d684faSDavid Nugent  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25f1d684faSDavid Nugent  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26f1d684faSDavid Nugent  * SUCH DAMAGE.
27f1d684faSDavid Nugent  */
28f1d684faSDavid Nugent 
29f1d684faSDavid Nugent #include <sys/types.h>
30bcbdb01eSBaptiste Daroussin 
31fb2db031SBaptiste Daroussin #include <err.h>
32fb2db031SBaptiste Daroussin #include <pwd.h>
33fb2db031SBaptiste Daroussin #include <libutil.h>
3407c4acccSAlan Somers #include <unistd.h>
35f1d684faSDavid Nugent 
36f1d684faSDavid Nugent #include "pw.h"
37f1d684faSDavid Nugent 
38f1d684faSDavid Nugent static int
pw_nisupdate(const char * path,struct passwd * pwd,char const * user)39fb2db031SBaptiste Daroussin pw_nisupdate(const char * path, struct passwd * pwd, char const * user)
40f1d684faSDavid Nugent {
41fb2db031SBaptiste Daroussin 	int pfd, tfd;
42fb2db031SBaptiste Daroussin 	struct passwd *pw = NULL;
43fb2db031SBaptiste Daroussin 	struct passwd *old_pw = NULL;
44f1d684faSDavid Nugent 
45d2d022b9SBaptiste Daroussin 	printf("===> %s\n", path);
46fb2db031SBaptiste Daroussin 	if (pwd != NULL)
47fb2db031SBaptiste Daroussin 		pw = pw_dup(pwd);
48fb2db031SBaptiste Daroussin 
49fb2db031SBaptiste Daroussin 	if (user != NULL)
50fb2db031SBaptiste Daroussin 		old_pw = GETPWNAM(user);
51fb2db031SBaptiste Daroussin 
52fb2db031SBaptiste Daroussin 	if (pw_init(NULL, path))
53fb2db031SBaptiste Daroussin 		err(1,"pw_init()");
54fb2db031SBaptiste Daroussin 	if ((pfd = pw_lock()) == -1) {
55fb2db031SBaptiste Daroussin 		pw_fini();
56fb2db031SBaptiste Daroussin 		err(1, "pw_lock()");
57fb2db031SBaptiste Daroussin 	}
58fb2db031SBaptiste Daroussin 	if ((tfd = pw_tmp(-1)) == -1) {
59fb2db031SBaptiste Daroussin 		pw_fini();
60fb2db031SBaptiste Daroussin 		err(1, "pw_tmp()");
61fb2db031SBaptiste Daroussin 	}
62fb2db031SBaptiste Daroussin 	if (pw_copy(pfd, tfd, pw, old_pw) == -1) {
63fb2db031SBaptiste Daroussin 		pw_fini();
6407c4acccSAlan Somers 		close(tfd);
65fb2db031SBaptiste Daroussin 		err(1, "pw_copy()");
66fb2db031SBaptiste Daroussin 	}
67cbaba16bSAlan Somers 	fsync(tfd);
6807c4acccSAlan Somers 	close(tfd);
694efe6c74SBaptiste Daroussin 	if (chmod(pw_tempname(), 0644) == -1)
704efe6c74SBaptiste Daroussin 		err(1, "chmod()");
71fb2db031SBaptiste Daroussin 	if (rename(pw_tempname(), path) == -1)
72fb2db031SBaptiste Daroussin 		err(1, "rename()");
73fb2db031SBaptiste Daroussin 
74fb2db031SBaptiste Daroussin 	free(pw);
75fb2db031SBaptiste Daroussin 	pw_fini();
76fb2db031SBaptiste Daroussin 
77fb2db031SBaptiste Daroussin 	return (0);
78f1d684faSDavid Nugent }
79f1d684faSDavid Nugent 
80f1d684faSDavid Nugent int
addnispwent(const char * path,struct passwd * pwd)81f1d684faSDavid Nugent addnispwent(const char *path, struct passwd * pwd)
82f1d684faSDavid Nugent {
83fb2db031SBaptiste Daroussin 	return pw_nisupdate(path, pwd, NULL);
84f1d684faSDavid Nugent }
85f1d684faSDavid Nugent 
86f1d684faSDavid Nugent int
chgnispwent(const char * path,char const * login,struct passwd * pwd)87f1d684faSDavid Nugent chgnispwent(const char *path, char const * login, struct passwd * pwd)
88f1d684faSDavid Nugent {
89fb2db031SBaptiste Daroussin 	return pw_nisupdate(path, pwd, login);
90f1d684faSDavid Nugent }
91f1d684faSDavid Nugent 
92f1d684faSDavid Nugent int
delnispwent(const char * path,const char * login)93f1d684faSDavid Nugent delnispwent(const char *path, const char *login)
94f1d684faSDavid Nugent {
95fb2db031SBaptiste Daroussin 	return pw_nisupdate(path, NULL, login);
96f1d684faSDavid Nugent }
97