]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/catsearch.c
Fix all remaining warnings from gcc -Wall that can be fixed
[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(void)
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(void) 
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                 /* save the id for getfilparm */
290                 path->id = id;
291                 if (!(path->m_name = utompath(vol, path->u_name, id , utf8_encoding()))) {
292                         return 0;
293                 }
294         }
295         }
296                 
297         /* Kind of optimization: 
298          * -- first check things we've already have - filename
299          * -- last check things we get from ad_open()
300          * FIXME strmcp strstr (icase)
301          */
302
303         /* Check for filename */
304         if ((c1.rbitmap & (1<<DIRPBIT_LNAME))) { 
305                 if ( (size_t)(-1) == (len = convert_string(vol->v_maccharset, CH_UCS2, path->m_name, strlen(path->m_name), convbuf, 512)) )
306                         goto crit_check_ret;
307
308                 if ((c1.rbitmap & (1<<CATPBIT_PARTIAL))) {
309                         if (strcasestr_w( (ucs2_t*) convbuf, (ucs2_t*) c1.lname) == NULL)
310                                 goto crit_check_ret;
311                 } else
312                         if (strcasecmp_w((ucs2_t*) convbuf, (ucs2_t*) c1.lname) != 0)
313                                 goto crit_check_ret;
314         } 
315         
316         if ((c1.rbitmap & (1<<FILPBIT_PDINFO))) { 
317                 if ( (size_t)(-1) == (len = convert_charset( CH_UTF8_MAC, CH_UCS2, CH_UTF8, path->m_name, strlen(path->m_name), convbuf, 512, &flags))) {
318                         goto crit_check_ret;
319                 }
320
321                 if (c1.rbitmap & (1<<CATPBIT_PARTIAL)) {
322                         if (strcasestr_w((ucs2_t *) convbuf, (ucs2_t*)c1.utf8name) == NULL)
323                                 goto crit_check_ret;
324                 } else
325                         if (strcasecmp_w((ucs2_t *)convbuf, (ucs2_t*)c1.utf8name) != 0)
326                                 goto crit_check_ret;
327         } 
328
329
330         /* FIXME */
331         if ((unsigned)c2.mdate > 0x7fffffff)
332                 c2.mdate = 0x7fffffff;
333         if ((unsigned)c2.cdate > 0x7fffffff)
334                 c2.cdate = 0x7fffffff;
335         if ((unsigned)c2.bdate > 0x7fffffff)
336                 c2.bdate = 0x7fffffff;
337
338         /* Check for modification date */
339         if ((c1.rbitmap & (1<<DIRPBIT_MDATE))) {
340                 if (path->st.st_mtime < c1.mdate || path->st.st_mtime > c2.mdate)
341                         goto crit_check_ret;
342         }
343         
344         /* Check for creation date... */
345         if ((c1.rbitmap & (1<<DIRPBIT_CDATE))) {
346                 c_date = path->st.st_mtime;
347                 adp = adl_lkup(vol, path, adp);
348                 if (adp && ad_getdate(adp, AD_DATE_CREATE, &ac_date) >= 0)
349                     c_date = AD_DATE_TO_UNIX(ac_date);
350
351                 if (c_date < c1.cdate || c_date > c2.cdate)
352                         goto crit_check_ret;
353         }
354
355         /* Check for backup date... */
356         if ((c1.rbitmap & (1<<DIRPBIT_BDATE))) {
357                 b_date = path->st.st_mtime;
358                 adp = adl_lkup(vol, path, adp);
359                 if (adp && ad_getdate(adp, AD_DATE_BACKUP, &ab_date) >= 0)
360                         b_date = AD_DATE_TO_UNIX(ab_date);
361
362                 if (b_date < c1.bdate || b_date > c2.bdate)
363                         goto crit_check_ret;
364         }
365                                 
366         /* Check attributes */
367         if ((c1.rbitmap & (1<<DIRPBIT_ATTR)) && c2.attr != 0) {
368                 if ((adp = adl_lkup(vol, path, adp))) {
369                         ad_getattr(adp, &attr);
370                         if ((attr & c2.attr) != c1.attr)
371                                 goto crit_check_ret;
372                 } else 
373                         goto crit_check_ret;
374         }               
375
376         /* Check file type ID */
377         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.f_type != 0) {
378             finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
379                 if (finfo->f_type != c1.finfo.f_type)
380                         goto crit_check_ret;
381         }
382         
383         /* Check creator ID */
384         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.creator != 0) {
385                 if (!finfo) {
386                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
387                 }
388                 if (finfo->creator != c1.finfo.creator)
389                         goto crit_check_ret;
390         }
391                 
392         /* Check finder info attributes */
393         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.attrs != 0) {
394                 if (!finfo) {
395                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
396                 }
397
398                 if ((finfo->attrs & c2.finfo.attrs) != c1.finfo.attrs)
399                         goto crit_check_ret;
400         }
401         
402         /* Check label */
403         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.label != 0) {
404                 if (!finfo) {
405                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
406                 }
407                 if ((finfo->label & c2.finfo.label) != c1.finfo.label)
408                         goto crit_check_ret;
409         }       
410         /* FIXME: Attributes check ! */
411         
412         /* All criteria are met. */
413         result |= 1;
414 crit_check_ret:
415         if (adp != NULL)
416                 ad_close_metadata(adp);
417         return result;
418 }  
419
420 /* ------------------------------ */
421 static int rslt_add ( struct vol *vol, struct path *path, char **buf, int ext)
422 {
423
424         char            *p = *buf;
425         int             ret;
426         size_t          tbuf =0;
427         u_int16_t       resultsize;
428         int             isdir = S_ISDIR(path->st.st_mode); 
429
430         /* Skip resultsize */
431         if (ext) {
432                 p += sizeof(resultsize); 
433         }
434         else {
435                 p++;
436         }
437         *p++ = isdir ? FILDIRBIT_ISDIR : FILDIRBIT_ISFILE;    /* IsDir ? */
438
439         if (ext) {
440                 *p++ = 0;                  /* Pad */
441         }
442         
443         if ( isdir ) {
444         ret = getdirparams(vol, c1.dbitmap, path, path->d_dir, p , &tbuf ); 
445         }
446         else {
447             /* FIXME slow if we need the file ID, we already know it, done ? */
448                 ret = getfilparams ( vol, c1.fbitmap, path, path->d_dir, p, &tbuf);
449         }
450
451         if ( ret != AFP_OK )
452                 return 0;
453
454         /* Make sure entry length is even */
455         if ((tbuf & 1)) {
456            *p++ = 0;
457            tbuf++;
458         }
459
460         if (ext) {
461                 resultsize = htons(tbuf);
462                 memcpy ( *buf, &resultsize, sizeof(resultsize) );
463                 *buf += tbuf + 4;
464         }
465         else {
466                 **buf = tbuf;
467                 *buf += tbuf + 2;
468         }
469
470         return 1;
471
472         
473 #define VETO_STR \
474         "./../.AppleDouble/.AppleDB/Network Trash Folder/TheVolumeSettingsFolder/TheFindByContentFolder/.AppleDesktop/.Parent/"
475
476 /* This function performs search. It is called directly from afp_catsearch 
477  * vol - volume we are searching on ...
478  * dir - directory we are starting from ...
479  * c1, c2 - search criteria
480  * rmatches - maximum number of matches we can return
481  * pos - position we've stopped recently
482  * rbuf - output buffer
483  * rbuflen - output buffer length
484  */
485 #define NUM_ROUNDS 100
486 static int catsearch(struct vol *vol, struct dir *dir,  
487                      int rmatches, u_int32_t *pos, char *rbuf, u_int32_t *nrecs, int *rsize, int ext)
488 {
489         int cidx, r;
490         struct dirent *entry;
491         int result = AFP_OK;
492         int ccr;
493     struct path path;
494         char *orig_dir = NULL;
495         int orig_dir_len = 128;
496         char *vpath = vol->v_path;
497         char *rrbuf = rbuf;
498     time_t start_time;
499     int num_rounds = NUM_ROUNDS;
500     int cached;
501         
502         if (*pos != 0 && *pos != cur_pos) {
503                 result = AFPERR_CATCHNG;
504                 goto catsearch_end;
505         }
506
507         /* FIXME: Category "offspring count ! */
508
509         /* So we are beginning... */
510     start_time = time(NULL);
511
512         /* We need to initialize all mandatory structures/variables and change working directory appropriate... */
513         if (*pos == 0) {
514                 clearstack();
515                 if (dirpos != NULL) {
516                         closedir(dirpos);
517                         dirpos = NULL;
518                 } 
519                 
520                 if (addstack("", dir, -1) == -1) {
521                         result = AFPERR_MISC;
522                         goto catsearch_end;
523                 }
524                 dstack[0].path = strdup(vpath);
525                 /* FIXME: Sometimes DID is given by client ! (correct this one above !) */
526         }
527
528         /* Save current path */
529         orig_dir = (char*)malloc(orig_dir_len);
530         while (getcwd(orig_dir, orig_dir_len-1)==NULL) {
531                 if (errno != ERANGE) {
532                         result = AFPERR_MISC;
533                         goto catsearch_end;
534                 }
535                 orig_dir_len += 128; 
536                 orig_dir = realloc(orig_dir, orig_dir_len);
537         } /* while() */
538         
539         while ((cidx = reducestack()) != -1) {
540                 cached = 1;
541                 if (dirpos == NULL) {
542                         dirpos = opendir(dstack[cidx].path);
543                         cached = (dstack[cidx].dir->d_child != NULL);
544                 }
545                 if (dirpos == NULL) {
546                         switch (errno) {
547                         case EACCES:
548                                 dstack[cidx].checked = 1;
549                                 continue;
550                         case EMFILE:
551                         case ENFILE:
552                         case ENOENT:
553                                 result = AFPERR_NFILE;
554                                 break;
555                         case ENOMEM:
556                         case ENOTDIR:
557                         default:
558                                 result = AFPERR_MISC;
559                         } /* switch (errno) */
560                         goto catsearch_end;
561                 }
562                 /* FIXME error in chdir, what do we do? */
563                 chdir(dstack[cidx].path);
564                 
565
566                 while ((entry=readdir(dirpos)) != NULL) {
567                         (*pos)++;
568
569                         if (!check_dirent(vol, entry->d_name))
570                            continue;
571
572                         memset(&path, 0, sizeof(path));
573                         path.u_name = entry->d_name;
574                         if (of_stat(&path) != 0) {
575                                 switch (errno) {
576                                 case EACCES:
577                                 case ELOOP:
578                                 case ENOENT:
579                                         continue;
580                                 case ENOTDIR:
581                                 case EFAULT:
582                                 case ENOMEM:
583                                 case ENAMETOOLONG:
584                                 default:
585                                         result = AFPERR_MISC;
586                                         goto catsearch_end;
587                                 } 
588                         }
589                         if (S_ISDIR(path.st.st_mode)) {
590                                 /* here we can short cut 
591                                    ie if in the same loop the parent dir wasn't in the cache
592                                    ALL dirsearch_byname will fail.
593                                 */
594                                 if (cached)
595                         path.d_dir = dirsearch_byname(vol, dstack[cidx].dir, path.u_name);
596                 else
597                         path.d_dir = NULL;
598                 if (!path.d_dir) {
599                         /* path.m_name is set by adddir */
600                     if (NULL == (path.d_dir = adddir( vol, dstack[cidx].dir, &path) ) ) {
601                                                 result = AFPERR_MISC;
602                                                 goto catsearch_end;
603                                         }
604                 }
605                 path.m_name = path.d_dir->d_m_name; 
606                         
607                                 if (addstack(path.u_name, path.d_dir, cidx) == -1) {
608                                         result = AFPERR_MISC;
609                                         goto catsearch_end;
610                                 } 
611             }
612             else {
613                 /* yes it sucks for directory d_dir is the directory, for file it's the parent directory*/
614                 path.d_dir = dstack[cidx].dir;
615             }
616                         ccr = crit_check(vol, &path);
617
618                         /* bit 0 means that criteria has been met */
619                         if ((ccr & 1)) {
620                                 r = rslt_add ( vol, &path, &rrbuf, ext);
621                                 
622                                 if (r == 0) {
623                                         result = AFPERR_MISC;
624                                         goto catsearch_end;
625                                 } 
626                                 *nrecs += r;
627                                 /* Number of matches limit */
628                                 if (--rmatches == 0) 
629                                         goto catsearch_pause;
630                                 /* Block size limit */
631                                 if (rrbuf - rbuf >= 448)
632                                         goto catsearch_pause;
633                         }
634                         /* MacOS 9 doesn't like servers executing commands longer than few seconds */
635                         if (--num_rounds <= 0) {
636                             if (start_time != time(NULL)) {
637                                         result=AFP_OK;
638                                         goto catsearch_pause;
639                             }
640                             num_rounds = NUM_ROUNDS;
641                         }
642                 } /* while ((entry=readdir(dirpos)) != NULL) */
643                 closedir(dirpos);
644                 dirpos = NULL;
645                 dstack[cidx].checked = 1;
646         } /* while (current_idx = reducestack()) != -1) */
647
648         /* We have finished traversing our tree. Return EOF here. */
649         result = AFPERR_EOF;
650         goto catsearch_end;
651
652 catsearch_pause:
653         cur_pos = *pos; 
654         save_cidx = cidx;
655
656 catsearch_end: /* Exiting catsearch: error condition */
657         *rsize = rrbuf - rbuf;
658         if (orig_dir != NULL) {
659                 chdir(orig_dir);
660                 free(orig_dir);
661         }
662         return result;
663 } /* catsearch() */
664
665 /* -------------------------- */
666 static int catsearch_afp(AFPObj *obj _U_, char *ibuf, size_t ibuflen,
667                   char *rbuf, size_t *rbuflen, int ext)
668 {
669     struct vol *vol;
670     u_int16_t   vid;
671     u_int16_t   spec_len;
672     u_int32_t   rmatches, reserved;
673     u_int32_t   catpos[4];
674     u_int32_t   pdid = 0;
675     int ret, rsize;
676     u_int32_t nrecs = 0;
677     unsigned char *spec1, *spec2, *bspec1, *bspec2;
678     size_t      len;
679     u_int16_t   namelen;
680     u_int16_t   flags;
681     char        tmppath[256];
682
683     *rbuflen = 0;
684
685     /* min header size */
686     if (ibuflen < 32) {
687         return AFPERR_PARAM;
688     }
689
690     memset(&c1, 0, sizeof(c1));
691     memset(&c2, 0, sizeof(c2));
692
693     ibuf += 2;
694     memcpy(&vid, ibuf, sizeof(vid));
695     ibuf += sizeof(vid);
696
697     if ((vol = getvolbyvid(vid)) == NULL) {
698         return AFPERR_PARAM;
699     }
700     
701     memcpy(&rmatches, ibuf, sizeof(rmatches));
702     rmatches = ntohl(rmatches);
703     ibuf += sizeof(rmatches); 
704
705     /* FIXME: (rl) should we check if reserved == 0 ? */
706     ibuf += sizeof(reserved);
707
708     memcpy(catpos, ibuf, sizeof(catpos));
709     ibuf += sizeof(catpos);
710
711     memcpy(&c1.fbitmap, ibuf, sizeof(c1.fbitmap));
712     c1.fbitmap = c2.fbitmap = ntohs(c1.fbitmap);
713     ibuf += sizeof(c1.fbitmap);
714
715     memcpy(&c1.dbitmap, ibuf, sizeof(c1.dbitmap));
716     c1.dbitmap = c2.dbitmap = ntohs(c1.dbitmap);
717     ibuf += sizeof(c1.dbitmap);
718
719     memcpy(&c1.rbitmap, ibuf, sizeof(c1.rbitmap));
720     c1.rbitmap = c2.rbitmap = ntohl(c1.rbitmap);
721     ibuf += sizeof(c1.rbitmap);
722
723     if (! (c1.fbitmap || c1.dbitmap)) {
724             return AFPERR_BITMAP;
725     }
726
727     if ( ext) {
728         memcpy(&spec_len, ibuf, sizeof(spec_len));
729         spec_len = ntohs(spec_len);
730     }
731     else {
732         /* with catsearch only name and parent id are allowed */
733         c1.fbitmap &= (1<<FILPBIT_LNAME) | (1<<FILPBIT_PDID);
734         c1.dbitmap &= (1<<DIRPBIT_LNAME) | (1<<DIRPBIT_PDID);
735         spec_len = *(unsigned char*)ibuf;
736     }
737
738     /* Parse file specifications */
739     spec1 = (unsigned char*)ibuf;
740     spec2 = (unsigned char*)ibuf + spec_len + 2;
741
742     spec1 += 2; 
743     spec2 += 2; 
744
745     bspec1 = spec1;
746     bspec2 = spec2;
747     /* File attribute bits... */
748     if (c1.rbitmap & (1 << FILPBIT_ATTR)) {
749             memcpy(&c1.attr, spec1, sizeof(c1.attr));
750             spec1 += sizeof(c1.attr);
751             memcpy(&c2.attr, spec2, sizeof(c2.attr));
752             spec2 += sizeof(c1.attr);
753     }
754
755     /* Parent DID */
756     if (c1.rbitmap & (1 << FILPBIT_PDID)) {
757             memcpy(&c1.pdid, spec1, sizeof(pdid));
758             spec1 += sizeof(c1.pdid);
759             memcpy(&c2.pdid, spec2, sizeof(pdid));
760             spec2 += sizeof(c2.pdid);
761     } /* FIXME: PDID - do we demarshall this argument ? */
762
763     /* Creation date */
764     if (c1.rbitmap & (1 << FILPBIT_CDATE)) {
765             memcpy(&c1.cdate, spec1, sizeof(c1.cdate));
766             spec1 += sizeof(c1.cdate);
767             c1.cdate = AD_DATE_TO_UNIX(c1.cdate);
768             memcpy(&c2.cdate, spec2, sizeof(c2.cdate));
769             spec2 += sizeof(c1.cdate);
770             ibuf += sizeof(c1.cdate);;
771             c2.cdate = AD_DATE_TO_UNIX(c2.cdate);
772     }
773
774     /* Modification date */
775     if (c1.rbitmap & (1 << FILPBIT_MDATE)) {
776             memcpy(&c1.mdate, spec1, sizeof(c1.mdate));
777             c1.mdate = AD_DATE_TO_UNIX(c1.mdate);
778             spec1 += sizeof(c1.mdate);
779             memcpy(&c2.mdate, spec2, sizeof(c2.mdate));
780             c2.mdate = AD_DATE_TO_UNIX(c2.mdate);
781             spec2 += sizeof(c1.mdate);
782     }
783     
784     /* Backup date */
785     if (c1.rbitmap & (1 << FILPBIT_BDATE)) {
786             memcpy(&c1.bdate, spec1, sizeof(c1.bdate));
787             spec1 += sizeof(c1.bdate);
788             c1.bdate = AD_DATE_TO_UNIX(c1.bdate);
789             memcpy(&c2.bdate, spec2, sizeof(c2.bdate));
790             spec2 += sizeof(c2.bdate);
791             c1.bdate = AD_DATE_TO_UNIX(c2.bdate);
792     }
793
794     /* Finder info */
795     if (c1.rbitmap & (1 << FILPBIT_FINFO)) {
796         packed_finder buf;
797         
798             memcpy(buf, spec1, sizeof(buf));
799             unpack_buffer(&c1.finfo, buf);      
800             spec1 += sizeof(buf);
801
802             memcpy(buf, spec2, sizeof(buf));
803             unpack_buffer(&c2.finfo, buf);
804             spec2 += sizeof(buf);
805     } /* Finder info */
806
807     if ((c1.rbitmap & (1 << DIRPBIT_OFFCNT)) != 0) {
808         /* Offspring count - only directories */
809                 if (c1.fbitmap == 0) {
810                 memcpy(&c1.offcnt, spec1, sizeof(c1.offcnt));
811                 spec1 += sizeof(c1.offcnt);
812                 c1.offcnt = ntohs(c1.offcnt);
813                 memcpy(&c2.offcnt, spec2, sizeof(c2.offcnt));
814                 spec2 += sizeof(c2.offcnt);
815                 c2.offcnt = ntohs(c2.offcnt);
816                 }
817                 else if (c1.dbitmap == 0) {
818                         /* ressource fork length */
819                 }
820                 else {
821                 return AFPERR_BITMAP;  /* error */
822                 }
823     } /* Offspring count/ressource fork length */
824
825     /* Long name */
826     if (c1.rbitmap & (1 << FILPBIT_LNAME)) {
827         /* Get the long filename */     
828                 memcpy(tmppath, bspec1 + spec1[1] + 1, (bspec1 + spec1[1])[0]);
829                 tmppath[(bspec1 + spec1[1])[0]]= 0;
830                 len = convert_string ( vol->v_maccharset, CH_UCS2, tmppath, strlen(tmppath), c1.lname, sizeof(c1.lname));
831         if (len == (size_t)(-1))
832             return AFPERR_PARAM;
833
834 #if 0   
835                 /* FIXME: do we need it ? It's always null ! */
836                 memcpy(c2.lname, bspec2 + spec2[1] + 1, (bspec2 + spec2[1])[0]);
837                 c2.lname[(bspec2 + spec2[1])[0]]= 0;
838 #endif
839     }
840         /* UTF8 Name */
841     if (c1.rbitmap & (1 << FILPBIT_PDINFO)) {
842
843                 /* offset */
844                 memcpy(&namelen, spec1, sizeof(namelen));
845                 namelen = ntohs (namelen);
846
847                 spec1 = bspec1+namelen+4; /* Skip Unicode Hint */
848
849                 /* length */
850                 memcpy(&namelen, spec1, sizeof(namelen));
851                 namelen = ntohs (namelen);
852                 if (namelen > 255)  /* Safeguard */
853                         namelen = 255;
854
855                 memcpy (c1.utf8name, spec1+2, namelen);
856                 c1.utf8name[(namelen+1)] =0;
857
858                 /* convert charset */
859                 flags = CONV_PRECOMPOSE;
860                 len = convert_charset(CH_UTF8_MAC, CH_UCS2, CH_UTF8, c1.utf8name, namelen, c1.utf8name, 512, &flags);
861         if (len == (size_t)(-1))
862             return AFPERR_PARAM;
863     }
864     
865     /* Call search */
866     *rbuflen = 24;
867     ret = catsearch(vol, vol->v_dir, rmatches, &catpos[0], rbuf+24, &nrecs, &rsize, ext);
868     memcpy(rbuf, catpos, sizeof(catpos));
869     rbuf += sizeof(catpos);
870
871     c1.fbitmap = htons(c1.fbitmap);
872     memcpy(rbuf, &c1.fbitmap, sizeof(c1.fbitmap));
873     rbuf += sizeof(c1.fbitmap);
874
875     c1.dbitmap = htons(c1.dbitmap);
876     memcpy(rbuf, &c1.dbitmap, sizeof(c1.dbitmap));
877     rbuf += sizeof(c1.dbitmap);
878
879     nrecs = htonl(nrecs);
880     memcpy(rbuf, &nrecs, sizeof(nrecs));
881     rbuf += sizeof(nrecs);
882     *rbuflen += rsize;
883
884     return ret;
885 } /* catsearch_afp */
886
887 /* -------------------------- */
888 int afp_catsearch (AFPObj *obj, char *ibuf, size_t ibuflen,
889                   char *rbuf, size_t *rbuflen)
890 {
891         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 0);
892 }
893
894
895 int afp_catsearch_ext (AFPObj *obj, char *ibuf, size_t ibuflen,
896                   char *rbuf, size_t *rbuflen)
897 {
898         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 1);
899 }
900
901 /* FIXME: we need a clean separation between afp stubs and 'real' implementation */
902 /* (so, all buffer packing/unpacking should be done in stub, everything else 
903    should be done in other functions) */