Exacl   ![CRATE] ![API] ![CI] ![BUILD]

Rust library to manipulate file system access control lists (ACL) on macOS, Linux, and FreeBSD.

Example

```rust use exacl::{getfacl, setfacl, AclEntry, Perm};

// Get the ACL from "./tmp/foo". let mut acl = getfacl("./tmp/foo", None)?;

// Print the contents of the ACL. for entry in &acl { println!("{}", entry); }

// Add an ACL entry to the end. acl.push(AclEntry::allowuser("someuser", Perm::READ, None));

// Set the ACL for "./tmp/foo". setfacl(&["./tmp/foo"], &acl, None)?; ```

Benefits

API

This module provides two high level functions, getfacl and setfacl.

On Linux and FreeBSD, the ACL contains entries for the default ACL, if present.

Both getfacl and setfacl work with a Vec<AclEntry>. The AclEntry structure contains five fields:

More Examples

Here are some more examples showing how to use the library.

Get an ACL in common delimited string format:

rust let acl = exacl::getfacl("/tmp/file", None)?; let result = exacl::to_string(&acl)?;

Get an ACL in JSON format:

rust let acl = exacl::getfacl("/tmp/file", None)?; let result = serde_json::to_string(&acl)?;

Create a linux ACL for permissions that allow the owning user and group to read/write a file but no one else except for "fred".

rust let mut acl = exacl::from_mode(0o660); acl.push(AclEntry::allow_user("fred", Perm::READ | Perm::WRITE, None)); exacl::setfacl(&["/tmp/file"], &acl, None)?;

Create a linux ACL for directory permissions that gives full access to the owning user and group and read-only access to members of the accounting group. Any sub-directories created should automatically have the same ACL (via the default ACL).

```rust let mut acl = exacl::frommode(0o770); acl.push(AclEntry::allowgroup( "accounting", Perm::READ | Perm::EXECUTE, None, ));

// Make default_acl a copy of access_acl with the DEFAULT flag set.
let mut default_acl: Vec<AclEntry> = acl.clone();
for entry in &mut default_acl {
    entry.flags |= Flag::DEFAULT;
}
acl.append(&mut default_acl);

exacl::setfacl(&["./tmp/dir"], &acl, None)?;

```