xref: /netbsd-src/lib/libutil/compat/compat_login_cap.c (revision 50728e7823a76d5bd1a7bfa3a4eac400269b1339)
1*50728e78Schristos /*	$NetBSD: compat_login_cap.c,v 1.2 2009/01/11 02:57:18 christos Exp $	*/
2*50728e78Schristos /*-
3*50728e78Schristos  * Copyright (c) 2008 The NetBSD Foundation, Inc.
4*50728e78Schristos  * All rights reserved.
5*50728e78Schristos  *
6*50728e78Schristos  * This code is derived from software contributed to The NetBSD Foundation
7*50728e78Schristos  * by Christos Zoulas.
8*50728e78Schristos  *
9*50728e78Schristos  * Redistribution and use in source and binary forms, with or without
10*50728e78Schristos  * modification, are permitted provided that the following conditions
11*50728e78Schristos  * are met:
12*50728e78Schristos  * 1. Redistributions of source code must retain the above copyright
13*50728e78Schristos  *    notice, this list of conditions and the following disclaimer.
14*50728e78Schristos  * 2. Redistributions in binary form must reproduce the above copyright
15*50728e78Schristos  *    notice, this list of conditions and the following disclaimer in the
16*50728e78Schristos  *    documentation and/or other materials provided with the distribution.
17*50728e78Schristos  * 3. All advertising materials mentioning features or use of this software
18*50728e78Schristos  *    must display the following acknowledgement:
19*50728e78Schristos  *        This product includes software developed by the NetBSD
20*50728e78Schristos  *        Foundation, Inc. and its contributors.
21*50728e78Schristos  * 4. Neither the name of The NetBSD Foundation nor the names of its
22*50728e78Schristos  *    contributors may be used to endorse or promote products derived
23*50728e78Schristos  *    from this software without specific prior written permission.
24*50728e78Schristos  *
25*50728e78Schristos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26*50728e78Schristos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27*50728e78Schristos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28*50728e78Schristos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29*50728e78Schristos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30*50728e78Schristos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31*50728e78Schristos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32*50728e78Schristos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33*50728e78Schristos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34*50728e78Schristos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35*50728e78Schristos  * POSSIBILITY OF SUCH DAMAGE.
36*50728e78Schristos  */
37*50728e78Schristos 
38*50728e78Schristos #include <sys/cdefs.h>
39*50728e78Schristos 
40*50728e78Schristos #define __LIBC12_SOURCE__
41*50728e78Schristos #include <sys/types.h>
42*50728e78Schristos #include <login_cap.h>
43*50728e78Schristos #include <compat/login_cap.h>
44*50728e78Schristos #include <pwd.h>
45*50728e78Schristos #include <compat/include/pwd.h>
46*50728e78Schristos 
47*50728e78Schristos __warn_references(login_getpwclass,
48*50728e78Schristos     "warning: reference to compatibility login_getpwclass();"
49*50728e78Schristos     " include <login_cap.h> for correct reference")
50*50728e78Schristos __warn_references(setusercontext,
51*50728e78Schristos     "warning: reference to compatibility setusercontext();"
52*50728e78Schristos     " include <login_cap.h> for correct reference")
53*50728e78Schristos 
54*50728e78Schristos login_cap_t *
login_getpwclass(const struct passwd50 * pw50)55*50728e78Schristos login_getpwclass(const struct passwd50 *pw50)
56*50728e78Schristos {
57*50728e78Schristos 	struct passwd pw;
58*50728e78Schristos 
59*50728e78Schristos 	passwd50_to_passwd(pw50, &pw);
60*50728e78Schristos 	return __login_getpwclass50(&pw);
61*50728e78Schristos }
62*50728e78Schristos 
63*50728e78Schristos int
setusercontext(login_cap_t * lc,struct passwd50 * pw50,uid_t uid,u_int flags)64*50728e78Schristos setusercontext(login_cap_t *lc, struct passwd50 *pw50, uid_t uid, u_int flags)
65*50728e78Schristos {
66*50728e78Schristos 	struct passwd pw;
67*50728e78Schristos 
68*50728e78Schristos 	passwd50_to_passwd(pw50, &pw);
69*50728e78Schristos 	return __setusercontext50(lc, &pw, uid, flags);
70*50728e78Schristos }
71