]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/catsearch.c
osx adouble format . files are invalid if usedots is not set
[netatalk.git] / etc / afpd / catsearch.c
1 /* 
2  * Netatalk 2002 (c)
3  * Copyright (C) 1990, 1993 Regents of The University of Michigan
4  * All Rights Reserved. See COPYRIGHT
5  */
6
7
8 /*
9  * This file contains FPCatSearch implementation. FPCatSearch performs
10  * file/directory search based on specified criteria. It is used by client
11  * to perform fast searches on (propably) big volumes. So, it has to be
12  * pretty fast.
13  *
14  * This implementation bypasses most of adouble/libatalk stuff as long as
15  * possible and does a standard filesystem search. It calls higher-level
16  * libatalk/afpd functions only when it is really needed, mainly while
17  * returning some non-UNIX information or filtering by non-UNIX criteria.
18  *
19  * Initial version written by Rafal Lewczuk <rlewczuk@pronet.pl>
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif /* HAVE_CONFIG_H */
26
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <dirent.h>
30 #include <errno.h>
31 #include <ctype.h>
32 #include <string.h>
33 #include <time.h>
34
35 #if STDC_HEADERS
36 #include <string.h>
37 #else
38 #ifndef HAVE_MEMCPY
39 #define memcpy(d,s,n) bcopy ((s), (d), (n))
40 #define memmove(d,s,n) bcopy ((s), (d), (n))
41 #endif /* ! HAVE_MEMCPY */
42 #endif
43
44 #include <sys/file.h>
45 #include <netinet/in.h>
46
47 #include <atalk/afp.h>
48 #include <atalk/adouble.h>
49 #include <atalk/logger.h>
50 #ifdef CNID_DB
51 #include <atalk/cnid.h>
52 #endif /* CNID_DB */
53 #include "desktop.h"
54 #include "directory.h"
55 #include "file.h"
56 #include "volume.h"
57 #include "globals.h"
58 #include "filedir.h"
59 #include "fork.h"
60
61
62 struct finderinfo {
63         u_int32_t f_type;
64         u_int32_t creator;
65         u_int16_t attrs;    /* File attributes (high 8 bits)*/
66         u_int16_t label;    /* Label (low 8 bits )*/
67         char reserved[22]; /* Unknown (at least for now...) */
68 };
69
70 typedef char packed_finder[ADEDLEN_FINDERI];
71
72 /* Known attributes:
73  * 0x04 - has a custom icon
74  * 0x20 - name/icon is locked
75  * 0x40 - is invisible
76  * 0x80 - is alias
77  *
78  * Known labels:
79  * 0x02 - project 2
80  * 0x04 - project 1
81  * 0x06 - personal
82  * 0x08 - cool
83  * 0x0a - in progress
84  * 0x0c - hot
85  * 0x0e - essential
86  */
87
88 /* This is our search-criteria structure. */
89 struct scrit {
90         u_int32_t rbitmap;          /* Request bitmap - which values should we check ? */
91         u_int16_t fbitmap, dbitmap; /* file & directory bitmap - which values should we return ? */
92         u_int16_t attr;             /* File attributes */
93         time_t cdate;               /* Creation date */
94         time_t mdate;               /* Last modification date */
95         time_t bdate;               /* Last backup date */
96         u_int32_t pdid;             /* Parent DID */
97     u_int16_t offcnt;           /* Offspring count */
98         struct finderinfo finfo;    /* Finder info */
99         char lname[64];             /* Long name */ 
100         char utf8name[514];         /* UTF8 or UCS2 name */ /* for convert_charset dest_len parameter +2 */
101 };
102
103 /*
104  * Directory tree search is recursive by its nature. But AFP specification
105  * requires FPCatSearch to pause after returning n results and be able to
106  * resume the search later. So we have to do recursive search using flat
107  * (iterative) algorithm and remember all directories to look into in an
108  * stack-like structure. The structure below is one item of directory stack.
109  *
110  */
111 struct dsitem {
112         struct dir *dir; /* Structure describing this directory */
113         int pidx;        /* Parent's dsitem structure index. */
114         int checked;     /* Have we checked this directory ? */
115         char *path;      /* absolute UNIX path to this directory */
116 };
117  
118
119 #define DS_BSIZE 128
120 static u_int32_t cur_pos = 0;    /* Saved position index (ID) - used to remember "position" across FPCatSearch calls */
121 static DIR *dirpos = NULL; /* UNIX structure describing currently opened directory. */
122 static int save_cidx = -1; /* Saved index of currently scanned directory. */
123
124 static struct dsitem *dstack = NULL; /* Directory stack data... */
125 static int dssize = 0;               /* Directory stack (allocated) size... */
126 static int dsidx = 0;                /* First free item index... */
127
128 static struct scrit c1, c2;          /* search criteria */
129
130 /* Puts new item onto directory stack. */
131 static int addstack(char *uname, struct dir *dir, int pidx)
132 {
133         struct dsitem *ds;
134         int           l;
135
136         /* check if we have some space on stack... */
137         if (dsidx >= dssize) {
138                 dssize += DS_BSIZE;
139                 dstack = realloc(dstack, dssize * sizeof(struct dsitem));       
140                 if (dstack == NULL)
141                         return -1;
142         }
143
144         /* Put new element. Allocate and copy lname and path. */
145         ds = dstack + dsidx++;
146         ds->dir = dir;
147         ds->pidx = pidx;
148         if (pidx >= 0) {
149             l = strlen(dstack[pidx].path);
150             if (!(ds->path = malloc(l + strlen(uname) + 2) ))
151                         return -1;
152                 strcpy(ds->path, dstack[pidx].path);
153                 strcat(ds->path, "/");
154                 strcat(ds->path, uname);
155         }
156
157         ds->checked = 0;
158
159         return 0;
160 }
161
162 /* Removes checked items from top of directory stack. Returns index of the first unchecked elements or -1. */
163 static int reducestack()
164 {
165         int r;
166         if (save_cidx != -1) {
167                 r = save_cidx;
168                 save_cidx = -1;
169                 return r;
170         }
171
172         while (dsidx > 0) {
173                 if (dstack[dsidx-1].checked) {
174                         dsidx--;
175                         free(dstack[dsidx].path);
176                 } else
177                         return dsidx - 1;
178         } 
179         return -1;
180
181
182 /* Clears directory stack. */
183 static void clearstack() 
184 {
185         save_cidx = -1;
186         while (dsidx > 0) {
187                 dsidx--;
188                 free(dstack[dsidx].path);
189         }
190
191
192 /* Looks up for an opened adouble structure, opens resource fork of selected file. 
193  * FIXME What about noadouble?
194 */
195 static struct adouble *adl_lkup(struct vol *vol, struct path *path, struct adouble *adp)
196 {
197         static struct adouble ad;
198         
199         struct ofork *of;
200         int isdir;
201         
202         if (adp)
203             return adp;
204             
205         isdir  = S_ISDIR(path->st.st_mode);
206
207         if (!isdir && (of = of_findname(path))) {
208                 adp = of->of_ad;
209         } else {
210                 ad_init(&ad, vol->v_adouble, vol->v_ad_options);
211                 adp = &ad;
212         } 
213
214     if ( ad_metadata( path->u_name, ((isdir)?ADFLAGS_DIR:0), adp) < 0 ) {
215         adp = NULL; /* FIXME without resource fork adl_lkup will be call again */
216     }
217     
218         return adp;     
219 }
220
221 /* -------------------- */
222 static struct finderinfo *unpack_buffer(struct finderinfo *finfo, char *buffer)
223 {
224         memcpy(&finfo->f_type,  buffer +FINDERINFO_FRTYPEOFF, sizeof(finfo->f_type));
225         memcpy(&finfo->creator, buffer +FINDERINFO_FRCREATOFF, sizeof(finfo->creator));
226         memcpy(&finfo->attrs,   buffer +FINDERINFO_FRFLAGOFF, sizeof(finfo->attrs));
227         memcpy(&finfo->label,   buffer +FINDERINFO_FRFLAGOFF, sizeof(finfo->label));
228         finfo->attrs &= 0xff00; /* high 8 bits */
229         finfo->label &= 0xff;   /* low 8 bits */
230
231         return finfo;
232 }
233
234 /* -------------------- */
235 static struct finderinfo *
236 unpack_finderinfo(struct vol *vol, struct path *path, struct adouble **adp, struct finderinfo *finfo)
237 {
238         packed_finder  buf;
239         void           *ptr;
240         
241     *adp = adl_lkup(vol, path, *adp);
242         ptr = get_finderinfo(vol, path->u_name, *adp, &buf);
243         return unpack_buffer(finfo, ptr);
244 }
245
246 /* -------------------- */
247 #define CATPBIT_PARTIAL 31
248 /* Criteria checker. This function returns a 2-bit value. */
249 /* bit 0 means if checked file meets given criteria. */
250 /* bit 1 means if it is a directory and we should descent into it. */
251 /* uname - UNIX name 
252  * fname - our fname (translated to UNIX)
253  * cidx - index in directory stack
254  */
255 static int crit_check(struct vol *vol, struct path *path) {
256         int result = 0;
257         u_int16_t attr, flags = CONV_PRECOMPOSE;
258         struct finderinfo *finfo = NULL, finderinfo;
259         struct adouble *adp = NULL;
260         time_t c_date, b_date;
261         u_int32_t ac_date, ab_date;
262         static char convbuf[514]; /* for convert_charset dest_len parameter +2 */
263         size_t len;
264
265         if (S_ISDIR(path->st.st_mode)) {
266                 if (!c1.dbitmap)
267                         return 0;
268         }
269         else {
270                 if (!c1.fbitmap)
271                         return 0;
272
273                 /* compute the Mac name 
274                  * first try without id (it's slow to find it)
275                  * An other option would be to call get_id in utompath but 
276                  * we need to pass parent dir
277                 */
278         if (!(path->m_name = utompath(vol, path->u_name, 0 , utf8_encoding()) )) {
279                 /*retry with the right id */
280        
281                 cnid_t id;
282                 
283                 adp = adl_lkup(vol, path, adp);
284                 id = get_id(vol, adp, &path->st, path->d_dir->d_did, path->u_name, strlen(path->u_name));
285                 if (!id) {
286                         /* FIXME */
287                         return 0;
288                 }
289                 if (!(path->m_name = utompath(vol, path->u_name, id , utf8_encoding()))) {
290                         return 0;
291                 }
292         }
293         }
294                 
295         /* Kind of optimization: 
296          * -- first check things we've already have - filename
297          * -- last check things we get from ad_open()
298          * FIXME strmcp strstr (icase)
299          */
300
301         /* Check for filename */
302         if ((c1.rbitmap & (1<<DIRPBIT_LNAME))) { 
303                 if ( (size_t)(-1) == (len = convert_string(vol->v_maccharset, CH_UCS2, path->m_name, strlen(path->m_name), convbuf, 512)) )
304                         goto crit_check_ret;
305
306                 if ((c1.rbitmap & (1<<CATPBIT_PARTIAL))) {
307                         if (strcasestr_w( (ucs2_t*) convbuf, (ucs2_t*) c1.lname) == NULL)
308                                 goto crit_check_ret;
309                 } else
310                         if (strcasecmp_w((ucs2_t*) convbuf, (ucs2_t*) c1.lname) != 0)
311                                 goto crit_check_ret;
312         } 
313         
314         if ((c1.rbitmap & (1<<FILPBIT_PDINFO))) { 
315                 if ( (size_t)(-1) == (len = convert_charset( CH_UTF8_MAC, CH_UCS2, CH_UTF8, path->m_name, strlen(path->m_name), convbuf, 512, &flags))) {
316                         goto crit_check_ret;
317                 }
318
319                 if (c1.rbitmap & (1<<CATPBIT_PARTIAL)) {
320                         if (strcasestr_w((ucs2_t *) convbuf, (ucs2_t*)c1.utf8name) == NULL)
321                                 goto crit_check_ret;
322                 } else
323                         if (strcasecmp_w((ucs2_t *)convbuf, (ucs2_t*)c1.utf8name) != 0)
324                                 goto crit_check_ret;
325         } 
326
327
328         /* FIXME */
329         if ((unsigned)c2.mdate > 0x7fffffff)
330                 c2.mdate = 0x7fffffff;
331         if ((unsigned)c2.cdate > 0x7fffffff)
332                 c2.cdate = 0x7fffffff;
333         if ((unsigned)c2.bdate > 0x7fffffff)
334                 c2.bdate = 0x7fffffff;
335
336         /* Check for modification date */
337         if ((c1.rbitmap & (1<<DIRPBIT_MDATE))) {
338                 if (path->st.st_mtime < c1.mdate || path->st.st_mtime > c2.mdate)
339                         goto crit_check_ret;
340         }
341         
342         /* Check for creation date... */
343         if ((c1.rbitmap & (1<<DIRPBIT_CDATE))) {
344                 c_date = path->st.st_mtime;
345                 adp = adl_lkup(vol, path, adp);
346                 if (adp && ad_getdate(adp, AD_DATE_CREATE, &ac_date) >= 0)
347                     c_date = AD_DATE_TO_UNIX(ac_date);
348
349                 if (c_date < c1.cdate || c_date > c2.cdate)
350                         goto crit_check_ret;
351         }
352
353         /* Check for backup date... */
354         if ((c1.rbitmap & (1<<DIRPBIT_BDATE))) {
355                 b_date = path->st.st_mtime;
356                 adp = adl_lkup(vol, path, adp);
357                 if (adp && ad_getdate(adp, AD_DATE_BACKUP, &ab_date) >= 0)
358                         b_date = AD_DATE_TO_UNIX(ab_date);
359
360                 if (b_date < c1.bdate || b_date > c2.bdate)
361                         goto crit_check_ret;
362         }
363                                 
364         /* Check attributes */
365         if ((c1.rbitmap & (1<<DIRPBIT_ATTR)) && c2.attr != 0) {
366                 if ((adp = adl_lkup(vol, path, adp))) {
367                         ad_getattr(adp, &attr);
368                         if ((attr & c2.attr) != c1.attr)
369                                 goto crit_check_ret;
370                 } else 
371                         goto crit_check_ret;
372         }               
373
374         /* Check file type ID */
375         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.f_type != 0) {
376             finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
377                 if (finfo->f_type != c1.finfo.f_type)
378                         goto crit_check_ret;
379         }
380         
381         /* Check creator ID */
382         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.creator != 0) {
383                 if (!finfo) {
384                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
385                 }
386                 if (finfo->creator != c1.finfo.creator)
387                         goto crit_check_ret;
388         }
389                 
390         /* Check finder info attributes */
391         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.attrs != 0) {
392                 if (!finfo) {
393                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
394                 }
395
396                 if ((finfo->attrs & c2.finfo.attrs) != c1.finfo.attrs)
397                         goto crit_check_ret;
398         }
399         
400         /* Check label */
401         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.label != 0) {
402                 if (!finfo) {
403                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
404                 }
405                 if ((finfo->label & c2.finfo.label) != c1.finfo.label)
406                         goto crit_check_ret;
407         }       
408         /* FIXME: Attributes check ! */
409         
410         /* All criteria are met. */
411         result |= 1;
412 crit_check_ret:
413         if (adp != NULL)
414                 ad_close(adp, ADFLAGS_HF);
415         return result;
416 }  
417
418 /* ------------------------------ */
419 static int rslt_add ( struct vol *vol, struct path *path, char **buf, int ext)
420 {
421
422         char            *p = *buf;
423         int             ret, tbuf =0;
424         u_int16_t       resultsize;
425         int             isdir = S_ISDIR(path->st.st_mode); 
426
427         /* Skip resultsize */
428         if (ext) {
429                 p += sizeof(resultsize); 
430         }
431         else {
432                 p++;
433         }
434         *p++ = isdir ? FILDIRBIT_ISDIR : FILDIRBIT_ISFILE;    /* IsDir ? */
435
436         if (ext) {
437                 *p++ = 0;                  /* Pad */
438         }
439         
440         if ( isdir ) {
441         ret = getdirparams(vol, c1.dbitmap, path, path->d_dir, p , &tbuf ); 
442         }
443         else {
444             /* FIXME slow if we need the file ID, we already know it */
445                 ret = getfilparams ( vol, c1.fbitmap, path, path->d_dir, p, &tbuf);
446         }
447
448         if ( ret != AFP_OK )
449                 return 0;
450
451         /* Make sure entry length is even */
452         if ((tbuf & 1)) {
453            *p++ = 0;
454            tbuf++;
455         }
456
457         if (ext) {
458                 resultsize = htons(tbuf);
459                 memcpy ( *buf, &resultsize, sizeof(resultsize) );
460                 *buf += tbuf + 4;
461         }
462         else {
463                 **buf = tbuf;
464                 *buf += tbuf + 2;
465         }
466
467         return 1;
468
469         
470 #define VETO_STR \
471         "./../.AppleDouble/.AppleDB/Network Trash Folder/TheVolumeSettingsFolder/TheFindByContentFolder/.AppleDesktop/.Parent/"
472
473 /* This function performs search. It is called directly from afp_catsearch 
474  * vol - volume we are searching on ...
475  * dir - directory we are starting from ...
476  * c1, c2 - search criteria
477  * rmatches - maximum number of matches we can return
478  * pos - position we've stopped recently
479  * rbuf - output buffer
480  * rbuflen - output buffer length
481  */
482 #define NUM_ROUNDS 100
483 static int catsearch(struct vol *vol, struct dir *dir,  
484                      int rmatches, u_int32_t *pos, char *rbuf, u_int32_t *nrecs, int *rsize, int ext)
485 {
486         int cidx, r;
487         struct dirent *entry;
488         int result = AFP_OK;
489         int ccr;
490     struct path path;
491         char *orig_dir = NULL;
492         int orig_dir_len = 128;
493         char *vpath = vol->v_path;
494         char *rrbuf = rbuf;
495     time_t start_time;
496     int num_rounds = NUM_ROUNDS;
497     int cached;
498         
499         if (*pos != 0 && *pos != cur_pos) {
500                 result = AFPERR_CATCHNG;
501                 goto catsearch_end;
502         }
503
504         /* FIXME: Category "offspring count ! */
505
506         /* So we are beginning... */
507     start_time = time(NULL);
508
509         /* We need to initialize all mandatory structures/variables and change working directory appropriate... */
510         if (*pos == 0) {
511                 clearstack();
512                 if (dirpos != NULL) {
513                         closedir(dirpos);
514                         dirpos = NULL;
515                 } 
516                 
517                 if (addstack("", dir, -1) == -1) {
518                         result = AFPERR_MISC;
519                         goto catsearch_end;
520                 }
521                 dstack[0].path = strdup(vpath);
522                 /* FIXME: Sometimes DID is given by client ! (correct this one above !) */
523         }
524
525         /* Save current path */
526         orig_dir = (char*)malloc(orig_dir_len);
527         while (getcwd(orig_dir, orig_dir_len-1)==NULL) {
528                 if (errno != ERANGE) {
529                         result = AFPERR_MISC;
530                         goto catsearch_end;
531                 }
532                 orig_dir_len += 128; 
533                 orig_dir = realloc(orig_dir, orig_dir_len);
534         } /* while() */
535         
536         while ((cidx = reducestack()) != -1) {
537                 cached = 1;
538                 if (dirpos == NULL) {
539                         dirpos = opendir(dstack[cidx].path);
540                         cached = (dstack[cidx].dir->d_child != NULL);
541                 }
542                 if (dirpos == NULL) {
543                         switch (errno) {
544                         case EACCES:
545                                 dstack[cidx].checked = 1;
546                                 continue;
547                         case EMFILE:
548                         case ENFILE:
549                         case ENOENT:
550                                 result = AFPERR_NFILE;
551                                 break;
552                         case ENOMEM:
553                         case ENOTDIR:
554                         default:
555                                 result = AFPERR_MISC;
556                         } /* switch (errno) */
557                         goto catsearch_end;
558                 }
559                 /* FIXME error in chdir, what do we do? */
560                 chdir(dstack[cidx].path);
561                 
562
563                 while ((entry=readdir(dirpos)) != NULL) {
564                         (*pos)++;
565
566                         if (!check_dirent(vol, entry->d_name))
567                            continue;
568
569                         path.m_name = NULL;
570                         path.u_name = entry->d_name;
571                         if (of_stat(&path) != 0) {
572                                 switch (errno) {
573                                 case EACCES:
574                                 case ELOOP:
575                                 case ENOENT:
576                                         continue;
577                                 case ENOTDIR:
578                                 case EFAULT:
579                                 case ENOMEM:
580                                 case ENAMETOOLONG:
581                                 default:
582                                         result = AFPERR_MISC;
583                                         goto catsearch_end;
584                                 } 
585                         }
586                         if (S_ISDIR(path.st.st_mode)) {
587                                 /* here we can short cut 
588                                    ie if in the same loop the parent dir wasn't in the cache
589                                    ALL dirsearch_byname will fail.
590                                 */
591                                 if (cached)
592                         path.d_dir = dirsearch_byname(dstack[cidx].dir, path.u_name);
593                 else
594                         path.d_dir = NULL;
595                 if (!path.d_dir) {
596                         /* path.m_name is set by adddir */
597                     if (NULL == (path.d_dir = adddir( vol, dstack[cidx].dir, &path) ) ) {
598                                                 result = AFPERR_MISC;
599                                                 goto catsearch_end;
600                                         }
601                 }
602                 path.m_name = path.d_dir->d_m_name; 
603                         
604                                 if (addstack(path.u_name, path.d_dir, cidx) == -1) {
605                                         result = AFPERR_MISC;
606                                         goto catsearch_end;
607                                 } 
608             }
609             else {
610                 /* yes it sucks for directory d_dir is the directory, for file it's the parent directory*/
611                 path.d_dir = dstack[cidx].dir;
612             }
613                         ccr = crit_check(vol, &path);
614
615                         /* bit 0 means that criteria has been met */
616                         if ((ccr & 1)) {
617                                 r = rslt_add ( vol, &path, &rrbuf, ext);
618                                 
619                                 if (r == 0) {
620                                         result = AFPERR_MISC;
621                                         goto catsearch_end;
622                                 } 
623                                 *nrecs += r;
624                                 /* Number of matches limit */
625                                 if (--rmatches == 0) 
626                                         goto catsearch_pause;
627                                 /* Block size limit */
628                                 if (rrbuf - rbuf >= 448)
629                                         goto catsearch_pause;
630                         }
631                         /* MacOS 9 doesn't like servers executing commands longer than few seconds */
632                         if (--num_rounds <= 0) {
633                             if (start_time != time(NULL)) {
634                                         result=AFP_OK;
635                                         goto catsearch_pause;
636                             }
637                             num_rounds = NUM_ROUNDS;
638                         }
639                 } /* while ((entry=readdir(dirpos)) != NULL) */
640                 closedir(dirpos);
641                 dirpos = NULL;
642                 dstack[cidx].checked = 1;
643         } /* while (current_idx = reducestack()) != -1) */
644
645         /* We have finished traversing our tree. Return EOF here. */
646         result = AFPERR_EOF;
647         goto catsearch_end;
648
649 catsearch_pause:
650         cur_pos = *pos; 
651         save_cidx = cidx;
652
653 catsearch_end: /* Exiting catsearch: error condition */
654         *rsize = rrbuf - rbuf;
655         if (orig_dir != NULL) {
656                 chdir(orig_dir);
657                 free(orig_dir);
658         }
659         return result;
660 } /* catsearch() */
661
662 /* -------------------------- */
663 int catsearch_afp(AFPObj *obj _U_, char *ibuf, int ibuflen,
664                   char *rbuf, int *rbuflen, int ext)
665 {
666     struct vol *vol;
667     u_int16_t   vid;
668     u_int16_t   spec_len;
669     u_int32_t   rmatches, reserved;
670     u_int32_t   catpos[4];
671     u_int32_t   pdid = 0;
672     int ret, rsize;
673     u_int32_t nrecs = 0;
674     unsigned char *spec1, *spec2, *bspec1, *bspec2;
675     size_t      len;
676     u_int16_t   namelen;
677     u_int16_t   flags;
678     char        tmppath[256];
679
680     *rbuflen = 0;
681
682     /* min header size */
683     if (ibuflen < 32) {
684         return AFPERR_PARAM;
685     }
686
687     memset(&c1, 0, sizeof(c1));
688     memset(&c2, 0, sizeof(c2));
689
690     ibuf += 2;
691     memcpy(&vid, ibuf, sizeof(vid));
692     ibuf += sizeof(vid);
693
694     if ((vol = getvolbyvid(vid)) == NULL) {
695         return AFPERR_PARAM;
696     }
697     
698     memcpy(&rmatches, ibuf, sizeof(rmatches));
699     rmatches = ntohl(rmatches);
700     ibuf += sizeof(rmatches); 
701
702     /* FIXME: (rl) should we check if reserved == 0 ? */
703     ibuf += sizeof(reserved);
704
705     memcpy(catpos, ibuf, sizeof(catpos));
706     ibuf += sizeof(catpos);
707
708     memcpy(&c1.fbitmap, ibuf, sizeof(c1.fbitmap));
709     c1.fbitmap = c2.fbitmap = ntohs(c1.fbitmap);
710     ibuf += sizeof(c1.fbitmap);
711
712     memcpy(&c1.dbitmap, ibuf, sizeof(c1.dbitmap));
713     c1.dbitmap = c2.dbitmap = ntohs(c1.dbitmap);
714     ibuf += sizeof(c1.dbitmap);
715
716     memcpy(&c1.rbitmap, ibuf, sizeof(c1.rbitmap));
717     c1.rbitmap = c2.rbitmap = ntohl(c1.rbitmap);
718     ibuf += sizeof(c1.rbitmap);
719
720     if (! (c1.fbitmap || c1.dbitmap)) {
721             return AFPERR_BITMAP;
722     }
723
724     if ( ext) {
725         memcpy(&spec_len, ibuf, sizeof(spec_len));
726         spec_len = ntohs(spec_len);
727     }
728     else {
729         /* with catsearch only name and parent id are allowed */
730         c1.fbitmap &= (1<<FILPBIT_LNAME) | (1<<FILPBIT_PDID);
731         c1.dbitmap &= (1<<DIRPBIT_LNAME) | (1<<DIRPBIT_PDID);
732         spec_len = *(unsigned char*)ibuf;
733     }
734
735     /* Parse file specifications */
736     spec1 = ibuf;
737     spec2 = ibuf + spec_len + 2;
738
739     spec1 += 2; 
740     spec2 += 2; 
741
742     bspec1 = spec1;
743     bspec2 = spec2;
744     /* File attribute bits... */
745     if (c1.rbitmap & (1 << FILPBIT_ATTR)) {
746             memcpy(&c1.attr, spec1, sizeof(c1.attr));
747             spec1 += sizeof(c1.attr);
748             memcpy(&c2.attr, spec2, sizeof(c2.attr));
749             spec2 += sizeof(c1.attr);
750     }
751
752     /* Parent DID */
753     if (c1.rbitmap & (1 << FILPBIT_PDID)) {
754             memcpy(&c1.pdid, spec1, sizeof(pdid));
755             spec1 += sizeof(c1.pdid);
756             memcpy(&c2.pdid, spec2, sizeof(pdid));
757             spec2 += sizeof(c2.pdid);
758     } /* FIXME: PDID - do we demarshall this argument ? */
759
760     /* Creation date */
761     if (c1.rbitmap & (1 << FILPBIT_CDATE)) {
762             memcpy(&c1.cdate, spec1, sizeof(c1.cdate));
763             spec1 += sizeof(c1.cdate);
764             c1.cdate = AD_DATE_TO_UNIX(c1.cdate);
765             memcpy(&c2.cdate, spec2, sizeof(c2.cdate));
766             spec2 += sizeof(c1.cdate);
767             ibuf += sizeof(c1.cdate);;
768             c2.cdate = AD_DATE_TO_UNIX(c2.cdate);
769     }
770
771     /* Modification date */
772     if (c1.rbitmap & (1 << FILPBIT_MDATE)) {
773             memcpy(&c1.mdate, spec1, sizeof(c1.mdate));
774             c1.mdate = AD_DATE_TO_UNIX(c1.mdate);
775             spec1 += sizeof(c1.mdate);
776             memcpy(&c2.mdate, spec2, sizeof(c2.mdate));
777             c2.mdate = AD_DATE_TO_UNIX(c2.mdate);
778             spec2 += sizeof(c1.mdate);
779     }
780     
781     /* Backup date */
782     if (c1.rbitmap & (1 << FILPBIT_BDATE)) {
783             memcpy(&c1.bdate, spec1, sizeof(c1.bdate));
784             spec1 += sizeof(c1.bdate);
785             c1.bdate = AD_DATE_TO_UNIX(c1.bdate);
786             memcpy(&c2.bdate, spec2, sizeof(c2.bdate));
787             spec2 += sizeof(c2.bdate);
788             c1.bdate = AD_DATE_TO_UNIX(c2.bdate);
789     }
790
791     /* Finder info */
792     if (c1.rbitmap & (1 << FILPBIT_FINFO)) {
793         packed_finder buf;
794         
795             memcpy(buf, spec1, sizeof(buf));
796             unpack_buffer(&c1.finfo, buf);      
797             spec1 += sizeof(buf);
798
799             memcpy(buf, spec2, sizeof(buf));
800             unpack_buffer(&c2.finfo, buf);
801             spec2 += sizeof(buf);
802     } /* Finder info */
803
804     if ((c1.rbitmap & (1 << DIRPBIT_OFFCNT)) != 0) {
805         /* Offspring count - only directories */
806                 if (c1.fbitmap == 0) {
807                 memcpy(&c1.offcnt, spec1, sizeof(c1.offcnt));
808                 spec1 += sizeof(c1.offcnt);
809                 c1.offcnt = ntohs(c1.offcnt);
810                 memcpy(&c2.offcnt, spec2, sizeof(c2.offcnt));
811                 spec2 += sizeof(c2.offcnt);
812                 c2.offcnt = ntohs(c2.offcnt);
813                 }
814                 else if (c1.dbitmap == 0) {
815                         /* ressource fork length */
816                 }
817                 else {
818                 return AFPERR_BITMAP;  /* error */
819                 }
820     } /* Offspring count/ressource fork length */
821
822     /* Long name */
823     if (c1.rbitmap & (1 << FILPBIT_LNAME)) {
824         /* Get the long filename */     
825                 memcpy(tmppath, bspec1 + spec1[1] + 1, (bspec1 + spec1[1])[0]);
826                 tmppath[(bspec1 + spec1[1])[0]]= 0;
827                 len = convert_string ( vol->v_maccharset, CH_UCS2, tmppath, strlen(tmppath), c1.lname, sizeof(c1.lname));
828         if (len == (size_t)(-1))
829             return AFPERR_PARAM;
830
831 #if 0   
832                 /* FIXME: do we need it ? It's always null ! */
833                 memcpy(c2.lname, bspec2 + spec2[1] + 1, (bspec2 + spec2[1])[0]);
834                 c2.lname[(bspec2 + spec2[1])[0]]= 0;
835 #endif
836     }
837         /* UTF8 Name */
838     if (c1.rbitmap & (1 << FILPBIT_PDINFO)) {
839
840                 /* offset */
841                 memcpy(&namelen, spec1, sizeof(namelen));
842                 namelen = ntohs (namelen);
843
844                 spec1 = bspec1+namelen+4; /* Skip Unicode Hint */
845
846                 /* length */
847                 memcpy(&namelen, spec1, sizeof(namelen));
848                 namelen = ntohs (namelen);
849                 if (namelen > 255)  /* Safeguard */
850                         namelen = 255;
851
852                 memcpy (c1.utf8name, spec1+2, namelen);
853                 c1.utf8name[(namelen+1)] =0;
854
855                 /* convert charset */
856                 flags = CONV_PRECOMPOSE;
857                 len = convert_charset(CH_UTF8_MAC, CH_UCS2, CH_UTF8, c1.utf8name, namelen, c1.utf8name, 512, &flags);
858         if (len == (size_t)(-1))
859             return AFPERR_PARAM;
860     }
861     
862     /* Call search */
863     *rbuflen = 24;
864     ret = catsearch(vol, vol->v_dir, rmatches, &catpos[0], rbuf+24, &nrecs, &rsize, ext);
865     memcpy(rbuf, catpos, sizeof(catpos));
866     rbuf += sizeof(catpos);
867
868     c1.fbitmap = htons(c1.fbitmap);
869     memcpy(rbuf, &c1.fbitmap, sizeof(c1.fbitmap));
870     rbuf += sizeof(c1.fbitmap);
871
872     c1.dbitmap = htons(c1.dbitmap);
873     memcpy(rbuf, &c1.dbitmap, sizeof(c1.dbitmap));
874     rbuf += sizeof(c1.dbitmap);
875
876     nrecs = htonl(nrecs);
877     memcpy(rbuf, &nrecs, sizeof(nrecs));
878     rbuf += sizeof(nrecs);
879     *rbuflen += rsize;
880
881     return ret;
882 } /* catsearch_afp */
883
884 /* -------------------------- */
885 int afp_catsearch (AFPObj *obj, char *ibuf, int ibuflen,
886                   char *rbuf, int *rbuflen)
887 {
888         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 0);
889 }
890
891
892 int afp_catsearch_ext (AFPObj *obj, char *ibuf, int ibuflen,
893                   char *rbuf, int *rbuflen)
894 {
895         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 1);
896 }
897
898 /* FIXME: we need a clean separation between afp stubs and 'real' implementation */
899 /* (so, all buffer packing/unpacking should be done in stub, everything else 
900    should be done in other functions) */