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