Blame libacl/__acl_to_xattr.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: __acl_to_xattr.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 <errno.h>
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
rpm-build 0a0c83
#include "byteorder.h"
rpm-build 0a0c83
#include "acl_ea.h"
rpm-build 0a0c83
rpm-build 0a0c83
rpm-build 0a0c83
char *
rpm-build 0a0c83
__acl_to_xattr(const acl_obj *acl_obj_p, size_t *size)
rpm-build 0a0c83
{
rpm-build 0a0c83
	const acl_entry_obj *entry_obj_p;
rpm-build 0a0c83
	acl_ea_header *ext_header_p;
rpm-build 0a0c83
	acl_ea_entry *ext_ent_p;
rpm-build 0a0c83
rpm-build 0a0c83
	*size = sizeof(acl_ea_header) + acl_obj_p->aused * sizeof(acl_ea_entry);
rpm-build 0a0c83
	ext_header_p = (acl_ea_header *)malloc(*size);
rpm-build 0a0c83
	if (!ext_header_p)
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
rpm-build 0a0c83
	ext_header_p->a_version = cpu_to_le32(ACL_EA_VERSION);
rpm-build 0a0c83
	ext_ent_p = (acl_ea_entry *)(ext_header_p+1);
rpm-build 0a0c83
	FOREACH_ACL_ENTRY(entry_obj_p, acl_obj_p) {
rpm-build 0a0c83
		ext_ent_p->e_tag   = cpu_to_le16(entry_obj_p->etag);
rpm-build 0a0c83
		ext_ent_p->e_perm  = cpu_to_le16(entry_obj_p->eperm.sperm);
rpm-build 0a0c83
rpm-build 0a0c83
		switch(entry_obj_p->etag) {
rpm-build 0a0c83
			case ACL_USER:
rpm-build 0a0c83
			case ACL_GROUP:
rpm-build 0a0c83
				ext_ent_p->e_id =
rpm-build 0a0c83
					cpu_to_le32(entry_obj_p->eid.qid);
rpm-build 0a0c83
				break;
rpm-build 0a0c83
rpm-build 0a0c83
			default:
rpm-build 0a0c83
				ext_ent_p->e_id = ACL_UNDEFINED_ID;
rpm-build 0a0c83
				break;
rpm-build 0a0c83
		}
rpm-build 0a0c83
		ext_ent_p++;
rpm-build 0a0c83
	}
rpm-build 0a0c83
	return (char *)ext_header_p;
rpm-build 0a0c83
}
rpm-build 0a0c83