OSDN Git Service

Merge pull request #11 from yoheie/fix_path_compare
[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) {
434                 if (stat(name, &stbuf) == 0 && force != TRUE) {
435                     if (quiet != TRUE)
436                         printf("%s : Skipped...\n", name);
437                     return read_size;
438                 }
439             }
440             if (noexec) {
441                 return read_size;
442             }
443
444             signal(SIGINT, interrupt);
445 #ifdef SIGHUP
446             signal(SIGHUP, interrupt);
447 #endif
448
449             unlink(name);
450             remove_extracting_file_when_interrupt = TRUE;
451
452             if ((fp = open_with_make_path(name)) != NULL) {
453 #if HAVE_LIBAPPLEFILE
454                 if (hdr->extend_type == EXTEND_MACOS && !verify_mode && decode_macbinary_contents) {
455                     /* build temporary file */
456                     tfp = NULL; /* avoid compiler warnings `uninitialized' */
457                     tfp = build_temporary_file();
458
459                     crc = decode_lzhuf(afp, tfp,
460                                        hdr->original_size, hdr->packed_size,
461                                        name, method, &read_size);
462                     fclose(tfp);
463                     decode_macbinary(fp, hdr->original_size, name);
464 #ifdef __APPLE__
465                     /* TODO: set resource fork */
466                     /* after processing, "Icon\r" is not needed. */
467                     if (strcmp(basename(name), "Icon\r") == 0) {
468                         unlink(name);
469                     }
470 #endif /* __APPLE__ */
471                     unlink(temporary_name);
472                 } else {
473                     crc = decode_lzhuf(afp, fp,
474                                        hdr->original_size, hdr->packed_size,
475                                        name, method, &read_size);
476                 }
477 #else /* HAVE_LIBAPPLEFILE */
478                 crc = decode_lzhuf(afp, fp,
479                                    hdr->original_size, hdr->packed_size,
480                                    name, method, &read_size);
481 #endif /* HAVE_LIBAPPLEFILE */
482                 fclose(fp);
483             }
484             remove_extracting_file_when_interrupt = FALSE;
485             signal(SIGINT, SIG_DFL);
486 #ifdef SIGHUP
487             signal(SIGHUP, SIG_DFL);
488 #endif
489             if (!fp)
490                 return read_size;
491         }
492
493         if (hdr->has_crc && crc != hdr->crc)
494             error("CRC error: \"%s\"", name);
495     }
496     else if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_DIRECTORY
497              || (hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK
498              || method == LZHDIRS_METHOD_NUM) {
499         /* ↑これで、Symbolic Link は、大丈夫か? */
500         if (!ignore_directory && !verify_mode && !output_to_stdout) {
501             if (noexec) {
502                 if (quiet != TRUE)
503                     printf("EXTRACT %s (directory)\n", name);
504                 return read_size;
505             }
506             /* NAME has trailing SLASH '/', (^_^) */
507             if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) == UNIX_FILE_SYMLINK) {
508                 int             l_code;
509
510 #ifdef S_IFLNK
511                 if (skip_flg == FALSE)  {
512                     up_flag = inquire_extract(name);
513                     if (up_flag == FALSE && force == FALSE) {
514                         return read_size;
515                     }
516                 }
517
518                 if (skip_flg == TRUE) {
519                     if (GETSTAT(name, &stbuf) == 0 && force != TRUE) {
520                         if (quiet != TRUE)
521                             printf("%s : Skipped...\n", name);
522                         return read_size;
523                     }
524                 }
525
526                 unlink(name);
527                 l_code = symlink_with_make_path(hdr->realname, name);
528                 if (l_code < 0) {
529                     if (quiet != TRUE)
530                         warning("Can't make Symbolic Link \"%s\" -> \"%s\"",
531                                 name, hdr->realname);
532                 }
533                 if (quiet != TRUE) {
534                     message("Symbolic Link %s -> %s",
535                             name, hdr->realname);
536                 }
537 #else
538                 warning("Can't make Symbolic Link %s -> %s",
539                         name, hdr->realname);
540                 return read_size;
541 #endif
542             }
543             else { /* make directory */
544                 if (!make_parent_path(name))
545                     return read_size;
546                 /* save directory information */
547                 add_dirinfo(name, hdr);
548             }
549         }
550     }
551     else {
552         if (force)              /* force extract */
553             goto extract_regular;
554         else
555             error("Unknown file type: \"%s\". use `f' option to force extract.", name);
556     }
557
558     if (!output_to_stdout && !verify_mode) {
559         if ((hdr->unix_mode & UNIX_FILE_TYPEMASK) != UNIX_FILE_DIRECTORY)
560             adjust_info(name, hdr);
561     }
562
563     return read_size;
564 }
565
566 static int
567 skip_to_nextpos(FILE *fp, off_t pos, off_t off, off_t read_size)
568 {
569     if (pos != -1) {
570         if (fseeko(fp, pos + off, SEEK_SET) != 0) {
571             return -1;
572         }
573     }
574     else {
575         off_t i = off - read_size;
576         while (i--) {
577             if (fgetc(fp) == EOF) {
578                 return -1;
579             }
580         }
581     }
582     return 0;
583 }
584
585 /* ------------------------------------------------------------------------ */
586 /* EXTRACT COMMAND MAIN                                                     */
587 /* ------------------------------------------------------------------------ */
588 void
589 cmd_extract()
590 {
591     LzHeader        hdr;
592     off_t           pos;
593     FILE           *afp;
594     off_t read_size;
595
596     /* open archive file */
597     if ((afp = open_old_archive()) == NULL)
598         fatal_error("Cannot open archive file \"%s\"", archive_name);
599
600     if (archive_is_msdos_sfx1(archive_name))
601         seek_lha_header(afp);
602
603     /* extract each files */
604     while (get_header(afp, &hdr)) {
605         pos = ftello(afp);
606         if (need_file(hdr.name)) {
607             read_size = extract_one(afp, &hdr);
608             if (read_size != hdr.packed_size) {
609                 /* when error occurred in extract_one(), should adjust
610                    point of file stream */
611                 if (skip_to_nextpos(afp, pos, hdr.packed_size, read_size) == -1) {
612                     fatal_error("Cannot seek to next header position from \"%s\"", hdr.name);
613                 }
614             }
615         } else {
616             if (skip_to_nextpos(afp, pos, hdr.packed_size, 0) == -1) {
617                 fatal_error("Cannot seek to next header position from \"%s\"", hdr.name);
618             }
619         }
620     }
621
622     /* close archive file */
623     fclose(afp);
624
625     /* adjust directory information */
626     adjust_dirinfo();
627
628     return;
629 }
630
631 int
632 is_directory_traversal(char *path)
633 {
634     int state = 0;
635
636     for (; *path; path++) {
637         switch (state) {
638         case 0:
639             if (*path == '.') state = 1;
640             else state = 3;
641             break;
642         case 1:
643             if (*path == '.') state = 2;
644             else if (*path == '/') state = 0;
645             else state = 3;
646             break;
647         case 2:
648             if (*path == '/') return 1;
649             else state = 3;
650             break;
651         case 3:
652             if (*path == '/') state = 0;
653             break;
654         }
655     }
656
657     return state == 2;
658 }
659
660 /*
661  * restore directory information (timestamp, permission and uid/gid).
662  * added by A.Iriyama  2003.12.12
663  */
664
665 typedef struct LzHeaderList_t {
666     struct LzHeaderList_t *next;
667     LzHeader hdr;
668 } LzHeaderList;
669
670 static LzHeaderList *dirinfo;
671
672 static void add_dirinfo(char *name, LzHeader *hdr)
673 {
674     LzHeaderList *p, *tmp, top;
675
676     if (memcmp(hdr->method, LZHDIRS_METHOD, 5) != 0)
677         return;
678
679     p = xmalloc(sizeof(LzHeaderList));
680
681     memcpy(&p->hdr, hdr, sizeof(LzHeader));
682     strncpy(p->hdr.name, name, sizeof(p->hdr.name));
683     p->hdr.name[sizeof(p->hdr.name)-1] = 0;
684
685 #if 0
686     /* push front */
687     {
688         tmp = dirinfo;
689         dirinfo = p;
690         dirinfo->next = tmp;
691     }
692 #else
693
694     /*
695       reverse sorted by pathname order
696
697          p->hdr.name = "a"
698
699          dirinfo->hdr.name             = "a/b/d"
700          dirinfo->next->hdr.name       = "a/b/c"
701          dirinfo->next->next->hdr.name = "a/b"
702
703        result:
704
705          dirinfo->hdr.name                   = "a/b/d"
706          dirinfo->next->hdr.name             = "a/b/c"
707          dirinfo->next->next->hdr.name       = "a/b"
708          dirinfo->next->next->next->hdr.name = "a"
709     */
710
711     top.next = dirinfo;
712
713     for (tmp = &top; tmp->next; tmp = tmp->next) {
714         if (strcmp(p->hdr.name, tmp->next->hdr.name) > 0) {
715             p->next = tmp->next;
716             tmp->next = p;
717             break;
718         }
719     }
720     if (tmp->next == NULL) {
721         p->next = NULL;
722         tmp->next = p;
723     }
724
725     dirinfo = top.next;
726 #endif
727 }
728
729 static void adjust_dirinfo()
730 {
731     while (dirinfo) {
732         /* message("adjusting [%s]", dirinfo->hdr.name); */
733         adjust_info(dirinfo->hdr.name, &dirinfo->hdr);
734
735         {
736             LzHeaderList *tmp = dirinfo;
737             dirinfo = dirinfo->next;
738             free(tmp);
739         }
740     }
741 }
742
743 #if HAVE_LIBAPPLEFILE
744 static boolean
745 decode_macbinary(ofp, size, outPath)
746     FILE *ofp;
747     off_t size;
748     const char *outPath;
749 {
750     af_file_t *afp = NULL;
751     FILE *ifp = NULL;
752     unsigned char *datap;
753     size_t dlen;
754
755     if ((afp = af_open(temporary_name)) != NULL) {
756         /* fetch datafork */
757         datap = af_data(afp, &dlen);
758         fwrite(datap, sizeof(unsigned char), dlen, ofp);
759         af_close(afp);
760         return TRUE;
761     } else { /* it may be not encoded in MacBinary */
762         /* try to copy */
763         if ((ifp = fopen(temporary_name, READ_BINARY)) == NULL) {
764             error("Cannot open a temporary file \"%s\"", temporary_name);
765             return FALSE;
766         }
767         copyfile(ifp, ofp, size, 0, 0);
768         fclose(ifp);
769         return TRUE;
770     }
771
772     return FALSE;
773 }
774 #endif /* HAVE_LIBAPPLEFILE */