1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
/***********************************************************
Copyright 1991 by Stichting Mathematisch Centrum, Amsterdam, The
Netherlands.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
FOR ANY SPECIAL, 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.
******************************************************************/
/*
** dl_findcache - See if a cached binary is up-to-date
*/
#define _auxtemp _auxtemp5 /* Bug in ldfcn.h */
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <aouthdr.h>
#include <filehdr.h>
#include <syms.h>
#include <ar.h>
#include <ldfcn.h>
#include <stdlib.h>
#include "dl.h"
#ifdef DEBUG
#define D(x) (x)
#else
#define D(x)
#endif
#define NREMOVE 32
static char *toberemoved[NREMOVE];
static char **toberemovedp = toberemoved;
static char cachebuf[1030];
extern int unlink (const char *);
extern char *strncpy (char *, const char *, size_t);
extern int strncmp (const char *, const char *, size_t);
extern char *strcat (char *, const char *);
extern int access (const char *, int);
extern int creat (const char *, mode_t);
extern int close (int);
void
dl_remove_tmp(void)
{
D(printf("dl_remove_tmp: removing tempfiles\n"));
while ( --toberemovedp >= toberemoved ) {
D(printf("removing %s\n", *toberemovedp));
unlink(*toberemovedp);
}
}
int
dl_findcache(char *obj, int ostamp, char **cname)
{
int stamp;
LDFILE *ldptr;
AOUTHDR aouth;
int fd;
char *tname;
*cname = cachebuf;
strncpy(cachebuf, obj, 1024);
if ( strncmp(cachebuf+strlen(cachebuf)-2, ".o", 2) == 0)
cachebuf[strlen(cachebuf)-2] = 0;
strcat(cachebuf, ".ld");
if ( access(cachebuf, 0) == 0 && (ldptr=ldopen(cachebuf, 0)) != 0) {
D(printf("Found cached file\n"));
stamp = SYMHEADER(ldptr).vstamp;
if ( ldohseek(ldptr) == FAILURE ) {
D(printf("Cannot seek to a.out header on %s\n", cachebuf));
ldclose(ldptr);
goto bad;
}
if ( FREAD((char *)&aouth, 1, sizeof(aouth), ldptr) != sizeof(aouth) ) {
D(printf("Cannot read a.out header from %s\n", cachebuf));
ldclose(ldptr);
goto bad;
}
if ( ! dl_checkrange(aouth.text_start, aouth.tsize) ||
! dl_checkrange(aouth.data_start, aouth.dsize+aouth.bsize) ) {
D(printf("Addresses in use: T %x %x, D %x %x\n", aouth.text_start,\
aouth.tsize, aouth.data_start, aouth.dsize+aouth.bsize));
ldclose(ldptr);
goto bad;
}
ldclose(ldptr);
if ( (unsigned short)stamp == (unsigned short)ostamp ) {
/* They match! The .ld file was created from the current file */
/*XXXX Should also check that addresses are OK */
D(printf("And timestamp ok\n"));
return 1;
}
D(printf("But wrong timestamp, wtd %x, got %x\n", ostamp, stamp));
}
bad:
D(printf("No correct cached file, trying to create one\n"));
/* Doesn't exist yet, or incorrect stamp. See if we can create it. */
fd = creat(cachebuf, 0777);
if ( fd >= 0) {
D(printf("But can create here\n"));
close(fd);
unlink(cachebuf);
return 0;
}
D(printf("And can't create either\n"));
/* Nope, can't create. Fill in filename in /tmp */
tname = tempnam("/usr/tmp", "dl.");
if ( toberemovedp >= toberemoved+NREMOVE ) {
dl_error("Too many temporary load images created", 0);
return 0;
}
if ( toberemovedp == toberemoved )
atexit(dl_remove_tmp);
*toberemovedp++ = tname;
strcpy(cachebuf, tname);
return 0;
}
|