FilePermissions

Description
FilePermissions is a Ruby library providing an object representation of the
file permission bits in POSIX systems.
It can handle the generic read, write and execute permissions, as well as
the setuid, setgid and sticky flags. Permission sets can be read from file
system objects, parsed from typical string representations or simply
defined by their numeric representation. They can then be manipulated
through binary logic operators and written back to file system objects.
Features / Problems
This project tries to conform to:
Additional facts:
- Written purely in Ruby.
- Documented with YARD.
- Automatically testable through RSpec.
- Intended to be used with Ruby 1.9.3 or higher.
- Cryptographically signed git tags.
- This library was developed as part of the
UsersAndGroups project.
Requirements
Installation
On *nix systems you may need to prefix the command with sudo
to get root
privileges.
Gem
gem install file_permissions
Automated testing
Go into the root directory of the installed gem and run the following command
to fetch all development dependencies:
bundle
Afterwards start the test runner:
rake spec
If something goes wrong you should be notified through failing examples.
Usage
This documentation defines the public interface of the software. The version
number of the software tracks changes to this public interface as described in
Semantic Versioning. Do not use elements that are marked as private.
These elements are not guaranteed to exist in otherwise compatible future
versions. Should you really need some parts that are currently marked as
private, please contact us. We might be able to expose them as public
interface for your convenience.
This is still experimental software, even the public interface may change
substantially in future releases.
Ruby interface
Loading
In most cases you want to load the code by using the following command:
require 'file_permissions'
In a bundler Gemfile you should use the following:
gem 'file_permissions'
Namespace
This project is contained within a namespace to avoid name collisions with
other code. If you do not want to specifiy the namespace explicitly you can
include it into the current scope by executing the following statement:
include GodObject::FilePermissions
The following documentation assumes that you did include the namespace.
The ComplexMode
The complete regular permissions of a POSIX file system object are represented
by the ComplexMode. It aggregates three Mode objects which define the read,
write and execute permissions for the owner, the owning group and others
respectively. Additionally it holds an instance of the SpecialMode to define
the state of the setuid, setgid and sticky flags of the file system object.
A ComplexMode can be created from a typical octal mode representation:
ComplexMode.new(0644)
ComplexMode.new(03644)
Or simply by a list of permission digits:
ComplexMode.new(:user_write, :group_execute, :other_read, :sticky)
It can also be read from the file system like this:
mode = ComplexMode.from_file('/path/to/a/file')
Note that it also accepts a Pathname object instead of a path String.
The ComplexMode object can now be used to access the permissions:
mode.user.execute?
mode.group.read?
mode.other.write?
mode.setuid?
Also you can modify the ComplexMode by replacing its aggregated Mode objects:
mode.other = Mode.new(:read, :execute)
mode
mode.special = SpecialMode.new(:setuid, :setgid)
mode
The ComplexMode can be again written to a file system object by issuing the
following:
mode.assign_to_file('/path/to/some/other/file')
Note that it also accepts a Pathname object instead of a path String.
Mode and SpecialMode
Both Mode and SpecialMode are intended to be parts of the ComplexMode.
Instances are immutable and can therefore only be defined during creation.
New instances can either be created by a list of permission digits:
Mode.new(:read, :write, :execute)
SpecialMode.new(:setuid, :setgid, :sticky)
Or be defined by their octal digit representation:
Mode.new(5)
SpecialMode.new(3)
Another way to create new instances is to parse a String representation:
regular_mode = Mode.parse('xr')
special_mode = SpecialMode.new('-st')
Note that instead of the Mode, when parsing a SpecialMode, the String
representation has to be in the correct order and including dashes for disabled
digits because the SpecialMode representation doesn't have unique character
representations for each permission digit.
Both Mode and SpecialMode can then be asked for the state of their digits:
regular_mode.read?
regular_mode.write?
regular_mode.execute?
regular_mode.state
regular_mode.enabled_digits
regular_mode.disabled_digits
special_mode.setuid?
special_mode.setgid?
special_mode.sticky?
special_mode.state
special_mode.enabled_digits
special_mode.disabled_digits
Development
Bug reports and feature requests
Please use the issue tracker on github.com to let us know about errors
or ideas for improvement of this software.
Source code
Distribution
This software is developed in the source code management system Git. There are
several synchronized mirror repositories available:
You can get the latest source code with the following command, while
exchanging the placeholder for one of the mirror URIs:
git clone MIRROR_URI
Tags and cryptographic verification
The final commit before each released gem version will be marked by a tag
named like the version with a prefixed lower-case "v". Every tag will be signed
by Alexander E. Fischer's OpenPGP public key which enables you to
verify your copy of the code cryptographically.
Add the key to your GnuPG keyring by the following command:
gpg --import aef-openpgp.asc
This command will tell you if your code is of integrity and authentic:
git tag --verify [TAG NAME]
Building gems
To package your state of the source code into a gem package use the following
command:
rake build
The gem will be generated according to the .gemspec file in the project root
directory and will be placed into the pkg/ directory.
Contribution
Help on making this software better is always very appreciated. If you want
your changes to be included in the official release, please clone the project
on github.com, create a named branch to commit, push your changes into it and
send a pull request afterwards.
Please make sure to write tests for your changes so that no one else will break
them when changing other things. Also notice that an inclusion of your changes
cannot be guaranteed before reviewing them.
The following people were involved in development:
License
Copyright GodObject Team dev@godobject.net, 2012-2016
This file is part of FilePermissions.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.