mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- Added support for ELF shared objects and libraries. This is implemented through constructor/destructor functions, which means that you can use this functionality even in Amiga Exec style shared libraries, with the proper library initialization code to invoke the constructor/destructor functions for you. - Updated uname() to recognize AmigaOS 4.1. - The translation from Unix to Amiga path names did not properly process multiple occurences of "/./" in the path name. Thanks go to Steven Solie for finding the issue. - The detection of "/./" and "/../" patterns in Unix path names to be translated into Amiga path names did not test if it was overrunning the end of the string. - If strcmp(), strncmp() and memcmp() detect a pair of different characters, then the function result must be calculated as if the characters were of type "unsigned char". This is a requirement according to the ISO 'C' (1994) standard. Thanks go to Georg Steger for finding the issue. - The definitions for INT_MIN, INT_MAX and UINT_MAX in <limits.h> no longer use long integer types, as prompted by Steven Solie. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15204 87f5fb63-7c3d-0410-a384-fd976d0f7a62
151 lines
4.1 KiB
C
151 lines
4.1 KiB
C
/*
|
|
* $Id: stdlib_shared_libs.c,v 1.1 2010-08-20 15:33:36 obarthel Exp $
|
|
*
|
|
* :ts=4
|
|
*
|
|
* Portable ISO 'C' (1994) runtime library for the Amiga computer
|
|
* Copyright (c) 2002-2010 by Olaf Barthel <olsen (at) sourcery.han.de>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* - Neither the name of Olaf Barthel nor the names of contributors
|
|
* may be used to endorse or promote products derived from this
|
|
* software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#if defined(__amigaos4__)
|
|
|
|
/****************************************************************************/
|
|
|
|
/* The following is not part of the ISO 'C' (1994) standard. */
|
|
|
|
/****************************************************************************/
|
|
|
|
#ifndef _STDLIB_HEADERS_H
|
|
#include "stdlib_headers.h"
|
|
#endif /* _STDLIB_HEADERS_H */
|
|
|
|
/****************************************************************************/
|
|
|
|
#ifndef _STDLIB_CONSTRUCTOR_H
|
|
#include "stdlib_constructor.h"
|
|
#endif /* _STDLIB_CONSTRUCTOR_H */
|
|
|
|
/****************************************************************************/
|
|
|
|
#include <libraries/elf.h>
|
|
|
|
#include <proto/elf.h>
|
|
#include <proto/dos.h>
|
|
|
|
/****************************************************************************/
|
|
|
|
static VOID shared_libs_init_exit(BOOL init_or_exit)
|
|
{
|
|
struct Library * ElfBase;
|
|
struct Library * DOSBase = NULL;
|
|
struct ElfIFace * IElf = NULL;
|
|
struct DOSIFace * IDOS = NULL;
|
|
BPTR segment_list;
|
|
|
|
ENTER();
|
|
|
|
/* We need elf.library V52.2 or higher. */
|
|
ElfBase = OpenLibrary("elf.library",0);
|
|
if(ElfBase == NULL || (ElfBase->lib_Version < 52) || (ElfBase->lib_Version == 52 && ElfBase->lib_Revision < 2))
|
|
goto out;
|
|
|
|
IElf = (struct ElfIFace *)GetInterface(ElfBase,"main",1,NULL);
|
|
if(IElf == NULL)
|
|
goto out;
|
|
|
|
DOSBase = OpenLibrary("dos.library",0);
|
|
if(DOSBase == NULL)
|
|
goto out;
|
|
|
|
IDOS = (struct DOSIFace *)GetInterface(DOSBase,"main",1,NULL);
|
|
if(IDOS == NULL)
|
|
goto out;
|
|
|
|
/* Try to find the Elf handle associated with this
|
|
program's segment list. */
|
|
segment_list = GetProcSegList(NULL,GPSLF_CLI | GPSLF_SEG);
|
|
if(segment_list != ZERO)
|
|
{
|
|
Elf32_Handle elf_handle = NULL;
|
|
|
|
if(GetSegListInfoTags(segment_list,
|
|
GSLI_ElfHandle,&elf_handle,
|
|
TAG_DONE) == 1)
|
|
{
|
|
/* Initialize the shared object system. Note that
|
|
we have no way of finding out whether this actually
|
|
worked... */
|
|
if(elf_handle != NULL)
|
|
InitSHLibs(elf_handle,init_or_exit);
|
|
}
|
|
}
|
|
|
|
out:
|
|
|
|
if(IDOS != NULL)
|
|
DropInterface((struct Interface *)IDOS);
|
|
|
|
if(DOSBase != NULL)
|
|
CloseLibrary(DOSBase);
|
|
|
|
if(IElf != NULL)
|
|
DropInterface((struct Interface *)IElf);
|
|
|
|
if(ElfBase != NULL)
|
|
CloseLibrary(ElfBase);
|
|
|
|
LEAVE();
|
|
}
|
|
|
|
/****************************************************************************/
|
|
|
|
CLIB_DESTRUCTOR(shared_libs_exit)
|
|
{
|
|
ENTER();
|
|
|
|
shared_libs_init_exit(FALSE);
|
|
|
|
LEAVE();
|
|
}
|
|
|
|
/****************************************************************************/
|
|
|
|
CLIB_CONSTRUCTOR(shared_libs_init)
|
|
{
|
|
ENTER();
|
|
|
|
shared_libs_init_exit(TRUE);
|
|
|
|
LEAVE();
|
|
|
|
CONSTRUCTOR_SUCCEED();
|
|
}
|
|
|
|
/****************************************************************************/
|
|
|
|
#endif /* __amigaos4__ */
|