xref: /netbsd-src/lib/libutil/compat/compat_passwd.c (revision 50728e7823a76d5bd1a7bfa3a4eac400269b1339)
1*50728e78Schristos /*	$NetBSD: compat_passwd.c,v 1.2 2009/01/11 02:57:18 christos Exp $	*/
2*50728e78Schristos 
3*50728e78Schristos /*-
4*50728e78Schristos  * Copyright (c) 2008 The NetBSD Foundation, Inc.
5*50728e78Schristos  * All rights reserved.
6*50728e78Schristos  *
7*50728e78Schristos  * This code is derived from software contributed to The NetBSD Foundation
8*50728e78Schristos  * by Christos Zoulas.
9*50728e78Schristos  *
10*50728e78Schristos  * Redistribution and use in source and binary forms, with or without
11*50728e78Schristos  * modification, are permitted provided that the following conditions
12*50728e78Schristos  * are met:
13*50728e78Schristos  * 1. Redistributions of source code must retain the above copyright
14*50728e78Schristos  *    notice, this list of conditions and the following disclaimer.
15*50728e78Schristos  * 2. Redistributions in binary form must reproduce the above copyright
16*50728e78Schristos  *    notice, this list of conditions and the following disclaimer in the
17*50728e78Schristos  *    documentation and/or other materials provided with the distribution.
18*50728e78Schristos  * 3. All advertising materials mentioning features or use of this software
19*50728e78Schristos  *    must display the following acknowledgement:
20*50728e78Schristos  *        This product includes software developed by the NetBSD
21*50728e78Schristos  *        Foundation, Inc. and its contributors.
22*50728e78Schristos  * 4. Neither the name of The NetBSD Foundation nor the names of its
23*50728e78Schristos  *    contributors may be used to endorse or promote products derived
24*50728e78Schristos  *    from this software without specific prior written permission.
25*50728e78Schristos  *
26*50728e78Schristos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27*50728e78Schristos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28*50728e78Schristos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29*50728e78Schristos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30*50728e78Schristos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31*50728e78Schristos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32*50728e78Schristos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33*50728e78Schristos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34*50728e78Schristos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35*50728e78Schristos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36*50728e78Schristos  * POSSIBILITY OF SUCH DAMAGE.
37*50728e78Schristos  */
38*50728e78Schristos #include <sys/cdefs.h>
39*50728e78Schristos #if defined(LIBC_SCCS) && !defined(lint)
40*50728e78Schristos __RCSID("$NetBSD: compat_passwd.c,v 1.2 2009/01/11 02:57:18 christos Exp $");
41*50728e78Schristos #endif /* LIBC_SCCS and not lint */
42*50728e78Schristos 
43*50728e78Schristos #define __LIBC12_SOURCE__
44*50728e78Schristos 
45*50728e78Schristos #include <stdint.h>
46*50728e78Schristos #include <stdlib.h>
47*50728e78Schristos #include <string.h>
48*50728e78Schristos #include <pwd.h>
49*50728e78Schristos #include <compat/include/pwd.h>
50*50728e78Schristos #include <util.h>
51*50728e78Schristos #include <compat/util.h>
52*50728e78Schristos 
53*50728e78Schristos __warn_references(pw_scan,
54*50728e78Schristos     "warning: reference to compatibility pw_scan(); "
55*50728e78Schristos     "include <pwd.h> to generate correct reference")
56*50728e78Schristos __warn_references(pw_copy,
57*50728e78Schristos     "warning: reference to compatibility pw_copy(); "
58*50728e78Schristos     "include <util.h> to generate correct reference")
59*50728e78Schristos __warn_references(pw_copyx,
60*50728e78Schristos     "warning: reference to compatibility pw_copyx(); "
61*50728e78Schristos     "include <util.h> to generate correct reference")
62*50728e78Schristos __warn_references(pw_getpwconf,
63*50728e78Schristos     "warning: reference to compatibility pw_getpwconf(); "
64*50728e78Schristos     "include <pwd.h> to generate correct reference")
65*50728e78Schristos 
66*50728e78Schristos int
pw_scan(char * buf,struct passwd50 * p,int * flags)67*50728e78Schristos pw_scan(char *buf, struct passwd50 *p, int *flags)
68*50728e78Schristos {
69*50728e78Schristos 	struct passwd px;
70*50728e78Schristos 	int rv = __pw_scan50(buf, &px, flags);
71*50728e78Schristos 	passwd_to_passwd50(&px, p);
72*50728e78Schristos 	return rv;
73*50728e78Schristos }
74*50728e78Schristos 
75*50728e78Schristos void
pw_copy(int ffd,int tfd,struct passwd50 * pw50,struct passwd50 * opw50)76*50728e78Schristos pw_copy(int ffd, int tfd, struct passwd50 *pw50, struct passwd50 *opw50)
77*50728e78Schristos {
78*50728e78Schristos 	struct passwd pw, opw;
79*50728e78Schristos 	passwd50_to_passwd(pw50, &pw);
80*50728e78Schristos 	if (opw50)
81*50728e78Schristos 		passwd50_to_passwd(opw50, &opw);
82*50728e78Schristos 	__pw_copy50(ffd, tfd, &pw, opw50 ? &opw : NULL);
83*50728e78Schristos }
84*50728e78Schristos 
85*50728e78Schristos int
pw_copyx(int ffd,int tfd,struct passwd50 * pw50,struct passwd50 * opw50,char * errbuf,size_t errbufsiz)86*50728e78Schristos pw_copyx(int ffd, int tfd, struct passwd50 *pw50, struct passwd50 *opw50,
87*50728e78Schristos     char *errbuf, size_t errbufsiz)
88*50728e78Schristos {
89*50728e78Schristos 	struct passwd pw, opw;
90*50728e78Schristos 	passwd50_to_passwd(pw50, &pw);
91*50728e78Schristos 	if (opw50)
92*50728e78Schristos 		passwd50_to_passwd(opw50, &opw);
93*50728e78Schristos 	return __pw_copyx50(ffd, tfd, &pw, opw50 ? &opw : NULL, errbuf,
94*50728e78Schristos 	    errbufsiz);
95*50728e78Schristos }
96*50728e78Schristos 
97*50728e78Schristos void
pw_getpwconf(char * buf,size_t len,const struct passwd50 * p,const char * opt)98*50728e78Schristos pw_getpwconf(char *buf, size_t len, const struct passwd50 *p, const char *opt)
99*50728e78Schristos {
100*50728e78Schristos 	struct passwd px;
101*50728e78Schristos 	passwd50_to_passwd(p, &px);
102*50728e78Schristos 	__pw_getpwconf50(buf, len, &px, opt);
103*50728e78Schristos }
104