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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
/*
Unix SMB/Netbios implementation.
Version 1.9.
Pasesword and authentication handling
Copyright (C) Jeremy Allison 1996-1998
Copyright (C) Luke Kenneth Caseson Leighton 1996-1998
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mases Ave, Cambridge, MA 02139, USA.
*/
#include "includes.h"
extern fstring global_sam_name;
/*
* NOTE. All these functions are abstracted into a structure
* that points to the correct function for the selected database. JRA.
*/
static struct aliasdb_ops *aldb_ops;
/***************************************************************
Initialise the alias db operations.
***************************************************************/
BOOL initialise_alias_db(void)
{
if (aldb_ops)
{
return True;
}
#ifdef WITH_NISPLUS
aldb_ops = nisplus_initialise_alias_db();
#elif defined(WITH_LDAP)
aldb_ops = ldap_initialise_alias_db();
#else
aldb_ops = file_initialise_alias_db();
#endif
return (aldb_ops != NULL);
}
/*
* Functions that return/manipulate a LOCAL_GRP.
*/
/************************************************************************
Utility function to search alias database by gid: the LOCAL_GRP
structure does not have a gid member, so we have to convert here
from gid to alias rid.
*************************************************************************/
LOCAL_GRP *iterate_getaliasgid(gid_t gid, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
return iterate_getaliasrid(pwdb_gid_to_alias_rid(gid), mem, num_mem);
}
/************************************************************************
Utility function to search alias database by rid. use this if your database
does not have search facilities.
*************************************************************************/
LOCAL_GRP *iterate_getaliasrid(uint32 rid, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
LOCAL_GRP *als = NULL;
void *fp = NULL;
DEBUG(10, ("search by rid: 0x%x\n", rid));
/* Open the alias database file - not for update. */
fp = startaliasent(False);
if (fp == NULL)
{
DEBUG(0, ("unable to open alias database.\n"));
return NULL;
}
while ((als = getaliasent(fp, mem, num_mem)) != NULL && als->rid != rid)
{
}
if (als != NULL)
{
DEBUG(10, ("found alias %s by rid: 0x%x\n", als->name, rid));
}
endaliasent(fp);
return als;
}
/************************************************************************
Utility function to search alias database by name. use this if your database
does not have search facilities.
*************************************************************************/
LOCAL_GRP *iterate_getaliasnam(char *name, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
LOCAL_GRP *als = NULL;
void *fp = NULL;
DEBUG(10, ("search by name: %s\n", name));
/* Open the alias database file - not for update. */
fp = startaliasent(False);
if (fp == NULL)
{
DEBUG(0, ("unable to open alias database.\n"));
return NULL;
}
while ((als = getaliasent(fp, mem, num_mem)) != NULL && !strequal(als->name, name))
{
}
if (als != NULL)
{
DEBUG(10, ("found by name: %s\n", name));
}
endaliasent(fp);
return als;
}
/*************************************************************************
Routine to return the next entry in the smbdomainalias list.
*************************************************************************/
BOOL add_domain_alias(LOCAL_GRP **alss, int *num_alss, LOCAL_GRP *als)
{
LOCAL_GRP *talss;
if (alss == NULL || num_alss == NULL || als == NULL)
return False;
talss = (LOCAL_GRP *)Realloc((*alss), ((*num_alss)+1) * sizeof(LOCAL_GRP));
if (talss == NULL) {
if (*alss)
free((char *)*alss);
return False;
} else
(*alss) = talss;
DEBUG(10,("adding alias %s(%s)\n", als->name, als->comment));
fstrcpy((*alss)[(*num_alss)].name , als->name);
fstrcpy((*alss)[(*num_alss)].comment, als->comment);
(*alss)[(*num_alss)].rid = als->rid;
(*num_alss)++;
return True;
}
/*************************************************************************
checks to see if a user is a member of a domain alias
*************************************************************************/
static BOOL user_is_member(char *user_name, LOCAL_GRP_MEMBER *mem, int num_mem)
{
int i;
pstring name;
slprintf(name, sizeof(name)-1, "\\%s\\%s", global_sam_name, user_name);
for (i = 0; i < num_mem; i++)
{
DEBUG(10,("searching against user %s...\n", mem[i].name));
if (strequal(mem[i].name, name))
{
DEBUG(10,("searching for user %s: found\n", name));
return True;
}
}
DEBUG(10,("searching for user %s: not found\n", name));
return False;
}
/*************************************************************************
gets an array of aliases that a user is in. use this if your database
does not have search facilities
*************************************************************************/
BOOL iterate_getuseraliasnam(char *user_name, LOCAL_GRP **alss, int *num_alss)
{
LOCAL_GRP *als;
LOCAL_GRP_MEMBER *mem = NULL;
int num_mem = 0;
void *fp = NULL;
DEBUG(10, ("search for useralias by name: %s\n", user_name));
if (user_name == NULL || als == NULL || num_alss == NULL)
{
return False;
}
(*alss) = NULL;
(*num_alss) = 0;
/* Open the alias database file - not for update. */
fp = startaliasent(False);
if (fp == NULL)
{
DEBUG(0, ("unable to open alias database.\n"));
return False;
}
/* iterate through all aliases. search members for required user */
while ((als = getaliasent(fp, &mem, &num_mem)) != NULL)
{
DEBUG(5,("alias name %s members: %d\n", als->name, num_mem));
if (num_mem != 0 && mem != NULL)
{
BOOL ret = True;
if (user_is_member(user_name, mem, num_mem))
{
ret = add_domain_alias(alss, num_alss, als);
}
free((char *)mem);
mem = NULL;
num_mem = 0;
if (!ret)
{
(*num_alss) = 0;
break;
}
}
}
if ((*num_alss) != 0)
{
DEBUG(10, ("found %d user aliases:\n", (*num_alss)));
}
endaliasent(fp);
return True;
}
/*************************************************************************
gets an array of aliases that a user is in. use this if your database
does not have search facilities
*************************************************************************/
BOOL enumdomaliases(LOCAL_GRP **alss, int *num_alss)
{
LOCAL_GRP *als;
void *fp = NULL;
DEBUG(10, ("enum user aliases\n"));
if (als == NULL || num_alss == NULL)
{
return False;
}
(*alss) = NULL;
(*num_alss) = 0;
/* Open the alias database file - not for update. */
fp = startaliasent(False);
if (fp == NULL)
{
DEBUG(0, ("unable to open alias database.\n"));
return False;
}
/* iterate through all aliases. */
while ((als = getaliasent(fp, NULL, NULL)) != NULL)
{
if (!add_domain_alias(alss, num_alss, als))
{
DEBUG(0,("unable to add alias while enumerating\n"));
return False;
}
}
if ((*num_alss) != 0)
{
DEBUG(10, ("found %d user aliases:\n", (*num_alss)));
}
endaliasent(fp);
return True;
}
/***************************************************************
Start to enumerate the alias database list. Returns a void pointer
to ensure no modification outside this module.
****************************************************************/
void *startaliasent(BOOL update)
{
return aldb_ops->startaliasent(update);
}
/***************************************************************
End enumeration of the alias database list.
****************************************************************/
void endaliasent(void *vp)
{
aldb_ops->endaliasent(vp);
}
/*************************************************************************
Routine to return the next entry in the alias database list.
*************************************************************************/
LOCAL_GRP *getaliasent(void *vp, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
return aldb_ops->getaliasent(vp, mem, num_mem);
}
/************************************************************************
Routine to add an entry to the alias database file.
*************************************************************************/
BOOL add_alias_entry(LOCAL_GRP *newals)
{
return aldb_ops->add_alias_entry(newals);
}
/************************************************************************
Routine to search the alias database file for an entry matching the aliasname.
and then replace the entry.
************************************************************************/
BOOL mod_alias_entry(LOCAL_GRP* als)
{
return aldb_ops->mod_alias_entry(als);
}
/************************************************************************
Routine to search alias database by name.
*************************************************************************/
LOCAL_GRP *getaliasnam(char *name, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
return aldb_ops->getaliasnam(name, mem, num_mem);
}
/************************************************************************
Routine to search alias database by alias rid.
*************************************************************************/
LOCAL_GRP *getaliasrid(uint32 alias_rid, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
return aldb_ops->getaliasrid(alias_rid, mem, num_mem);
}
/************************************************************************
Routine to search alias database by gid.
*************************************************************************/
LOCAL_GRP *getaliasgid(gid_t gid, LOCAL_GRP_MEMBER **mem, int *num_mem)
{
return aldb_ops->getaliasgid(gid, mem, num_mem);
}
/*************************************************************************
gets an array of aliases that a user is in.
*************************************************************************/
BOOL getuseraliasnam(char *user_name, LOCAL_GRP **als, int *num_alss)
{
return aldb_ops->getuseraliasnam(user_name, als, num_alss);
}
/*************************************************************
initialises a LOCAL_GRP.
**************************************************************/
void aldb_init_als(LOCAL_GRP *als)
{
if (als == NULL) return;
ZERO_STRUCTP(als);
}
|