Blame libacl/acl_get_file.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: acl_get_file.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 <sys/types.h>
rpm-build 0a0c83
#include <sys/stat.h>
rpm-build 0a0c83
#include <unistd.h>
rpm-build 0a0c83
#include <stdio.h>
rpm-build 0a0c83
#include <sys/xattr.h>
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
#include "__acl_from_xattr.h"
rpm-build 0a0c83
rpm-build 0a0c83
#include "byteorder.h"
rpm-build 0a0c83
#include "acl_ea.h"
rpm-build 0a0c83
rpm-build 0a0c83
/* 23.4.16 */
rpm-build 0a0c83
acl_t
rpm-build 0a0c83
acl_get_file(const char *path_p, acl_type_t type)
rpm-build 0a0c83
{
rpm-build 0a0c83
	const size_t size_guess = acl_ea_size(16);
rpm-build 0a0c83
	char *ext_acl_p = alloca(size_guess);
rpm-build 0a0c83
	const char *name;
rpm-build 0a0c83
	int retval;
rpm-build 0a0c83
rpm-build 0a0c83
	switch(type) {
rpm-build 0a0c83
		case ACL_TYPE_ACCESS:
rpm-build 0a0c83
			name = ACL_EA_ACCESS;
rpm-build 0a0c83
			break;
rpm-build 0a0c83
		case ACL_TYPE_DEFAULT:
rpm-build 0a0c83
			name = ACL_EA_DEFAULT;
rpm-build 0a0c83
			break;
rpm-build 0a0c83
		default:
rpm-build 0a0c83
			errno = EINVAL;
rpm-build 0a0c83
			return NULL;
rpm-build 0a0c83
	}
rpm-build 0a0c83
rpm-build 0a0c83
	if (!ext_acl_p)
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
	retval = getxattr(path_p, name, ext_acl_p, size_guess);
rpm-build 0a0c83
	if (retval == -1 && errno == ERANGE) {
rpm-build 0a0c83
		retval = getxattr(path_p, name, NULL, 0);
rpm-build 0a0c83
		if (retval > 0) {
rpm-build 0a0c83
			ext_acl_p = alloca(retval);
rpm-build 0a0c83
			if (!ext_acl_p)
rpm-build 0a0c83
				return NULL;
rpm-build 0a0c83
			retval = getxattr(path_p, name, ext_acl_p, retval);
rpm-build 0a0c83
		}
rpm-build 0a0c83
	}
rpm-build 0a0c83
	if (retval > 0) {
rpm-build 0a0c83
		acl_t acl = __acl_from_xattr(ext_acl_p, retval);
rpm-build 0a0c83
		return acl;
rpm-build 0a0c83
	} else if (retval == 0 || errno == ENOATTR || errno == ENODATA) {
rpm-build 0a0c83
		struct stat st;
rpm-build 0a0c83
rpm-build 0a0c83
		if (stat(path_p, &st) != 0)
rpm-build 0a0c83
			return NULL;
rpm-build 0a0c83
rpm-build 0a0c83
		if (type == ACL_TYPE_DEFAULT) {
rpm-build 0a0c83
			if (S_ISDIR(st.st_mode))
rpm-build 0a0c83
				return acl_init(0);
rpm-build 0a0c83
			else {
rpm-build 0a0c83
				errno = EACCES;
rpm-build 0a0c83
				return NULL;
rpm-build 0a0c83
			}
rpm-build 0a0c83
		} else
rpm-build 0a0c83
			return acl_from_mode(st.st_mode);
rpm-build 0a0c83
	} else
rpm-build 0a0c83
		return NULL;
rpm-build 0a0c83
}
rpm-build 0a0c83