Blame libacl/acl_copy_int.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: acl_copy_int.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
/* 23.4.6 */
rpm-build 0a0c83
acl_t
rpm-build 0a0c83
acl_copy_int(const void *buf_p)
rpm-build 0a0c83
{
rpm-build 0a0c83
	const struct __acl *ext_acl = (struct __acl *)buf_p;
rpm-build 0a0c83
	const struct __acl_entry *ent_p, *end_p;
rpm-build 0a0c83
	size_t size;
rpm-build 0a0c83
	int entries;
rpm-build 0a0c83
	acl_obj *acl_obj_p;
rpm-build 0a0c83
	acl_entry_obj *entry_obj_p;
rpm-build 0a0c83
rpm-build 0a0c83
	if (!ext_acl || ext_acl->x_size < sizeof(struct __acl)) {
rpm-build 0a0c83
		errno = EINVAL;
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
	}
rpm-build 0a0c83
	ent_p = ext_acl->x_entries;
rpm-build 0a0c83
	size = ext_acl->x_size - sizeof(struct __acl);
rpm-build 0a0c83
	if (size % sizeof(struct __acl_entry)) {
rpm-build 0a0c83
		errno = EINVAL;
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
	}
rpm-build 0a0c83
	entries = size / sizeof(struct __acl_entry);
rpm-build 0a0c83
	acl_obj_p = __acl_init_obj(entries);
rpm-build 0a0c83
	if (acl_obj_p == NULL)
rpm-build 0a0c83
		goto fail;
rpm-build 0a0c83
	end_p = ext_acl->x_entries + entries;
rpm-build 0a0c83
	for(; ent_p != end_p; ent_p++) {
rpm-build 0a0c83
		entry_obj_p = __acl_create_entry_obj(acl_obj_p);
rpm-build 0a0c83
		if (!entry_obj_p)
rpm-build 0a0c83
			goto fail;
rpm-build 0a0c83
		/* XXX Convert to machine endianness */
rpm-build 0a0c83
		entry_obj_p->eentry = *ent_p;
rpm-build 0a0c83
	}
rpm-build 0a0c83
	if (__acl_reorder_obj_p(acl_obj_p))
rpm-build 0a0c83
		goto fail;
rpm-build 0a0c83
	return int2ext(acl_obj_p);
rpm-build 0a0c83
rpm-build 0a0c83
fail:
rpm-build 0a0c83
	__acl_free_acl_obj(acl_obj_p);
rpm-build 0a0c83
	return NULL;
rpm-build 0a0c83
}
rpm-build 0a0c83