PR: 1828
Submitted by: Robin Seggelmann <seggelmann@fh-muenster.de> Approved by: steve@openssl.org Fix DTLS retransmission bug.
This commit is contained in:
		@@ -136,7 +136,6 @@ static unsigned char *dtls1_write_message_header(SSL *s,
 | 
				
			|||||||
static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
 | 
					static void dtls1_set_message_header_int(SSL *s, unsigned char mt,
 | 
				
			||||||
	unsigned long len, unsigned short seq_num, unsigned long frag_off, 
 | 
						unsigned long len, unsigned short seq_num, unsigned long frag_off, 
 | 
				
			||||||
	unsigned long frag_len);
 | 
						unsigned long frag_len);
 | 
				
			||||||
static int dtls1_retransmit_buffered_messages(SSL *s);
 | 
					 | 
				
			||||||
static long dtls1_get_message_fragment(SSL *s, int st1, int stn, 
 | 
					static long dtls1_get_message_fragment(SSL *s, int st1, int stn, 
 | 
				
			||||||
	long max, int *ok);
 | 
						long max, int *ok);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -943,8 +942,21 @@ int dtls1_read_failed(SSL *s, int code)
 | 
				
			|||||||
	return dtls1_retransmit_buffered_messages(s) ;
 | 
						return dtls1_retransmit_buffered_messages(s) ;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					int
 | 
				
			||||||
 | 
					dtls1_get_queue_priority(unsigned short seq, int is_ccs)
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
						/* The index of the retransmission queue actually is the message sequence number,
 | 
				
			||||||
 | 
						 * since the queue only contains messages of a single handshake. However, the
 | 
				
			||||||
 | 
						 * ChangeCipherSpec has no message sequence number and so using only the sequence
 | 
				
			||||||
 | 
						 * will result in the CCS and Finished having the same index. To prevent this,
 | 
				
			||||||
 | 
						 * the sequence number is multiplied by 2. In case of a CCS 1 is subtracted.
 | 
				
			||||||
 | 
						 * This does not only differ CSS and Finished, it also maintains the order of the
 | 
				
			||||||
 | 
						 * index (important for priority queues) and fits in the unsigned short variable.
 | 
				
			||||||
 | 
						 */	
 | 
				
			||||||
 | 
						return seq * 2 - is_ccs;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static int
 | 
					int
 | 
				
			||||||
dtls1_retransmit_buffered_messages(SSL *s)
 | 
					dtls1_retransmit_buffered_messages(SSL *s)
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
	pqueue sent = s->d1->sent_messages;
 | 
						pqueue sent = s->d1->sent_messages;
 | 
				
			||||||
@@ -958,8 +970,9 @@ dtls1_retransmit_buffered_messages(SSL *s)
 | 
				
			|||||||
	for ( item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter))
 | 
						for ( item = pqueue_next(&iter); item != NULL; item = pqueue_next(&iter))
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
		frag = (hm_fragment *)item->data;
 | 
							frag = (hm_fragment *)item->data;
 | 
				
			||||||
		if ( dtls1_retransmit_message(s, frag->msg_header.seq, 0, &found) <= 0 &&
 | 
								if ( dtls1_retransmit_message(s,
 | 
				
			||||||
			found)
 | 
									dtls1_get_queue_priority(frag->msg_header.seq, frag->msg_header.is_ccs),
 | 
				
			||||||
 | 
									0, &found) <= 0 && found)
 | 
				
			||||||
			{
 | 
								{
 | 
				
			||||||
			fprintf(stderr, "dtls1_retransmit_message() failed\n");
 | 
								fprintf(stderr, "dtls1_retransmit_message() failed\n");
 | 
				
			||||||
			return -1;
 | 
								return -1;
 | 
				
			||||||
@@ -975,7 +988,6 @@ dtls1_buffer_message(SSL *s, int is_ccs)
 | 
				
			|||||||
	pitem *item;
 | 
						pitem *item;
 | 
				
			||||||
	hm_fragment *frag;
 | 
						hm_fragment *frag;
 | 
				
			||||||
	PQ_64BIT seq64;
 | 
						PQ_64BIT seq64;
 | 
				
			||||||
	unsigned int epoch = s->d1->w_epoch;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* this function is called immediately after a message has 
 | 
						/* this function is called immediately after a message has 
 | 
				
			||||||
	 * been serialized */
 | 
						 * been serialized */
 | 
				
			||||||
@@ -989,7 +1001,6 @@ dtls1_buffer_message(SSL *s, int is_ccs)
 | 
				
			|||||||
		{
 | 
							{
 | 
				
			||||||
		OPENSSL_assert(s->d1->w_msg_hdr.msg_len + 
 | 
							OPENSSL_assert(s->d1->w_msg_hdr.msg_len + 
 | 
				
			||||||
			DTLS1_CCS_HEADER_LENGTH <= (unsigned int)s->init_num);
 | 
								DTLS1_CCS_HEADER_LENGTH <= (unsigned int)s->init_num);
 | 
				
			||||||
		epoch++;
 | 
					 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	else
 | 
						else
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
@@ -1004,9 +1015,19 @@ dtls1_buffer_message(SSL *s, int is_ccs)
 | 
				
			|||||||
	frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
 | 
						frag->msg_header.frag_len = s->d1->w_msg_hdr.msg_len;
 | 
				
			||||||
	frag->msg_header.is_ccs = is_ccs;
 | 
						frag->msg_header.is_ccs = is_ccs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	pq_64bit_init(&seq64);
 | 
						/* save current state*/
 | 
				
			||||||
	pq_64bit_assign_word(&seq64, epoch<<16 | frag->msg_header.seq);
 | 
						frag->msg_header.saved_retransmit_state.enc_write_ctx = s->enc_write_ctx;
 | 
				
			||||||
 | 
						frag->msg_header.saved_retransmit_state.write_hash = s->write_hash;
 | 
				
			||||||
 | 
						frag->msg_header.saved_retransmit_state.compress = s->compress;
 | 
				
			||||||
 | 
						frag->msg_header.saved_retransmit_state.session = s->session;
 | 
				
			||||||
 | 
						frag->msg_header.saved_retransmit_state.epoch = s->d1->w_epoch;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						pq_64bit_init(&seq64);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						pq_64bit_assign_word(&seq64,
 | 
				
			||||||
 | 
											 dtls1_get_queue_priority(frag->msg_header.seq,
 | 
				
			||||||
 | 
																	  frag->msg_header.is_ccs));
 | 
				
			||||||
 | 
							
 | 
				
			||||||
	item = pitem_new(seq64, frag);
 | 
						item = pitem_new(seq64, frag);
 | 
				
			||||||
	pq_64bit_free(&seq64);
 | 
						pq_64bit_free(&seq64);
 | 
				
			||||||
	if ( item == NULL)
 | 
						if ( item == NULL)
 | 
				
			||||||
@@ -1035,6 +1056,8 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
 | 
				
			|||||||
	hm_fragment *frag ;
 | 
						hm_fragment *frag ;
 | 
				
			||||||
	unsigned long header_length;
 | 
						unsigned long header_length;
 | 
				
			||||||
	PQ_64BIT seq64;
 | 
						PQ_64BIT seq64;
 | 
				
			||||||
 | 
						struct dtls1_retransmit_state saved_state;
 | 
				
			||||||
 | 
						unsigned char save_write_sequence[8];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/*
 | 
						/*
 | 
				
			||||||
	  OPENSSL_assert(s->init_num == 0);
 | 
						  OPENSSL_assert(s->init_num == 0);
 | 
				
			||||||
@@ -1070,9 +1093,45 @@ dtls1_retransmit_message(SSL *s, unsigned short seq, unsigned long frag_off,
 | 
				
			|||||||
		frag->msg_header.msg_len, frag->msg_header.seq, 0, 
 | 
							frag->msg_header.msg_len, frag->msg_header.seq, 0, 
 | 
				
			||||||
		frag->msg_header.frag_len);
 | 
							frag->msg_header.frag_len);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* save current state */
 | 
				
			||||||
 | 
						saved_state.enc_write_ctx = s->enc_write_ctx;
 | 
				
			||||||
 | 
						saved_state.write_hash = s->write_hash;
 | 
				
			||||||
 | 
						saved_state.compress = s->compress;
 | 
				
			||||||
 | 
						saved_state.session = s->session;
 | 
				
			||||||
 | 
						saved_state.epoch = s->d1->w_epoch;
 | 
				
			||||||
 | 
						saved_state.epoch = s->d1->w_epoch;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
	s->d1->retransmitting = 1;
 | 
						s->d1->retransmitting = 1;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						/* restore state in which the message was originally sent */
 | 
				
			||||||
 | 
						s->enc_write_ctx = frag->msg_header.saved_retransmit_state.enc_write_ctx;
 | 
				
			||||||
 | 
						s->write_hash = frag->msg_header.saved_retransmit_state.write_hash;
 | 
				
			||||||
 | 
						s->compress = frag->msg_header.saved_retransmit_state.compress;
 | 
				
			||||||
 | 
						s->session = frag->msg_header.saved_retransmit_state.session;
 | 
				
			||||||
 | 
						s->d1->w_epoch = frag->msg_header.saved_retransmit_state.epoch;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
							memcpy(save_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
 | 
				
			||||||
 | 
							memcpy(s->s3->write_sequence, s->d1->last_write_sequence, sizeof(s->s3->write_sequence));
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						
 | 
				
			||||||
	ret = dtls1_do_write(s, frag->msg_header.is_ccs ? 
 | 
						ret = dtls1_do_write(s, frag->msg_header.is_ccs ? 
 | 
				
			||||||
		SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
 | 
											 SSL3_RT_CHANGE_CIPHER_SPEC : SSL3_RT_HANDSHAKE);
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						/* restore current state */
 | 
				
			||||||
 | 
						s->enc_write_ctx = saved_state.enc_write_ctx;
 | 
				
			||||||
 | 
						s->write_hash = saved_state.write_hash;
 | 
				
			||||||
 | 
						s->compress = saved_state.compress;
 | 
				
			||||||
 | 
						s->session = saved_state.session;
 | 
				
			||||||
 | 
						s->d1->w_epoch = saved_state.epoch;
 | 
				
			||||||
 | 
						
 | 
				
			||||||
 | 
						if (frag->msg_header.saved_retransmit_state.epoch == saved_state.epoch - 1)
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
							memcpy(s->d1->last_write_sequence, s->s3->write_sequence, sizeof(s->s3->write_sequence));
 | 
				
			||||||
 | 
							memcpy(s->s3->write_sequence, save_write_sequence, sizeof(s->s3->write_sequence));
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	s->d1->retransmitting = 0;
 | 
						s->d1->retransmitting = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	(void)BIO_flush(SSL_get_wbio(s));
 | 
						(void)BIO_flush(SSL_get_wbio(s));
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								ssl/d1_pkt.c
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								ssl/d1_pkt.c
									
									
									
									
									
								
							@@ -942,7 +942,9 @@ start:
 | 
				
			|||||||
				n2s(p, seq);
 | 
									n2s(p, seq);
 | 
				
			||||||
				n2l3(p, frag_off);
 | 
									n2l3(p, frag_off);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				dtls1_retransmit_message(s, seq, frag_off, &found);
 | 
									dtls1_retransmit_message(s,
 | 
				
			||||||
 | 
															 dtls1_get_queue_priority(frag->msg_header.seq, 0),
 | 
				
			||||||
 | 
															 frag_off, &found);
 | 
				
			||||||
				if ( ! found  && SSL_in_init(s))
 | 
									if ( ! found  && SSL_in_init(s))
 | 
				
			||||||
					{
 | 
										{
 | 
				
			||||||
					/* fprintf( stderr,"in init = %d\n", SSL_in_init(s)); */
 | 
										/* fprintf( stderr,"in init = %d\n", SSL_in_init(s)); */
 | 
				
			||||||
@@ -1035,6 +1037,16 @@ start:
 | 
				
			|||||||
			goto start;
 | 
								goto start;
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							/* If we are server, we may have a repeated FINISHED of the
 | 
				
			||||||
 | 
							 * client here, then retransmit our CCS and FINISHED.
 | 
				
			||||||
 | 
							 */
 | 
				
			||||||
 | 
							if (msg_hdr.type == SSL3_MT_FINISHED)
 | 
				
			||||||
 | 
								{
 | 
				
			||||||
 | 
								dtls1_retransmit_buffered_messages(s);
 | 
				
			||||||
 | 
								rr->length = 0;
 | 
				
			||||||
 | 
								goto start;
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		if (((s->state&SSL_ST_MASK) == SSL_ST_OK) &&
 | 
							if (((s->state&SSL_ST_MASK) == SSL_ST_OK) &&
 | 
				
			||||||
			!(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS))
 | 
								!(s->s3->flags & SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS))
 | 
				
			||||||
			{
 | 
								{
 | 
				
			||||||
@@ -1758,6 +1770,7 @@ dtls1_reset_seq_numbers(SSL *s, int rw)
 | 
				
			|||||||
	else
 | 
						else
 | 
				
			||||||
		{
 | 
							{
 | 
				
			||||||
		seq = s->s3->write_sequence;
 | 
							seq = s->s3->write_sequence;
 | 
				
			||||||
 | 
							memcpy(s->d1->last_write_sequence, seq, sizeof(s->s3->write_sequence));
 | 
				
			||||||
		s->d1->w_epoch++;
 | 
							s->d1->w_epoch++;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										17
									
								
								ssl/dtls1.h
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								ssl/dtls1.h
									
									
									
									
									
								
							@@ -101,6 +101,19 @@ typedef struct dtls1_bitmap_st
 | 
				
			|||||||
	PQ_64BIT max_seq_num;  /* max record number seen so far */
 | 
						PQ_64BIT max_seq_num;  /* max record number seen so far */
 | 
				
			||||||
	} DTLS1_BITMAP;
 | 
						} DTLS1_BITMAP;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					struct dtls1_retransmit_state
 | 
				
			||||||
 | 
						{
 | 
				
			||||||
 | 
						EVP_CIPHER_CTX *enc_write_ctx;	/* cryptographic state */
 | 
				
			||||||
 | 
						const EVP_MD *write_hash;		/* used for mac generation */
 | 
				
			||||||
 | 
					#ifndef OPENSSL_NO_COMP
 | 
				
			||||||
 | 
						COMP_CTX *compress;				/* compression */
 | 
				
			||||||
 | 
					#else
 | 
				
			||||||
 | 
						char *compress;	
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
						SSL_SESSION *session;
 | 
				
			||||||
 | 
						unsigned short epoch;
 | 
				
			||||||
 | 
						};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct hm_header_st
 | 
					struct hm_header_st
 | 
				
			||||||
	{
 | 
						{
 | 
				
			||||||
	unsigned char type;
 | 
						unsigned char type;
 | 
				
			||||||
@@ -109,6 +122,7 @@ struct hm_header_st
 | 
				
			|||||||
	unsigned long frag_off;
 | 
						unsigned long frag_off;
 | 
				
			||||||
	unsigned long frag_len;
 | 
						unsigned long frag_len;
 | 
				
			||||||
	unsigned int is_ccs;
 | 
						unsigned int is_ccs;
 | 
				
			||||||
 | 
						struct dtls1_retransmit_state saved_retransmit_state;
 | 
				
			||||||
	};
 | 
						};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct ccs_header_st
 | 
					struct ccs_header_st
 | 
				
			||||||
@@ -168,6 +182,9 @@ typedef struct dtls1_state_st
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	unsigned short handshake_read_seq;
 | 
						unsigned short handshake_read_seq;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						/* save last sequence number for retransmissions */
 | 
				
			||||||
 | 
						unsigned char last_write_sequence[8];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Received handshake records (processed and unprocessed) */
 | 
						/* Received handshake records (processed and unprocessed) */
 | 
				
			||||||
	record_pqueue unprocessed_rcds;
 | 
						record_pqueue unprocessed_rcds;
 | 
				
			||||||
	record_pqueue processed_rcds;
 | 
						record_pqueue processed_rcds;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -862,6 +862,8 @@ int dtls1_read_failed(SSL *s, int code);
 | 
				
			|||||||
int dtls1_buffer_message(SSL *s, int ccs);
 | 
					int dtls1_buffer_message(SSL *s, int ccs);
 | 
				
			||||||
int dtls1_retransmit_message(SSL *s, unsigned short seq, 
 | 
					int dtls1_retransmit_message(SSL *s, unsigned short seq, 
 | 
				
			||||||
	unsigned long frag_off, int *found);
 | 
						unsigned long frag_off, int *found);
 | 
				
			||||||
 | 
					int dtls1_get_queue_priority(unsigned short seq, int is_ccs);
 | 
				
			||||||
 | 
					int dtls1_retransmit_buffered_messages(SSL *s);
 | 
				
			||||||
void dtls1_clear_record_buffer(SSL *s);
 | 
					void dtls1_clear_record_buffer(SSL *s);
 | 
				
			||||||
void dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr);
 | 
					void dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr);
 | 
				
			||||||
void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr);
 | 
					void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user