1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
|
/*
This file is part of GNUnet.
Copyright (C) 2009-2013 GNUnet e.V.
GNUnet is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 3, or (at your
option) any later version.
GNUnet is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNUnet; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
* @author Christian Grothoff
*
* @file
* Library for building GNUnet network servers
* @defgroup server Server library
* Library for building GNUnet network servers
*
* Provides functions for a server that communicates with clients.
*
* @see [Documentation](https://gnunet.org/ipc)
*
* @{
*/
#ifndef GNUNET_SERVER_LIB_H
#define GNUNET_SERVER_LIB_H
#ifdef __cplusplus
extern "C"
{
#if 0 /* keep Emacsens' auto-indent happy */
}
#endif
#endif
#include "gnunet_common.h"
#include "gnunet_connection_lib.h"
/**
* Largest supported message (to be precise, one byte more
* than the largest possible message, so tests involving
* this value should check for messages being smaller than
* this value).
*/
#define GNUNET_SERVER_MAX_MESSAGE_SIZE 65536
/**
* Smallest supported message.
*/
#define GNUNET_SERVER_MIN_BUFFER_SIZE sizeof (struct GNUNET_MessageHeader)
/**
* @brief handle for a server
*/
struct GNUNET_SERVER_Handle;
/**
* @brief opaque handle for a client of the server
*/
struct GNUNET_SERVER_Client;
/**
* @brief opaque handle server returns for aborting transmission to a client.
*/
struct GNUNET_SERVER_TransmitHandle;
/**
* Functions with this signature are called whenever a message is
* received.
*
* @param cls closure
* @param client identification of the client
* @param message the actual message
*/
typedef void
(*GNUNET_SERVER_MessageCallback) (void *cls,
struct GNUNET_SERVER_Client *client,
const struct GNUNET_MessageHeader *message);
/**
* Message handler. Each struct specifies how to handle on particular
* type of message received.
*/
struct GNUNET_SERVER_MessageHandler
{
/**
* Function to call for messages of "type".
*/
GNUNET_SERVER_MessageCallback callback;
/**
* Closure argument for @e callback.
*/
void *callback_cls;
/**
* Type of the message this handler covers.
*/
uint16_t type;
/**
* Expected size of messages of this type. Use 0 for
* variable-size. If non-zero, messages of the given
* type will be discarded (and the connection closed)
* if they do not have the right size.
*/
uint16_t expected_size;
};
/**
* Create a new server.
*
* @param access_cb function for access control
* @param access_cb_cls closure for @a access_cb
* @param lsocks NULL-terminated array of listen sockets
* @param idle_timeout after how long should we timeout idle connections?
* @param require_found if #GNUNET_YES, connections sending messages of unknown type
* will be closed
* @return handle for the new server, NULL on error
* (typically, "port" already in use)
*/
struct GNUNET_SERVER_Handle *
GNUNET_SERVER_create_with_sockets (GNUNET_CONNECTION_AccessCheck access_cb,
void *access_cb_cls,
struct GNUNET_NETWORK_Handle **lsocks,
struct GNUNET_TIME_Relative idle_timeout,
int require_found);
/**
* Create a new server.
*
* @param access_cb function for access control
* @param access_cb_cls closure for @a access_cb
* @param server_addr address toes listen on (including port), NULL terminated array
* @param socklen lengths of respective @a server_addr
* @param idle_timeout after how long should we timeout idle connections?
* @param require_found if #GNUNET_YES, connections sending messages of unknown type
* will be closed
* @return handle for the new server, NULL on error
* (typically, "port" already in use)
*/
struct GNUNET_SERVER_Handle *
GNUNET_SERVER_create (GNUNET_CONNECTION_AccessCheck access_cb,
void *access_cb_cls,
struct sockaddr *const *server_addr,
const socklen_t * socklen,
struct GNUNET_TIME_Relative idle_timeout,
int require_found);
/**
* Suspend accepting connections from the listen socket temporarily.
* Resume activity using #GNUNET_SERVER_resume.
*
* @param server server to stop accepting connections.
*/
void
GNUNET_SERVER_suspend (struct GNUNET_SERVER_Handle *server);
/**
* Resume accepting connections from the listen socket.
*
* @param server server to resume accepting connections.
*/
void
GNUNET_SERVER_resume (struct GNUNET_SERVER_Handle *server);
/**
* Stop the listen socket and get ready to shutdown the server once
* only clients marked using #GNUNET_SERVER_client_mark_monitor are
* left.
*
* @param server server to stop listening on
*/
void
GNUNET_SERVER_stop_listening (struct GNUNET_SERVER_Handle *server);
/**
* Free resources held by this server.
*
* @param server server to destroy
*/
void
GNUNET_SERVER_destroy (struct GNUNET_SERVER_Handle *server);
/**
* Add additional handlers to an existing server.
*
* @param server the server to add handlers to
* @param handlers array of message handlers for
* incoming messages; the last entry must
* have "NULL" for the "callback"; multiple
* entries for the same type are allowed,
* they will be called in order of occurence.
* These handlers can be removed later;
* the handlers array must exist until removed
* (or server is destroyed).
*/
void
GNUNET_SERVER_add_handlers (struct GNUNET_SERVER_Handle *server,
const struct GNUNET_SERVER_MessageHandler *handlers);
/**
* Notify us when the server has enough space to transmit
* a message of the given size to the given client.
*
* @param client client to transmit message to
* @param size requested amount of buffer space
* @param timeout after how long should we give up (and call
* notify with buf NULL and size 0)?
* @param callback function to call when space is available
* @param callback_cls closure for @a callback
* @return non-NULL if the notify callback was queued; can be used
* to cancel the request using
* #GNUNET_SERVER_notify_transmit_ready_cancel.
* NULL if we are already going to notify someone else (busy)
*/
struct GNUNET_SERVER_TransmitHandle *
GNUNET_SERVER_notify_transmit_ready (struct GNUNET_SERVER_Client *client,
size_t size,
struct GNUNET_TIME_Relative timeout,
GNUNET_CONNECTION_TransmitReadyNotify callback,
void *callback_cls);
/**
* Abort transmission request.
*
* @param th request to abort
*/
void
GNUNET_SERVER_notify_transmit_ready_cancel (struct GNUNET_SERVER_TransmitHandle *th);
/**
* Set the 'monitor' flag on this client. Clients which have been
* marked as 'monitors' won't prevent the server from shutting down
* once #GNUNET_SERVER_stop_listening has been invoked. The idea is
* that for "normal" clients we likely want to allow them to process
* their requests; however, monitor-clients are likely to 'never'
* disconnect during shutdown and thus will not be considered when
* determining if the server should continue to exist after
* #GNUNET_SERVER_destroy has been called.
*
* @param client the client to set the 'monitor' flag on
*/
void
GNUNET_SERVER_client_mark_monitor (struct GNUNET_SERVER_Client *client);
/**
* Set the persistent flag on this client, used to setup client
* connection to only be killed when the process of the service it's
* connected to is actually dead. This API is used during shutdown
* signalling within ARM, and it is not expected that typical users
* of the API would need this function.
*
* @param client the client to set the persistent flag on
*/
void
GNUNET_SERVER_client_persist_ (struct GNUNET_SERVER_Client *client);
/**
* Resume receiving from this client, we are done processing the
* current request. This function must be called from within each
* #GNUNET_SERVER_MessageCallback (or its respective continuations).
*
* @param client client we were processing a message of
* @param success #GNUNET_OK to keep the connection open and
* continue to receive
* #GNUNET_NO to close the connection (normal behavior)
* #GNUNET_SYSERR to close the connection (signal
* serious error)
*/
void
GNUNET_SERVER_receive_done (struct GNUNET_SERVER_Client *client,
int success);
/**
* Change the timeout for a particular client. Decreasing the timeout
* may not go into effect immediately (only after the previous timeout
* times out or activity happens on the socket).
*
* @param client the client to update
* @param timeout new timeout for activities on the socket
*/
void
GNUNET_SERVER_client_set_timeout (struct GNUNET_SERVER_Client *client,
struct GNUNET_TIME_Relative timeout);
/**
* Return user context associated with the given client.
* Note: you should probably use the macro (call without the underscore).
*
* @param client client to query
* @param size number of bytes in user context struct (for verification only)
* @return pointer to user context
*/
void *
GNUNET_SERVER_client_get_user_context_ (struct GNUNET_SERVER_Client *client,
size_t size);
/**
* Set user context to be associated with the given client.
* Note: you should probably use the macro (call without the underscore).
*
* @param client client to query
* @param ptr pointer to user context
* @param size number of bytes in user context struct (for verification only)
*/
void
GNUNET_SERVER_client_set_user_context_ (struct GNUNET_SERVER_Client *client,
void *ptr,
size_t size);
/**
* Return user context associated with the given client.
*
* @param client client to query
* @param type expected return type (i.e. 'struct Foo')
* @return pointer to user context of type 'type *'.
*/
#define GNUNET_SERVER_client_get_user_context(client,type) \
(type *) GNUNET_SERVER_client_get_user_context_ (client, sizeof (type))
/**
* Set user context to be associated with the given client.
*
* @param client client to query
* @param value pointer to user context
*/
#define GNUNET_SERVER_client_set_user_context(client,value) \
GNUNET_SERVER_client_set_user_context_ (client, value, sizeof (*value))
/**
* Disable the warning the server issues if a message is not acknowledged
* in a timely fashion. Use this call if a client is intentionally delayed
* for a while. Only applies to the current message.
*
* @param client client for which to disable the warning
*/
void
GNUNET_SERVER_disable_receive_done_warning (struct GNUNET_SERVER_Client
*client);
/**
* Inject a message into the server, pretend it came
* from the specified client. Delivery of the message
* will happen instantly (if a handler is installed;
* otherwise the call does nothing).
*
* @param server the server receiving the message
* @param sender the "pretended" sender of the message
* can be NULL!
* @param message message to transmit
* @return #GNUNET_OK if the message was OK and the
* connection can stay open
* #GNUNET_SYSERR if the connection to the
* client should be shut down
*/
int
GNUNET_SERVER_inject (struct<
|