]> arthur.barton.de Git - netatalk.git/blob - etc/afpd/fork.h
Fixes
[netatalk.git] / etc / afpd / fork.h
1 /*
2  * Copyright (c) 1990,1993 Regents of The University of Michigan.
3  * All Rights Reserved.  See COPYRIGHT.
4  */
5
6 #ifndef AFPD_FORK_H
7 #define AFPD_FORK_H 1
8
9 #include <stdio.h>
10 #include <sys/cdefs.h>
11
12 #include <netatalk/endian.h>
13 #include <atalk/adouble.h>
14 #include "volume.h"
15 #include "directory.h"
16
17 struct file_key {
18     dev_t       dev;
19     ino_t       inode;
20 };
21
22 struct ofork {
23     struct file_key     key;
24     struct adouble      *of_ad;
25     struct vol          *of_vol;
26     cnid_t              of_did;
27     uint16_t            of_refnum;
28     int                 of_flags;
29     struct ofork        **prevp, *next;
30 //    struct ofork        *of_d_prev, *of_d_next;
31 };
32
33 #define OPENFORK_DATA   (0)
34 #define OPENFORK_RSCS   (1<<7)
35
36 #define OPENACC_RD  (1<<0)
37 #define OPENACC_WR  (1<<1)
38 #define OPENACC_DRD (1<<4)
39 #define OPENACC_DWR (1<<5)
40
41 /* ofork.of_flags bits */
42 #define AFPFORK_OPEN    (1<<0)
43 #define AFPFORK_RSRC    (1<<1)
44 #define AFPFORK_DATA    (1<<2)
45 #define AFPFORK_DIRTY   (1<<3)
46 #define AFPFORK_ACCRD   (1<<4)
47 #define AFPFORK_ACCWR   (1<<5)
48 #define AFPFORK_ACCMASK (AFPFORK_ACCRD | AFPFORK_ACCWR)
49
50 #ifdef AFS
51 extern struct ofork *writtenfork;
52 #endif
53
54 #define of_name(a) (a)->of_ad->ad_m_name
55 /* in ofork.c */
56 extern struct ofork *of_alloc    (struct vol *, struct dir *,
57                                                       char *, u_int16_t *, const int,
58                                                       struct adouble *,
59                                                       struct stat *);
60 extern void         of_dealloc   (struct ofork *);
61 extern struct ofork *of_find     (const u_int16_t);
62 extern struct ofork *of_findname (struct path *);
63 extern int          of_rename    (const struct vol *,
64                                           struct ofork *,
65                                           struct dir *, const char *,
66                                           struct dir *, const char *);
67 extern int          of_flush     (const struct vol *);
68 extern void         of_pforkdesc (FILE *);
69 extern int          of_stat      (struct path *);
70 extern int          of_statdir   (struct vol *vol, struct path *);
71 extern int          of_closefork (struct ofork *ofork);
72 extern void         of_closevol  (const struct vol *vol);
73 extern void         of_close_all_forks(void);
74 extern struct adouble *of_ad     (const struct vol *, struct path *, struct adouble *);
75
76 #ifdef HAVE_ATFUNCS
77 extern struct ofork *of_findnameat(int dirfd, struct path *path);
78 extern int of_fstatat(int dirfd, struct path *path);
79 #endif  /* HAVE_ATFUNCS */
80
81
82 /* in fork.c */
83 extern int          flushfork    (struct ofork *);
84 extern int          getforkmode  (struct adouble *, int , int );
85
86 /* FP functions */
87 int afp_openfork (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
88 int afp_bytelock (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
89 int afp_getforkparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
90 int afp_setforkparams (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
91 int afp_read (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
92 int afp_write (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
93 int afp_flushfork (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
94 int afp_flush (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
95 int afp_closefork (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
96
97 int afp_bytelock_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
98 int afp_read_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
99 int afp_write_ext (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen); 
100 int afp_syncfork (AFPObj *obj, char *ibuf, size_t ibuflen, char *rbuf,  size_t *rbuflen);
101 #endif