1 /* ----------------------------------------------------------------------- *
3 * Copyright 1996-2009 The NASM Authors - All Rights Reserved
4 * See the file AUTHORS included with the NASM distribution for
5 * the specific copyright holders.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
19 * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
20 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * ----------------------------------------------------------------------- */
35 * rdlib.c - routines for manipulating RDOFF libraries (.rdl)
50 /* See Texinfo documentation about new RDOFF libraries format */
54 char *rdl_errors
[5] = {
55 "no error", "could not open file", "invalid file structure",
56 "file contains modules of an unsupported RDOFF version",
60 int rdl_verify(const char *filename
)
62 FILE *fp
= fopen(filename
, "rb");
66 static char lastverified
[256];
67 static int lastresult
= -1;
69 if (lastresult
!= -1 && !strcmp(filename
, lastverified
))
72 strcpy(lastverified
, filename
);
75 return (rdl_error
= lastresult
= 1);
80 while (fread(buf
+ i
, 1, 1, fp
) == 1 && buf
[i
] && i
< 257)
87 * A special module, eg a signature block or a directory.
88 * Format of such a module is defined to be:
89 * six char type identifier
90 * int32_t count bytes content
92 * so we can handle it uniformaly with RDOFF2 modules.
96 /* Currently, nothing useful to do with signature block.. */
100 if (strncmp(buf
, "RDOFF", 5)) {
101 return rdl_error
= lastresult
= 2;
102 } else if (buf
[5] != '2') {
103 return rdl_error
= lastresult
= 3;
106 fread(&length
, 4, 1, fp
);
107 fseek(fp
, length
, SEEK_CUR
); /* skip over the module */
110 return lastresult
= 0; /* library in correct format */
113 int rdl_open(struct librarynode
*lib
, const char *name
)
115 int i
= rdl_verify(name
);
120 lib
->name
= strdup(name
);
126 void rdl_close(struct librarynode
*lib
)
133 int rdl_searchlib(struct librarynode
*lib
, const char *label
, rdffile
* f
)
145 lib
->fp
= fopen(lib
->name
, "rb");
154 while (!feof(lib
->fp
)) {
156 * read the module name from the file, and prepend
157 * the library name and '.' to it.
159 strcpy(buf
, lib
->name
);
161 i
= strlen(lib
->name
);
164 while (fread(buf
+ i
, 1, 1, lib
->fp
) == 1 && buf
[i
] && i
< 512)
171 if (!strcmp(buf
+ t
, ".dir")) { /* skip over directory */
172 fread(&l
, 4, 1, lib
->fp
);
173 fseek(lib
->fp
, l
, SEEK_CUR
);
177 * open the RDOFF module
179 if (rdfopenhere(f
, lib
->fp
, &lib
->referenced
, buf
)) {
180 rdl_error
= 16 * rdf_errno
;
184 * read in the header, and scan for exported symbols
186 hdr
= malloc(f
->header_len
);
187 rdfloadseg(f
, RDOFF_HEADER
, hdr
);
189 while ((r
= rdfgetheaderrec(f
))) {
190 if (r
->type
!= 3) /* not an export */
193 if (!strcmp(r
->e
.label
, label
)) { /* match! */
194 free(hdr
); /* reset to 'just open' */
195 f
->header_loc
= NULL
; /* state... */
201 /* find start of next module... */
204 fseek(lib
->fp
, i
, SEEK_SET
);
208 * close the file if nobody else is using it
211 if (!lib
->referenced
) {
218 int rdl_openmodule(struct librarynode
*lib
, int moduleno
, rdffile
* f
)
227 lib
->fp
= fopen(lib
->name
, "rb");
230 return (rdl_error
= 1);
236 while (!feof(lib
->fp
)) {
237 strcpy(buf
, lib
->name
);
241 while (fread(buf
+ i
, 1, 1, lib
->fp
) == 1 && buf
[i
] && i
< 512)
247 if (buf
[t
] != '.') /* special module - not counted in the numbering */
248 cmod
++; /* of RDOFF modules - must be referred to by name */
250 if (cmod
== moduleno
) {
252 rdfopenhere(f
, lib
->fp
, &lib
->referenced
, buf
);
254 if (!lib
->referenced
) {
261 fread(buf
, 6, 1, lib
->fp
);
265 } else if (strncmp(buf
, "RDOFF", 5)) {
266 if (!--lib
->referenced
) {
270 return rdl_error
= 2;
271 } else if (buf
[5] != '2') {
272 if (!--lib
->referenced
) {
276 return rdl_error
= 3;
279 fread(&length
, 4, 1, lib
->fp
);
280 fseek(lib
->fp
, length
, SEEK_CUR
); /* skip over the module */
282 if (!--lib
->referenced
) {
286 return rdl_error
= 4; /* module not found */
289 void rdl_perror(const char *apname
, const char *filename
)
292 rdfperror(apname
, filename
);
294 fprintf(stderr
, "%s:%s:%s\n", apname
, filename
,
295 rdl_errors
[rdl_error
]);