OSDN Git Service

Merge branch 'master' of github.com:jca02266/lha
[lha/lha.git] / src / lhext.c
1 /* ------------------------------------------------------------------------ */
2 /* LHa for UNIX                                                             */
3 /*              lhext.c -- LHarc extract                                    */
4 /*                                                                          */
5 /*      Copyright (C) MCMLXXXIX Yooichi.Tagawa                              */
6 /*      Modified                Nobutaka Watazaki                           */
7 /*                                                                          */
8 /*  Ver. 0.00  Original                             1988.05.23  Y.Tagawa    */
9 /*  Ver. 1.00  Fixed                                1989.09.22  Y.Tagawa    */
10 /*  Ver. 0.03  LHa for UNIX                         1991.12.17  M.Oki       */
11 /*  Ver. 1.12  LHa for UNIX                         1993.10.01  N.Watazaki  */
12 /*  Ver. 1.13b Symbolic Link Update Bug Fix         1994.06.21  N.Watazaki  */
13 /*  Ver. 1.14  Source All chagned                   1995.01.14  N.Watazaki  */
14 /*  Ver. 1.14e bugfix                               1999.04.30  T.Okamoto   */
15 /* ------------------------------------------------------------------------ */
16 #include "lha.h"
17 /* ------------------------------------------------------------------------ */
18 static int      skip_flg = FALSE;   /* FALSE..No Skip , TRUE..Skip */
19 static char    *methods[] =
20 {
21     LZHUFF0_METHOD, LZHUFF1_METHOD, LZHUFF2_METHOD, LZHUFF3_METHOD,
22     LZHUFF4_METHOD, LZHUFF5_METHOD, LZHUFF6_METHOD, LZHUFF7_METHOD,
23     LARC_METHOD, LARC5_METHOD, LARC4_METHOD,
24     LZHDIRS_METHOD,
25     PMARC0_METHOD, PMARC2_METHOD,
26     NULL
27 };
28
29 static void add_dirinfo(char* name, LzHeader* hdr);
30 static void adjust_dirinfo();
31
32 #ifdef HAVE_LIBAPPLEFILE
33 static boolean decode_macbinary(FILE *ofp, off_t size, const char *outPath);
34 #endif
35
36 /* ------------------------------------------------------------------------ */
37 static          boolean
38 inquire_extract(name)
39     char           *name;
40 {
41     struct stat     stbuf;
42
43     skip_flg = FALSE;
44     if (stat(name, &stbuf) >= 0) {
45         if (!is_regularfile(&stbuf)) {
46             error("\"%s\" already exists (not a file)", name);
47             return FALSE;
48         }
49
50         if (noexec) {
51             printf("EXTRACT %s but file is exist.\n", name);
52             return FALSE;
53         }
54         else if (!force) {
55             if (!isatty(0)) {
56                 warning("skip to extract %s.", name);
57                 return FALSE;
58             }
59
60             switch (inquire("OverWrite ?(Yes/[No]/All/Skip)", name, "YyNnAaSs\n")) {
61             case 0:
62             case 1:/* Y/y */
63                 break;
64             case 2:
65             case 3:/* N/n */
66             case 8:/* Return */
67                 return FALSE;
68             case 4:
69             case 5:/* A/a */
70                 force = TRUE;
71                 break;
72             case 6:
73             case 7:/* S/s */
74                 skip_flg = TRUE;
75                 break;
76             }
77         }
78     }
79
80     if (noexec)
81         printf("EXTRACT %s\n", name);
82
83     return TRUE;
84 }
85
86 static boolean
87 make_name_with_pathcheck(char *name, size_t namesz, const char *q)
88 {
89     int offset = 0;
90     const char *p;
91     int sz;
92     struct stat stbuf;
93
94     if (extract_directory) {
95         sz = xsnprintf(name, namesz, "%s/", extract_directory);
96         if (sz == -1) {
97             return FALSE;
98         }
99         offset += sz;
100     }
101
102 #ifdef S_IFLNK
103     while ((p = strchr(q, '/')) != NULL) {
104         if (namesz - offset < (p - q) + 2) {
105             return FALSE;
106         }
107         memcpy(name + offset, q, (p - q));
108         name[offset + (p - q)] = 0;
109
110         offset += (p - q);
111         q = p + 1;
112
113         if (lstat(name, &stbuf) < 0) {
114             name[offset++] = '/';
115             break;
116         }
117         if (is_symlink(&stbuf)) {
118             return FALSE;
119         }
120         name[offset++] = '/';
121     }
122 #endif
123
124     str_safe_copy(name + offset, q, namesz - offset);
125
126     return TRUE;
127 }
128
129 /* ------------------------------------------------------------------------ */
130 static          boolean
131 make_parent_path(name)
132     char           *name;
133 {
134     char            path[FILENAME_LENGTH];
135     struct stat     stbuf;
136     register char  *p;
137
138     /* make parent directory name into PATH for recursive call */
139     str_safe_copy(path, name, sizeof(path));
140     for (p = path + strlen(path); p > path; p--)
141         if (p[-1] == '/') {
142             *--p = '\0';
143             break;
144         }
145
146     if (p == path) {
147         message("invalid path name \"%s\"", name);
148         return FALSE;   /* no more parent. */
149     }
150
151     if (GETSTAT(path, &stbuf) >= 0) {
152         if (is_directory(&stbuf))
153             return TRUE;
154     }
155
156     if (verbose)
157         message("Making directory \"%s\".", path);
158
159 #if defined __MINGW32__
160     if (mkdir(path) >= 0)
161         return TRUE;
162 #else
163     if (mkdir(path, 0777) >= 0) /* try */
164         return TRUE;    /* successful done. */
165 #endif
166
167     if (!make_parent_path(path))
168         return FALSE;
169
170 #if defined __MINGW32__
171     if (mkdir(path) < 0) {      /* try again */
172         error("Cannot make directory \"%s\"", path);
173         return FALSE;
174     }
175 #else
176     if (mkdir(path, 0777) < 0) {    /* try again */
177         error("Cannot make directory \"%s\"", path);
178         return FALSE;
179     }
180 #endif
181
182     return TRUE;
183 }
184
185 /* ------------------------------------------------------------------------ */
186 static FILE    *
187 open_with_make_path(name)
188     char           *name;
189 {
190     FILE           *fp;
191
192     if ((fp = fopen(name, WRITE_BINARY)) == NULL) {
193         if (!make_parent_path(name) ||
194             (fp = fopen(name, WRITE_BINARY)) == NULL)
195             error("Cannot extract a file \"%s\"", name);
196     }
197     return fp;
198 }
199
200 /* ------------------------------------------------------------------------ */
201 static int
202 symlink_with_make_path(realname, name)
203     const char     *realname;
204     const char     *name;
205 {
206     int l_code;
207
208     l_code = symlink(realname, name);
209     if (l_code < 0) {
210         make_parent_path(name);
211         l_code = symlink(realname, name);
212     }
213
214     return l_code;
215 }
216
217 /* ------------------------------------------------------------------------ */
218 static void
219 adjust_info(name, hdr)
220     char           *name;
221     LzHeader       *hdr;
222 {
223     struct utimbuf utimebuf;
224
225     /* adjust file stamp */
226     utimebuf.actime = utimebuf.modtime = hdr->unix_last_modified_stamp;
227
228     if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) != UNIX_FILE_SYMLINK)
229         utime(name, &utimebuf);
230
231     if (hdr->extend_type == EXTEND_UNIX
232         || hdr->extend_type == EXTEND_OS68K
233         || hdr->extend_type == EXTEND_XOSK) {
234
235         if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) != UNIX_FILE_SYMLINK) {
236             chmod(name, hdr->unix_mode);
237         }
238
239         if (!getuid()){
240             uid_t uid = hdr->unix_uid;
241             gid_t gid = hdr->unix_gid;
242
243 #if HAVE_GETPWNAM && HAVE_GETGRNAM
244             if (hdr->user[0]) {
245                 struct passwd *ent = getpwnam(hdr->user);
246                 if (ent) uid = ent->pw_uid;
247             }
248             if (hdr->group[0]) {
249                 struct group *ent = getgrnam(hdr->group);
250                 if (ent) gid = ent->gr_gid;
251             }
252 #endif
253
254 #if HAVE_LCHOWN
255             if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK)
256                 lchown(name, uid, gid);
257             else
258 #endif /* HAVE_LCHWON */
259                 chown(name, uid, gid);
260         }
261     }
262 #if __CYGWIN__
263     else {
264         /* On Cygwin, execute permission should be set for .exe or .dll. */
265         mode_t m;
266
267         umask(m = umask(0));    /* get current umask */
268         chmod(name, 0777 & ~m);
269     }
270 #endif
271 }
272
273 /* ------------------------------------------------------------------------ */
274 static off_t
275 extract_one(afp, hdr)
276     FILE           *afp;    /* archive file */
277     LzHeader       *hdr;
278 {
279     FILE           *fp; /* output file */
280 #if HAVE_LIBAPPLEFILE
281     FILE           *tfp; /* temporary output file */
282 #endif
283     struct stat     stbuf;
284     char            name[FILENAME_LENGTH];
285     unsigned int crc;
286     int             method;
287     boolean         save_quiet, save_verbose, up_flag;
288     char           *q = hdr->name, c;
289     off_t read_size = 0;
290
291     if (ignore_directory && strrchr(hdr->name, '/')) {
292         q = (char *) strrchr(hdr->name, '/') + 1;
293     }
294     else {
295         if (is_directory_traversal(q)) {
296             error("Possible directory traversal hack attempt in %s", q);
297             exit(1);
298         }
299
300         if (*q == '/') {
301             while (*q == '/') { q++; }
302
303             /*
304              * if OSK then strip device name
305              */
306             if (hdr->extend_type == EXTEND_OS68K
307                 || hdr->extend_type == EXTEND_XOSK) {
308                 do
309                     c = (*q++);
310                 while (c && c != '/');
311                 if (!c || !*q)
312                     q = ".";    /* if device name only */
313             }
314         }
315     }
316
317     if (!make_name_with_pathcheck(name, sizeof(name), q)) {
318         error("Possible symlink traversal hack attempt in %s", q);
319         exit(1);
320     }
321
322     /* LZHDIRS_METHODを持つヘッダをチェックする */
323     /* 1999.4.30 t.okamoto */
324     for (method = 0;; method++) {
325         if (methods[method] == NULL) {
326             error("Unknown method \"%.*s\"; \"%s\" will be skipped ...",
327                   5, hdr->method, name);
328             return read_size;
329         }
330         if (memcmp(hdr->method, methods[method], 5) == 0)
331             break;
332     }
333
334     if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_REGULAR
335         && method != LZHDIRS_METHOD_NUM) {
336     extract_regular:
337 #if 0
338         for (method = 0;; method++) {
339             if (methods[method] == NULL) {
340                 error("Unknown method \"%.*s\"; \"%s\" will be skipped ...",
341                       5, hdr->method, name);
342                 return read_size;
343             }
344             if (memcmp(hdr->method, methods[method], 5) == 0)
345                 break;
346         }
347 #endif
348
349         reading_filename = archive_name;
350         writing_filename = name;
351         if (output_to_stdout || verify_mode) {
352             /* "Icon\r" should be a resource fork file encoded in MacBinary
353                format, so that it should be skipped. */
354             if (hdr->extend_type == EXTEND_MACOS
355                 && strcmp(basename(name), "Icon\r") == 0
356                 && decode_macbinary_contents) {
357                 return read_size;
358             }
359
360             if (noexec) {
361                 printf("%s %s\n", verify_mode ? "VERIFY" : "EXTRACT", name);
362                 return read_size;
363             }
364
365             save_quiet = quiet;
366             save_verbose = verbose;
367             if (!quiet && output_to_stdout) {
368                 printf("::::::::\n%s\n::::::::\n", name);
369                 quiet = TRUE;
370                 verbose = FALSE;
371             }
372             else if (verify_mode) {
373                 quiet = FALSE;
374                 verbose = TRUE;
375             }
376
377 #if defined(__MINGW32__) || defined(__DJGPP__)
378             {
379                 int old_mode;
380                 fflush(stdout);
381                 old_mode = setmode(fileno(stdout), O_BINARY);
382 #endif
383
384 #if HAVE_LIBAPPLEFILE
385             /* On default, MacLHA encodes into MacBinary. */
386             if (hdr->extend_type == EXTEND_MACOS && !verify_mode && decode_macbinary_contents) {
387                 /* build temporary file */
388                 tfp = NULL; /* avoid compiler warnings `uninitialized' */
389                 tfp = build_temporary_file();
390
391                 crc = decode_lzhuf(afp, tfp,
392                                    hdr->original_size, hdr->packed_size,
393                                    name, method, &read_size);
394                 fclose(tfp);
395                 decode_macbinary(stdout, hdr->original_size, name);
396                 unlink(temporary_name);
397             } else {
398                 crc = decode_lzhuf(afp, stdout,
399                                    hdr->original_size, hdr->packed_size,
400                                    name, method, &read_size);
401             }
402 #else
403             crc = decode_lzhuf(afp, stdout,
404                                hdr->original_size, hdr->packed_size,
405                                name, method, &read_size);
406 #endif /* HAVE_LIBAPPLEFILE */
407 #if defined(__MINGW32__) || defined(__DJGPP__)
408                 fflush(stdout);
409                 setmode(fileno(stdout), old_mode);
410             }
411 #endif
412             quiet = save_quiet;
413             verbose = save_verbose;
414         }
415         else {
416 #ifndef __APPLE__
417             /* "Icon\r" should be a resource fork of parent folder's icon,
418                so that it can be skipped when system is not Mac OS X. */
419             if (hdr->extend_type == EXTEND_MACOS
420                 && strcmp(basename(name), "Icon\r") == 0
421                 && decode_macbinary_contents) {
422                 make_parent_path(name); /* create directory only */
423                 return read_size;
424             }
425 #endif /* __APPLE__ */
426             if (skip_flg == FALSE)  {
427                 up_flag = inquire_extract(name);
428                 if (up_flag == FALSE && force == FALSE) {
429                     return read_size;
430                 }
431             }
432
433             if (skip_flg == TRUE) { /* if skip_flg */
434                 if (stat(name, &stbuf) == 0 && force != TRUE) {
435                     if (stbuf.st_mtime >= hdr->unix_last_modified_stamp) {
436                         if (quiet != TRUE)
437                             printf("%s : Skipped...\n", name);
438                         return read_size;
439                     }
440                 }
441             }
442             if (noexec) {
443                 return read_size;
444             }
445
446             signal(SIGINT, interrupt);
447 #ifdef SIGHUP
448             signal(SIGHUP, interrupt);
449 #endif
450
451             unlink(name);
452             remove_extracting_file_when_interrupt = TRUE;
453
454             if ((fp = open_with_make_path(name)) != NULL) {
455 #if HAVE_LIBAPPLEFILE
456                 if (hdr->extend_type == EXTEND_MACOS && !verify_mode && decode_macbinary_contents) {
457                     /* build temporary file */
458                     tfp = NULL; /* avoid compiler warnings `uninitialized' */
459                     tfp = build_temporary_file();
460
461                     crc = decode_lzhuf(afp, tfp,
462                                        hdr->original_size, hdr->packed_size,
463                                        name, method, &read_size);
464                     fclose(tfp);
465                     decode_macbinary(fp, hdr->original_size, name);
466 #ifdef __APPLE__
467                     /* TODO: set resource fork */
468                     /* after processing, "Icon\r" is not needed. */
469                     if (strcmp(basename(name), "Icon\r") == 0) {
470                         unlink(name);
471                     }
472 #endif /* __APPLE__ */
473                     unlink(temporary_name);
474                 } else {
475                     crc = decode_lzhuf(afp, fp,
476                                        hdr->original_size, hdr->packed_size,
477                                        name, method, &read_size);
478                 }
479 #else /* HAVE_LIBAPPLEFILE */
480                 crc = decode_lzhuf(afp, fp,
481                                    hdr->original_size, hdr->packed_size,
482                                    name, method, &read_size);
483 #endif /* HAVE_LIBAPPLEFILE */
484                 fclose(fp);
485             }
486             remove_extracting_file_when_interrupt = FALSE;
487             signal(SIGINT, SIG_DFL);
488 #ifdef SIGHUP
489             signal(SIGHUP, SIG_DFL);
490 #endif
491             if (!fp)
492                 return read_size;
493         }
494
495         if (hdr->has_crc && crc != hdr->crc)
496             error("CRC error: \"%s\"", name);
497     }
498     else if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_DIRECTORY
499              || (hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK
500              || method == LZHDIRS_METHOD_NUM) {
501         /* ↑これで、Symbolic Link は、大丈夫か? */
502         if (!ignore_directory && !verify_mode && !output_to_stdout) {
503             if (noexec) {
504                 if (quiet != TRUE)
505                     printf("EXTRACT %s (directory)\n", name);
506                 return read_size;
507             }
508             /* NAME has trailing SLASH '/', (^_^) */
509             if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK) {
510                 int             l_code;
511
512 #ifdef S_IFLNK
513                 if (skip_flg == FALSE)  {
514                     up_flag = inquire_extract(name);
515                     if (up_flag == FALSE && force == FALSE) {
516                         return read_size;
517                     }
518                 } else {
519                     if (GETSTAT(name, &stbuf) == 0 && force != TRUE) {
520                         if (stbuf.st_mtime >= hdr->unix_last_modified_stamp) {
521                             if (quiet != TRUE)
522                                 printf("%s : Skipped...\n", name);
523                             return read_size;
524                         }
525                     }
526                 }
527
528                 unlink(name);
529                 l_code = symlink_with_make_path(hdr->realname, name);
530                 if (l_code < 0) {
531                     if (quiet != TRUE)
532                         warning("Can't make Symbolic Link \"%s\" -> \"%s\"",
533                                 name, hdr->realname);
534                 }
535                 if (quiet != TRUE) {
536                     message("Symbolic Link %s -> %s",
537                             name, hdr->realname);
538                 }
539 #else
540                 warning("Can't make Symbolic Link %s -> %s",
541                         name, hdr->realname);
542                 return read_size;
543 #endif
544             }
545             else { /* make directory */
546                 if (!make_parent_path(name))
547                     return read_size;
548                 /* save directory information */
549                 add_dirinfo(name, hdr);
550             }
551         }
552     }
553     else {
554         if (force)              /* force extract */
555             goto extract_regular;
556         else
557             error("Unknown file type: \"%s\". use `f' option to force extract.", name);
558     }
559
560     if (!output_to_stdout && !verify_mode) {
561         if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) != UNIX_FILE_DIRECTORY)
562             adjust_info(name, hdr);
563     }
564
565     return read_size;
566 }
567
568 static int
569 skip_to_nextpos(FILE *fp, off_t pos, off_t off, off_t read_size)
570 {
571     if (pos != -1) {
572         if (fseeko(fp, pos + off, SEEK_SET) != 0) {
573             return -1;
574         }
575     }
576     else {
577         off_t i = off - read_size;
578         while (i--) {
579             if (fgetc(fp) == EOF) {
580                 return -1;
581             }
582         }
583     }
584     return 0;
585 }
586
587 /* ------------------------------------------------------------------------ */
588 /* EXTRACT COMMAND MAIN                                                     */
589 /* ------------------------------------------------------------------------ */
590 void
591 cmd_extract()
592 {
593     LzHeader        hdr;
594     off_t           pos;
595     FILE           *afp;
596     off_t read_size;
597
598     /* open archive file */
599     if ((afp = open_old_archive()) == NULL)
600         fatal_error("Cannot open archive file \"%s\"", archive_name);
601
602     if (archive_is_msdos_sfx1(archive_name))
603         seek_lha_header(afp);
604
605     /* extract each files */
606     while (get_header(afp, &hdr)) {
607         pos = ftello(afp);
608         if (need_file(hdr.name)) {
609             read_size = extract_one(afp, &hdr);
610             if (read_size != hdr.packed_size) {
611                 /* when error occurred in extract_one(), should adjust
612                    point of file stream */
613                 if (skip_to_nextpos(afp, pos, hdr.packed_size, read_size) == -1) {
614                     fatal_error("Cannot seek to next header position from \"%s\"", hdr.name);
615                 }
616             }
617         } else {
618             if (skip_to_nextpos(afp, pos, hdr.packed_size, 0) == -1) {
619                 fatal_error("Cannot seek to next header position from \"%s\"", hdr.name);
620             }
621         }
622     }
623
624     /* close archive file */
625     fclose(afp);
626
627     /* adjust directory information */
628     adjust_dirinfo();
629
630     return;
631 }
632
633 int
634 is_directory_traversal(char *path)
635 {
636     int state = 0;
637
638     for (; *path; path++) {
639         switch (state) {
640         case 0:
641             if (*path == '.') state = 1;
642             else state = 3;
643             break;
644         case 1:
645             if (*path == '.') state = 2;
646             else if (*path == '/') state = 0;
647             else state = 3;
648             break;
649         case 2:
650             if (*path == '/') return 1;
651             else state = 3;
652             break;
653         case 3:
654             if (*path == '/') state = 0;
655             break;
656         }
657     }
658
659     return state == 2;
660 }
661
662 /*
663  * restore directory information (timestamp, permission and uid/gid).
664  * added by A.Iriyama  2003.12.12
665  */
666
667 typedef struct LzHeaderList_t {
668     struct LzHeaderList_t *next;
669     LzHeader hdr;
670 } LzHeaderList;
671
672 static LzHeaderList *dirinfo;
673
674 static void add_dirinfo(char *name, LzHeader *hdr)
675 {
676     LzHeaderList *p, *tmp, top;
677
678     if (memcmp(hdr->method, LZHDIRS_METHOD, 5) != 0)
679         return;
680
681     p = xmalloc(sizeof(LzHeaderList));
682
683     memcpy(&p->hdr, hdr, sizeof(LzHeader));
684     strncpy(p->hdr.name, name, sizeof(p->hdr.name));
685     p->hdr.name[sizeof(p->hdr.name)-1] = 0;
686
687 #if 0
688     /* push front */
689     {
690         tmp = dirinfo;
691         dirinfo = p;
692         dirinfo->next = tmp;
693     }
694 #else
695
696     /*
697       reverse sorted by pathname order
698
699          p->hdr.name = "a"
700
701          dirinfo->hdr.name             = "a/b/d"
702          dirinfo->next->hdr.name       = "a/b/c"
703          dirinfo->next->next->hdr.name = "a/b"
704
705        result:
706
707          dirinfo->hdr.name                   = "a/b/d"
708          dirinfo->next->hdr.name             = "a/b/c"
709          dirinfo->next->next->hdr.name       = "a/b"
710          dirinfo->next->next->next->hdr.name = "a"
711     */
712
713     top.next = dirinfo;
714
715     for (tmp = &top; tmp->next; tmp = tmp->next) {
716         if (strcmp(p->hdr.name, tmp->next->hdr.name) > 0) {
717             p->next = tmp->next;
718             tmp->next = p;
719             break;
720         }
721     }
722     if (tmp->next == NULL) {
723         p->next = NULL;
724         tmp->next = p;
725     }
726
727     dirinfo = top.next;
728 #endif
729 }
730
731 static void adjust_dirinfo()
732 {
733     while (dirinfo) {
734         /* message("adjusting [%s]", dirinfo->hdr.name); */
735         adjust_info(dirinfo->hdr.name, &dirinfo->hdr);
736
737         {
738             LzHeaderList *tmp = dirinfo;
739             dirinfo = dirinfo->next;
740             free(tmp);
741         }
742     }
743 }
744
745 #if HAVE_LIBAPPLEFILE
746 static boolean
747 decode_macbinary(ofp, size, outPath)
748     FILE *ofp;
749     off_t size;
750     const char *outPath;
751 {
752     af_file_t *afp = NULL;
753     FILE *ifp = NULL;
754     unsigned char *datap;
755     size_t dlen;
756
757     if ((afp = af_open(temporary_name)) != NULL) {
758         /* fetch datafork */
759         datap = af_data(afp, &dlen);
760         fwrite(datap, sizeof(unsigned char), dlen, ofp);
761         af_close(afp);
762         return TRUE;
763     } else { /* it may be not encoded in MacBinary */
764         /* try to copy */
765         if ((ifp = fopen(temporary_name, READ_BINARY)) == NULL) {
766             error("Cannot open a temporary file \"%s\"", temporary_name);
767             return FALSE;
768         }
769         copyfile(ifp, ofp, size, 0, 0);
770         fclose(ifp);
771         return TRUE;
772     }
773
774     return FALSE;
775 }
776 #endif /* HAVE_LIBAPPLEFILE */