lsquic.h revision 03e6b668
1/* Copyright (c) 2017 - 2019 LiteSpeed Technologies Inc.  See LICENSE. */
2#ifndef __LSQUIC_H__
3#define __LSQUIC_H__
4
5/**
6 * @file
7 * public API for using liblsquic is defined in this file.
8 *
9 */
10
11#include <stdarg.h>
12#include <lsquic_types.h>
13#ifndef WIN32
14#include <sys/uio.h>
15#include <time.h>
16#else
17#include <vc_compat.h>
18#endif
19
20struct sockaddr;
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26#define LSQUIC_MAJOR_VERSION 2
27#define LSQUIC_MINOR_VERSION 6
28#define LSQUIC_PATCH_VERSION 0
29
30/**
31 * Engine flags:
32 */
33
34/** Server mode */
35#define LSENG_SERVER (1 << 0)
36
37/** Treat stream 3 as headers stream and, in general, behave like the
38 *  regular QUIC.
39 */
40#define LSENG_HTTP  (1 << 1)
41
42#define LSENG_HTTP_SERVER (LSENG_SERVER|LSENG_HTTP)
43
44/**
45 * This is a list of QUIC versions that we know of.  List of supported
46 * versions is in LSQUIC_SUPPORTED_VERSIONS.
47 */
48enum lsquic_version
49{
50
51    /** Q035.  This is the first version to be supported by LSQUIC. */
52    /* Support for this version has been removed.  The comment remains to
53     * document the changes.
54     */
55
56    /*
57     * Q037.  This version is like Q035, except the way packet hashes are
58     * generated is different for clients and servers.  In addition, new
59     * option NSTP (no STOP_WAITING frames) is rumored to be supported at
60     * some point in the future.
61     */
62    /* Support for this version has been removed.  The comment remains to
63     * document the changes.
64     */
65
66    /*
67     * Q038.  Based on Q037, supports PADDING frames in the middle of packet
68     * and NSTP (no STOP_WAITING frames) option.
69     */
70    /* Support for this version has been removed.  The comment remains to
71     * document the changes.
72     */
73
74    /**
75     * Q039.  Switch to big endian.  Do not ack acks.  Send connection level
76     * WINDOW_UPDATE frame every 20 sent packets which do not contain
77     * retransmittable frames.
78     */
79    LSQVER_039,
80
81    /*
82     * Q041.  RST_STREAM, ACK and STREAM frames match IETF format.
83     */
84    /* Support for this version has been removed.  The comment remains to
85     * document the changes.
86     */
87
88    /*
89     * Q042.  Receiving overlapping stream data is allowed.
90     */
91    /* Support for this version has been removed.  The comment remains to
92     * document the changes.
93     */
94
95    /**
96     * Q043.  Support for processing PRIORITY frames.  Since this library
97     * has supported PRIORITY frames from the beginning, this version is
98     * exactly the same as LSQVER_042.
99     */
100    LSQVER_043,
101
102    /**
103     * Q044.  IETF-like packet headers are used.  Frames are the same as
104     * in Q043.  Server never includes CIDs in short packets.
105     */
106    /* Support for this version has been removed.  The comment remains to
107     * document the changes.
108     */
109
110    /**
111     * Q046.  Use IETF Draft-17 compatible packet headers.
112     */
113    LSQVER_046,
114
115#if LSQUIC_USE_Q098
116    /**
117     * Q098.  This is a made-up, experimental version used to test version
118     * negotiation.  The choice of 98 is similar to Google's choice of 99
119     * as the "IETF" version.
120     */
121    LSQVER_098,
122#define LSQUIC_EXPERIMENTAL_Q098 (1 << LSQVER_098)
123#else
124#define LSQUIC_EXPERIMENTAL_Q098 0
125#endif
126
127    /**
128     * IETF QUIC Draft-23
129     */
130    LSQVER_ID23,
131
132    /**
133     * IETF QUIC Draft-24
134     */
135    LSQVER_ID24,
136
137    /**
138     * Special version to trigger version negotiation.
139     * [draft-ietf-quic-transport-11], Section 3.
140     */
141    LSQVER_VERNEG,
142
143    N_LSQVER
144};
145
146/**
147 * We currently support versions 39, 43, 46, and IETF Draft-23
148 * @see lsquic_version
149 */
150#define LSQUIC_SUPPORTED_VERSIONS ((1 << N_LSQVER) - 1)
151
152/**
153 * List of versions in which the server never includes CID in short packets.
154 */
155#define LSQUIC_FORCED_TCID0_VERSIONS (1 << LSQVER_046)
156
157#define LSQUIC_EXPERIMENTAL_VERSIONS ( \
158                            (1 << LSQVER_VERNEG) | LSQUIC_EXPERIMENTAL_Q098)
159
160#define LSQUIC_DEPRECATED_VERSIONS 0
161
162#define LSQUIC_GQUIC_HEADER_VERSIONS ((1 << LSQVER_039) | (1 << LSQVER_043))
163
164#define LSQUIC_IETF_VERSIONS ((1 << LSQVER_ID23) | (1 << LSQVER_ID24) \
165                                                    | (1 << LSQVER_VERNEG))
166
167#define LSQUIC_IETF_DRAFT_VERSIONS ((1 << LSQVER_ID23) | (1 << LSQVER_ID24) \
168                                                    | (1 << LSQVER_VERNEG))
169
170enum lsquic_hsk_status
171{
172    /**
173     * The handshake failed.
174     */
175    LSQ_HSK_FAIL,
176    /**
177     * The handshake succeeded without 0-RTT.
178     */
179    LSQ_HSK_OK,
180    /**
181     * The handshake succeeded with 0-RTT.
182     */
183    LSQ_HSK_0RTT_OK,
184    /**
185     * The handshake failed because of 0-RTT (early data rejected).  Retry
186     * the connection without 0-RTT.
187     */
188    LSQ_HSK_0RTT_FAIL,
189};
190
191/**
192 * @struct lsquic_stream_if
193 * @brief The definition of callback functions call by lsquic_stream to
194 * process events.
195 *
196 */
197struct lsquic_stream_if {
198
199    /**
200     * Use @ref lsquic_conn_get_ctx to get back the context.  It is
201     * OK for this function to return NULL.
202     */
203    lsquic_conn_ctx_t *(*on_new_conn)(void *stream_if_ctx,
204                                                        lsquic_conn_t *c);
205
206    /** This is called when our side received GOAWAY frame.  After this,
207     *  new streams should not be created.  The callback is optional.
208     */
209    void (*on_goaway_received)(lsquic_conn_t *c);
210    void (*on_conn_closed)(lsquic_conn_t *c);
211
212    /** If you need to initiate a connection, call lsquic_conn_make_stream().
213     *  This will cause `on_new_stream' callback to be called when appropriate
214     *  (this operation is delayed when maximum number of outgoing streams is
215     *  reached).
216     *
217     *  After `on_close' is called, the stream is no longer accessible.
218     */
219    lsquic_stream_ctx_t *
220         (*on_new_stream)(void *stream_if_ctx, lsquic_stream_t *s);
221
222    void (*on_read)     (lsquic_stream_t *s, lsquic_stream_ctx_t *h);
223    void (*on_write)    (lsquic_stream_t *s, lsquic_stream_ctx_t *h);
224    void (*on_close)    (lsquic_stream_t *s, lsquic_stream_ctx_t *h);
225    /* This callback in only called in client mode */
226    /**
227     * When handshake is completed, this callback is called.  `ok' is set
228     * to true if handshake was successful; otherwise, `ok' is set to
229     * false.
230     *
231     * This callback is optional.
232     */
233    void (*on_hsk_done)(lsquic_conn_t *c, enum lsquic_hsk_status s);
234    /**
235     * When server sends a token in NEW_TOKEN frame, this callback is called.
236     * The callback is optional.
237     */
238    void (*on_new_token)(lsquic_conn_t *c, const unsigned char *token,
239                                                        size_t token_size);
240    /**
241     * This optional callback lets client record information needed to
242     * perform a zero-RTT handshake next time around.
243     */
244    void (*on_zero_rtt_info)(lsquic_conn_t *c, const unsigned char *, size_t);
245};
246
247struct ssl_ctx_st;
248struct ssl_st;
249
250/**
251 * QUIC engine in server role needs access to certificates.  This is
252 * accomplished by providing a callback and a context to the engine
253 * constructor.
254 */
255
256typedef struct ssl_ctx_st * (*lsquic_lookup_cert_f)(
257    void *lsquic_cert_lookup_ctx, const struct sockaddr *local, const char *sni);
258
259/**
260 * Minimum flow control window is set to 16 KB for both client and server.
261 * This means we can send up to this amount of data before handshake gets
262 * completed.
263 */
264#define      LSQUIC_MIN_FCW             (16 * 1024)
265
266/* Each LSQUIC_DF_* value corresponds to es_* entry in
267 * lsquic_engine_settings below.
268 */
269
270/**
271 * By default, deprecated and experimental versions are not included.
272 */
273#define LSQUIC_DF_VERSIONS         (LSQUIC_SUPPORTED_VERSIONS & \
274                                            ~LSQUIC_DEPRECATED_VERSIONS & \
275                                            ~LSQUIC_EXPERIMENTAL_VERSIONS)
276
277#define LSQUIC_DF_CFCW_SERVER      (3 * 1024 * 1024 / 2)
278#define LSQUIC_DF_CFCW_CLIENT      (15 * 1024 * 1024)
279#define LSQUIC_DF_SFCW_SERVER      (1 * 1024 * 1024)
280#define LSQUIC_DF_SFCW_CLIENT      (6 * 1024 * 1024)
281#define LSQUIC_DF_MAX_STREAMS_IN   100
282
283/* IQUIC uses different names for these: */
284#define LSQUIC_DF_INIT_MAX_DATA_SERVER LSQUIC_DF_CFCW_SERVER
285#define LSQUIC_DF_INIT_MAX_DATA_CLIENT LSQUIC_DF_CFCW_CLIENT
286#define LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_SERVER LSQUIC_DF_SFCW_SERVER
287#define LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_SERVER 0
288#define LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_CLIENT 0
289#define LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_LOCAL_CLIENT LSQUIC_DF_SFCW_CLIENT
290#define LSQUIC_DF_INIT_MAX_STREAMS_BIDI LSQUIC_DF_MAX_STREAMS_IN
291#define LSQUIC_DF_INIT_MAX_STREAMS_UNI_CLIENT 100
292#define LSQUIC_DF_INIT_MAX_STREAMS_UNI_SERVER 3
293/* XXX What's a good value here? */
294#define LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_CLIENT   (32 * 1024)
295#define LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER   (12 * 1024)
296
297/**
298 * Default idle connection time in seconds.
299 */
300#define LSQUIC_DF_IDLE_TIMEOUT 30
301
302/**
303 * Default ping period in seconds.
304 */
305#define LSQUIC_DF_PING_PERIOD 15
306
307/**
308 * Default handshake timeout in microseconds.
309 */
310#define LSQUIC_DF_HANDSHAKE_TO     (10 * 1000 * 1000)
311
312#define LSQUIC_DF_IDLE_CONN_TO     (LSQUIC_DF_IDLE_TIMEOUT * 1000 * 1000)
313#define LSQUIC_DF_SILENT_CLOSE     1
314
315/** Default value of maximum header list size.  If set to non-zero value,
316 *  SETTINGS_MAX_HEADER_LIST_SIZE will be sent to peer after handshake is
317 *  completed (assuming the peer supports this setting frame type).
318 */
319#define LSQUIC_DF_MAX_HEADER_LIST_SIZE 0
320
321/** Default value of UAID (user-agent ID). */
322#define LSQUIC_DF_UA               "LSQUIC"
323
324#define LSQUIC_DF_STTL               86400
325#define LSQUIC_DF_MAX_INCHOATE     (1 * 1000 * 1000)
326#define LSQUIC_DF_SUPPORT_SREJ_SERVER  1
327#define LSQUIC_DF_SUPPORT_SREJ_CLIENT  0       /* TODO: client support */
328/** Do not use NSTP by default */
329#define LSQUIC_DF_SUPPORT_NSTP     0
330/** TODO: IETF QUIC clients do not support push */
331#define LSQUIC_DF_SUPPORT_PUSH         1
332#define LSQUIC_DF_SUPPORT_TCID0    1
333/** By default, LSQUIC ignores Public Reset packets. */
334#define LSQUIC_DF_HONOR_PRST       0
335
336/**
337 * By default, LSQUIC will not send Public Reset packets in response to
338 * packets that specify unknown connections.
339 */
340#define LSQUIC_DF_SEND_PRST        0
341
342/** By default, infinite loop checks are turned on */
343#define LSQUIC_DF_PROGRESS_CHECK    1000
344
345/** By default, read/write events are dispatched in a loop */
346#define LSQUIC_DF_RW_ONCE           0
347
348/** By default, the threshold is not enabled */
349#define LSQUIC_DF_PROC_TIME_THRESH  0
350
351/** By default, packets are paced */
352#define LSQUIC_DF_PACE_PACKETS      1
353
354/** Default clock granularity is 1000 microseconds */
355#define LSQUIC_DF_CLOCK_GRANULARITY      1000
356
357/** The default value is 8 for simplicity */
358#define LSQUIC_DF_SCID_LEN 8
359
360/** The default value is 60 CIDs per minute */
361#define LSQUIC_DF_SCID_ISS_RATE   60
362
363#define LSQUIC_DF_QPACK_DEC_MAX_BLOCKED 100
364#define LSQUIC_DF_QPACK_DEC_MAX_SIZE 4096
365#define LSQUIC_DF_QPACK_ENC_MAX_BLOCKED 100
366#define LSQUIC_DF_QPACK_ENC_MAX_SIZE 4096
367
368/** ECN is disabled by default */
369#define LSQUIC_DF_ECN 0
370
371/** Allow migration by default */
372#define LSQUIC_DF_ALLOW_MIGRATION 1
373
374/* 1: Cubic; 2: BBR */
375#define LSQUIC_DF_CC_ALGO 2
376
377struct lsquic_engine_settings {
378    /**
379     * This is a bit mask wherein each bit corresponds to a value in
380     * enum lsquic_version.  Client starts negotiating with the highest
381     * version and goes down.  Server supports either of the versions
382     * specified here.
383     *
384     * This setting applies to both Google and IETF QUIC.
385     *
386     * @see lsquic_version
387     */
388    unsigned        es_versions;
389
390    /**
391     * Initial default CFCW.
392     *
393     * In server mode, per-connection values may be set lower than
394     * this if resources are scarce.
395     *
396     * Do not set es_cfcw and es_sfcw lower than @ref LSQUIC_MIN_FCW.
397     *
398     * @see es_max_cfcw
399     */
400    unsigned        es_cfcw;
401
402    /**
403     * Initial default SFCW.
404     *
405     * In server mode, per-connection values may be set lower than
406     * this if resources are scarce.
407     *
408     * Do not set es_cfcw and es_sfcw lower than @ref LSQUIC_MIN_FCW.
409     *
410     * @see es_max_sfcw
411     */
412    unsigned        es_sfcw;
413
414    /**
415     * This value is used to specify maximum allowed value CFCW is allowed
416     * to reach due to window auto-tuning.  By default, this value is zero,
417     * which means that CFCW is not allowed to increase from its initial
418     * value.
419     *
420     * @see es_cfcw
421     */
422    unsigned        es_max_cfcw;
423
424    unsigned        es_max_sfcw;
425
426    /** MIDS */
427    unsigned        es_max_streams_in;
428
429    /**
430     * Handshake timeout in microseconds.
431     *
432     * For client, this can be set to an arbitrary value (zero turns the
433     * timeout off).
434     *
435     * For server, this value is limited to about 16 seconds.  Do not set
436     * it to zero.
437     */
438    unsigned long   es_handshake_to;
439
440    /** ICSL in microseconds; GQUIC only */
441    unsigned long   es_idle_conn_to;
442
443    /** SCLS (silent close) */
444    int             es_silent_close;
445
446    /**
447     * This corresponds to SETTINGS_MAX_HEADER_LIST_SIZE
448     * (RFC 7540, Section 6.5.2).  0 means no limit.  Defaults
449     * to @ref LSQUIC_DF_MAX_HEADER_LIST_SIZE.
450     */
451    unsigned        es_max_header_list_size;
452
453    /** UAID -- User-Agent ID.  Defaults to @ref LSQUIC_DF_UA. */
454    const char     *es_ua;
455
456    /**
457     * More parameters for server
458     */
459    uint64_t        es_sttl; /* SCFG TTL in seconds */
460
461    uint32_t        es_pdmd; /* One fixed value X509 */
462    uint32_t        es_aead; /* One fixed value AESG */
463    uint32_t        es_kexs; /* One fixed value C255 */
464
465    /* Maximum number of incoming connections in inchoate state.  This is
466     * only applicable in server mode.
467     */
468    unsigned        es_max_inchoate;
469
470    /**
471     * Support SREJ: for client side, this means supporting server's SREJ
472     * responses (this does not work yet) and for server side, this means
473     * generating SREJ instead of REJ when appropriate.
474     */
475    int             es_support_srej;
476
477    /**
478     * Setting this value to 0 means that
479     *
480     * For client:
481     *  a) we send a SETTINGS frame to indicate that we do not support server
482     *     push; and
483     *  b) All incoming pushed streams get reset immediately.
484     * (For maximum effect, set es_max_streams_in to 0.)
485     *
486     * For server:
487     *  lsquic_conn_push_stream() will return -1.
488     */
489    int             es_support_push;
490
491    /**
492     * If set to true value, the server will not include connection ID in
493     * outgoing packets if client's CHLO specifies TCID=0.
494     *
495     * For client, this means including TCID=0 into CHLO message.  Note that
496     * in this case, the engine tracks connections by the
497     * (source-addr, dest-addr) tuple, thereby making it necessary to create
498     * a socket for each connection.
499     *
500     * This option has no effect in Q046, as the server never includes
501     * CIDs in the short packets.
502     *
503     * The default is @ref LSQUIC_DF_SUPPORT_TCID0.
504     */
505    int             es_support_tcid0;
506
507    /**
508     * Q037 and higher support "No STOP_WAITING frame" mode.  When set, the
509     * client will send NSTP option in its Client Hello message and will not
510     * sent STOP_WAITING frames, while ignoring incoming STOP_WAITING frames,
511     * if any.  Note that if the version negotiation happens to downgrade the
512     * client below Q037, this mode will *not* be used.
513     *
514     * This option does not affect the server, as it must support NSTP mode
515     * if it was specified by the client.
516     */
517    int             es_support_nstp;
518
519    /**
520     * If set to true value, the library will drop connections when it
521     * receives corresponding Public Reset packet.  The default is to
522     * ignore these packets.
523     */
524    int             es_honor_prst;
525
526    /**
527     * If set to true value, the library will send Public Reset packets
528     * in response to incoming packets with unknown Connection IDs.
529     * The default is @ref LSQUIC_DF_SEND_PRST.
530     */
531    int             es_send_prst;
532
533    /**
534     * A non-zero value enables internal checks that identify suspected
535     * infinite loops in user @ref on_read and @ref on_write callbacks
536     * and break them.  An infinite loop may occur if user code keeps
537     * on performing the same operation without checking status, e.g.
538     * reading from a closed stream etc.
539     *
540     * The value of this parameter is as follows: should a callback return
541     * this number of times in a row without making progress (that is,
542     * reading, writing, or changing stream state), loop break will occur.
543     *
544     * The defaut value is @ref LSQUIC_DF_PROGRESS_CHECK.
545     */
546    unsigned        es_progress_check;
547
548    /**
549     * A non-zero value make stream dispatch its read-write events once
550     * per call.
551     *
552     * When zero, read and write events are dispatched until the stream
553     * is no longer readable or writeable, respectively, or until the
554     * user signals unwillingness to read or write using
555     * @ref lsquic_stream_wantread() or @ref lsquic_stream_wantwrite()
556     * or shuts down the stream.
557     *
558     * The default value is @ref LSQUIC_DF_RW_ONCE.
559     */
560    int             es_rw_once;
561
562    /**
563     * If set, this value specifies that number of microseconds that
564     * @ref lsquic_engine_process_conns() and
565     * @ref lsquic_engine_send_unsent_packets() are allowed to spend
566     * before returning.
567     *
568     * This is not an exact science and the connections must make
569     * progress, so the deadline is checked after all connections get
570     * a chance to tick (in the case of @ref lsquic_engine_process_conns())
571     * and at least one batch of packets is sent out.
572     *
573     * When processing function runs out of its time slice, immediate
574     * calls to @ref lsquic_engine_has_unsent_packets() return false.
575     *
576     * The default value is @ref LSQUIC_DF_PROC_TIME_THRESH.
577     */
578    unsigned        es_proc_time_thresh;
579
580    /**
581     * If set to true, packet pacing is implemented per connection.
582     *
583     * The default value is @ref LSQUIC_DF_PACE_PACKETS.
584     */
585    int             es_pace_packets;
586
587    /**
588     * Clock granularity information is used by the pacer.  The value
589     * is in microseconds; default is @ref LSQUIC_DF_CLOCK_GRANULARITY.
590     */
591    unsigned        es_clock_granularity;
592
593    /* The following settings are specific to IETF QUIC. */
594    /* vvvvvvvvvvv */
595
596    /**
597     * Initial max data.
598     *
599     * This is a transport parameter.
600     *
601     * Depending on the engine mode, the default value is either
602     * @ref LSQUIC_DF_INIT_MAX_DATA_CLIENT or
603     * @ref LSQUIC_DF_INIT_MAX_DATA_SERVER.
604     */
605    unsigned        es_init_max_data;
606
607    /**
608     * Initial max stream data.
609     *
610     * This is a transport parameter.
611     *
612     * Depending on the engine mode, the default value is either
613     * @ref LSQUIC_DF_INIT_MAX_STREAM_DATA_CLIENT or
614     * @ref LSQUIC_DF_INIT_MAX_STREAM_DATA_BIDI_REMOTE_SERVER.
615     */
616    unsigned        es_init_max_stream_data_bidi_remote;
617    unsigned        es_init_max_stream_data_bidi_local;
618
619    /**
620     * Initial max stream data for unidirectional streams initiated
621     * by remote endpoint.
622     *
623     * This is a transport parameter.
624     *
625     * Depending on the engine mode, the default value is either
626     * @ref LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_CLIENT or
627     * @ref LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER.
628     */
629    unsigned        es_init_max_stream_data_uni;
630
631    /**
632     * Maximum initial number of bidirectional stream.
633     *
634     * This is a transport parameter.
635     *
636     * Default value is @ref LSQUIC_DF_INIT_MAX_STREAMS_BIDI.
637     */
638    unsigned        es_init_max_streams_bidi;
639
640    /**
641     * Maximum initial number of unidirectional stream.
642     *
643     * This is a transport parameter.
644     *
645     * Default value is @ref LSQUIC_DF_INIT_MAX_STREAMS_UNI_CLIENT or
646     * @ref LSQUIC_DF_INIT_MAX_STREAM_DATA_UNI_SERVER.
647     */
648    unsigned        es_init_max_streams_uni;
649
650    /**
651     * Idle connection timeout.
652     *
653     * This is a transport parameter.
654     *
655     * (Note: es_idle_conn_to is not reused because it is in microseconds,
656     * which, I now realize, was not a good choice.  Since it will be
657     * obsoleted some time after the switchover to IETF QUIC, we do not
658     * have to keep on using strange units.)
659     *
660     * Default value is @ref LSQUIC_DF_IDLE_TIMEOUT.
661     *
662     * Maximum value is 600 seconds.
663     */
664    unsigned        es_idle_timeout;
665
666    /**
667     * Ping period.  If set to non-zero value, the connection will generate and
668     * send PING frames in the absence of other activity.
669     *
670     * By default, the server does not send PINGs and the period is set to zero.
671     * The client's defaut value is @ref LSQUIC_DF_PING_PERIOD.
672     */
673    unsigned        es_ping_period;
674
675    /**
676     * Source Connection ID length.  Only applicable to the IETF QUIC
677     * versions.  Valid values are 4 through 18, inclusive.
678     *
679     * Default value is @ref LSQUIC_DF_SCID_LEN.
680     */
681    unsigned        es_scid_len;
682
683    /**
684     * Source Connection ID issuance rate.  Only applicable to the IETF QUIC
685     * versions.  This field is measured in CIDs per minute.  Using value 0
686     * indicates that there is no rate limit for CID issuance.
687     *
688     * Default value is @ref LSQUIC_DF_SCID_ISS_RATE.
689     */
690    unsigned        es_scid_iss_rate;
691
692    /**
693     * Maximum size of the QPACK dynamic table that the QPACK decoder will
694     * use.
695     *
696     * The default is @ref LSQUIC_DF_QPACK_DEC_MAX_SIZE.
697     */
698    unsigned        es_qpack_dec_max_size;
699
700    /**
701     * Maximum number of blocked streams that the QPACK decoder is willing
702     * to tolerate.
703     *
704     * The default is @ref LSQUIC_DF_QPACK_DEC_MAX_BLOCKED.
705     */
706    unsigned        es_qpack_dec_max_blocked;
707
708    /**
709     * Maximum size of the dynamic table that the encoder is willing to use.
710     * The actual size of the dynamic table will not exceed the minimum of
711     * this value and the value advertized by peer.
712     *
713     * The default is @ref LSQUIC_DF_QPACK_ENC_MAX_SIZE.
714     */
715    unsigned        es_qpack_enc_max_size;
716
717    /**
718     * Maximum number of blocked streams that the QPACK encoder is willing
719     * to risk.  The actual number of blocked streams will not exceed the
720     * minimum of this value and the value advertized by peer.
721     *
722     * The default is @ref LSQUIC_DF_QPACK_ENC_MAX_BLOCKED.
723     */
724    unsigned        es_qpack_enc_max_blocked;
725
726    /**
727     * Enable ECN support.
728     *
729     * The default is @ref LSQUIC_DF_ECN
730     */
731    int             es_ecn;
732
733    /**
734     * Allow peer to migrate connection.
735     *
736     * The default is @ref LSQUIC_DF_ALLOW_MIGRATION
737     */
738    int             es_allow_migration;
739
740    /**
741     * Congestion control algorithm to use.
742     *
743     *  0:  Use default (@ref LSQUIC_DF_CC_ALGO)
744     *  1:  Cubic
745     *  2:  BBR
746     */
747    unsigned        es_cc_algo;
748};
749
750/* Initialize `settings' to default values */
751void
752lsquic_engine_init_settings (struct lsquic_engine_settings *,
753                             unsigned lsquic_engine_flags);
754
755/**
756 * Check settings for errors.
757 *
758 * @param   settings    Settings struct.
759 *
760 * @param   flags       Engine flags.
761 *
762 * @param   err_buf     Optional pointer to buffer into which error string
763 *                      is written.
764
765 * @param   err_buf_sz  Size of err_buf.  No more than this number of bytes
766 *                      will be written to err_buf, including the NUL byte.
767 *
768 * @retval  0   Settings have no errors.
769 * @retval -1   There are errors in settings.
770 */
771int
772lsquic_engine_check_settings (const struct lsquic_engine_settings *settings,
773                              unsigned lsquic_engine_flags,
774                              char *err_buf, size_t err_buf_sz);
775
776struct lsquic_out_spec
777{
778    struct iovec          *iov;
779    size_t                 iovlen;
780    const struct sockaddr *local_sa;
781    const struct sockaddr *dest_sa;
782    void                  *peer_ctx;
783    int                    ecn; /* Valid values are 0 - 3.  See RFC 3168 */
784};
785
786/**
787 * Returns number of packets successfully sent out or -1 on error.  -1 should
788 * only be returned if no packets were sent out.  If -1 is returned or if the
789 * return value is smaller than `n_packets_out', this indicates that sending
790 * of packets is not possible  No packets will be attempted to be sent out
791 * until @ref lsquic_engine_send_unsent_packets() is called.
792 */
793typedef int (*lsquic_packets_out_f)(
794    void                          *packets_out_ctx,
795    const struct lsquic_out_spec  *out_spec,
796    unsigned                       n_packets_out
797);
798
799/**
800 * The shared hash interface is used to share data between multiple LSQUIC
801 * instances.
802 */
803struct lsquic_shared_hash_if
804{
805    /**
806     * If you want your item to never expire, set `expiry' to zero.
807     * Returns 0 on success, -1 on failure.
808     *
809     * If inserted successfully, `free()' will be called on `data' and 'key'
810     * pointer when the element is deleted, whether due to expiration
811     * or explicit deletion.
812     */
813    int (*shi_insert)(void *shi_ctx, void *key, unsigned key_sz,
814                      void *data, unsigned data_sz, time_t expiry);
815    /**
816     * Returns 0 on success, -1 on failure.
817     */
818    int (*shi_delete)(void *shi_ctx, const void *key, unsigned key_sz);
819
820    /**
821     * `data' is pointed to the result and `data_sz' is set to the
822     * object size.  The implementation may choose to copy the object
823     * into buffer pointed to by `data', so you should have it ready.
824     *
825     * @retval  1   found.
826     * @retval  0   not found.
827     * @retval -1   error (perhaps not enough room in `data' if copy was
828     *                attempted).
829     */
830    int (*shi_lookup)(void *shi_ctx, const void *key, unsigned key_sz,
831                                     void **data, unsigned *data_sz);
832};
833
834/**
835 * The packet out memory interface is used by LSQUIC to get buffers to
836 * which outgoing packets will be written before they are passed to
837 * ea_packets_out callback.
838 *
839 * If not specified, malloc() and free() are used.
840 */
841struct lsquic_packout_mem_if
842{
843    /**
844     * Allocate buffer for sending.
845     */
846    void *  (*pmi_allocate) (void *pmi_ctx, void *conn_ctx, unsigned short sz,
847                                                                char is_ipv6);
848    /**
849     * This function is used to release the allocated buffer after it is
850     * sent via @ref ea_packets_out.
851     */
852    void    (*pmi_release)  (void *pmi_ctx, void *conn_ctx, void *buf,
853                                                                char is_ipv6);
854    /**
855     * If allocated buffer is not going to be sent, return it to the caller
856     * using this function.
857     */
858    void    (*pmi_return)  (void *pmi_ctx, void *conn_ctx, void *buf,
859                                                                char is_ipv6);
860};
861
862typedef void (*lsquic_cids_update_f)(void *ctx, void **peer_ctx,
863                                const lsquic_cid_t *cids, unsigned n_cids);
864
865struct stack_st_X509;
866
867/**
868 * When headers are processed, various errors may occur.  They are listed
869 * in this enum.
870 */
871enum lsquic_header_status
872{
873    LSQUIC_HDR_OK,
874    /** Duplicate pseudo-header */
875    LSQUIC_HDR_ERR_DUPLICATE_PSDO_HDR,
876    /** Not all request pseudo-headers are present */
877    LSQUIC_HDR_ERR_INCOMPL_REQ_PSDO_HDR,
878    /** Unnecessary request pseudo-header present in the response */
879    LSQUIC_HDR_ERR_UNNEC_REQ_PSDO_HDR,
880    /** Prohibited header in request */
881    LSQUIC_HDR_ERR_BAD_REQ_HEADER,
882    /** Not all response pseudo-headers are present */
883    LSQUIC_HDR_ERR_INCOMPL_RESP_PSDO_HDR,
884    /** Unnecessary response pseudo-header present in the response. */
885    LSQUIC_HDR_ERR_UNNEC_RESP_PSDO_HDR,
886    /** Unknown pseudo-header */
887    LSQUIC_HDR_ERR_UNKNOWN_PSDO_HDR,
888    /** Uppercase letter in header */
889    LSQUIC_HDR_ERR_UPPERCASE_HEADER,
890    /** Misplaced pseudo-header */
891    LSQUIC_HDR_ERR_MISPLACED_PSDO_HDR,
892    /** Missing pseudo-header */
893    LSQUIC_HDR_ERR_MISSING_PSDO_HDR,
894    /** Header or headers are too large */
895    LSQUIC_HDR_ERR_HEADERS_TOO_LARGE,
896    /** Cannot allocate any more memory. */
897    LSQUIC_HDR_ERR_NOMEM,
898};
899
900struct lsquic_hset_if
901{
902    /**
903     * Create a new header set.  This object is (and must be) fetched from a
904     * stream by calling @ref lsquic_stream_get_hset() before the stream can
905     * be read.
906     */
907    void *              (*hsi_create_header_set)(void *hsi_ctx,
908                                                        int is_push_promise);
909    /**
910     * Process new header.  Return 0 on success, -1 if there is a problem with
911     * the header.  -1 is treated as a stream error: the associated stream is
912     * reset.
913     *
914     * `hdr_set' is the header set object returned by
915     * @ref hsi_create_header_set().
916     *
917     * `name_idx' is set to the index in either the HPACK or QPACK static table
918     * whose entry's name element matches `name'.  The values are as follows:
919     *      - if there is no such match, `name_idx' is set to zero;
920     *      - if HPACK is used, the value is between 1 and 61; and
921     *      - if QPACK is used, the value is 62+ (subtract 62 to get the QPACK
922     *        static table index).
923     *
924     * If `name' is NULL, this means that no more header are going to be
925     * added to the set.
926     */
927    enum lsquic_header_status (*hsi_process_header)(void *hdr_set,
928                                    unsigned name_idx,
929                                    const char *name, unsigned name_len,
930                                    const char *value, unsigned value_len);
931    /**
932     * Discard header set.  This is called for unclaimed header sets and
933     * header sets that had an error.
934     */
935    void                (*hsi_discard_header_set)(void *hdr_set);
936};
937
938/**
939 * SSL keylog interface.
940 */
941struct lsquic_keylog_if
942{
943    /** Return keylog handle or NULL if no key logging is desired */
944    void *    (*kli_open) (void *keylog_ctx, lsquic_conn_t *);
945
946    /**
947     * Log line.  The first argument is the pointer returned by
948     * @ref kli_open.
949     */
950    void      (*kli_log_line) (void *handle, const char *line);
951
952    /**
953     * Close handle.
954     */
955    void      (*kli_close) (void *handle);
956};
957
958/* TODO: describe this important data structure */
959typedef struct lsquic_engine_api
960{
961    const struct lsquic_engine_settings *ea_settings;   /* Optional */
962    const struct lsquic_stream_if       *ea_stream_if;
963    void                                *ea_stream_if_ctx;
964    lsquic_packets_out_f                 ea_packets_out;
965    void                                *ea_packets_out_ctx;
966    lsquic_lookup_cert_f                 ea_lookup_cert;
967    void                                *ea_cert_lu_ctx;
968    struct ssl_ctx_st *                (*ea_get_ssl_ctx)(void *peer_ctx);
969    /**
970     * Shared hash interface is optional.  If set to zero, performance of
971     * multiple LSQUIC instances will be degraded.
972     */
973    const struct lsquic_shared_hash_if  *ea_shi;
974    void                                *ea_shi_ctx;
975    /**
976     * Memory interface is optional.
977     */
978    const struct lsquic_packout_mem_if  *ea_pmi;
979    void                                *ea_pmi_ctx;
980    /**
981     * Optional interface to report new and old source connection IDs.
982     */
983    lsquic_cids_update_f                 ea_new_scids;
984    lsquic_cids_update_f                 ea_live_scids;
985    lsquic_cids_update_f                 ea_old_scids;
986    void                                *ea_cids_update_ctx;
987    /**
988     * Function to verify server certificate.  The chain contains at least
989     * one element.  The first element in the chain is the server
990     * certificate.  The chain belongs to the library.  If you want to
991     * retain it, call sk_X509_up_ref().
992     *
993     * 0 is returned on success, -1 on error.
994     *
995     * If the function pointer is not set, no verification is performed
996     * (the connection is allowed to proceed).
997     */
998    int                                (*ea_verify_cert)(void *verify_ctx,
999                                                struct stack_st_X509 *chain);
1000    void                                *ea_verify_ctx;
1001
1002    /**
1003     * Optional header set interface.  If not specified, the incoming headers
1004     * are converted to HTTP/1.x format and are read from stream and have to
1005     * be parsed again.
1006     */
1007    const struct lsquic_hset_if         *ea_hsi_if;
1008    void                                *ea_hsi_ctx;
1009#if LSQUIC_CONN_STATS
1010    /**
1011     * If set, engine will print cumulative connection statistics to this
1012     * file just before it is destroyed.
1013     */
1014    void /* FILE, really */             *ea_stats_fh;
1015#endif
1016
1017    /**
1018     * Optional SSL key logging interface.
1019     */
1020    const struct lsquic_keylog_if       *ea_keylog_if;
1021    void                                *ea_keylog_ctx;
1022} lsquic_engine_api_t;
1023
1024/**
1025 * Create new engine.
1026 *
1027 * @param   lsquic_engine_flags     A bitmask of @ref LSENG_SERVER and
1028 *                                  @ref LSENG_HTTP
1029 */
1030lsquic_engine_t *
1031lsquic_engine_new (unsigned lsquic_engine_flags,
1032                   const struct lsquic_engine_api *);
1033
1034/**
1035 * Create a client connection to peer identified by `peer_ctx'.
1036 *
1037 * To let the engine specify QUIC version, use N_LSQVER.  If zero-rtt info
1038 * is supplied, version is picked from there instead.
1039 *
1040 * If `max_packet_size' is set to zero, it is inferred based on `peer_sa':
1041 * 1350 for IPv6 and 1370 for IPv4.
1042 */
1043lsquic_conn_t *
1044lsquic_engine_connect (lsquic_engine_t *, enum lsquic_version,
1045                       const struct sockaddr *local_sa,
1046                       const struct sockaddr *peer_sa,
1047                       void *peer_ctx, lsquic_conn_ctx_t *conn_ctx,
1048                       const char *hostname, unsigned short max_packet_size,
1049                       const unsigned char *zero_rtt, size_t zero_rtt_len,
1050                       /** Resumption token: optional */
1051                       const unsigned char *token, size_t token_sz);
1052
1053/**
1054 * Pass incoming packet to the QUIC engine.  This function can be called
1055 * more than once in a row.  After you add one or more packets, call
1056 * lsquic_engine_process_conns() to schedule output, if any.
1057 *
1058 * @retval  0   Packet was processed by a real connection.
1059 *
1060 * @retval  1   Packet was handled successfully, but not by a connection.
1061 *              This may happen with version negotiation and public reset
1062 *              packets as well as some packets that may be ignored.
1063 *
1064 * @retval -1   Some error occurred.  Possible reasons are invalid packet
1065 *              size or failure to allocate memory.
1066 */
1067int
1068lsquic_engine_packet_in (lsquic_engine_t *,
1069        const unsigned char *packet_in_data, size_t packet_in_size,
1070        const struct sockaddr *sa_local, const struct sockaddr *sa_peer,
1071        void *peer_ctx, int ecn);
1072
1073/**
1074 * Process tickable connections.  This function must be called often enough so
1075 * that packets and connections do not expire.
1076 */
1077void
1078lsquic_engine_process_conns (lsquic_engine_t *engine);
1079
1080/**
1081 * Returns true if engine has some unsent packets.  This happens if
1082 * @ref ea_packets_out() could not send everything out.
1083 */
1084int
1085lsquic_engine_has_unsent_packets (lsquic_engine_t *engine);
1086
1087/**
1088 * Send out as many unsent packets as possibe: until we are out of unsent
1089 * packets or until @ref ea_packets_out() fails.
1090 *
1091 * If @ref ea_packets_out() does fail (that is, it returns an error), this
1092 * function must be called to signify that sending of packets is possible
1093 * again.
1094 */
1095void
1096lsquic_engine_send_unsent_packets (lsquic_engine_t *engine);
1097
1098void
1099lsquic_engine_destroy (lsquic_engine_t *);
1100
1101/** Return max allowed outbound streams less current outbound streams. */
1102unsigned
1103lsquic_conn_n_avail_streams (const lsquic_conn_t *);
1104
1105void
1106lsquic_conn_make_stream (lsquic_conn_t *);
1107
1108/** Return number of delayed streams currently pending */
1109unsigned
1110lsquic_conn_n_pending_streams (const lsquic_conn_t *);
1111
1112/** Cancel `n' pending streams.  Returns new number of pending streams. */
1113unsigned
1114lsquic_conn_cancel_pending_streams (lsquic_conn_t *, unsigned n);
1115
1116/**
1117 * Mark connection as going away: send GOAWAY frame and do not accept
1118 * any more incoming streams, nor generate streams of our own.
1119 *
1120 * In the server mode, of course, we can call this function just fine in both
1121 * Google and IETF QUIC.
1122 *
1123 * In client mode, calling this function in for an IETF QUIC connection does
1124 * not do anything, as the client MUST NOT send GOAWAY frames.
1125 * See [draft-ietf-quic-http-17] Section 4.2.7.
1126 */
1127void
1128lsquic_conn_going_away (lsquic_conn_t *);
1129
1130/**
1131 * This forces connection close.  on_conn_closed and on_close callbacks
1132 * will be called.
1133 */
1134void
1135lsquic_conn_close (lsquic_conn_t *);
1136
1137int lsquic_stream_wantread(lsquic_stream_t *s, int is_want);
1138ssize_t lsquic_stream_read(lsquic_stream_t *s, void *buf, size_t len);
1139ssize_t lsquic_stream_readv(lsquic_stream_t *s, const struct iovec *,
1140                                                            int iovcnt);
1141
1142/**
1143 * This function allows user-supplied callback to read the stream contents.
1144 * It is meant to be used for zero-copy stream processing.
1145 */
1146ssize_t
1147lsquic_stream_readf (lsquic_stream_t *s,
1148    /**
1149     * The callback takes four parameters:
1150     *  - Pointer to user-supplied context;
1151     *  - Pointer to the data;
1152     *  - Data size (can be zero); and
1153     *  - Indicator whether the FIN follows the data.
1154     *
1155     * The callback returns number of bytes processed.  If this number is zero
1156     * or is smaller than `len', reading from stream stops.
1157     */
1158    size_t (*readf)(void *ctx, const unsigned char *buf, size_t len, int fin),
1159    void *ctx);
1160
1161int lsquic_stream_wantwrite(lsquic_stream_t *s, int is_want);
1162
1163/**
1164 * Write `len' bytes to the stream.  Returns number of bytes written, which
1165 * may be smaller that `len'.
1166 */
1167ssize_t lsquic_stream_write(lsquic_stream_t *s, const void *buf, size_t len);
1168
1169ssize_t lsquic_stream_writev(lsquic_stream_t *s, const struct iovec *vec, int count);
1170
1171/**
1172 * Used as argument to @ref lsquic_stream_writef()
1173 */
1174struct lsquic_reader
1175{
1176    /**
1177     * Not a ssize_t because the read function is not supposed to return
1178     * an error.  If an error occurs in the read function (for example, when
1179     * reading from a file fails), it is supposed to deal with the error
1180     * itself.
1181     */
1182    size_t (*lsqr_read) (void *lsqr_ctx, void *buf, size_t count);
1183    /**
1184     * Return number of bytes remaining in the reader.
1185     */
1186    size_t (*lsqr_size) (void *lsqr_ctx);
1187    void    *lsqr_ctx;
1188};
1189
1190/**
1191 * Write to stream using @ref lsquic_reader.  This is the most generic of
1192 * the write functions -- @ref lsquic_stream_write() and
1193 * @ref lsquic_stream_writev() utilize the same mechanism.
1194 *
1195 * @retval Number of bytes written or -1 on error.
1196 */
1197ssize_t
1198lsquic_stream_writef (lsquic_stream_t *, struct lsquic_reader *);
1199
1200/**
1201 * Flush any buffered data.  This triggers packetizing even a single byte
1202 * into a separate frame.  Flushing a closed stream is an error.
1203 *
1204 * @retval  0   Success
1205 * @retval -1   Failure
1206 */
1207int
1208lsquic_stream_flush (lsquic_stream_t *s);
1209
1210/**
1211 * @typedef lsquic_http_header_t
1212 * @brief HTTP header structure. Contains header name and value.
1213 *
1214 */
1215typedef struct lsquic_http_header
1216{
1217   struct iovec name;
1218   struct iovec value;
1219} lsquic_http_header_t;
1220
1221/**
1222 * @typedef lsquic_http_headers_t
1223 * @brief HTTP header list structure. Contains a list of HTTP headers in key/value pairs.
1224 * used in API functions to pass headers.
1225 */
1226struct lsquic_http_headers
1227{
1228    int                     count;
1229    lsquic_http_header_t   *headers;
1230};
1231
1232int lsquic_stream_send_headers(lsquic_stream_t *s,
1233                               const lsquic_http_headers_t *h, int eos);
1234
1235/**
1236 * Get header set associated with the stream.  The header set is created by
1237 * @ref hsi_create_header_set() callback.  After this call, the ownership of
1238 * the header set is trasnferred to the caller.
1239 *
1240 * This call must precede calls to @ref lsquic_stream_read() and
1241 * @ref lsquic_stream_readv().
1242 *
1243 * If the optional header set interface (@ref ea_hsi_if) is not specified,
1244 * this function returns NULL.
1245 */
1246void *
1247lsquic_stream_get_hset (lsquic_stream_t *);
1248
1249/**
1250 * A server may push a stream.  This call creates a new stream in reference
1251 * to stream `s'.  It will behave as if the client made a request: it will
1252 * trigger on_new_stream() event and it can be used as a regular client-
1253 * initiated stream.
1254 *
1255 * If `hdr_set' is not set, it is generated by using `ea_hsi_if' callbacks.
1256 * In either case, the header set object belongs to the connection.  The
1257 * user is not to free this object until (@ref hsi_discard_header_set) is
1258 * called.
1259 *
1260 * @retval  0   Stream pushed successfully.
1261 * @retval  1   Stream push failed because it is disabled or because we hit
1262 *                stream limit or connection is going away.
1263 * @retval -1   Stream push failed because of an internal error.
1264 */
1265int
1266lsquic_conn_push_stream (lsquic_conn_t *c, void *hdr_set, lsquic_stream_t *s,
1267    const  struct iovec* url, const struct iovec* authority,
1268    const lsquic_http_headers_t *headers);
1269
1270/**
1271 * Only makes sense in server mode: the client cannot push a stream and this
1272 * function always returns false in client mode.
1273 */
1274int
1275lsquic_conn_is_push_enabled (lsquic_conn_t *);
1276
1277/** Possible values for how are 0, 1, and 2.  See shutdown(2). */
1278int lsquic_stream_shutdown(lsquic_stream_t *s, int how);
1279
1280int lsquic_stream_close(lsquic_stream_t *s);
1281
1282/**
1283 * Get certificate chain returned by the server.  This can be used for
1284 * server certificate verifiction.
1285 *
1286 * If server certificate cannot be verified, the connection can be closed
1287 * using lsquic_conn_cert_verification_failed().
1288 *
1289 * The caller releases the stack using sk_X509_free().
1290 */
1291struct stack_st_X509 *
1292lsquic_conn_get_server_cert_chain (lsquic_conn_t *);
1293
1294/** Returns ID of the stream */
1295lsquic_stream_id_t
1296lsquic_stream_id (const lsquic_stream_t *s);
1297
1298/**
1299 * Returns stream ctx associated with the stream.  (The context is what
1300 * is returned by @ref on_new_stream callback).
1301 */
1302lsquic_stream_ctx_t *
1303lsquic_stream_get_ctx (const lsquic_stream_t *s);
1304
1305/** Returns true if this is a pushed stream */
1306int
1307lsquic_stream_is_pushed (const lsquic_stream_t *s);
1308
1309/**
1310 * Returns true if this stream was rejected, false otherwise.  Use this as
1311 * an aid to distinguish between errors.
1312 */
1313int
1314lsquic_stream_is_rejected (const lsquic_stream_t *s);
1315
1316/**
1317 * Refuse pushed stream.  Call it from @ref on_new_stream.
1318 *
1319 * No need to call lsquic_stream_close() after this.  on_close will be called.
1320 *
1321 * @see lsquic_stream_is_pushed
1322 */
1323int
1324lsquic_stream_refuse_push (lsquic_stream_t *s);
1325
1326/**
1327 * Get information associated with pushed stream:
1328 *
1329 * @param ref_stream_id   Stream ID in response to which push promise was
1330 *                            sent.
1331 * @param hdr_set         Header set.  This object was passed to or generated
1332 *                            by @ref lsquic_conn_push_stream().
1333 *
1334 * @retval   0  Success.
1335 * @retval  -1  This is not a pushed stream.
1336 */
1337int
1338lsquic_stream_push_info (const lsquic_stream_t *,
1339                         lsquic_stream_id_t *ref_stream_id, void **hdr_set);
1340
1341/** Return current priority of the stream */
1342unsigned lsquic_stream_priority (const lsquic_stream_t *s);
1343
1344/**
1345 * Set stream priority.  Valid priority values are 1 through 256, inclusive.
1346 *
1347 * @retval   0  Success.
1348 * @retval  -1  Priority value is invalid.
1349 */
1350int lsquic_stream_set_priority (lsquic_stream_t *s, unsigned priority);
1351
1352/**
1353 * Get a pointer to the connection object.  Use it with lsquic_conn_*
1354 * functions.
1355 */
1356lsquic_conn_t * lsquic_stream_conn(const lsquic_stream_t *s);
1357
1358lsquic_stream_t *
1359lsquic_conn_get_stream_by_id (lsquic_conn_t *c, lsquic_stream_id_t stream_id);
1360
1361/** Get connection ID */
1362const lsquic_cid_t *
1363lsquic_conn_id (const lsquic_conn_t *c);
1364
1365/** Get pointer to the engine */
1366lsquic_engine_t *
1367lsquic_conn_get_engine (lsquic_conn_t *c);
1368
1369int
1370lsquic_conn_get_sockaddr(lsquic_conn_t *c,
1371                const struct sockaddr **local, const struct sockaddr **peer);
1372
1373struct lsquic_logger_if {
1374    int     (*log_buf)(void *logger_ctx, const char *buf, size_t len);
1375};
1376
1377/**
1378 * Enumerate timestamp styles supported by LSQUIC logger mechanism.
1379 */
1380enum lsquic_logger_timestamp_style {
1381    /**
1382     * No timestamp is generated.
1383     */
1384    LLTS_NONE,
1385
1386    /**
1387     * The timestamp consists of 24 hours, minutes, seconds, and
1388     * milliseconds.  Example: 13:43:46.671
1389     */
1390    LLTS_HHMMSSMS,
1391
1392    /**
1393     * Like above, plus date, e.g: 2017-03-21 13:43:46.671
1394     */
1395    LLTS_YYYYMMDD_HHMMSSMS,
1396
1397    /**
1398     * This is Chrome-like timestamp used by proto-quic.  The timestamp
1399     * includes month, date, hours, minutes, seconds, and microseconds.
1400     *
1401     * Example: 1223/104613.946956 (instead of 12/23 10:46:13.946956).
1402     *
1403     * This is to facilitate reading two logs side-by-side.
1404     */
1405    LLTS_CHROMELIKE,
1406
1407    /**
1408     * The timestamp consists of 24 hours, minutes, seconds, and
1409     * microseconds.  Example: 13:43:46.671123
1410     */
1411    LLTS_HHMMSSUS,
1412
1413    /**
1414     * Date and time using microsecond resolution,
1415     * e.g: 2017-03-21 13:43:46.671123
1416     */
1417    LLTS_YYYYMMDD_HHMMSSUS,
1418
1419    N_LLTS
1420};
1421
1422/**
1423 * Call this if you want to do something with LSQUIC log messages, as they
1424 * are thrown out by default.
1425 */
1426void lsquic_logger_init(const struct lsquic_logger_if *, void *logger_ctx,
1427                        enum lsquic_logger_timestamp_style);
1428
1429/**
1430 * Set log level for all LSQUIC modules.  Acceptable values are debug, info,
1431 * notice, warning, error, alert, emerg, crit (case-insensitive).
1432 *
1433 * @retval  0   Success.
1434 * @retval -1   Failure: log_level is not valid.
1435 */
1436int
1437lsquic_set_log_level (const char *log_level);
1438
1439/**
1440 * E.g. "event=debug"
1441 */
1442int
1443lsquic_logger_lopt (const char *optarg);
1444
1445/**
1446 * Return the list of QUIC versions (as bitmask) this engine instance
1447 * supports.
1448 */
1449unsigned lsquic_engine_quic_versions (const lsquic_engine_t *);
1450
1451/**
1452 * This is one of the flags that can be passed to @ref lsquic_global_init.
1453 * Use it to initialize LSQUIC for use in client mode.
1454 */
1455#define LSQUIC_GLOBAL_CLIENT (1 << 0)
1456
1457/**
1458 * This is one of the flags that can be passed to @ref lsquic_global_init.
1459 * Use it to initialize LSQUIC for use in server mode.
1460 */
1461#define LSQUIC_GLOBAL_SERVER (1 << 1)
1462
1463/**
1464 * Initialize LSQUIC.  This must be called before any other LSQUIC function
1465 * is called.  Returns 0 on success and -1 on failure.
1466 *
1467 * @param flags     This a bitmask of @ref LSQUIC_GLOBAL_CLIENT and
1468 *                    @ref LSQUIC_GLOBAL_SERVER.  At least one of these
1469 *                    flags should be specified.
1470 *
1471 * @retval  0   Success.
1472 * @retval -1   Initialization failed.
1473 *
1474 * @see LSQUIC_GLOBAL_CLIENT
1475 * @see LSQUIC_GLOBAL_SERVER
1476 */
1477int
1478lsquic_global_init (int flags);
1479
1480/**
1481 * Clean up global state created by @ref lsquic_global_init.  Should be
1482 * called after all LSQUIC engine instances are gone.
1483 */
1484void
1485lsquic_global_cleanup (void);
1486
1487/**
1488 * Get QUIC version used by the connection.
1489 *
1490 * @see lsquic_version
1491 */
1492enum lsquic_version
1493lsquic_conn_quic_version (const lsquic_conn_t *c);
1494
1495/* Return keysize or -1 on error */
1496int
1497lsquic_conn_crypto_keysize (const lsquic_conn_t *c);
1498
1499/* Return algorithm keysize or -1 on error */
1500int
1501lsquic_conn_crypto_alg_keysize (const lsquic_conn_t *c);
1502
1503enum lsquic_crypto_ver
1504{
1505    LSQ_CRY_QUIC,
1506    LSQ_CRY_TLSv13,
1507};
1508
1509enum lsquic_crypto_ver
1510lsquic_conn_crypto_ver (const lsquic_conn_t *c);
1511
1512/* Return cipher or NULL on error */
1513const char *
1514lsquic_conn_crypto_cipher (const lsquic_conn_t *c);
1515
1516/** Translate string QUIC version to LSQUIC QUIC version representation */
1517enum lsquic_version
1518lsquic_str2ver (const char *str, size_t len);
1519
1520/** Translate ALPN (e.g. "h3", "h3-23", "h3-Q046") to LSQUIC enum */
1521enum lsquic_version
1522lsquic_alpn2ver (const char *alpn, size_t len);
1523
1524/**
1525 * This function closes all mini connections and marks all full connection
1526 * as going away.  In server mode, this also causes the engine to stop
1527 * creating new connections.
1528 */
1529void
1530lsquic_engine_cooldown (lsquic_engine_t *);
1531
1532struct ssl_st *
1533lsquic_hsk_getssl(lsquic_conn_t *conn);
1534
1535/**
1536 * Get user-supplied context associated with the connection.
1537 */
1538lsquic_conn_ctx_t *
1539lsquic_conn_get_ctx (const lsquic_conn_t *);
1540
1541/**
1542 * Set user-supplied context associated with the connection.
1543 */
1544void
1545lsquic_conn_set_ctx (lsquic_conn_t *, lsquic_conn_ctx_t *);
1546
1547/**
1548 * Get peer context associated with the connection.
1549 */
1550void *
1551lsquic_conn_get_peer_ctx (lsquic_conn_t *, const struct sockaddr *local_sa);
1552
1553/**
1554 * Abort connection.
1555 */
1556void
1557lsquic_conn_abort (lsquic_conn_t *);
1558
1559/**
1560 * Helper function: convert list of versions as specified in the argument
1561 * bitmask to string that can be included as argument to "v=" part of the
1562 * Alt-Svc header.
1563 *
1564 * For example (1<<LSQVER_037)|(1<<LSQVER_038) => "37,38"
1565 *
1566 * This is only applicable to Google QUIC versions.
1567 */
1568const char *
1569lsquic_get_alt_svc_versions (unsigned versions);
1570
1571/**
1572 * Return a NULL-terminated list of HTTP/3 ALPNs, e.g "h3-17", "h3-18", "h3".
1573 */
1574const char *const *
1575lsquic_get_h3_alpns (unsigned versions);
1576
1577/**
1578 * Returns true if provided buffer could be a valid handshake-stage packet,
1579 * false otherwise.  Do not call this function if a connection has already
1580 * been established: it will return incorrect result.
1581 */
1582int
1583lsquic_is_valid_hs_packet (lsquic_engine_t *, const unsigned char *, size_t);
1584
1585/**
1586 * Parse cid from packet stored in `buf' and store it to `cid'.  Returns 0
1587 * on success and -1 on failure.
1588 */
1589int
1590lsquic_cid_from_packet (const unsigned char *, size_t bufsz, lsquic_cid_t *cid);
1591
1592/**
1593 * Returns true if there are connections to be processed, false otherwise.
1594 * If true, `diff' is set to the difference between the earliest advisory
1595 * tick time and now.  If the former is in the past, the value of `diff'
1596 * is negative.
1597 */
1598int
1599lsquic_engine_earliest_adv_tick (lsquic_engine_t *engine, int *diff);
1600
1601/**
1602 * Return number of connections whose advisory tick time is before current
1603 * time plus `from_now' microseconds from now.  `from_now' can be negative.
1604 */
1605unsigned
1606lsquic_engine_count_attq (lsquic_engine_t *engine, int from_now);
1607
1608enum LSQUIC_CONN_STATUS
1609{
1610    LSCONN_ST_HSK_IN_PROGRESS,
1611    LSCONN_ST_CONNECTED,
1612    LSCONN_ST_HSK_FAILURE,
1613    LSCONN_ST_GOING_AWAY,
1614    LSCONN_ST_TIMED_OUT,
1615    /* If es_honor_prst is not set, the connection will never get public
1616     * reset packets and this flag will not be set.
1617     */
1618    LSCONN_ST_RESET,
1619    LSCONN_ST_USER_ABORTED,
1620    LSCONN_ST_ERROR,
1621    LSCONN_ST_CLOSED,
1622    LSCONN_ST_PEER_GOING_AWAY,
1623};
1624
1625enum LSQUIC_CONN_STATUS
1626lsquic_conn_status (lsquic_conn_t *, char *errbuf, size_t bufsz);
1627
1628extern const char *const
1629lsquic_ver2str[N_LSQVER];
1630
1631#ifdef __cplusplus
1632}
1633#endif
1634
1635#endif //__LSQUIC_H__
1636
1637