Initial CAPS IPC structural encoding and decoding support. Note that the
[dragonfly.git] / lib / libcaps / caps_pwent.c
1 /*
2  * Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $DragonFly: src/lib/libcaps/caps_pwent.c,v 1.1 2004/03/07 23:36:44 dillon Exp $
27  */
28
29 #include <sys/types.h>
30 #include <pwd.h>
31 #include <stddef.h>
32 #include <stdarg.h>
33 #include "caps_struct.h"
34
35 /*
36  * Password Entry encoding and decoding
37  */
38 #define CAPS_PW_NAME    1
39 #define CAPS_PW_PASSWD  2
40 #define CAPS_PW_UID     3
41 #define CAPS_PW_GID     4
42 #define CAPS_PW_CHANGE  5
43 #define CAPS_PW_CLASS   6
44 #define CAPS_PW_GECOS   7
45 #define CAPS_PW_DIR     8
46 #define CAPS_PW_SHELL   9
47 #define CAPS_PW_EXPIRE  10
48
49 #define STYPE   struct passwd
50
51 const struct caps_label caps_passwd_label[] = {
52     { offsetof(STYPE, pw_name), CAPS_IN_STRPTR_T, CAPS_PW_NAME },
53     { offsetof(STYPE, pw_passwd),       CAPS_IN_STRPTR_T, CAPS_PW_PASSWD },
54     { offsetof(STYPE, pw_uid),  CAPS_IN_UID_T,    CAPS_PW_UID },
55     { offsetof(STYPE, pw_gid),  CAPS_IN_GID_T,    CAPS_PW_GID },
56     { offsetof(STYPE, pw_change),       CAPS_IN_TIME_T,   CAPS_PW_CHANGE },
57     { offsetof(STYPE, pw_class),        CAPS_IN_STRPTR_T, CAPS_PW_CLASS },
58     { offsetof(STYPE, pw_gecos),        CAPS_IN_STRPTR_T, CAPS_PW_GECOS },
59     { offsetof(STYPE, pw_dir),  CAPS_IN_STRPTR_T, CAPS_PW_DIR },
60     { offsetof(STYPE, pw_shell),        CAPS_IN_STRPTR_T, CAPS_PW_SHELL },
61     { offsetof(STYPE, pw_expire),       CAPS_IN_TIME_T,   CAPS_PW_EXPIRE },
62     { -1 }
63 };
64
65 #undef STYPE
66
67 const struct caps_struct caps_passwd_struct = {
68     "passwd", caps_passwd_label 
69 };
70