]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/catsearch.c
ccbdd80fbcb7b82671422e7c3c7201f7a02d215a
[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 <errno.h>
30 #include <ctype.h>
31 #include <string.h>
32 #include <time.h>
33
34 #if STDC_HEADERS
35 #include <string.h>
36 #else
37 #ifndef HAVE_MEMCPY
38 #define memcpy(d,s,n) bcopy ((s), (d), (n))
39 #define memmove(d,s,n) bcopy ((s), (d), (n))
40 #endif /* ! HAVE_MEMCPY */
41 #endif
42
43 #include <sys/file.h>
44 #include <netinet/in.h>
45
46 #include <atalk/afp.h>
47 #include <atalk/adouble.h>
48 #include <atalk/logger.h>
49 #ifdef CNID_DB
50 #include <atalk/cnid.h>
51 #endif /* CNID_DB */
52 #include "desktop.h"
53 #include "directory.h"
54 #include "file.h"
55 #include "volume.h"
56 #include "globals.h"
57 #include "filedir.h"
58 #include "fork.h"
59
60
61 struct finderinfo {
62         u_int32_t f_type;
63         u_int32_t creator;
64         u_int16_t attrs;    /* File attributes (high 8 bits)*/
65         u_int16_t label;    /* Label (low 8 bits )*/
66         char reserved[22]; /* Unknown (at least for now...) */
67 };
68
69 typedef char packed_finder[ADEDLEN_FINDERI];
70
71 /* Known attributes:
72  * 0x04 - has a custom icon
73  * 0x20 - name/icon is locked
74  * 0x40 - is invisible
75  * 0x80 - is alias
76  *
77  * Known labels:
78  * 0x02 - project 2
79  * 0x04 - project 1
80  * 0x06 - personal
81  * 0x08 - cool
82  * 0x0a - in progress
83  * 0x0c - hot
84  * 0x0e - essential
85  */
86
87 /* This is our search-criteria structure. */
88 struct scrit {
89         u_int32_t rbitmap;          /* Request bitmap - which values should we check ? */
90         u_int16_t fbitmap, dbitmap; /* file & directory bitmap - which values should we return ? */
91         u_int16_t attr;             /* File attributes */
92         time_t cdate;               /* Creation date */
93         time_t mdate;               /* Last modification date */
94         time_t bdate;               /* Last backup date */
95         u_int32_t pdid;             /* Parent DID */
96     u_int16_t offcnt;           /* Offspring count */
97         struct finderinfo finfo;    /* Finder info */
98         char lname[64];             /* Long name */ 
99         char utf8name[514];         /* UTF8 or UCS2 name */ /* for convert_charset dest_len parameter +2 */
100 };
101
102 /*
103  * Directory tree search is recursive by its nature. But AFP specification
104  * requires FPCatSearch to pause after returning n results and be able to
105  * resume the search later. So we have to do recursive search using flat
106  * (iterative) algorithm and remember all directories to look into in an
107  * stack-like structure. The structure below is one item of directory stack.
108  *
109  */
110 struct dsitem {
111         struct dir *dir; /* Structure describing this directory */
112         int pidx;        /* Parent's dsitem structure index. */
113         int checked;     /* Have we checked this directory ? */
114         int path_len;
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         size_t         l, u;
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         ds->checked = 0;
149         if (pidx >= 0) {
150             l = dstack[pidx].path_len;
151             u = strlen(uname) +1;
152             if (!(ds->path = malloc(l + u + 1) ))
153                         return -1;
154                 memcpy(ds->path, dstack[pidx].path, l);
155                 ds->path[l] = '/';
156                 memcpy(&ds->path[l+1], uname, u);
157                 ds->path_len = l +u;
158         }
159         else {
160             ds->path = strdup(uname);
161                 ds->path_len = strlen(uname);
162         }
163         return 0;
164 }
165
166 /* Removes checked items from top of directory stack. Returns index of the first unchecked elements or -1. */
167 static int reducestack(void)
168 {
169         int r;
170         if (save_cidx != -1) {
171                 r = save_cidx;
172                 save_cidx = -1;
173                 return r;
174         }
175
176         while (dsidx > 0) {
177                 if (dstack[dsidx-1].checked) {
178                         dsidx--;
179                         free(dstack[dsidx].path);
180                 } else
181                         return dsidx - 1;
182         } 
183         return -1;
184
185
186 /* Clears directory stack. */
187 static void clearstack(void) 
188 {
189         save_cidx = -1;
190         while (dsidx > 0) {
191                 dsidx--;
192                 free(dstack[dsidx].path);
193         }
194
195
196 /* Looks up for an opened adouble structure, opens resource fork of selected file. 
197  * FIXME What about noadouble?
198 */
199 static struct adouble *adl_lkup(struct vol *vol, struct path *path, struct adouble *adp)
200 {
201         static struct adouble ad;
202         
203         struct ofork *of;
204         int isdir;
205         
206         if (adp)
207             return adp;
208             
209         isdir  = S_ISDIR(path->st.st_mode);
210
211         if (!isdir && (of = of_findname(path))) {
212                 adp = of->of_ad;
213         } else {
214                 ad_init(&ad, vol->v_adouble, vol->v_ad_options);
215                 adp = &ad;
216         } 
217
218     if ( ad_metadata( path->u_name, ((isdir) ? ADFLAGS_DIR : 0), adp) < 0 ) {
219         adp = NULL; /* FIXME without resource fork adl_lkup will be call again */
220     }
221     
222         return adp;     
223 }
224
225 /* -------------------- */
226 static struct finderinfo *unpack_buffer(struct finderinfo *finfo, char *buffer)
227 {
228         memcpy(&finfo->f_type,  buffer +FINDERINFO_FRTYPEOFF, sizeof(finfo->f_type));
229         memcpy(&finfo->creator, buffer +FINDERINFO_FRCREATOFF, sizeof(finfo->creator));
230         memcpy(&finfo->attrs,   buffer +FINDERINFO_FRFLAGOFF, sizeof(finfo->attrs));
231         memcpy(&finfo->label,   buffer +FINDERINFO_FRFLAGOFF, sizeof(finfo->label));
232         finfo->attrs &= 0xff00; /* high 8 bits */
233         finfo->label &= 0xff;   /* low 8 bits */
234
235         return finfo;
236 }
237
238 /* -------------------- */
239 static struct finderinfo *
240 unpack_finderinfo(struct vol *vol, struct path *path, struct adouble **adp, struct finderinfo *finfo)
241 {
242         packed_finder  buf;
243         void           *ptr;
244         
245     *adp = adl_lkup(vol, path, *adp);
246         ptr = get_finderinfo(vol, path->u_name, *adp, &buf);
247         return unpack_buffer(finfo, ptr);
248 }
249
250 /* -------------------- */
251 #define CATPBIT_PARTIAL 31
252 /* Criteria checker. This function returns a 2-bit value. */
253 /* bit 0 means if checked file meets given criteria. */
254 /* bit 1 means if it is a directory and we should descent into it. */
255 /* uname - UNIX name 
256  * fname - our fname (translated to UNIX)
257  * cidx - index in directory stack
258  */
259 static int crit_check(struct vol *vol, struct path *path) {
260         int result = 0;
261         u_int16_t attr, flags = CONV_PRECOMPOSE;
262         struct finderinfo *finfo = NULL, finderinfo;
263         struct adouble *adp = NULL;
264         time_t c_date, b_date;
265         u_int32_t ac_date, ab_date;
266         static char convbuf[514]; /* for convert_charset dest_len parameter +2 */
267         size_t len;
268
269         if (S_ISDIR(path->st.st_mode)) {
270                 if (!c1.dbitmap)
271                         return 0;
272         }
273         else {
274                 if (!c1.fbitmap)
275                         return 0;
276
277                 /* compute the Mac name 
278                  * first try without id (it's slow to find it)
279                  * An other option would be to call get_id in utompath but 
280                  * we need to pass parent dir
281                 */
282         if (!(path->m_name = utompath(vol, path->u_name, 0 , utf8_encoding()) )) {
283                 /*retry with the right id */
284        
285                 cnid_t id;
286                 
287                 adp = adl_lkup(vol, path, adp);
288                 id = get_id(vol, adp, &path->st, path->d_dir->d_did, path->u_name, strlen(path->u_name));
289                 if (!id) {
290                         /* FIXME */
291                         return 0;
292                 }
293                 /* save the id for getfilparm */
294                 path->id = id;
295                 if (!(path->m_name = utompath(vol, path->u_name, id , utf8_encoding()))) {
296                         return 0;
297                 }
298         }
299         }
300                 
301         /* Kind of optimization: 
302          * -- first check things we've already have - filename
303          * -- last check things we get from ad_open()
304          * FIXME strmcp strstr (icase)
305          */
306
307         /* Check for filename */
308         if ((c1.rbitmap & (1<<DIRPBIT_LNAME))) { 
309                 if ( (size_t)(-1) == (len = convert_string(vol->v_maccharset, CH_UCS2, path->m_name, -1, convbuf, 512)) )
310                         goto crit_check_ret;
311
312                 if ((c1.rbitmap & (1<<CATPBIT_PARTIAL))) {
313                         if (strcasestr_w( (ucs2_t*) convbuf, (ucs2_t*) c1.lname) == NULL)
314                                 goto crit_check_ret;
315                 } else
316                         if (strcasecmp_w((ucs2_t*) convbuf, (ucs2_t*) c1.lname) != 0)
317                                 goto crit_check_ret;
318         } 
319         
320         if ((c1.rbitmap & (1<<FILPBIT_PDINFO))) { 
321                 if ( (size_t)(-1) == (len = convert_charset( CH_UTF8_MAC, CH_UCS2, CH_UTF8, path->m_name, strlen(path->m_name), convbuf, 512, &flags))) {
322                         goto crit_check_ret;
323                 }
324
325                 if (c1.rbitmap & (1<<CATPBIT_PARTIAL)) {
326                         if (strcasestr_w((ucs2_t *) convbuf, (ucs2_t*)c1.utf8name) == NULL)
327                                 goto crit_check_ret;
328                 } else
329                         if (strcasecmp_w((ucs2_t *)convbuf, (ucs2_t*)c1.utf8name) != 0)
330                                 goto crit_check_ret;
331         } 
332
333
334         /* FIXME */
335         if ((unsigned)c2.mdate > 0x7fffffff)
336                 c2.mdate = 0x7fffffff;
337         if ((unsigned)c2.cdate > 0x7fffffff)
338                 c2.cdate = 0x7fffffff;
339         if ((unsigned)c2.bdate > 0x7fffffff)
340                 c2.bdate = 0x7fffffff;
341
342         /* Check for modification date */
343         if ((c1.rbitmap & (1<<DIRPBIT_MDATE))) {
344                 if (path->st.st_mtime < c1.mdate || path->st.st_mtime > c2.mdate)
345                         goto crit_check_ret;
346         }
347         
348         /* Check for creation date... */
349         if ((c1.rbitmap & (1<<DIRPBIT_CDATE))) {
350                 c_date = path->st.st_mtime;
351                 adp = adl_lkup(vol, path, adp);
352                 if (adp && ad_getdate(adp, AD_DATE_CREATE, &ac_date) >= 0)
353                     c_date = AD_DATE_TO_UNIX(ac_date);
354
355                 if (c_date < c1.cdate || c_date > c2.cdate)
356                         goto crit_check_ret;
357         }
358
359         /* Check for backup date... */
360         if ((c1.rbitmap & (1<<DIRPBIT_BDATE))) {
361                 b_date = path->st.st_mtime;
362                 adp = adl_lkup(vol, path, adp);
363                 if (adp && ad_getdate(adp, AD_DATE_BACKUP, &ab_date) >= 0)
364                         b_date = AD_DATE_TO_UNIX(ab_date);
365
366                 if (b_date < c1.bdate || b_date > c2.bdate)
367                         goto crit_check_ret;
368         }
369                                 
370         /* Check attributes */
371         if ((c1.rbitmap & (1<<DIRPBIT_ATTR)) && c2.attr != 0) {
372                 if ((adp = adl_lkup(vol, path, adp))) {
373                         ad_getattr(adp, &attr);
374                         if ((attr & c2.attr) != c1.attr)
375                                 goto crit_check_ret;
376                 } else 
377                         goto crit_check_ret;
378         }               
379
380         /* Check file type ID */
381         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.f_type != 0) {
382             finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
383                 if (finfo->f_type != c1.finfo.f_type)
384                         goto crit_check_ret;
385         }
386         
387         /* Check creator ID */
388         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.creator != 0) {
389                 if (!finfo) {
390                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
391                 }
392                 if (finfo->creator != c1.finfo.creator)
393                         goto crit_check_ret;
394         }
395                 
396         /* Check finder info attributes */
397         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.attrs != 0) {
398                 if (!finfo) {
399                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
400                 }
401
402                 if ((finfo->attrs & c2.finfo.attrs) != c1.finfo.attrs)
403                         goto crit_check_ret;
404         }
405         
406         /* Check label */
407         if ((c1.rbitmap & (1<<DIRPBIT_FINFO)) && c2.finfo.label != 0) {
408                 if (!finfo) {
409                         finfo = unpack_finderinfo(vol, path, &adp, &finderinfo);
410                 }
411                 if ((finfo->label & c2.finfo.label) != c1.finfo.label)
412                         goto crit_check_ret;
413         }       
414         /* FIXME: Attributes check ! */
415         
416         /* All criteria are met. */
417         result |= 1;
418 crit_check_ret:
419         if (adp != NULL)
420                 ad_close_metadata(adp);
421         return result;
422 }  
423
424 /* ------------------------------ */
425 static int rslt_add ( struct vol *vol, struct path *path, char **buf, int ext)
426 {
427
428         char            *p = *buf;
429         int             ret;
430         size_t          tbuf =0;
431         u_int16_t       resultsize;
432         int             isdir = S_ISDIR(path->st.st_mode); 
433
434         /* Skip resultsize */
435         if (ext) {
436                 p += sizeof(resultsize); 
437         }
438         else {
439                 p++;
440         }
441         *p++ = isdir ? FILDIRBIT_ISDIR : FILDIRBIT_ISFILE;    /* IsDir ? */
442
443         if (ext) {
444                 *p++ = 0;                  /* Pad */
445         }
446         
447         if ( isdir ) {
448         ret = getdirparams(vol, c1.dbitmap, path, path->d_dir, p , &tbuf ); 
449         }
450         else {
451             /* FIXME slow if we need the file ID, we already know it, done ? */
452                 ret = getfilparams ( vol, c1.fbitmap, path, path->d_dir, p, &tbuf);
453         }
454
455         if ( ret != AFP_OK )
456                 return 0;
457
458         /* Make sure entry length is even */
459         if ((tbuf & 1)) {
460            *p++ = 0;
461            tbuf++;
462         }
463
464         if (ext) {
465                 resultsize = htons(tbuf);
466                 memcpy ( *buf, &resultsize, sizeof(resultsize) );
467                 *buf += tbuf + 4;
468         }
469         else {
470                 **buf = tbuf;
471                 *buf += tbuf + 2;
472         }
473
474         return 1;
475
476         
477 #define VETO_STR \
478         "./../.AppleDouble/.AppleDB/Network Trash Folder/TheVolumeSettingsFolder/TheFindByContentFolder/.AppleDesktop/.Parent/"
479
480 /* This function performs search. It is called directly from afp_catsearch 
481  * vol - volume we are searching on ...
482  * dir - directory we are starting from ...
483  * c1, c2 - search criteria
484  * rmatches - maximum number of matches we can return
485  * pos - position we've stopped recently
486  * rbuf - output buffer
487  * rbuflen - output buffer length
488  */
489 #define NUM_ROUNDS 200
490 static int catsearch(struct vol *vol, struct dir *dir,  
491                      int rmatches, u_int32_t *pos, char *rbuf, u_int32_t *nrecs, int *rsize, int ext)
492 {
493         int cidx, r;
494         struct dirent *entry;
495         int result = AFP_OK;
496         int ccr;
497     struct path path;
498         char *vpath = vol->v_path;
499         char *rrbuf = rbuf;
500     time_t start_time;
501     int num_rounds = NUM_ROUNDS;
502     int cached;
503     int cwd = -1;
504         
505         if (*pos != 0 && *pos != cur_pos) {
506                 result = AFPERR_CATCHNG;
507                 goto catsearch_end;
508         }
509
510         /* FIXME: Category "offspring count ! */
511
512         /* So we are beginning... */
513     start_time = time(NULL);
514
515         /* We need to initialize all mandatory structures/variables and change working directory appropriate... */
516         if (*pos == 0) {
517                 clearstack();
518                 if (dirpos != NULL) {
519                         closedir(dirpos);
520                         dirpos = NULL;
521                 } 
522                 
523                 if (addstack(vpath, dir, -1) == -1) {
524                         result = AFPERR_MISC;
525                         goto catsearch_end;
526                 }
527                 /* FIXME: Sometimes DID is given by client ! (correct this one above !) */
528         }
529
530         /* Save current path */
531     if ((cwd = open(".", O_RDONLY)) < 0) {
532         result = AFPERR_MISC;
533         goto catsearch_end;
534     }
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                         memset(&path, 0, sizeof(path));
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(vol, 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 (cwd != -1) {
656         if ((fchdir(cwd)) != 0) {
657             LOG(log_debug, logtype_afpd, "error chdiring back: %s", strerror(errno));        
658         }
659         close(cwd);
660     }
661         return result;
662 } /* catsearch() */
663
664 /* -------------------------- */
665 static int catsearch_afp(AFPObj *obj _U_, char *ibuf, size_t ibuflen,
666                   char *rbuf, size_t *rbuflen, int ext)
667 {
668     struct vol *vol;
669     u_int16_t   vid;
670     u_int16_t   spec_len;
671     u_int32_t   rmatches, reserved;
672     u_int32_t   catpos[4];
673     u_int32_t   pdid = 0;
674     int ret, rsize;
675     u_int32_t nrecs = 0;
676     unsigned char *spec1, *spec2, *bspec1, *bspec2;
677     size_t      len;
678     u_int16_t   namelen;
679     u_int16_t   flags;
680     char        tmppath[256];
681
682     *rbuflen = 0;
683
684     /* min header size */
685     if (ibuflen < 32) {
686         return AFPERR_PARAM;
687     }
688
689     memset(&c1, 0, sizeof(c1));
690     memset(&c2, 0, sizeof(c2));
691
692     ibuf += 2;
693     memcpy(&vid, ibuf, sizeof(vid));
694     ibuf += sizeof(vid);
695
696     if ((vol = getvolbyvid(vid)) == NULL) {
697         return AFPERR_PARAM;
698     }
699     
700     memcpy(&rmatches, ibuf, sizeof(rmatches));
701     rmatches = ntohl(rmatches);
702     ibuf += sizeof(rmatches); 
703
704     /* FIXME: (rl) should we check if reserved == 0 ? */
705     ibuf += sizeof(reserved);
706
707     memcpy(catpos, ibuf, sizeof(catpos));
708     ibuf += sizeof(catpos);
709
710     memcpy(&c1.fbitmap, ibuf, sizeof(c1.fbitmap));
711     c1.fbitmap = c2.fbitmap = ntohs(c1.fbitmap);
712     ibuf += sizeof(c1.fbitmap);
713
714     memcpy(&c1.dbitmap, ibuf, sizeof(c1.dbitmap));
715     c1.dbitmap = c2.dbitmap = ntohs(c1.dbitmap);
716     ibuf += sizeof(c1.dbitmap);
717
718     memcpy(&c1.rbitmap, ibuf, sizeof(c1.rbitmap));
719     c1.rbitmap = c2.rbitmap = ntohl(c1.rbitmap);
720     ibuf += sizeof(c1.rbitmap);
721
722     if (! (c1.fbitmap || c1.dbitmap)) {
723             return AFPERR_BITMAP;
724     }
725
726     if ( ext) {
727         memcpy(&spec_len, ibuf, sizeof(spec_len));
728         spec_len = ntohs(spec_len);
729     }
730     else {
731         /* with catsearch only name and parent id are allowed */
732         c1.fbitmap &= (1<<FILPBIT_LNAME) | (1<<FILPBIT_PDID);
733         c1.dbitmap &= (1<<DIRPBIT_LNAME) | (1<<DIRPBIT_PDID);
734         spec_len = *(unsigned char*)ibuf;
735     }
736
737     /* Parse file specifications */
738     spec1 = (unsigned char*)ibuf;
739     spec2 = (unsigned char*)ibuf + spec_len + 2;
740
741     spec1 += 2; 
742     spec2 += 2; 
743
744     bspec1 = spec1;
745     bspec2 = spec2;
746     /* File attribute bits... */
747     if (c1.rbitmap & (1 << FILPBIT_ATTR)) {
748             memcpy(&c1.attr, spec1, sizeof(c1.attr));
749             spec1 += sizeof(c1.attr);
750             memcpy(&c2.attr, spec2, sizeof(c2.attr));
751             spec2 += sizeof(c1.attr);
752     }
753
754     /* Parent DID */
755     if (c1.rbitmap & (1 << FILPBIT_PDID)) {
756             memcpy(&c1.pdid, spec1, sizeof(pdid));
757             spec1 += sizeof(c1.pdid);
758             memcpy(&c2.pdid, spec2, sizeof(pdid));
759             spec2 += sizeof(c2.pdid);
760     } /* FIXME: PDID - do we demarshall this argument ? */
761
762     /* Creation date */
763     if (c1.rbitmap & (1 << FILPBIT_CDATE)) {
764             memcpy(&c1.cdate, spec1, sizeof(c1.cdate));
765             spec1 += sizeof(c1.cdate);
766             c1.cdate = AD_DATE_TO_UNIX(c1.cdate);
767             memcpy(&c2.cdate, spec2, sizeof(c2.cdate));
768             spec2 += sizeof(c1.cdate);
769             ibuf += sizeof(c1.cdate);;
770             c2.cdate = AD_DATE_TO_UNIX(c2.cdate);
771     }
772
773     /* Modification date */
774     if (c1.rbitmap & (1 << FILPBIT_MDATE)) {
775             memcpy(&c1.mdate, spec1, sizeof(c1.mdate));
776             c1.mdate = AD_DATE_TO_UNIX(c1.mdate);
777             spec1 += sizeof(c1.mdate);
778             memcpy(&c2.mdate, spec2, sizeof(c2.mdate));
779             c2.mdate = AD_DATE_TO_UNIX(c2.mdate);
780             spec2 += sizeof(c1.mdate);
781     }
782     
783     /* Backup date */
784     if (c1.rbitmap & (1 << FILPBIT_BDATE)) {
785             memcpy(&c1.bdate, spec1, sizeof(c1.bdate));
786             spec1 += sizeof(c1.bdate);
787             c1.bdate = AD_DATE_TO_UNIX(c1.bdate);
788             memcpy(&c2.bdate, spec2, sizeof(c2.bdate));
789             spec2 += sizeof(c2.bdate);
790             c1.bdate = AD_DATE_TO_UNIX(c2.bdate);
791     }
792
793     /* Finder info */
794     if (c1.rbitmap & (1 << FILPBIT_FINFO)) {
795         packed_finder buf;
796         
797             memcpy(buf, spec1, sizeof(buf));
798             unpack_buffer(&c1.finfo, buf);      
799             spec1 += sizeof(buf);
800
801             memcpy(buf, spec2, sizeof(buf));
802             unpack_buffer(&c2.finfo, buf);
803             spec2 += sizeof(buf);
804     } /* Finder info */
805
806     if ((c1.rbitmap & (1 << DIRPBIT_OFFCNT)) != 0) {
807         /* Offspring count - only directories */
808                 if (c1.fbitmap == 0) {
809                 memcpy(&c1.offcnt, spec1, sizeof(c1.offcnt));
810                 spec1 += sizeof(c1.offcnt);
811                 c1.offcnt = ntohs(c1.offcnt);
812                 memcpy(&c2.offcnt, spec2, sizeof(c2.offcnt));
813                 spec2 += sizeof(c2.offcnt);
814                 c2.offcnt = ntohs(c2.offcnt);
815                 }
816                 else if (c1.dbitmap == 0) {
817                         /* ressource fork length */
818                 }
819                 else {
820                 return AFPERR_BITMAP;  /* error */
821                 }
822     } /* Offspring count/ressource fork length */
823
824     /* Long name */
825     if (c1.rbitmap & (1 << FILPBIT_LNAME)) {
826         /* Get the long filename */     
827                 memcpy(tmppath, bspec1 + spec1[1] + 1, (bspec1 + spec1[1])[0]);
828                 tmppath[(bspec1 + spec1[1])[0]]= 0;
829                 len = convert_string ( vol->v_maccharset, CH_UCS2, tmppath, -1, c1.lname, sizeof(c1.lname));
830         if (len == (size_t)(-1))
831             return AFPERR_PARAM;
832
833 #if 0   
834                 /* FIXME: do we need it ? It's always null ! */
835                 memcpy(c2.lname, bspec2 + spec2[1] + 1, (bspec2 + spec2[1])[0]);
836                 c2.lname[(bspec2 + spec2[1])[0]]= 0;
837 #endif
838     }
839         /* UTF8 Name */
840     if (c1.rbitmap & (1 << FILPBIT_PDINFO)) {
841
842                 /* offset */
843                 memcpy(&namelen, spec1, sizeof(namelen));
844                 namelen = ntohs (namelen);
845
846                 spec1 = bspec1+namelen+4; /* Skip Unicode Hint */
847
848                 /* length */
849                 memcpy(&namelen, spec1, sizeof(namelen));
850                 namelen = ntohs (namelen);
851                 if (namelen > 255)  /* Safeguard */
852                         namelen = 255;
853
854                 memcpy (c1.utf8name, spec1+2, namelen);
855                 c1.utf8name[(namelen+1)] =0;
856
857                 /* convert charset */
858                 flags = CONV_PRECOMPOSE;
859                 len = convert_charset(CH_UTF8_MAC, CH_UCS2, CH_UTF8, c1.utf8name, namelen, c1.utf8name, 512, &flags);
860         if (len == (size_t)(-1))
861             return AFPERR_PARAM;
862     }
863     
864     /* Call search */
865     *rbuflen = 24;
866     ret = catsearch(vol, vol->v_dir, rmatches, &catpos[0], rbuf+24, &nrecs, &rsize, ext);
867     memcpy(rbuf, catpos, sizeof(catpos));
868     rbuf += sizeof(catpos);
869
870     c1.fbitmap = htons(c1.fbitmap);
871     memcpy(rbuf, &c1.fbitmap, sizeof(c1.fbitmap));
872     rbuf += sizeof(c1.fbitmap);
873
874     c1.dbitmap = htons(c1.dbitmap);
875     memcpy(rbuf, &c1.dbitmap, sizeof(c1.dbitmap));
876     rbuf += sizeof(c1.dbitmap);
877
878     nrecs = htonl(nrecs);
879     memcpy(rbuf, &nrecs, sizeof(nrecs));
880     rbuf += sizeof(nrecs);
881     *rbuflen += rsize;
882
883     return ret;
884 } /* catsearch_afp */
885
886 /* -------------------------- */
887 int afp_catsearch (AFPObj *obj, char *ibuf, size_t ibuflen,
888                   char *rbuf, size_t *rbuflen)
889 {
890         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 0);
891 }
892
893
894 int afp_catsearch_ext (AFPObj *obj, char *ibuf, size_t ibuflen,
895                   char *rbuf, size_t *rbuflen)
896 {
897         return catsearch_afp( obj, ibuf, ibuflen, rbuf, rbuflen, 1);
898 }
899
900 /* FIXME: we need a clean separation between afp stubs and 'real' implementation */
901 /* (so, all buffer packing/unpacking should be done in stub, everything else 
902    should be done in other functions) */