The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::LibNFS - User-land NFS in Perl via libnfs

SYNOPSIS

Create an NFS context and configure it:

    my $nfs = Net::LibNFS->new()->set(
        version => 4,
        client_name => 'my-nfs-client-name',
    );

Blocking I/O:

    # Connect to the NFS server:
    #
    $nfs->mount('some.server.name', '/the-mount-path');

    # Open a directory:
    #
    my $dh = $nfs->opendir('path/to/dir');

    # Print the names of directory members.
    #
    while (my $dir_obj = $dh->read()) {   # NB: read() returns an object!
        print "Name: ", $dir_obj->name(), $/;
    }

    $nfs->unmount();

Non-blocking I/O, using IO::Async:

    my $loop = IO::Async::Loop->new();

    my $nfsa = $nfs->io_async($loop);

    $nfsa->mount('some.server.name', '/the-mount-path')->then( sub {
         return $nfsa->opendir('path/to/dir');
    } )->then( sub ($dh) {
        while (my $dir_obj = $dh->read()) {
            print "Name: ", $dir_obj->name(), $/;
        }
    } )->then( sub {
        $nfsa->unmount();
    } )->finally( sub { $loop->stop() } );

    $loop->run();

(AnyEvent and Mojolicious are also supported.)

DESCRIPTION

libnfs allows you to access NFS shares in user-space. Thus you can read & write files via NFS even if you can’t (or just would rather not) mount(8) them locally.

LINKING

If a shared libnfs is available and is version 5.0.0 or later we’ll compile against that. Otherwise we try to compile our own libnfs and link to it statically.

CHARACTER ENCODING

All strings for Net::LibNFS are byte strings. Take care to decode/encode appropriately, and be sure to test with non-ASCII text (like thîß).

Of note: NFSv4’s official specification stipulates that filesystem paths should be valid UTF-8, which suggests that this library might express paths as character strings rather than byte strings. (This assumedly facilitates better interoperability with Windows and other OSes whose filesystems are conceptually Unicode.) In practice, however, some NFS servers appear not to care about UTF-8 validity. In that light, and for consistency with general POSIX practice, we stick to byte strings.

Nonetheless, for best results, ensure all filesystem paths are valid UTF-8.

STATIC FUNCTIONS

@exports = mount_getexports( $SERVERNAME [, $TIMEOUT] )

Returns a list of hashrefs. Each hashref has dir (string) and groups (array of strings).

@addresses = find_local_servers()

Returns a list of addresses (as strings).

METHODS: GENERAL

$obj = CLASS->new()

Instantiates this class.

$obj = OBJ->set( @OPTS_KV )

A setter for multiple settings; e.g., where libnfs exposes nfs_set_version(), here you pass version with the appropriate value.

Recognized options are:

  • version

  • client_name and verifier (NFSv4 only)

  • tcp_syncnt, uid, gid, debug, dircache, autoreconnect, timeout

  • pagecache, pagecache_ttl, readahead

  • readmax, writemax

$old_umask = OBJ->umask( $NEW_UMASK )

Like Perl’s built-in.

$cwd = OBJ->getcwd()

Returns OBJ’s current directory.

METHODS: NON-BLOCKING I/O

This library implements non-blocking I/O by deriving a separate NFS context object from the “plain” (blocking-I/O) one.

The following methods all return a Net::LibNFS::Async instance:

$ASYNC_OBJ = OBJ->io_async( $LOOP )

$LOOP is an IO::Async::Loop instance.

$ASYNC_OBJ = OBJ->anyevent()

Unlike io_async(), this doesn’t require a loop object because AnyEvent’s context is a singleton.

$ASYNC_OBJ = OBJ->mojo( [$REACTOR] )

$REACTOR (a Mojo::Reactor instance) is optional; the default is Mojo’s default reactor.

METHODS: GETTERS

  • queue_length()

  • get_readmax(), get_writemax()

  • get_version() (i.e., the active NFS version)

  • getcwd()

CONSTANTS

METHODS: BLOCKING I/O

$obj = OBJ->mount( $SERVERNAME, $EXPORTNAME )

Attempts to contact $SERVERNAME and set OBJ to access $EXPORTNAME.

Returns OBJ.

$obj = OBJ->umount()

Releases the current NFS connection.

Returns OBJ.

$stat_obj = OBJ->stat( $PATH )

Like Perl’s stat() but returns a Net::LibNFS::Stat instance.

$stat_obj = OBJ->lstat( $PATH )

Like stat() above but won’t follow symbolic links.

$nfs_fh = OBJ->open( $PATH, $FLAGS [, $MODE] )

Opens a file and returns a Net::LibNFS::Filehandle instance to interact with it.

$obj = OBJ->mkdir( $PATH [, $MODE] )

Creates a directory.

Returns OBJ.

$obj = OBJ->rmdir( $PATH )

Deletes a directory.

Returns OBJ.

$obj = OBJ->chdir( $PATH )

Changes OBJ’s directory.

Returns OBJ.

$obj = OBJ->mknod( $PATH, $MODE, $DEV )

Like mknod(2).

Returns OBJ.

$obj = OBJ->unlink( $PATH )

Deletes a file.

Returns OBJ.

$nfs_dh = OBJ->opendir( $PATH )

Opens a directory and returns a Net::LibNFS::Dirhandle instance to read from it.

$statvfs_obj = OBJ->statvfs( $PATH )

Like statvfs(2). Returns a Net::LibNFS::StatVFS instance.

$destination = OBJ->readlink( $PATH )

Reads a symlink directly.

$obj = OBJ->chmod( $PATH, $MODE )

Sets a path’s mode.

Returns OBJ.

$obj = OBJ->lchmod( $PATH, $MODE )

Like chmod() above but won’t follow symbolic links.

Returns OBJ.

$obj = OBJ->chown( $PATH, $UID, $GID )

Sets a path’s ownership.

Returns OBJ.

$obj = OBJ->utime( $PATH, $ATIME, $MTIME )

Updates $PATH’s atime & mtime. A time can be specified as either:

  • A nonnegative number (not necessarily an integer).

  • A reference to a 2-member array of nonnegative integers: seconds and microseconds.

Returns OBJ.

$obj = OBJ->lutime( $PATH, $ATIME, $MTIME )

Like utime() above but can operate on symlinks.

Returns OBJ.

$obj = OBJ->lchown( $PATH, $MODE )

Like chown() above but won’t follow symbolic links.

Returns OBJ.

$obj = OBJ->link( $OLDPATH, $NEWPATH )

Creates a hard link.

Returns OBJ.

$obj = OBJ->symlink( $OLDPATH, $NEWPATH )

Creates a symbolic link.

Returns OBJ.

$obj = OBJ->rename( $OLDPATH, $NEWPATH )

Renames a filesystem path.

Returns OBJ.

UNIMPLEMENTED

The following libnfs features are unimplemented here:

  • Authentication: Would be nice!

  • URL parsing: Seems redundant with URI.

  • creat() & create(): These are redundant with open().

  • access() & access2(): Merely knowing whether a given file/directory is accessible isn’t as useful as it may seem because by the time you actually use the resource the permissions/ownership could have changed. To prevent that race condition it’s better just to open()/opendir() and handle errors accordingly.

  • lockf(): Apparently redundant with fcntl()-based locks save for the lock-test functionality, which is generally a misstep for the same reason as access() above: by the time you use the resource—in this case, request a lock on the file—the system state may have changed.

SEE ALSO

RFC 7530 is, as of this writing, NFSv4’s official definition.

LICENSE & COPYRIGHT

Copyright 2022 Gasper Software Consulting. All rights reserved.

Net::LibNFS is licensed under the same terms as Perl itself (cf. perlartistic); HOWEVER, since Net::LibNFS links to libnfs, use of Net::LibNFS may imply acceptance of libnfs’s own copyright terms. See libnfs/COPYING in this distribution for details.