summaryrefslogblamecommitdiffstats
path: root/lib/OpenSLX/Syscall.pm
blob: 3291a402c7327a1da34830389562fe184b0e75ef (plain) (tree)



















                                                                               











                                                                           

               

                    





















                                                                             



                     




                                                        
                               
 





                                                                           
                                                                             









                                                                           
     
 
    

  
# Copyright (c) 2008 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# PerlHeaders.pm
#    - provides automatic generation of required perl headers (for syscalls)
# -----------------------------------------------------------------------------
package OpenSLX::Syscall;

use strict;
use warnings;

our $VERSION = 1.01;

=head1 NAME

OpenSLX::Syscall - provides wrapper functions for syscalls.

=head1 DESCRIPTION

This module exports one wrapper function for each syscall that OpenSLX is
using. Each of these functions takes care to load all required Perl-headers
before trying to invoke the respective syscall.

=cut

use File::Path;

use OpenSLX::Basics;

=head1 PUBLIC FUNCTIONS

=over

=item B<enter32BitPersonality()>

Invokes the I<personality()> syscall in order to enter the 32-bit personality
(C<PER_LINUX32>).

=cut

sub enter32BitPersonality
{
    _loadPerlHeader('syscall.ph');
    _loadPerlHeader('linux/personality.ph', 'sys/personality.ph');

    syscall(&SYS_personality, PER_LINUX32()) != -1
        or warn _tr("unable to invoke syscall '%s'! ($!)", 'personality');

    return;
}

sub _loadPerlHeader
{
    my @phFiles = @_;

    my $phLibDir = "$openslxConfig{'base-path'}/lib/ph";
    mkpath($phLibDir) unless -e $phLibDir;
    
    local @INC = @INC;
    push @INC, $phLibDir;
    push @INC, "$phLibDir/asm";

    for my $phFile (@phFiles) {
        if (!eval { require $phFile }) {
            # perl-header has not been provided by host-OS, so we create it
            # manually from C-header (via h2ph):
            (my $hFile = $phFile) =~ s{\.ph$}{.h};
            if (-e "/usr/include/$hFile") {
                slxsystem("cd /usr/include && h2ph -d $phLibDir $hFile") == 0
                    or die _tr('unable to create %s! (%s)', $phFile, $!);
            }
        }
        return 1 if eval { require $phFile; 1 };
    }
    die _tr(
        'unable to load any of these perl headers: %s', join(',', @phFiles)
    );
}

=back

=cut

1;