[BACK]Return to __acl_from_xattr.c CVS log [TXT][DIR] Up to [Development] / xfs-cmds / acl / libacl

File: [Development] / xfs-cmds / acl / libacl / __acl_from_xattr.c (download)

Revision 1.3, Mon Feb 10 05:24:16 2003 UTC (14 years, 8 months ago) by nathans
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.2: +6 -6 lines

Merge several ACL userspace patches from Andreas.
ACL entry preallocation and moved ACL entry reordering outside of loops.

/*
  File: __acl_from_xattr.c

  Copyright (C) 1999, 2000
  Andreas Gruenbacher, <a.gruenbacher@computer.org>

  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU Library 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
  Library General Public License for more details.

  You should have received a copy of the GNU Library General Public
  License along with this library; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

#include "libacl.h"

#include "byteorder.h"
#include "acl_ea.h"


acl_t
__acl_from_xattr(const char *ext_acl_p, size_t size)
{
	acl_ea_header *ext_header_p = (acl_ea_header *)ext_acl_p;
	acl_ea_entry *ext_entry_p = (acl_ea_entry *)(ext_header_p+1);
	acl_ea_entry *ext_end_p;
	acl_obj *acl_obj_p;
	acl_entry_obj *entry_obj_p;
	int entries, error;

	if (size < sizeof(acl_ea_header)) {
		errno = EINVAL;
		return NULL;
	}
	if (ext_header_p->a_version != cpu_to_le32(ACL_EA_VERSION)) {
		errno = EINVAL;
		return NULL;
	}
	size -= sizeof(acl_ea_header);
	if (size % sizeof(acl_ea_entry)) {
		errno = EINVAL;
		return NULL;
	}
	entries = size / sizeof(acl_ea_entry);
	ext_end_p = ext_entry_p + entries;

	acl_obj_p = __acl_init_obj(entries);
	if (acl_obj_p == NULL)
		return NULL;
	while (ext_end_p != ext_entry_p) {
		entry_obj_p = __acl_create_entry_obj(acl_obj_p);
		if (!entry_obj_p)
			goto fail;

		entry_obj_p->etag        = le16_to_cpu(ext_entry_p->e_tag);
		entry_obj_p->eperm.sperm = le16_to_cpu(ext_entry_p->e_perm);

		switch(entry_obj_p->etag) {
			case ACL_USER_OBJ:
			case ACL_GROUP_OBJ:
			case ACL_MASK:
			case ACL_OTHER:
				entry_obj_p->eid.qid = ACL_UNDEFINED_ID;
				break;

			case ACL_USER:
			case ACL_GROUP:
				entry_obj_p->eid.qid =
					le32_to_cpu(ext_entry_p->e_id);
				break;

			default:
				error = EINVAL;
				goto fail;
		}
		ext_entry_p++;
	}
	if (__acl_reorder_obj_p(acl_obj_p))
		goto fail;
	return int2ext(acl_obj_p);

fail:
	__acl_free_acl_obj(acl_obj_p);
	return NULL;
}