record_locl.h 5.8 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 17 18 19

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

/* Functions/macros provided by the RECORD_LAYER component */

#define RECORD_LAYER_get_rbuf(rl)               (&(rl)->rbuf)
20
#define RECORD_LAYER_get_wbuf(rl)               ((rl)->wbuf)
21
#define RECORD_LAYER_get_rrec(rl)               ((rl)->rrec)
M
Matt Caswell 已提交
22 23 24 25 26 27
#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)
28 29
#define RECORD_LAYER_get_numrpipes(rl)          ((rl)->numrpipes)
#define RECORD_LAYER_set_numrpipes(rl, n)       ((rl)->numrpipes = (n))
30 31 32 33
#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)
M
Matt Caswell 已提交
34 35
#define DTLS_RECORD_LAYER_get_r_epoch(rl)       ((rl)->d->r_epoch)

36
__owur int ssl3_read_n(SSL *s, int n, int max, int extend, int clearold);
M
Matt Caswell 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59

void RECORD_LAYER_set_write_sequence(RECORD_LAYER *rl, const unsigned char *ws);
DTLS1_BITMAP *dtls1_get_bitmap(SSL *s, SSL3_RECORD *rr,
                                      unsigned int *is_next_epoch);
int dtls1_process_buffered_records(SSL *s);
int dtls1_retrieve_buffered_record(SSL *s, record_pqueue *queue);
int dtls1_buffer_record(SSL *s, record_pqueue *q,
                               unsigned char *priority);
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 已提交
60 61 62 63 64
#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 已提交
65
#define SSL3_BUFFER_is_initialised(b)       ((b)->buf != NULL)
66
#define SSL3_BUFFER_set_default_len(b, l)   ((b)->default_len = (l))
M
Matt Caswell 已提交
67

M
Matt Caswell 已提交
68
void SSL3_BUFFER_clear(SSL3_BUFFER *b);
M
Matt Caswell 已提交
69 70 71
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);
72
__owur int ssl3_setup_write_buffer(SSL *s, unsigned int numwpipes, size_t len);
M
Matt Caswell 已提交
73 74 75 76
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 已提交
77 78

#define SSL3_RECORD_get_type(r)                 ((r)->type)
M
Matt Caswell 已提交
79
#define SSL3_RECORD_set_type(r, t)              ((r)->type = (t))
M
Matt Caswell 已提交
80
#define SSL3_RECORD_get_length(r)               ((r)->length)
M
Matt Caswell 已提交
81 82
#define SSL3_RECORD_set_length(r, l)            ((r)->length = (l))
#define SSL3_RECORD_add_length(r, l)            ((r)->length += (l))
83
#define SSL3_RECORD_sub_length(r, l)            ((r)->length -= (l))
M
Matt Caswell 已提交
84
#define SSL3_RECORD_get_data(r)                 ((r)->data)
M
Matt Caswell 已提交
85 86 87 88
#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 已提交
89
#define SSL3_RECORD_get_seq_num(r)              ((r)->seq_num)
M
Matt Caswell 已提交
90 91 92 93
#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)
94 95
#define SSL3_RECORD_is_sslv2_record(r) \
            ((r)->rec_version == SSL2_VERSION)
96 97
#define SSL3_RECORD_is_read(r)                  ((r)->read)
#define SSL3_RECORD_set_read(r)                 ((r)->read = 1)
M
Matt Caswell 已提交
98

99 100
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 已提交
101
void SSL3_RECORD_set_seq_num(SSL3_RECORD *r, const unsigned char *seq_num);
102
int ssl3_get_record(SSL *s);
103
__owur int ssl3_do_compress(SSL *ssl, SSL3_RECORD *wr);
104
__owur int ssl3_do_uncompress(SSL *ssl, SSL3_RECORD *rr);
105 106
void ssl3_cbc_copy_mac(unsigned char *out,
                       const SSL3_RECORD *rec, unsigned md_size);
107
__owur int ssl3_cbc_remove_padding(SSL3_RECORD *rec,
108 109 110 111
                            unsigned block_size, unsigned mac_size);
__owur int tls1_cbc_remove_padding(const SSL *s,
                            SSL3_RECORD *rec,
                            unsigned block_size, unsigned mac_size);
112
int dtls1_process_record(SSL *s);
113
__owur int dtls1_get_record(SSL *s);