# $OpenBSD: Pledge.pm,v 1.5 2019/12/30 02:15:17 afresh1 Exp $ # package OpenBSD::Pledge; use 5.020002; use strict; use warnings; use parent 'Exporter'; our %EXPORT_TAGS = ( 'all' => [qw( pledge pledgenames )] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( pledge ); ## no critic 'export' our $VERSION = '0.02'; require XSLoader; XSLoader::load( 'OpenBSD::Pledge', $VERSION ); sub pledge { my (@promises) = @_; my %seen; my $promises = join q{ }, sort grep { !$seen{$_}++ } ( 'stdio', @promises ); return _pledge( $promises ); } 1; ## no critic 'pod sections' __END__ =head1 NAME OpenBSD::Pledge - Perl interface to OpenBSD pledge(2) =head1 SYNOPSIS use OpenBSD::Pledge; my $file = "/usr/share/dict/words"; pledge( qw( rpath ) ) || die "Unable to pledge: $!"; open my $fh, '<', $file or die "Unable to open $file: $!"; pledge() || die "Unable to pledge again: $!"; print grep { /pledge/i } readline($fh); close $fh; =head1 DESCRIPTION This module provides a perl interface to OpenBSD's L L. Once you promise that your program will only use certain syscalls the kernel will kill the program if it attempts to call any other interfaces. =head1 EXPORT Exports L by default. C<:all> will also export L =head1 FUNCTIONS =head2 pledge Perl interface to L. pledge(@promises) The "stdio" promise is always implied, as L itself is useless without it. Returns true on success, returns false and sets $! on failure =head2 pledgenames Returns a list of the possible promises you can pass to L. =head1 BUGS AND LIMITATIONS Perl is particularly fond of C so that promise is always added by L. =head1 SEE ALSO L L =head1 AUTHOR Andrew Fresh, Eafresh1@OpenBSD.orgE =head1 LICENSE AND COPYRIGHT Copyright (C) 2015 by Andrew Fresh Eafresh1@OpenBSD.orgE Permission to use, copy, modify, and 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. =cut