Blame libacl/acl_check.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: acl_check.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 <stdio.h>
rpm-build 0a0c83
#include <errno.h>
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
rpm-build 0a0c83
rpm-build 0a0c83
#define FAIL_CHECK(error) \
rpm-build 0a0c83
	do { return error; } while (0)
rpm-build 0a0c83
rpm-build 0a0c83
/*
rpm-build 0a0c83
  Check if an ACL is valid.
rpm-build 0a0c83
rpm-build 0a0c83
  The e_id fields of ACL entries that don't use them are ignored.
rpm-build 0a0c83
rpm-build 0a0c83
  last
rpm-build 0a0c83
  	contains the index of the last valid entry found
rpm-build 0a0c83
	after acl_check returns.
rpm-build 0a0c83
  returns
rpm-build 0a0c83
  	0 on success, -1 on error, or an ACL_*_ERROR value for invalid ACLs.
rpm-build 0a0c83
*/
rpm-build 0a0c83
rpm-build 0a0c83
int
rpm-build 0a0c83
acl_check(acl_t acl, int *last)
rpm-build 0a0c83
{
rpm-build 0a0c83
	acl_obj *acl_obj_p = ext2int(acl, acl);
rpm-build 0a0c83
	id_t qual = 0;
rpm-build 0a0c83
	int state = ACL_USER_OBJ;
rpm-build 0a0c83
	acl_entry_obj *entry_obj_p;
rpm-build 0a0c83
	int needs_mask = 0;
rpm-build 0a0c83
rpm-build 0a0c83
	if (!acl_obj_p)
rpm-build 0a0c83
		return -1;
rpm-build 0a0c83
	if (last)
rpm-build 0a0c83
		*last = 0;
rpm-build 0a0c83
	FOREACH_ACL_ENTRY(entry_obj_p, acl_obj_p) {
rpm-build 0a0c83
		/* Check permissions for ~(ACL_READ|ACL_WRITE|ACL_EXECUTE) */
rpm-build 0a0c83
		switch (entry_obj_p->etag) {
rpm-build 0a0c83
			case ACL_USER_OBJ:
rpm-build 0a0c83
				if (state == ACL_USER_OBJ) {
rpm-build 0a0c83
					qual = 0;
rpm-build 0a0c83
					state = ACL_USER;
rpm-build 0a0c83
					break;
rpm-build 0a0c83
				}
rpm-build 0a0c83
				FAIL_CHECK(ACL_MULTI_ERROR);
rpm-build 0a0c83
rpm-build 0a0c83
			case ACL_USER:
rpm-build 0a0c83
				if (state != ACL_USER)
rpm-build 0a0c83
					FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
				if (qualifier_obj_id(entry_obj_p->eid) < qual ||
rpm-build 0a0c83
				    qualifier_obj_id(entry_obj_p->eid) ==
rpm-build 0a0c83
				    ACL_UNDEFINED_ID)
rpm-build 0a0c83
					FAIL_CHECK(ACL_DUPLICATE_ERROR);
rpm-build 0a0c83
				qual = qualifier_obj_id(entry_obj_p->eid)+1;
rpm-build 0a0c83
				needs_mask = 1;
rpm-build 0a0c83
				break;
rpm-build 0a0c83
rpm-build 0a0c83
			case ACL_GROUP_OBJ:
rpm-build 0a0c83
				if (state == ACL_USER) {
rpm-build 0a0c83
					qual = 0;
rpm-build 0a0c83
					state = ACL_GROUP;
rpm-build 0a0c83
					break;
rpm-build 0a0c83
				}
rpm-build 0a0c83
				if (state >= ACL_GROUP)
rpm-build 0a0c83
					FAIL_CHECK(ACL_MULTI_ERROR);
rpm-build 0a0c83
				FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
rpm-build 0a0c83
			case ACL_GROUP:
rpm-build 0a0c83
				if (state != ACL_GROUP)
rpm-build 0a0c83
					FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
				if (qualifier_obj_id(entry_obj_p->eid) < qual ||
rpm-build 0a0c83
				    qualifier_obj_id(entry_obj_p->eid) ==
rpm-build 0a0c83
				    ACL_UNDEFINED_ID)
rpm-build 0a0c83
					FAIL_CHECK(ACL_DUPLICATE_ERROR);
rpm-build 0a0c83
				qual = qualifier_obj_id(entry_obj_p->eid)+1;
rpm-build 0a0c83
				needs_mask = 1;
rpm-build 0a0c83
				break;
rpm-build 0a0c83
rpm-build 0a0c83
			case ACL_MASK:
rpm-build 0a0c83
				if (state == ACL_GROUP) {
rpm-build 0a0c83
					state = ACL_OTHER;
rpm-build 0a0c83
					break;
rpm-build 0a0c83
				}
rpm-build 0a0c83
				if (state >= ACL_OTHER)
rpm-build 0a0c83
					FAIL_CHECK(ACL_MULTI_ERROR);
rpm-build 0a0c83
				FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
rpm-build 0a0c83
			case ACL_OTHER:
rpm-build 0a0c83
				if (state == ACL_OTHER ||
rpm-build 0a0c83
				    (state == ACL_GROUP && !needs_mask)) {
rpm-build 0a0c83
					state = 0;
rpm-build 0a0c83
					break;
rpm-build 0a0c83
				}
rpm-build 0a0c83
				FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
rpm-build 0a0c83
			default:
rpm-build 0a0c83
				FAIL_CHECK(ACL_ENTRY_ERROR);
rpm-build 0a0c83
		}
rpm-build 0a0c83
		if (last)
rpm-build 0a0c83
			(*last)++;
rpm-build 0a0c83
	}
rpm-build 0a0c83
rpm-build 0a0c83
	if (state != 0)
rpm-build 0a0c83
		FAIL_CHECK(ACL_MISS_ERROR);
rpm-build 0a0c83
	return 0;
rpm-build 0a0c83
}
rpm-build 0a0c83
#undef FAIL_CHECK
rpm-build 0a0c83