00b97d903dafc812b6666f3b23c55513f1381bcb
[oweals/gnunet.git] / src / include / gnunet_connection_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_connection_lib.h
23  * @brief basic, low-level TCP networking interface
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_CONNECTION_LIB_H
27 #define GNUNET_CONNECTION_LIB_H
28
29 #ifdef __cplusplus
30 extern "C"
31 {
32 #if 0                           /* keep Emacsens' auto-indent happy */
33 }
34 #endif
35 #endif
36
37 #include "gnunet_network_lib.h"
38 #include "gnunet_scheduler_lib.h"
39 #include "gnunet_time_lib.h"
40
41 /**
42  * Timeout we use on TCP connect before trying another
43  * result from the DNS resolver.  Actual value used
44  * is this value divided by the number of address families.
45  * Default is 5s.
46  */
47 #define GNUNET_CONNECTION_CONNECT_RETRY_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
48
49 /**
50  * @brief handle for a network connection
51  */
52 struct GNUNET_CONNECTION_Handle;
53
54
55 /**
56  * Credentials for UNIX domain sockets.
57  */
58 struct GNUNET_CONNECTION_Credentials
59 {
60   /**
61    * UID of the other end of the connection.
62    */
63   uid_t uid;
64
65   /**
66    * GID of the other end of the connection.
67    */
68   gid_t gid;
69 };
70
71
72 /**
73  * Function to call for access control checks.
74  *
75  * @param cls closure
76  * @param ucred credentials, if available, otherwise NULL
77  * @param addr address
78  * @param addrlen length of address
79  * @return GNUNET_YES to allow, GNUNET_NO to deny, GNUNET_SYSERR
80  *   for unknown address family (will be denied).
81  */
82 typedef int (*GNUNET_CONNECTION_AccessCheck) (void *cls,
83                                               const struct
84                                               GNUNET_CONNECTION_Credentials *
85                                               ucred,
86                                               const struct sockaddr * addr,
87                                               socklen_t addrlen);
88
89
90 /**
91  * Callback function for data received from the network.  Note that
92  * both "available" and "err" would be 0 if the read simply timed out.
93  *
94  * @param cls closure
95  * @param buf pointer to received data
96  * @param available number of bytes availabe in "buf",
97  *        possibly 0 (on errors)
98  * @param addr address of the sender
99  * @param addrlen size of addr
100  * @param errCode value of errno (on errors receiving)
101  */
102 typedef void (*GNUNET_CONNECTION_Receiver) (void *cls,
103                                             const void *buf,
104                                             size_t available,
105                                             const struct sockaddr * addr,
106                                             socklen_t addrlen, int errCode);
107
108 /**
109  * Set the persist option on this connection handle.  Indicates
110  * that the underlying socket or fd should never really be closed.
111  * Used for indicating process death.
112  *
113  * @param sock the connection to set persistent
114  */
115 void GNUNET_CONNECTION_persist_ (struct GNUNET_CONNECTION_Handle *sock);
116
117 /**
118  * Disable the "CORK" feature for communication with the given socket,
119  * forcing the OS to immediately flush the buffer on transmission
120  * instead of potentially buffering multiple messages.  Essentially
121  * reduces the OS send buffers to zero.
122  * Used to make sure that the last messages sent through the connection
123  * reach the other side before the process is terminated.
124  *
125  * @param sock the connection to make flushing and blocking
126  * @return GNUNET_OK on success
127  */
128 int GNUNET_CONNECTION_disable_corking (struct GNUNET_CONNECTION_Handle *sock);
129
130
131 /**
132  * Create a socket handle by boxing an existing OS socket.  The OS
133  * socket should henceforth be no longer used directly.
134  * GNUNET_socket_destroy will close it.
135  *
136  * @param osSocket existing socket to box
137  * @return the boxed socket handle
138  */
139 struct GNUNET_CONNECTION_Handle
140     *GNUNET_CONNECTION_create_from_existing (struct
141                                              GNUNET_NETWORK_Handle *osSocket);
142
143
144 /**
145  * Create a socket handle by accepting on a listen socket.  This
146  * function may block if the listen socket has no connection ready.
147  *
148  * @param access function to use to check if access is allowed
149  * @param access_cls closure for access
150  * @param lsock listen socket
151  * @return the socket handle, NULL on error (for example, access refused)
152  */
153 struct GNUNET_CONNECTION_Handle
154     *GNUNET_CONNECTION_create_from_accept (GNUNET_CONNECTION_AccessCheck
155                                            access, void *access_cls,
156                                            struct GNUNET_NETWORK_Handle *lsock);
157
158
159 /**
160  * Create a socket handle by (asynchronously) connecting to a host.
161  * This function returns immediately, even if the connection has not
162  * yet been established.  This function only creates TCP connections.
163  *
164  * @param cfg configuration to use
165  * @param hostname name of the host to connect to
166  * @param port port to connect to
167  * @return the socket handle
168  */
169 struct GNUNET_CONNECTION_Handle
170     *GNUNET_CONNECTION_create_from_connect (const struct
171                                             GNUNET_CONFIGURATION_Handle *cfg,
172                                             const char *hostname,
173                                             uint16_t port);
174
175
176 /**
177  * Create a socket handle by connecting to a UNIX domain service.
178  * This function returns immediately, even if the connection has not
179  * yet been established.  This function only creates UNIX connections.
180  *
181  * @param cfg configuration to use
182  * @param unixpath path to connect to)
183  * @return the socket handle, NULL on systems without UNIX support
184  */
185 struct GNUNET_CONNECTION_Handle
186     *GNUNET_CONNECTION_create_from_connect_to_unixpath (const struct
187                                                         GNUNET_CONFIGURATION_Handle
188                                                         *cfg,
189                                                         const char *unixpath);
190
191
192
193
194 /**
195  * Create a socket handle by (asynchronously) connecting to a host.
196  * This function returns immediately, even if the connection has not
197  * yet been established.  This function only creates TCP connections.
198  *
199  * @param af_family address family to use
200  * @param serv_addr server address
201  * @param addrlen length of server address
202  * @return the socket handle
203  */
204 struct GNUNET_CONNECTION_Handle
205     *GNUNET_CONNECTION_create_from_sockaddr (int af_family,
206                                              const struct sockaddr
207                                              *serv_addr, socklen_t addrlen);
208
209 /**
210  * Check if socket is valid (no fatal errors have happened so far).
211  * Note that a socket that is still trying to connect is considered
212  * valid.
213  *
214  * @param sock socket to check
215  * @return GNUNET_YES if valid, GNUNET_NO otherwise
216  */
217 int GNUNET_CONNECTION_check (struct GNUNET_CONNECTION_Handle *sock);
218
219
220 /**
221  * Obtain the network address of the other party.
222  *
223  * @param sock the client to get the address for
224  * @param addr where to store the address
225  * @param addrlen where to store the length of the address
226  * @return GNUNET_OK on success
227  */
228 int GNUNET_CONNECTION_get_address (struct
229                                    GNUNET_CONNECTION_Handle
230                                    *sock, void **addr, size_t * addrlen);
231
232
233 /**
234  * Close the socket and free associated resources. Pending
235  * transmissions may be completed or dropped depending on the
236  * arguments.   If a receive call is pending and should 
237  * NOT be completed, 'GNUNET_CONNECTION_receive_cancel'
238  * should be called explicitly first.
239  *
240  * @param sock socket to destroy
241  * @param finish_pending_write should pending writes be completed or aborted?
242  *        (this applies to transmissions where the data has already been
243  *        read from the application; all other transmissions should be
244  *        aborted using 'GNUNET_CONNECTION_notify_transmit_ready_cancel').
245  */
246 void
247 GNUNET_CONNECTION_destroy (struct GNUNET_CONNECTION_Handle *sock,
248                            int finish_pending_write);
249
250
251 /**
252  * Receive data from the given socket.  Note that this function will
253  * call "receiver" asynchronously using the scheduler.  It will
254  * "immediately" return.  Note that there MUST only be one active
255  * receive call per socket at any given point in time (so do not
256  * call receive again until the receiver callback has been invoked).
257  *
258  * @param sock socket handle
259  * @param max maximum number of bytes to read
260  * @param timeout maximum amount of time to wait
261  * @param receiver function to call with received data
262  * @param receiver_cls closure for receiver
263  */
264 void
265 GNUNET_CONNECTION_receive (struct GNUNET_CONNECTION_Handle
266                            *sock, size_t max,
267                            struct GNUNET_TIME_Relative timeout,
268                            GNUNET_CONNECTION_Receiver receiver,
269                            void *receiver_cls);
270
271
272 /**
273  * Cancel receive job on the given socket.  Note that the
274  * receiver callback must not have been called yet in order
275  * for the cancellation to be valid.
276  *
277  * @param sock socket handle
278  * @return closure of the original receiver callback closure
279  */
280 void *GNUNET_CONNECTION_receive_cancel (struct GNUNET_CONNECTION_Handle *sock);
281
282
283 /**
284  * Function called to notify a client about the socket
285  * begin ready to queue more data.  "buf" will be
286  * NULL and "size" zero if the socket was closed for
287  * writing in the meantime.
288  *
289  * @param cls closure
290  * @param size number of bytes available in buf
291  * @param buf where the callee should write the message
292  * @return number of bytes written to buf
293  */
294 typedef size_t (*GNUNET_CONNECTION_TransmitReadyNotify) (void *cls,
295                                                          size_t size,
296                                                          void *buf);
297
298
299 /**
300  * Opaque handle that can be used to cancel
301  * a transmit-ready notification.
302  */
303 struct GNUNET_CONNECTION_TransmitHandle;
304
305 /**
306  * Ask the socket to call us once the specified number of bytes
307  * are free in the transmission buffer.  May call the notify
308  * method immediately if enough space is available.  Note that
309  * this function will abort if "size" is greater than
310  * GNUNET_SERVER_MAX_MESSAGE_SIZE.
311  *
312  * Note that "notify" will be called either when enough
313  * buffer space is available OR when the socket is destroyed.
314  * The size parameter given to notify is guaranteed to be
315  * larger or equal to size if the buffer is ready, or zero
316  * if the socket was destroyed (or at least closed for
317  * writing).  Finally, any time before 'notify' is called, a
318  * client may call "notify_transmit_ready_cancel" to cancel
319  * the transmission request.
320  *
321  * Only one transmission request can be scheduled at the same
322  * time.  Notify will be run with the same scheduler priority
323  * as that of the caller.
324  *
325  * @param sock socket
326  * @param size number of bytes to send
327  * @param timeout after how long should we give up (and call
328  *        notify with buf NULL and size 0)?
329  * @param notify function to call when buffer space is available
330  * @param notify_cls closure for notify
331  * @return non-NULL if the notify callback was queued,
332  *         NULL if we are already going to notify someone else (busy)
333  */
334 struct GNUNET_CONNECTION_TransmitHandle
335     *GNUNET_CONNECTION_notify_transmit_ready (struct
336                                               GNUNET_CONNECTION_Handle
337                                               *sock, size_t size,
338                                               struct
339                                               GNUNET_TIME_Relative
340                                               timeout,
341                                               GNUNET_CONNECTION_TransmitReadyNotify
342                                               notify, void *notify_cls);
343
344
345 /**
346  * Cancel the specified transmission-ready
347  * notification.
348  *
349  * @param h handle for notification to cancel
350  */
351 void
352 GNUNET_CONNECTION_notify_transmit_ready_cancel (struct
353                                                 GNUNET_CONNECTION_TransmitHandle
354                                                 *h);
355
356
357 /**
358  * Configure this connection to ignore shutdown signals.
359  *
360  * @param sock socket handle
361  * @param do_ignore GNUNET_YES to ignore, GNUNET_NO to restore default
362  */
363 void
364 GNUNET_CONNECTION_ignore_shutdown (struct GNUNET_CONNECTION_Handle *sock,
365                                    int do_ignore);
366
367
368 #if 0                           /* keep Emacsens' auto-indent happy */
369 {
370 #endif
371 #ifdef __cplusplus
372 }
373 #endif
374
375
376 /* ifndef GNUNET_CONNECTION_LIB_H */
377 #endif
378 /* end of gnunet_connection_lib.h */