1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/*
* libnfsidmap.c
*
* nfs idmapping library, primarily for nfs4 client/server kernel idmapping
* and for userland nfs4 idmapping by acl libraries.
*
* Copyright (c) 2004 The Regents of the University of Michigan.
* All rights reserved.
*
* Marius Aamodt Eriksen <marius@umich.edu>
* J. Bruce Fields <bfields@umich.edu>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/types.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <pwd.h>
#include <grp.h>
#include <netdb.h>
#include <err.h>
#include <syslog.h>
#include <stdarg.h>
#include "nfsidmap.h"
#include "nfsidmap_internal.h"
#include "cfg.h"
/* forward declarations */
int set_trans_method(char *);
static char *default_domain;
#ifndef PATH_IDMAPDCONF
#define PATH_IDMAPDCONF "/etc/idmapd.conf"
#endif
/* Default logging fuction */
static void default_logger(const char *fmt, ...)
{
va_list vp;
va_start(vp, fmt);
vsyslog(LOG_WARNING, fmt, vp);
va_end(vp);
}
nfs4_idmap_log_function_t idmap_log_func = default_logger;
int idmap_verbosity = 0;
static int domain_from_dns(char **domain)
{
struct hostent *he;
char hname[64], *c;
if (gethostname(hname, sizeof(hname)) == -1)
return -1;
if ((he = gethostbyname(hname)) == NULL)
return -1;
if ((c = strchr(he->h_name, '.')) == NULL || *++c == '\0')
return -1;
*domain = strdup(c);
return 0;
}
static struct trans_func *trans = NULL;
int nfs4_init_name_mapping(char *conffile)
{
int ret;
char *method;
int dflt = 0;
/* XXX: need to be able to reload configurations... */
if (trans) /* already succesfully initialized */
return 0;
if (conffile)
conf_path = conffile;
else
conf_path = PATH_IDMAPDCONF;
conf_init();
default_domain = conf_get_str("General", "Domain");
if (default_domain == NULL) {
dflt = 1;
ret = domain_from_dns(&default_domain);
if (ret) {
IDMAP_LOG(0, ("libnfsidmap: Unable to determine "
"a default nfsv4 domain; consider "
"specifying one in idmapd.conf\n"));
return ret;
}
}
IDMAP_LOG(1, ("libnfsidmap: using%s domain: %s\n",
(dflt ? " (default)" : ""), default_domain));
method = conf_get_str_with_def("Translation", "Method", "nsswitch");
if (set_trans_method(method) == -1) {
IDMAP_LOG(0, ("libnfsidmap: requested tranlation method, "
"'%s', is not available\n", method));
return -1;
}
IDMAP_LOG(1, ("libnfsidmap: using translation method: %s\n", method));
if (trans->init) {
ret = trans->init();
if (ret) {
trans = NULL;
return ret;
}
}
return 0;
}
char * get_default_domain(void)
{
int ret;
if (default_domain)
return default_domain;
ret = domain_from_dns(&default_domain);
if (ret) {
IDMAP_LOG(0, ("Unable to determine a default nfsv4 domain; "
" consider specifying one in idmapd.conf\n"));
default_domain = "";
}
return default_domain;
}
int
nfs4_get_default_domain(char *server, char *domain, size_t len)
{
char *d = get_default_domain();
if (strlen(d) + 1 > len)
return -ERANGE;
strcpy(domain, d);
return 0;
}
extern struct trans_func nss_trans;
extern struct trans_func umichldap_trans;
static struct trans_func * t_array[] = {
&nss_trans,
#ifdef ENABLE_LDAP
&umichldap_trans,
#endif
};
#define TR_SIZE (sizeof(t_array)/sizeof(*t_array))
int
set_trans_method(char *method)
{
int i;
trans = NULL;
for (i = 0; i < TR_SIZE; i++) {
if (strcmp(t_array[i]->name, method) == 0) {
trans = t_array[i];
return 0;
}
}
return -1;
}
int nfs4_uid_to_name(uid_t uid, char *domain, char *name, size_t len)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
return ret;
return trans->uid_to_name(uid, domain, name, len);
}
int nfs4_gid_to_name(gid_t gid, char *domain, char *name, size_t len)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
return ret;
return trans->gid_to_name(gid, domain, name, len);
}
int nfs4_name_to_uid(char *name, uid_t *uid)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
goto out;
ret = trans->name_to_uid(name, uid);
out:
return ret;
}
int nfs4_name_to_gid(char *name, gid_t *gid)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
goto out;
ret = trans->name_to_gid(name, gid);
out:
return ret;
}
int nfs4_gss_princ_to_ids(char *secname, char *princ, uid_t *uid, gid_t *gid)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
goto out;
ret = trans->princ_to_ids(secname, princ, uid, gid);
out:
return ret;
}
int nfs4_gss_princ_to_grouplist(char *secname, char *princ,
gid_t *groups, int *ngroups)
{
int ret;
ret = nfs4_init_name_mapping(NULL);
if (ret)
goto out;
ret = trans->gss_princ_to_grouplist(secname, princ, groups, ngroups);
out:
return ret;
}
void nfs4_set_debug(int dbg_level, void (*logger)(const char *, ...))
{
if (logger)
idmap_log_func = logger;
idmap_verbosity = dbg_level;
}
|