/* Bacula(R) - The Network Backup Solution Copyright (C) 2000-2020 Kern Sibbald The original author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. You may use this file and others of this release according to the license defined in the LICENSE file, which includes the Affero General Public License, v3.0 ("AGPLv3") and some additional permissions and terms pursuant to its AGPLv3 Section 7. This notice must be preserved when any source code is conveyed and/or propagated. Bacula(R) is a registered trademark of Kern Sibbald. */ /** * Major refactoring of ACL code written by: * * Radosław Korzeniewski, MMXVI * radoslaw@korzeniewski.net, radekk@inteos.pl * Inteos Sp. z o.o. http://www.inteos.pl/ * */ #ifndef __BACL_FreeBSD_H_ #define __BACL_FreeBSD_H_ #if defined(HAVE_FREEBSD_OS) #include /* check if ACL support is enabled */ #if defined(HAVE_ACL) #ifdef HAVE_SYS_ACL_H #include #else #error "configure failed to detect availability of sys/acl.h" #endif #ifdef HAVE_LIBUTIL_H #include #endif /* * * */ class BACL_FreeBSD : public BACL { private: bRC_BACL os_backup_acl (JCR *jcr, FF_PKT *ff_pkt); bRC_BACL os_restore_acl (JCR *jcr, int stream, char *content, uint32_t length); bRC_BACL os_get_acl(JCR *jcr, BACL_type bacltype); bRC_BACL os_set_acl(JCR *jcr, BACL_type bacltype, char *content, uint32_t length); /* requires acl.h available */ bool acl_issimple(acl_t acl); acl_type_t get_acltype(BACL_type bacltype); int acl_nrentries(acl_t acl); bRC_BACL check_bacltype (JCR *jcr, int name); public: BACL_FreeBSD (); }; #endif /* HAVE_ACL */ #endif /* HAVE_FREEBSD_OS */ #endif /* __BACL_FreeBSD_H_ */