]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/directory.h
Merge remote-tracking branch 'remotes/origin/branch-netatalk-2-1'
[netatalk.git] / etc / afpd / directory.h
1 /*
2  * Copyright (c) 1990,1991 Regents of The University of Michigan.
3  * All Rights Reserved.
4  *
5  * Permission to use, copy, modify, and distribute this software and
6  * its documentation for any purpose and without fee is hereby granted,
7  * provided that the above copyright notice appears in all copies and
8  * that both that copyright notice and this permission notice appear
9  * in supporting documentation, and that the name of The University
10  * of Michigan not be used in advertising or publicity pertaining to
11  * distribution of the software without specific, written prior
12  * permission. This software is supplied as is without expressed or
13  * implied warranties of any kind.
14  *
15  *      Research Systems Unix Group
16  *      The University of Michigan
17  *      c/o Mike Clark
18  *      535 W. William Street
19  *      Ann Arbor, Michigan
20  *      +1-313-763-0525
21  *      netatalk@itd.umich.edu
22  */
23
24 #ifndef AFPD_DIRECTORY_H
25 #define AFPD_DIRECTORY_H 1
26
27 #include <sys/cdefs.h>
28 #include <sys/types.h>
29 /*#include <sys/stat.h>*/ /* including it here causes some confusion */
30 #include <netatalk/endian.h>
31 #include <dirent.h>
32
33 /* sys/types.h usually snarfs in major/minor macros. if they don't
34  * try this file. */
35 #ifndef major
36 #include <sys/sysmacros.h>
37 #endif
38
39 #include <atalk/directory.h>
40
41 #include "globals.h"
42 #include "volume.h"
43
44 #define DIRF_FSMASK     (3<<0)
45 #define DIRF_NOFS       (0<<0)
46 #define DIRF_AFS        (1<<0)
47 #define DIRF_UFS        (2<<0)
48
49 #define DIRF_OFFCNT    (1<<4) /* offsprings count is valid */
50 #define DIRF_CNID          (1<<5) /* renumerate id */
51
52 #define AFPDIR_READ     (1<<0)
53
54 /* directory bits */
55 #define DIRPBIT_ATTR    0
56 #define DIRPBIT_PDID    1
57 #define DIRPBIT_CDATE   2
58 #define DIRPBIT_MDATE   3
59 #define DIRPBIT_BDATE   4
60 #define DIRPBIT_FINFO   5
61 #define DIRPBIT_LNAME   6
62 #define DIRPBIT_SNAME   7
63 #define DIRPBIT_DID     8
64 #define DIRPBIT_OFFCNT  9
65 #define DIRPBIT_UID     10
66 #define DIRPBIT_GID     11
67 #define DIRPBIT_ACCESS  12
68 #define DIRPBIT_PDINFO  13         /* ProDOS Info */
69 #define DIRPBIT_UNIXPR  15
70
71 #define FILDIRBIT_ISDIR        (1 << 7) /* is a directory */
72 #define FILDIRBIT_ISFILE       (0)      /* is a file */
73
74 /* file/directory ids. what a mess. we scramble things in a vain attempt
75  * to get something meaningful */
76 #ifndef AFS
77
78 #if 0
79 #define CNID_XOR(a)  (((a) >> 16) ^ (a))
80 #define CNID_DEV(a)   ((((CNID_XOR(major((a)->st_dev)) & 0xf) << 3) | \
81         (CNID_XOR(minor((a)->st_dev)) & 0x7)) << 24)
82 #define CNID_INODE(a) (((a)->st_ino ^ (((a)->st_ino & 0xff000000) >> 8)) \
83                                        & 0x00ffffff)
84 #define CNID_FILE(a)  (((a) & 0x1) << 31)
85 #define CNID(a,b)     (CNID_DEV(a) | CNID_INODE(a) | CNID_FILE(b))
86 #endif
87
88 #define CNID(a,b)     ((a)->st_ino & 0xffffffff)
89
90 #else /* AFS */
91 #define CNID(a,b)     (((a)->st_ino & 0x7fffffff) | CNID_FILE(b))
92 #endif /* AFS */
93
94 struct maccess {
95     u_char      ma_user;
96     u_char      ma_world;
97     u_char      ma_group;
98     u_char      ma_owner;
99 };
100
101 #define AR_USEARCH      (1<<0)
102 #define AR_UREAD        (1<<1)
103 #define AR_UWRITE       (1<<2)
104 #define AR_UOWN         (1<<7)
105
106 q_t *invalid_dircache_entries;
107
108 typedef int (*dir_loop)(struct dirent *, char *, void *);
109
110 extern void        dir_free_invalid_q(void);
111 extern struct dir  *dir_new(const char *mname, const char *uname, const struct vol *,
112                             cnid_t pdid, cnid_t did, bstring fullpath, time_t ctime);
113 extern void        dir_free (struct dir *);
114 extern struct dir  *dir_add(struct vol *, const struct dir *, struct path *, int);
115 extern int         dir_modify(const struct vol *vol, struct dir *dir, cnid_t pdid, cnid_t did,
116                               const char *new_mname, const char *new_uname, bstring pdir_fullpath);
117 extern int         dir_remove(const struct vol *vol, struct dir *dir);
118 extern struct dir  *dirlookup (const struct vol *, cnid_t);
119 extern struct dir *dirlookup_bypath(const struct vol *vol, const char *path);
120
121 extern int         movecwd (const struct vol *, struct dir *);
122 extern struct path *cname (struct vol *, struct dir *, char **);
123
124 extern int         deletecurdir (struct vol *);
125 extern mode_t      mtoumode (struct maccess *);
126 extern void        utommode (struct stat *, struct maccess *);
127 extern int         getdirparams (const struct vol *, u_int16_t, struct path *,
128                                  struct dir *, char *, size_t *);
129
130 extern int         setdirparams(struct vol *, struct path *, u_int16_t, char *);
131 extern int         renamedir(const struct vol *, int, char *, char *, struct dir *,
132                              struct dir *, char *);
133 extern int         path_error(struct path *, int error);
134 extern void        setdiroffcnt(struct dir *dir, struct stat *st,  u_int32_t count);
135 extern int         dirreenumerate(struct dir *dir, struct stat *st);
136 extern int         for_each_dirent(const struct vol *, char *, dir_loop , void *);
137 extern int         check_access(char *name , int mode);
138 extern int         file_access(struct path *path, int mode);
139 extern int         netatalk_unlink (const char *name);
140 extern int         caseenumerate (const struct vol *, struct path *, struct dir *);
141
142 /* from enumerate.c */
143 extern char        *check_dirent (const struct vol *, char *);
144
145 /* FP functions */
146 int afp_createdir (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
147 int afp_opendir (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
148 int afp_setdirparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
149 int afp_closedir (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
150 int afp_mapid (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
151 int afp_mapname (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
152 int afp_syncdir (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
153
154 /* from enumerate.c */
155 int afp_enumerate (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
156 int afp_enumerate_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
157 int afp_enumerate_ext2 (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
158
159 /* from catsearch.c */
160 int afp_catsearch (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
161 int afp_catsearch_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
162
163 #endif