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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/*
Copyright (c) 2008,2009 Frank Lahm <franklahm@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif /* HAVE_CONFIG_H */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <inttypes.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
#include <atalk/logger.h>
#include <atalk/afp.h>
#include <atalk/uuid.h>
#include <atalk/util.h>
#include "aclldap.h"
#include "cache.h"
char *uuidtype[] = {"", "USER", "GROUP", "LOCAL"};
/********************************************************
* Public helper function
********************************************************/
static unsigned char local_group_uuid[] = {0xab, 0xcd, 0xef,
0xab, 0xcd, 0xef,
0xab, 0xcd, 0xef,
0xab, 0xcd, 0xef};
static unsigned char local_user_uuid[] = {0xff, 0xff, 0xee, 0xee, 0xdd, 0xdd,
0xcc, 0xcc, 0xbb, 0xbb, 0xaa, 0xaa};
void localuuid_from_id(unsigned char *buf, uuidtype_t type, unsigned int id)
{
uint32_t tmp;
switch (type) {
case UUID_GROUP:
memcpy(buf, local_group_uuid, 12);
break;
case UUID_USER:
default:
memcpy(buf, local_user_uuid, 12);
break;
}
tmp = htonl(id);
memcpy(buf + 12, &tmp, 4);
return;
}
/*
* convert ascii string that can include dashes to binary uuid.
* caller must provide a buffer.
*/
void uuid_string2bin( const char *uuidstring, uuidp_t uuid) {
int nibble = 1;
int i = 0;
unsigned char c, val = 0;
while (*uuidstring) {
c = *uuidstring;
if (c == '-') {
uuidstring++;
continue;
}
else if (c <= '9') /* 0-9 */
c -= '0';
else if (c <= 'F') /* A-F */
c -= 'A' - 10;
else if (c <= 'f') /* a-f */
c-= 'a' - 10;
if (nibble)
val = c * 16;
else
uuid[i++] = val + c;
nibble ^= 1;
uuidstring++;
}
}
/*!
* Convert 16 byte binary uuid to neat ascii represantation including dashes.
*
* Returns pointer to static buffer.
*/
const char *uuid_bin2string(unsigned char *uuid) {
static char uuidstring[UUID_STRINGSIZE + 1];
int i = 0;
unsigned char c;
while (i < UUID_STRINGSIZE) {
c = *uuid;
uuid++;
sprintf(uuidstring + i, "%02X", c);
i += 2;
if (i==8 || i==13 || i==18 || i==23)
uuidstring[i++] = '-';
}
uuidstring[i] = 0;
return uuidstring;
}
/********************************************************
* Interface
********************************************************/
/*
* name: give me his name
* type: and type (UUID_USER or UUID_GROUP)
* uuid: pointer to uuid_t storage that the caller must provide
* returns 0 on success !=0 on errror
*/
int getuuidfromname( const char *name, uuidtype_t type, uuidp_t uuid) {
int ret = 0;
uuidtype_t mytype = type;
char nulluuid[16] = {0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0};
#ifdef HAVE_LDAP
char *uuid_string = NULL;
#endif
ret = search_cachebyname(name, &mytype, uuid);
if (ret == 0) {
/* found in cache */
LOG(log_debug, logtype_afpd,
"getuuidfromname{cache}: name: %s, type%s: %s -> UUID: %s",
name,
(mytype & UUID_ENOENT) == UUID_ENOENT ? "[negative]" : "",
uuidtype[type & UUIDTYPESTR_MASK],
uuid_bin2string(uuid));
if ((mytype & UUID_ENOENT) == UUID_ENOENT)
return -1;
} else {
/* if not found in cache */
#ifdef HAVE_LDAP
if ((ret = ldap_getuuidfromname( name, type, &uuid_string)) == 0) {
uuid_string2bin( uuid_string, uuid);
LOG(log_debug, logtype_afpd, "getuuidfromname{LDAP}: name: %s, type: %s -> UUID: %s",
name, uuidtype[type & UUIDTYPESTR_MASK], uuid_bin2string(uuid));
} else {
LOG(log_debug, logtype_afpd, "getuuidfromname(\"%s\",t:%u): no result from ldap search",
name, type);
}
#endif
if (ret != 0) {
/* Build a local UUID */
if (type == UUID_USER) {
struct passwd *pwd;
if ((pwd = getpwnam(name)) == NULL) {
LOG(log_error, logtype_afpd, "getuuidfromname(\"%s\",t:%u): unknown user",
name, uuidtype[type & UUIDTYPESTR_MASK]);
mytype |= UUID_ENOENT;
memcpy(uuid, nulluuid, 16);
} else {
localuuid_from_id(uuid, UUID_USER, pwd->pw_uid);
ret = 0;
LOG(log_debug, logtype_afpd, "getuuidfromname{local}: name: %s, type: %s -> UUID: %s",
name, uuidtype[type & UUIDTYPESTR_MASK], uuid_bin2string(uuid));
}
} else {
struct group *grp;
if ((grp = getgrnam(name)) == NULL) {
LOG(log_error, logtype_afpd, "getuuidfromname(\"%s\",t:%u): unknown user",
name, uuidtype[type & UUIDTYPESTR_MASK]);
mytype |= UUID_ENOENT;
memcpy(uuid, nulluuid, 16);
} else {
localuuid_from_id(uuid, UUID_GROUP, grp->gr_gid);
ret = 0;
LOG(log_debug, logtype_afpd, "getuuidfromname{local}: name: %s, type: %s -> UUID: %s",
name, uuidtype[type & UUIDTYPESTR_MASK], uuid_bin2string(uuid));
}
}
}
add_cachebyname(name, uuid, mytype, 0);
}
cleanup:
#ifdef HAVE_LDAP
if (uuid_string) free(uuid_string);
#endif
return ret;
}
/*
* uuidp: pointer to a uuid
* name: returns allocated buffer from ldap_getnamefromuuid
* type: returns USER, GROUP or LOCAL
* return 0 on success !=0 on errror
*
* Caller must free name appropiately.
*/
int getnamefromuuid(const uuidp_t uuidp, char **name, uuidtype_t *type) {
int ret;
uid_t uid;
gid_t gid;
struct passwd *pwd;
struct group *grp;
if (search_cachebyuuid(uuidp, name, type) == 0) {
/* found in cache */
LOG(log_debug, logtype_afpd,
"getnamefromuuid{cache}: UUID: %s -> name: %s, type%s: %s",
uuid_bin2string(uuidp),
*name,
(*type & UUID_ENOENT) == UUID_ENOENT ? "[negative]" : "",
uuidtype[(*type) & UUIDTYPESTR_MASK]);
if ((*type & UUID_ENOENT) == UUID_ENOENT)
return -1;
return 0;
}
/* not found in cache */
/* Check if UUID is a client local one */
if (memcmp(uuidp, local_user_uuid, 12) == 0) {
*type = UUID_USER;
uid = ntohl(*(uint32_t *)(uuidp + 12));
if ((pwd = getpwuid(uid)) == NULL) {
/* not found, add negative entry to cache */
add_cachebyuuid(uuidp, "UUID_ENOENT", UUID_ENOENT, 0);
ret = -1;
} else {
*name = strdup(pwd->pw_name);
add_cachebyuuid(uuidp, *name, *type, 0);
ret = 0;
}
LOG(log_debug, logtype_afpd,
"getnamefromuuid{local}: UUID: %s -> name: %s, type:%s",
uuid_bin2string(uuidp), *name, uuidtype[(*type) & UUIDTYPESTR_MASK]);
return ret;
} else if (memcmp(uuidp, local_group_uuid, 12) == 0) {
*type = UUID_GROUP;
gid = ntohl(*(uint32_t *)(uuidp + 12));
if ((grp = getgrgid(gid)) == NULL) {
/* not found, add negative entry to cache */
add_cachebyuuid(uuidp, "UUID_ENOENT", UUID_ENOENT, 0);
ret = -1;
} else {
*name = strdup(grp->gr_name);
add_cachebyuuid(uuidp, *name, *type, 0);
ret = 0;
}
return ret;
}
#ifdef HAVE_LDAP
ret = ldap_getnamefromuuid(uuid_bin2string(uuidp), name, type);
#else
ret = -1;
#endif
if (ret != 0) {
LOG(log_debug, logtype_afpd, "getnamefromuuid(%s): not found",
uuid_bin2string(uuidp));
add_cachebyuuid(uuidp, "UUID_ENOENT", UUID_ENOENT, 0);
return -1;
}
add_cachebyuuid(uuidp, *name, *type, 0);
LOG(log_debug, logtype_afpd, "getnamefromuuid{LDAP}: UUID: %s -> name: %s, type:%s",
uuid_bin2string(uuidp), *name, uuidtype[(*type) & UUIDTYPESTR_MASK]);
return 0;
}
|