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 * rdlar.c - new librarian/archiver for RDOFF2.
47 #include <sys/types.h>
52 #define PROGRAM_VERSION "0.1"
55 const char commands
[] = "adnrtx";
56 const char modifiers
[] = "cflouvV";
58 /** Global variables **/
59 char *progname
= "rdlar";
71 #define _ENDIANNESS 0 /* 0 for little, 1 for big */
74 * Convert int32_t to little endian (if we were compiled on big-endian machine)
76 static void int32_ttolocal(int32_t *l
)
80 uint8_t *p
= (uint8_t *)l
;
92 * Print version information
94 void show_version(void)
96 puts("New RDOFF2 librarian/archiver, version " PROGRAM_VERSION
);
100 * Print usage instructions
104 printf("Usage: %s [-]{%s}[%s] libfile [module-name] [files]\n",
105 progname
, commands
, modifiers
);
107 " a - add module(s) to the library\n"
108 " d - delete module(s) from the library\n"
109 " n - create the library\n"
110 " r - replace module(s)\n"
111 " t - display contents of library\n"
112 " x - extract module(s)\n"
113 " command specific modifiers:\n"
114 " o - preserve original dates\n"
115 " u - only replace modules that are newer than library contents\n"
116 " generic modifiers:\n"
117 " c - do not warn if the library had to be created\n"
118 " f - use file name as a module name\n"
120 " V - display version information");
124 * Print an error message and exit
126 void error_exit(int errcode
, bool useperror
, const char *fmt
, ...)
130 fprintf(stderr
, "%s: ", progname
);
132 vfprintf(stderr
, fmt
, ap
);
141 * Fill in and write a header
143 void put_header(struct rdlm_hdr
*hdr
, FILE * libfp
, char *modname
)
147 hdr
->hdrsize
= sizeof(*hdr
);
149 hdr
->hdrsize
+= (n
= strlen(modname
) + 1);
152 if (fwrite(hdr
, 1, sizeof(*hdr
), libfp
) != sizeof(*hdr
) ||
153 (modname
&& (fwrite(modname
, 1, n
, libfp
) != n
)))
154 error_exit(3, true, "could not write header");
158 * Copy n bytes from one file to another and return last character read.
160 char copybytes(FILE * fp
, FILE * fp2
, int n
)
164 for (i
= 0; i
< n
; i
++) {
167 error_exit(1, false, "premature end of file in '%s'",
170 if (fputc(t
, fp2
) == EOF
)
171 error_exit(1, false, "write error");
177 * Copy uint32_t from one file to another.
178 * Return local presentation of int32_t.
180 int32_t copyint32_t(FILE * fp
, FILE * fp2
)
184 uint8_t *p
= (uint8_t *)&l
;
186 for (i
= 0; i
< 4; i
++) {
189 error_exit(1, false, "premature end of file in '%s'",
192 if (fputc(t
, fp2
) == EOF
)
193 error_exit(1, false, "write error");
201 * Create a new library
203 int create_library(char *libname
)
210 hdr
.date
= time(NULL
);
211 hdr
.owner
= getuid();
212 hdr
.group
= getgid();
213 hdr
.mode
= umask(022);
216 libfp
= fopen(libname
, "wb");
218 error_exit(1, true, "could not open '%s'\n", libname
);
220 /* Write library header */
221 put_header(&hdr
, libfp
, NULL
);
228 * Add a module to the library
230 int add_module(FILE * libfp
, const char *fname
, char *modname
)
233 struct rdlm_hdr hdr
= { RDLMMAG
, 0, 0, 0, 0, 0, 0 };
238 fprintf(stderr
, "adding module %s\n", modname
);
240 /* Initialize some fields in the module header */
241 if (stat(fname
, &finfo
) < 0)
242 error_exit(1, true, "could not stat '%s'", fname
);
243 hdr
.date
= finfo
.st_mtime
;
244 hdr
.owner
= finfo
.st_uid
;
245 hdr
.group
= finfo
.st_gid
;
246 hdr
.size
= finfo
.st_size
;
248 modfp
= fopen(fname
, "rb");
250 error_exit(1, true, "could not open '%s'", fname
);
252 /* Write module header */
253 put_header(&hdr
, libfp
, modname
);
255 /* Put the module itself */
256 while (!feof(modfp
)) {
260 if (fputc(i
, libfp
) == EOF
)
261 error_exit(1, false, "write error");
271 int main(int argc
, char **argv
)
273 FILE *libfp
, *tmpfp
, *modfp
= NULL
;
276 char buf
[MAXMODNAMELEN
], *p
= NULL
;
288 /* Check whether some modifiers were specified */
289 for (i
= 1; i
< strlen(argv
[1]); i
++) {
290 switch (c
= argv
[1][i
]) {
292 options
.createok
= true;
295 options
.usefname
= true;
298 options
.align
= true;
301 options
.odate
= true;
304 options
.fresh
= true;
313 if (strchr(commands
, c
) == NULL
)
314 error_exit(2, false, "invalid command or modifier '%c'",
320 error_exit(2, false, "missing library name");
322 /* Process the command */
323 if (argv
[1][0] == '-')
325 switch (c
= argv
[1][0]) {
326 case 'a': /* add a module */
327 if (argc
< 4 || (!options
.usefname
&& argc
!= 5))
328 error_exit(2, false, "invalid number of arguments");
330 /* Check if a library already exists. If not - create it */
331 if (access(argv
[2], F_OK
) < 0) {
332 if (!options
.createok
)
333 fprintf(stderr
, "creating library %s\n", argv
[2]);
334 create_library(argv
[2]);
337 libfp
= fopen(argv
[2], "ab");
339 error_exit(1, true, "could not open '%s'", argv
[2]);
341 if (!options
.usefname
)
342 add_module(libfp
, argv
[4], argv
[3]);
344 for (i
= 3; i
< argc
; i
++)
345 add_module(libfp
, argv
[i
], argv
[i
]);
350 case 'n': /* create library */
351 create_library(argv
[2]);
354 case 'x': /* extract module(s) */
355 if (!options
.usefname
)
358 error_exit(2, false, "required parameter missing");
359 p
= options
.usefname
? argv
[3] : argv
[4];
360 case 't': /* list library contents */
361 libfp
= fopen(argv
[2], "rb");
363 error_exit(1, true, "could not open '%s'\n", argv
[2]);
365 /* Read library header */
366 if (fread(&hdr
, 1, sizeof(hdr
), libfp
) != sizeof(hdr
) ||
367 hdr
.magic
!= RDLAMAG
)
368 error_exit(1, false, "invalid library format");
370 /* Walk through the library looking for requested module */
371 while (!feof(libfp
)) {
372 /* Read module header */
373 i
= fread(&hdr
, 1, sizeof(hdr
), libfp
);
376 if (i
!= sizeof(hdr
) || hdr
.magic
!= RDLMMAG
)
377 error_exit(1, false, "invalid module header");
378 /* Read module name */
379 i
= hdr
.hdrsize
- sizeof(hdr
);
380 if (i
> sizeof(buf
) || fread(buf
, 1, i
, libfp
) != i
)
381 error_exit(1, false, "invalid module name");
383 /* Check against desired name */
384 if (!strcmp(buf
, argv
[3])) {
387 "extracting module %s to file %s\n", buf
,
389 modfp
= fopen(p
, "wb");
391 error_exit(1, true, "could not open '%s'", p
);
394 printf("%-40s ", buf
);
395 if (options
.verbose
) {
396 printf("%ld bytes", hdr
.size
);
401 copybytes(libfp
, modfp
, hdr
.size
);
410 error_exit(1, false, "module '%s' not found in '%s'",
414 case 'r': /* replace module(s) */
416 if (stat(argv
[4], &finfo
) < 0)
417 error_exit(1, true, "could not stat '%s'", argv
[4]);
418 case 'd': /* delete module(s) */
420 error_exit(2, false, "required parameter missing");
422 libfp
= fopen(argv
[2], "rb");
424 error_exit(1, true, "could not open '%s'", argv
[2]);
426 /* Copy the library into a temporary file */
429 error_exit(1, true, "could not open temporary file");
431 stat(argv
[2], &finfo
);
432 copybytes(libfp
, tmpfp
, finfo
.st_size
);
434 freopen(argv
[2], "wb", libfp
);
436 /* Read library header and write it to a new file */
437 if (fread(&hdr
, 1, sizeof(hdr
), tmpfp
) != sizeof(hdr
) ||
438 hdr
.magic
!= RDLAMAG
)
439 error_exit(1, false, "invalid library format");
440 put_header(&hdr
, libfp
, NULL
);
442 /* Walk through the library looking for requested module */
443 while (!feof(tmpfp
)) {
444 /* Read module header */
445 if (fread(&hdr
, 1, sizeof(hdr
), tmpfp
) != sizeof(hdr
) ||
446 hdr
.magic
!= RDLMMAG
)
447 error_exit(1, false, "invalid module header");
448 /* Read module name */
449 i
= hdr
.hdrsize
- sizeof(hdr
);
450 if (i
> sizeof(buf
) || fread(buf
, 1, i
, tmpfp
) != i
)
451 error_exit(1, false, "invalid module name");
452 /* Check against desired name */
453 if (!strcmp(buf
, argv
[3]) &&
454 (c
== 'd' || !options
.odate
455 || finfo
.st_mtime
<= hdr
.date
)) {
457 fprintf(stderr
, "deleting module %s\n", buf
);
458 fseek(tmpfp
, hdr
.size
, SEEK_CUR
);
461 put_header(&hdr
, libfp
, buf
);
462 copybytes(tmpfp
, libfp
, hdr
.size
);
467 /* Copy new module into library */
468 p
= options
.usefname
? argv
[4] : argv
[3];
469 add_module(libfp
, argv
[4], p
);
472 /* Copy rest of library if any */
473 while (!feof(tmpfp
)) {
474 if ((i
= fgetc(tmpfp
)) == EOF
)
477 if (fputc(i
, libfp
) == EOF
)
478 error_exit(1, false, "write error");
486 error_exit(2, false, "invalid command '%c'\n", c
);