Blame libacl/acl_init.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: acl_init.c
rpm-build 0a0c83
rpm-build 0a0c83
  Copyright (C) 1999, 2000
rpm-build 0a0c83
  Andreas Gruenbacher, <a.gruenbacher@bestbits.at>
rpm-build 0a0c83
rpm-build 0a0c83
  This program is free software; you can redistribute it and/or
rpm-build 0a0c83
  modify it under the terms of the GNU Lesser General Public
rpm-build 0a0c83
  License as published by the Free Software Foundation; either
rpm-build 0a0c83
  version 2.1 of the License, or (at your option) any later version.
rpm-build 0a0c83
rpm-build 0a0c83
  This program is distributed in the hope that it will be useful,
rpm-build 0a0c83
  but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0a0c83
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 0a0c83
  Lesser General Public License for more details.
rpm-build 0a0c83
rpm-build 0a0c83
  You should have received a copy of the GNU Lesser General Public
rpm-build 0a0c83
  License along with this library; if not, write to the Free Software
rpm-build 0a0c83
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
rpm-build 0a0c83
*/
rpm-build 0a0c83
rpm-build 0a0c83
#include "config.h"
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
rpm-build 0a0c83
rpm-build 0a0c83
acl_obj *
rpm-build 0a0c83
__acl_init_obj(int count)
rpm-build 0a0c83
{
rpm-build 0a0c83
	acl_obj *acl_obj_p = new_obj_p(acl);
rpm-build 0a0c83
	if (!acl_obj_p)
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
	acl_obj_p->aused = 0;
rpm-build 0a0c83
	acl_obj_p->aprev = acl_obj_p->anext = (acl_entry_obj *)acl_obj_p;
rpm-build 0a0c83
	acl_obj_p->acurr = (acl_entry_obj *)acl_obj_p;
rpm-build 0a0c83
rpm-build 0a0c83
	/* aprealloc points to an array of pre-allocated ACL entries.
rpm-build 0a0c83
	   Entries between [aprealloc, aprealloc_end) are still available.
rpm-build 0a0c83
	   Pre-allocated entries are consumed from the last entry to the
rpm-build 0a0c83
	   first and aprealloc_end decremented. After all pre-allocated
rpm-build 0a0c83
	   entries are consumed, further entries are malloc'ed.
rpm-build 0a0c83
	   aprealloc == aprealloc_end is true when no more pre-allocated	
rpm-build 0a0c83
	   entries are available. */
rpm-build 0a0c83
rpm-build 0a0c83
	if (count > 0)
rpm-build 0a0c83
		acl_obj_p->aprealloc = (acl_entry_obj *)
rpm-build 0a0c83
			malloc(count * sizeof(acl_entry_obj));
rpm-build 0a0c83
	else
rpm-build 0a0c83
		acl_obj_p->aprealloc = NULL;
rpm-build 0a0c83
	if (acl_obj_p->aprealloc != NULL)
rpm-build 0a0c83
		acl_obj_p->aprealloc_end = acl_obj_p->aprealloc + count;
rpm-build 0a0c83
	else
rpm-build 0a0c83
		acl_obj_p->aprealloc_end = NULL;
rpm-build 0a0c83
rpm-build 0a0c83
	return acl_obj_p;
rpm-build 0a0c83
}
rpm-build 0a0c83
rpm-build 0a0c83
rpm-build 0a0c83
/* 23.4.20 */
rpm-build 0a0c83
acl_t
rpm-build 0a0c83
acl_init(int count)
rpm-build 0a0c83
{
rpm-build 0a0c83
	acl_obj *obj;
rpm-build 0a0c83
	if (count < 0) {
rpm-build 0a0c83
		errno = EINVAL;
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
	}
rpm-build 0a0c83
	obj = __acl_init_obj(count);
rpm-build 0a0c83
	return int2ext(obj);
rpm-build 0a0c83
}
rpm-build 0a0c83