Blame libacl/__apply_mask_to_mode.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: __apply_mask_to_mode.c
rpm-build 0a0c83
  (Linux Access Control List Management)
rpm-build 0a0c83
rpm-build 0a0c83
  Copyright (C) 1999-2002
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/stat.h>
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
rpm-build 0a0c83
#if defined(HAVE_ACL_ENTRIES) && \
rpm-build 0a0c83
    defined (HAVE_ACL_GET_ENTRY) && defined(HAVE_ACL_GET_TAG_TYPE) && \
rpm-build 0a0c83
    defined (HAVE_ACL_GET_PERMSET) && defined(HAVE_ACL_GET_PERM)
rpm-build 0a0c83
int
rpm-build 0a0c83
__apply_mask_to_mode(mode_t *mode, acl_t acl)
rpm-build 0a0c83
{
rpm-build 0a0c83
	acl_entry_t entry;
rpm-build 0a0c83
	int entry_id=ACL_FIRST_ENTRY;
rpm-build 0a0c83
rpm-build 0a0c83
	/* A mimimal ACL which has three entries has no mask entry; the
rpm-build 0a0c83
	   group file mode permission bits are exact. */
rpm-build 0a0c83
	if (acl_entries(acl) == 3)
rpm-build 0a0c83
		return 0;
rpm-build 0a0c83
rpm-build 0a0c83
	while (acl_get_entry(acl, entry_id, &entry) == 1) {
rpm-build 0a0c83
		acl_tag_t tag_type;
rpm-build 0a0c83
rpm-build 0a0c83
		acl_get_tag_type(entry, &tag_type);
rpm-build 0a0c83
		if (tag_type == ACL_MASK) {
rpm-build 0a0c83
			acl_permset_t permset;
rpm-build 0a0c83
rpm-build 0a0c83
			acl_get_permset(entry, &permset);
rpm-build 0a0c83
			if (acl_get_perm(permset, ACL_READ) != 1)
rpm-build 0a0c83
				*mode &= ~S_IRGRP;
rpm-build 0a0c83
			if (acl_get_perm(permset, ACL_WRITE) != 1)
rpm-build 0a0c83
				*mode &= ~S_IWGRP;
rpm-build 0a0c83
			if (acl_get_perm(permset, ACL_EXECUTE) != 1)
rpm-build 0a0c83
				*mode &= ~S_IXGRP;
rpm-build 0a0c83
rpm-build 0a0c83
			return 0;
rpm-build 0a0c83
		}
rpm-build 0a0c83
		entry_id = ACL_NEXT_ENTRY;
rpm-build 0a0c83
	}
rpm-build 0a0c83
rpm-build 0a0c83
	/* This is unexpected; if the ACL didn't include a mask entry
rpm-build 0a0c83
	   we should have exited before the loop! */
rpm-build 0a0c83
	*mode &= ~S_IRWXG;
rpm-build 0a0c83
	return 1;
rpm-build 0a0c83
}
rpm-build 0a0c83
#endif
rpm-build 0a0c83
rpm-build 0a0c83