]> arthur.barton.de Git - netatalk.git/blob - include/atalk/dsi.h
Better handling of connection errors and disconnect state
[netatalk.git] / include / atalk / dsi.h
1 /*
2  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
3  * All rights reserved.
4  */
5
6 #ifndef _ATALK_DSI_H 
7 #define _ATALK_DSI_H
8
9 #include <sys/cdefs.h>
10 #include <sys/types.h>
11 #include <sys/time.h>
12 #include <signal.h>
13
14 #include <netinet/in.h>
15 #include <atalk/afp.h>
16 #include <atalk/server_child.h>
17 #include <netatalk/endian.h>
18
19 #ifdef __OpenBSD__
20 #include <sys/socket.h>
21 #endif
22
23 /* What a DSI packet looks like:
24  0                               32
25  |-------------------------------|
26  |flags  |command| requestID     |
27  |-------------------------------|
28  |error code/enclosed data offset|
29  |-------------------------------|
30  |total data length              |
31  |-------------------------------|
32  |reserved field                 |
33  |-------------------------------|
34
35  CONVENTION: anything with a dsi_ prefix is kept in network byte order.
36 */
37
38 /* these need to be kept in sync w/ AFPTRANS_* in <atalk/afp.h>. 
39  * convention: AFPTRANS_* = (1 << DSI_*) */
40 typedef enum {
41   DSI_MIN = 1,
42   DSI_TCPIP = 1,
43   DSI_MAX = 1
44 } dsi_proto;
45
46 #define DSI_BLOCKSIZ 16
47 struct dsi_block {
48   u_int8_t dsi_flags;       /* packet type: request or reply */
49   u_int8_t dsi_command;     /* command */
50   u_int16_t dsi_requestID;  /* request ID */
51   u_int32_t dsi_code;       /* error code or data offset */
52   u_int32_t dsi_len;        /* total data length */
53   u_int32_t dsi_reserved;   /* reserved field */
54 };
55
56 #define DSI_CMDSIZ        8192 
57 #define DSI_DATASIZ       8192
58 /* child and parent processes might interpret a couple of these
59  * differently. */
60 typedef struct DSI {
61   dsi_proto protocol;
62   struct dsi_block header;
63   struct sockaddr_storage server, client;
64   
65   struct itimerval timer;
66
67   int      in_write;      /* in the middle of writing multiple packets,
68                              signal handlers can't write to the socket */
69   int      msg_request;   /* pending message to the client */
70   int      down_request;  /* pending SIGUSR1 down in 5 mn */
71
72   u_int32_t attn_quantum, datasize, server_quantum;
73   u_int16_t serverID, clientID;
74   char      *status;
75   u_int8_t  commands[DSI_CMDSIZ], data[DSI_DATASIZ];
76   size_t statuslen;
77   size_t datalen, cmdlen;
78   off_t  read_count, write_count;
79 //  int asleep; /* client won't reply AFP 0x7a ? */
80     uint32_t flags;             /* DSI flags like DSI_SLEEPING, DSI_DISCONNECTED */
81   /* noreply = send reply? */
82   char noreply;
83   const char *program; 
84   int socket, serversock;
85
86   /* protocol specific open/close, send/receive
87    * send/receive fill in the header and use dsi->commands.
88    * write/read just write/read data */
89   pid_t  (*proto_open)(struct DSI *);
90   void   (*proto_close)(struct DSI *);
91
92   /* url registered with slpd */
93 #ifdef USE_SRVLOC
94   char srvloc_url[512];
95 #endif 
96
97 #ifdef USE_ZEROCONF
98   int zeroconf_registered;
99 #endif
100
101   /* buffer for OSX deadlock */
102   char *buffer;
103   char *start;
104   char *eof;
105   char *end;
106   int  maxsize;
107
108 } DSI;
109   
110 /* DSI flags */
111 #define DSIFL_REQUEST    0x00
112 #define DSIFL_REPLY      0x01
113 #define DSIFL_MAX        0x01
114
115 /* DSI session options */
116 #define DSIOPT_SERVQUANT 0x00   /* server request quantum */
117 #define DSIOPT_ATTNQUANT 0x01   /* attention quantum */
118 #define DSIOPT_REPLCSIZE 0x02   /* AFP replaycache size supported by the server (that's us) */
119
120 /* DSI Commands */
121 #define DSIFUNC_CLOSE   1       /* DSICloseSession */
122 #define DSIFUNC_CMD     2       /* DSICommand */
123 #define DSIFUNC_STAT    3       /* DSIGetStatus */
124 #define DSIFUNC_OPEN    4       /* DSIOpenSession */
125 #define DSIFUNC_TICKLE  5       /* DSITickle */
126 #define DSIFUNC_WRITE   6       /* DSIWrite */
127 #define DSIFUNC_ATTN    8       /* DSIAttention */
128 #define DSIFUNC_MAX     8       /* largest command */
129
130 /* DSI Error codes: most of these aren't used. */
131 #define DSIERR_OK       0x0000
132 #define DSIERR_BADVERS  0xfbd6
133 #define DSIERR_BUFSMALL 0xfbd5
134 #define DSIERR_NOSESS   0xfbd4
135 #define DSIERR_NOSERV   0xfbd3
136 #define DSIERR_PARM     0xfbd2
137 #define DSIERR_SERVBUSY 0xfbd1
138 #define DSIERR_SESSCLOS 0xfbd0
139 #define DSIERR_SIZERR   0xfbcf
140 #define DSIERR_TOOMANY  0xfbce
141 #define DSIERR_NOACK    0xfbcd
142
143 /* server and client quanta */
144 #define DSI_DEFQUANT        2           /* default attention quantum size */
145 #define DSI_SERVQUANT_MAX   0xffffffff  /* server quantum */
146 #define DSI_SERVQUANT_MIN   32000       /* minimum server quantum */
147 #define DSI_SERVQUANT_DEF   0x0004A2E0L /* default server quantum */
148
149 /* default port number */
150 #define DSI_AFPOVERTCP_PORT 548
151
152 /* DSI session State flags */
153 #define DSI_DATA             (1 << 0) /* we have received a DSI command */
154 #define DSI_RUNNING          (1 << 1) /* we have received a AFP command */
155 #define DSI_SLEEPING         (1 << 2) /* we're sleeping after FPZzz */
156 #define DSI_DISCONNECTED     (1 << 3) /* we're in diconnected state after a socket error */
157 #define DSI_DIE              (1 << 4) /* SIGUSR1, going down in 5 minutes */
158
159 /* basic initialization: dsi_init.c */
160 extern DSI *dsi_init (const dsi_proto /*protocol*/,
161                           const char * /*program*/, 
162                           const char * /*host*/, const char * /*address*/,
163                           const char * /*port*/, const int /*proxy*/,
164                           const u_int32_t /* server quantum */);
165 extern void dsi_setstatus (DSI *, char *, const size_t);
166
167 /* in dsi_getsess.c */
168 extern afp_child_t *dsi_getsession (DSI *, server_child *, const int);
169 extern void dsi_kill (int);
170
171
172 /* DSI Commands: individual files */
173 extern void dsi_opensession (DSI *);
174 extern int  dsi_attention (DSI *, AFPUserBytes);
175 extern int  dsi_cmdreply (DSI *, const int);
176 extern int dsi_tickle (DSI *);
177 extern void dsi_getstatus (DSI *);
178 extern void dsi_close (DSI *);
179 extern void dsi_sleep (DSI *, const int );
180
181 #define DSI_NOWAIT 1
182 /* low-level stream commands -- in dsi_stream.c */
183 extern ssize_t dsi_stream_write (DSI *, void *, const size_t, const int mode);
184 extern size_t dsi_stream_read (DSI *, void *, const size_t);
185 extern int dsi_stream_send (DSI *, void *, size_t);
186 extern int dsi_stream_receive (DSI *, void *, const size_t, size_t *);
187
188 #ifdef WITH_SENDFILE
189 extern ssize_t dsi_stream_read_file(DSI *, int, off_t off, const size_t len);
190 #endif
191
192 /* client writes -- dsi_write.c */
193 extern size_t dsi_writeinit (DSI *, void *, const size_t);
194 extern size_t dsi_write (DSI *, void *, const size_t);
195 extern void   dsi_writeflush (DSI *);
196 #define dsi_wrtreply(a,b)  dsi_cmdreply(a,b)
197
198 /* client reads -- dsi_read.c */
199 extern ssize_t dsi_readinit (DSI *, void *, const size_t, const size_t,
200                                  const int);
201 extern ssize_t dsi_read (DSI *, void *, const size_t);
202 extern void dsi_readdone (DSI *);
203
204 /* some useful macros */
205 #define dsi_serverID(x)   ((x)->serverID++)
206 #define dsi_send(x)       do { \
207     (x)->header.dsi_len = htonl((x)->cmdlen); \
208     dsi_stream_send((x), (x)->commands, (x)->cmdlen); \
209 } while (0)
210 #define dsi_receive(x)    (dsi_stream_receive((x), (x)->commands, \
211                                               DSI_CMDSIZ, &(x)->cmdlen))
212 #endif /* atalk/dsi.h */