4 * Copyright (c) 1997-2009 Erez Zadok
5 * Copyright (c) 1990 Jan-Simon Pendry
6 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
7 * Copyright (c) 1990 The Regents of the University of California.
10 * This code is derived from software contributed to Berkeley by
11 * Jan-Simon Pendry at Imperial College, London.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgment:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * File: am-utils/amd/info_passwd.c
47 * Get info from password "file"
49 * This is experimental and probably doesn't do what you expect.
54 #endif /* HAVE_CONFIG_H */
58 #define PASSWD_MAP "/etc/passwd"
60 /* forward declarations */
61 int passwd_init(mnt_map
*m
, char *map
, time_t *tp
);
62 int passwd_search(mnt_map
*m
, char *map
, char *key
, char **pval
, time_t *tp
);
66 * Nothing to probe - check the map name is PASSWD_MAP.
69 passwd_init(mnt_map
*m
, char *map
, time_t *tp
)
74 * Recognize the old format "PASSWD_MAP"
75 * Uses default return string
76 * "type:=nfs;rfs:=/${var0}/${var1};rhost:=${var1};sublink:=${var2};fs:=${autodir}${var3}"
78 if (STREQ(map
, PASSWD_MAP
))
81 * Recognize the new format "PASSWD_MAP:pval-format"
83 if (!NSTREQ(map
, PASSWD_MAP
, sizeof(PASSWD_MAP
) - 1))
85 if (map
[sizeof(PASSWD_MAP
)-1] != ':')
93 * Grab the entry via the getpwname routine
94 * Modify time is ignored by passwd - XXX
97 passwd_search(mnt_map
*m
, char *map
, char *key
, char **pval
, time_t *tp
)
102 if (STREQ(key
, "/defaults")) {
103 *pval
= strdup("type:=nfs");
110 * We chop the home directory up as follows:
111 * /anydir/dom1/dom2/dom3/user
114 * rfs:=/anydir/dom3;rhost:=dom3.dom2.dom1;sublink:=user
116 * var0:=pw-prefix:=anydir
117 * var1:=pw-rhost:=dom3.dom2.dom1
118 * var2:=pw-user:=user
119 * var3:=pw-home:=/anydir/dom1/dom2/dom3/user
121 * This allows cross-domain entries in your passwd file.
122 * ... but forget about security!
126 char val
[MAXPATHLEN
];
127 char rhost
[MAXHOSTNAMELEN
];
128 dir
= strdup(pw
->pw_dir
);
131 * Find user name. If no / then Invalid...
133 user
= strrchr(dir
, '/');
139 * Find start of host "path". If no / then Invalid...
141 p
= strchr(dir
+ 1, '/');
147 * At this point, p is dom1/dom2/dom3
148 * Copy, backwards, into rhost replacing
155 xstrlcat(rhost
, q
+ 1, sizeof(rhost
));
156 xstrlcat(rhost
, ".", sizeof(rhost
));
159 xstrlcat(rhost
, p
, sizeof(rhost
));
166 if (*rhost
== '\0' || *user
== '\0' || *dir
== '\0')
170 * Make up return string
172 q
= strchr(rhost
, '.');
175 p
= strchr(map
, ':');
179 p
= "type:=nfs;rfs:=/${var0}/${var1};rhost:=${var1};sublink:=${var2};fs:=${autodir}${var3}";
180 xsnprintf(val
, sizeof(val
), "var0:=%s;var1:=%s;var2:=%s;var3:=%s;%s",
181 dir
+1, rhost
, user
, pw
->pw_dir
, p
);
182 dlog("passwd_search: map=%s key=%s -> %s", map
, key
, val
);