record_locl.h 6.1 KB
Newer Older
R
Rich Salz 已提交
1 2
/*
 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
M
Matt Caswell 已提交
3
 *
R
Rich Salz 已提交
4 5 6 7
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
M
Matt Caswell 已提交
8
 */
M
Matt Caswell 已提交
9 10 11 12 13 14 15 16

/*****************************************************************************
 *                                                                           *
 * The following macros/functions are PRIVATE to the record layer. They      *
 * should NOT be used outside of the record layer.                           *
 *                                                                           *
 *****************************************************************************/

17 18
#define MAX_WARN_ALERT_COUNT    5

M
Matt Caswell 已提交
19 20 21
/* Functions/macros provided by the RECORD_LAYER component */

#define RECORD_LAYER_get_rbuf(rl)               (&(rl)->rbuf)
22
#define RECORD_LAYER_get_wbuf(rl)               ((rl)->wbuf)
23
#define RECORD_LAYER_get_rrec(rl)               ((rl)->rrec)
M
Matt Caswell 已提交
24 25 26 27 28 29
#define RECORD_LAYER_set_packet(rl, p)          ((rl)->packet = (p))
#define RECORD_LAYER_reset_packet_length(rl)    ((rl)->packet_length = 0)
#define RECORD_LAYER_get_rstate(rl)             ((rl)->rstate)
#define RECORD_LAYER_set_rstate(rl, st)         ((rl)->rstate = (st))
#define RECORD_LAYER_get_read_sequence(rl)      ((rl)->read_sequence)
#define RECORD_LAYER_get_write_sequence(rl)     ((rl)->write_sequence)
30 31
#define RECORD_LAYER_get_numrpipes(rl)          ((rl)->numrpipes)
#define RECORD_LAYER_set_numrpipes(rl, n)       ((rl)->numrpipes = (n))
32 33 34 35
#define RECORD_LAYER_inc_empty_record_count(rl) ((rl)->empty_record_count++)
#define RECORD_LAYER_reset_empty_record_count(rl) \
                                                ((rl)->empty_record_count = 0)
#define RECORD_LAYER_get_empty_record_count(rl) ((rl)->empty_record_count)
36
#define RECORD_LAYER_is_first_record(rl)        ((rl)->is_first_record)
37 38
#define RECORD_LAYER_set_first_record(rl)       ((rl)->is_first_record = 1)
#define RECORD_LAYER_clear_first_record(rl)     ((rl)->is_first_record = 0)
M
Matt Caswell 已提交
39 40
#define DTLS_RECORD_LAYER_get_r_epoch(rl)       ((rl)->d->r_epoch)

41
__owur int ssl3_read_n(SSL *s, int n, int max, int extend, int clearold);
M
Matt Caswell 已提交
42 43 44

void RECORD_LAYER_set_write_sequence(RECORD_LAYER *rl, const unsigned char *ws);
DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
E
Emilia Kasper 已提交
45
                               unsigned int *is_next_epoch);
M
Matt Caswell 已提交
46 47
int dtls1_process_buffered_records(SSL *s);
int dtls1_retrieve_buffered_record(SSL *s, record_pqueue *queue);
E
Emilia Kasper 已提交
48
int dtls1_buffer_record(SSL *s, record_pqueue *q, unsigned char *priority);
M
Matt Caswell 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62
void ssl3_record_sequence_update(unsigned char *seq);

/* Functions provided by the DTLS1_BITMAP component */

int dtls1_record_replay_check(SSL *s, DTLS1_BITMAP *bitmap);
void dtls1_record_bitmap_update(SSL *s, DTLS1_BITMAP *bitmap);

/* Macros/functions provided by the SSL3_BUFFER component */

#define SSL3_BUFFER_get_buf(b)              ((b)->buf)
#define SSL3_BUFFER_set_buf(b, n)           ((b)->buf = (n))
#define SSL3_BUFFER_get_len(b)              ((b)->len)
#define SSL3_BUFFER_set_len(b, l)           ((b)->len = (l))
#define SSL3_BUFFER_get_left(b)             ((b)->left)
M
Matt Caswell 已提交
63 64 65 66 67
#define SSL3_BUFFER_set_left(b, l)          ((b)->left = (l))
#define SSL3_BUFFER_add_left(b, l)          ((b)->left += (l))
#define SSL3_BUFFER_get_offset(b)           ((b)->offset)
#define SSL3_BUFFER_set_offset(b, o)        ((b)->offset = (o))
#define SSL3_BUFFER_add_offset(b, o)        ((b)->offset += (o))
M
Matt Caswell 已提交
68
#define SSL3_BUFFER_is_initialised(b)       ((b)->buf != NULL)
69
#define SSL3_BUFFER_set_default_len(b, l)   ((b)->default_len = (l))
M
Matt Caswell 已提交
70

M
Matt Caswell 已提交
71
void SSL3_BUFFER_clear(SSL3_BUFFER *b);
M
Matt Caswell 已提交
72 73 74
void SSL3_BUFFER_set_data(SSL3_BUFFER *b, const unsigned char *d, int n);
void SSL3_BUFFER_release(SSL3_BUFFER *b);
__owur int ssl3_setup_read_buffer(SSL *s);
75
__owur int ssl3_setup_write_buffer(SSL *s, unsigned int numwpipes, size_t len);
M
Matt Caswell 已提交
76 77 78 79
int ssl3_release_read_buffer(SSL *s);
int ssl3_release_write_buffer(SSL *s);

/* Macros/functions provided by the SSL3_RECORD component */
M
Matt Caswell 已提交
80 81

#define SSL3_RECORD_get_type(r)                 ((r)->type)
M
Matt Caswell 已提交
82
#define SSL3_RECORD_set_type(r, t)              ((r)->type = (t))
M
Matt Caswell 已提交
83
#define SSL3_RECORD_get_length(r)               ((r)->length)
M
Matt Caswell 已提交
84 85
#define SSL3_RECORD_set_length(r, l)            ((r)->length = (l))
#define SSL3_RECORD_add_length(r, l)            ((r)->length += (l))
86
#define SSL3_RECORD_sub_length(r, l)            ((r)->length -= (l))
M
Matt Caswell 已提交
87
#define SSL3_RECORD_get_data(r)                 ((r)->data)
M
Matt Caswell 已提交
88 89 90 91
#define SSL3_RECORD_set_data(r, d)              ((r)->data = (d))
#define SSL3_RECORD_get_input(r)                ((r)->input)
#define SSL3_RECORD_set_input(r, i)             ((r)->input = (i))
#define SSL3_RECORD_reset_input(r)              ((r)->input = (r)->data)
M
Matt Caswell 已提交
92
#define SSL3_RECORD_get_seq_num(r)              ((r)->seq_num)
M
Matt Caswell 已提交
93 94 95 96
#define SSL3_RECORD_get_off(r)                  ((r)->off)
#define SSL3_RECORD_set_off(r, o)               ((r)->off = (o))
#define SSL3_RECORD_add_off(r, o)               ((r)->off += (o))
#define SSL3_RECORD_get_epoch(r)                ((r)->epoch)
97 98
#define SSL3_RECORD_is_sslv2_record(r) \
            ((r)->rec_version == SSL2_VERSION)
99 100
#define SSL3_RECORD_is_read(r)                  ((r)->read)
#define SSL3_RECORD_set_read(r)                 ((r)->read = 1)
M
Matt Caswell 已提交
101

102 103
void SSL3_RECORD_clear(SSL3_RECORD *r, unsigned int num_recs);
void SSL3_RECORD_release(SSL3_RECORD *r, unsigned int num_recs);
M
Matt Caswell 已提交
104
void SSL3_RECORD_set_seq_num(SSL3_RECORD *r, const unsigned char *seq_num);
105
int ssl3_get_record(SSL *s);
106
__owur int ssl3_do_compress(SSL *ssl, SSL3_RECORD *wr);
107
__owur int ssl3_do_uncompress(SSL *ssl, SSL3_RECORD *rr);
108 109
void ssl3_cbc_copy_mac(unsigned char *out,
                       const SSL3_RECORD *rec, unsigned md_size);
110
__owur int ssl3_cbc_remove_padding(SSL3_RECORD *rec,
E
Emilia Kasper 已提交
111
                                   unsigned block_size, unsigned mac_size);
112
__owur int tls1_cbc_remove_padding(const SSL *s,
E
Emilia Kasper 已提交
113 114
                                   SSL3_RECORD *rec,
                                   unsigned block_size, unsigned mac_size);
M
Matt Caswell 已提交
115
int dtls1_process_record(SSL *s, DTLS1_BITMAP *bitmap);
116
__owur int dtls1_get_record(SSL *s);