Imported Upstream version 2.5.2p1
[debian/amanda] / common-src / security.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: security.h,v 1.17 2006/05/26 14:00:58 martinea Exp $
28  *
29  * security api
30  */
31 #ifndef SECURITY_H
32 #define SECURITY_H
33
34 #include "packet.h"
35
36 struct security_handle;
37
38 /*
39  * This is a type that gets passed to the security_recvpkt() and
40  * security_connect() callbacks.
41  * It details what the status of this callback is.
42  */
43 typedef enum { S_OK, S_TIMEOUT, S_ERROR } security_status_t;
44
45 /*
46  * This structure defines a security driver.  This driver abstracts
47  * common security actions behind a set of function pointers.  Macros
48  * mask this.
49  */
50 typedef struct security_driver {
51     /*
52      * The name of this driver, eg, "BSD", "KRB4", etc...
53      */
54     const char *name;
55
56     /*
57      * Connects a security handle, for this driver to a remote
58      * host.
59      */
60     void (*connect)(const char *,
61         char *(*)(char *, void *),
62         void (*)(void *, struct security_handle *, security_status_t),
63         void *, void *);
64
65     /*
66      * This form sets up a callback that returns new handles as
67      * they are received.  It takes an input and output file descriptor.
68      */
69     void (*accept)(const struct security_driver *, int, int,
70                         void (*)(struct security_handle *, pkt_t *));
71
72     /*
73      * Frees up handles allocated by the previous
74      */
75     void (*close)(void *);
76
77     /*
78      * This transmits a packet after adding the security information
79      * Returns 0 on success, negative on error.
80      */
81     ssize_t (*sendpkt)(void *, pkt_t *);
82
83     /*
84      * This creates an event in the event handler for receiving pkt_t's
85      * on a security_handle.  The given callback with the given arg
86      * will be called when the driver determines that it has data
87      * for that handle.  The last argument is a timeout, in seconds.
88      * This may be -1 to indicate no timeout.
89      *
90      * If there was an error or timeout, this will be indicated in
91      * the status argument.
92      * 
93      * Only one recvpkt request can exist per handle.
94      */
95     void (*recvpkt)(void *, void (*)(void *, pkt_t *,
96         security_status_t), void *, int);
97
98     /*
99      * Cancel an outstanding recvpkt request on a handle.
100      */
101     void (*recvpkt_cancel)(void *);
102
103     /*
104      * Get a stream given a security handle
105      */
106     void *(*stream_server)(void *);
107
108     /*
109      * Accept a stream created by stream_server
110      */
111     int (*stream_accept)(void *);
112
113     /*
114      * Get a stream and connect it to a remote given a security handle
115      * and a stream id.
116      */
117     void *(*stream_client)(void *, int);
118
119     /*
120      * Close a stream opened with stream_server or stream_client
121      */
122     void (*stream_close)(void *);
123
124     /*
125      * Authenticate a stream.
126      */
127     int (*stream_auth)(void *);
128
129     /*
130      * Return a numeric id for a stream.
131      */
132     int (*stream_id)(void *);
133
134     /*
135      * Write to a stream.
136      */
137     int (*stream_write)(void *, const void *, size_t);
138
139     /*
140      * Read asyncronously from a stream.  Only one request can exist
141      * per stream.
142      */
143     void (*stream_read)(void *, void (*)(void *, void *, ssize_t), void *);
144
145     /*
146      * Read syncronously from a stream.
147      */
148     ssize_t (*stream_read_sync)(void *, void **);
149
150     /*
151      * Cancel a stream read request
152      */
153     void (*stream_read_cancel)(void *);
154
155     void (*close_connection)(void *, char *);
156
157     int (*data_encrypt)(void *, void *, ssize_t, void **, ssize_t *);
158     int (*data_decrypt)(void *, void *, ssize_t, void **, ssize_t *);
159 } security_driver_t;
160
161 /*
162  * This structure is a handle to a connection to a host for transmission
163  * of protocol packets (pkt_t's).  The underlying security type defines
164  * the actual protocol and transport.
165  *
166  * This handle is reference counted so that it can be used inside of
167  * security streams after it has been closed by our callers.
168  */
169 typedef struct security_handle {
170     const security_driver_t *driver;
171     char *error;
172 } security_handle_t;
173
174 /*
175  * This structure is a handle to a stream connection to a host for
176  * transmission of random data such as dumps or index data.
177  */
178 typedef struct security_stream {
179     const security_driver_t *driver;
180     char *error;
181 } security_stream_t;
182
183
184 const security_driver_t *security_getdriver(const char *);
185 void security_handleinit(security_handle_t *, const security_driver_t *);
186 void security_streaminit(security_stream_t *, const security_driver_t *);
187
188 /* const char *security_geterror(security_handle_t *); */
189 #define security_geterror(handle)       ((handle)->error)
190 void security_seterror(security_handle_t *, const char *, ...)
191     __attribute__ ((format (printf, 2, 3)));
192
193
194 /* void security_connect(const security_driver_t *, const char *,
195     void (*)(void *, security_handle_t *, security_status_t), void *, void *); */
196 #define security_connect(driver, hostname, conf_fn, fn, arg, datap)     \
197     (*(driver)->connect)(hostname, conf_fn, fn, arg, datap)
198 /* void security_accept(const security_driver_t *, int, int,
199     void (*)(security_handle_t *, pkt_t *)); */
200 #define security_accept(driver, in, out, fn)    \
201     (*(driver)->accept)(driver, in, out, fn)
202 void security_close(security_handle_t *);
203
204 /* int security_sendpkt(security_handle_t *, const pkt_t *); */
205 #define security_sendpkt(handle, pkt)           \
206     (*(handle)->driver->sendpkt)(handle, pkt)
207
208 /* void security_recvpkt(security_handle_t *,
209     void (*)(void *, pkt_t *, security_status_t), void *, int); */
210 #define security_recvpkt(handle, fn, arg, timeout)      \
211     (*(handle)->driver->recvpkt)(handle, fn, arg, timeout)
212
213 /* void security_recvpkt_cancel(security_handle_t *); */
214 #define security_recvpkt_cancel(handle)         \
215     (*(handle)->driver->recvpkt_cancel)(handle)
216
217 /* const char *security_stream_geterror(security_stream_t *); */
218 #define security_stream_geterror(stream)        ((stream)->error)
219 void security_stream_seterror(security_stream_t *, const char *, ...)
220     __attribute__ ((format (printf, 2, 3)));
221
222 /* security_stream_t *security_stream_server(security_handle_t *); */
223 #define security_stream_server(handle)  \
224     (*(handle)->driver->stream_server)(handle)
225
226 /* int security_stream_accept(security_stream_t *); */
227 #define security_stream_accept(stream)          \
228     (*(stream)->driver->stream_accept)(stream)
229
230 /* security_stream_t *security_stream_client(security_handle_t *, int); */
231 #define security_stream_client(handle, id)      \
232     (*(handle)->driver->stream_client)(handle, id)
233
234 void security_stream_close(security_stream_t *);
235
236 /* int security_stream_auth(security_stream_t *); */
237 #define security_stream_auth(stream)            \
238     (*(stream)->driver->stream_auth)(stream)
239
240 /* int security_stream_id(security_stream_t *); */
241 #define security_stream_id(stream)              \
242     (*(stream)->driver->stream_id)(stream)
243
244 /* int security_stream_write(security_stream_t *, const void *, size_t); */
245 #define security_stream_write(stream, buf, size)        \
246     (*(stream)->driver->stream_write)(stream, buf, size)
247
248 /* void security_stream_read(security_stream_t *,
249     void (*)(void *, void *, size_t), void *); */
250 #define security_stream_read(stream, fn, arg)           \
251     (*(stream)->driver->stream_read)(stream, fn, arg)
252
253 /* void security_stream_read_sync(security_stream_t *, void *); */
254 #define security_stream_read_sync(stream, buf)          \
255     (*(stream)->driver->stream_read_sync)(stream, buf)
256
257 /* void security_stream_read_cancel(security_stream_t *); */
258 #define security_stream_read_cancel(stream)             \
259     (*(stream)->driver->stream_read_cancel)(stream)
260
261 #define security_close_connection(handle, hostname) \
262     (*(handle)->driver->close_connection)(handle, hostname)
263 #endif  /* SECURITY_H */