summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ssl-utils.c
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2017-03-17 15:46:14 +0100
committerMichael Mann <mmann78@netscape.net>2017-03-18 23:20:13 +0000
commit2337b7bd20e6db80797384a03a83a45c4b58a580 (patch)
tree36a1892311a695a2f5dbeb468a375f44e6521ae2 /epan/dissectors/packet-ssl-utils.c
parenta126c8093dbacb60e525dc9b306a2726f9ceb97a (diff)
downloadwireshark-2337b7bd20e6db80797384a03a83a45c4b58a580.tar.gz
TLS13: update early_data for draft -19
Added new max_early_data_size for NewSessionTicket. Change-Id: I6886415d03ffdce983b49649ad52ff0f897f2f77 Ping-Bug: 12779 Reviewed-on: https://code.wireshark.org/review/20591 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.c')
-rw-r--r--epan/dissectors/packet-ssl-utils.c38
1 files changed, 34 insertions, 4 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index 3d803a05d2..cb8de960cd 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -6204,6 +6204,39 @@ ssl_dissect_hnd_hello_ext_pre_shared_key(ssl_common_dissect_t *hf, tvbuff_t *tvb
return offset;
}
+static guint32
+ssl_dissect_hnd_hello_ext_early_data(ssl_common_dissect_t *hf, tvbuff_t *tvb, packet_info *pinfo _U_,
+ proto_tree *tree, guint32 offset, guint32 offset_end _U_,
+ guint8 hnd_type, SslDecryptSession *ssl)
+{
+ /* https://tools.ietf.org/html/draft-ietf-tls-tls13-19#section-4.2.7
+ * struct {} Empty;
+ * struct {
+ * select (Handshake.msg_type) {
+ * case new_session_ticket: uint32 max_early_data_size;
+ * case client_hello: Empty;
+ * case encrypted_extensions: Empty;
+ * };
+ * } EarlyDataIndication;
+ */
+ switch (hnd_type) {
+ case SSL_HND_CLIENT_HELLO:
+ /* Remember that early_data will follow the handshake. */
+ if (ssl) {
+ ssl_debug_printf("%s found early_data extension\n", G_STRFUNC);
+ ssl->has_early_data = TRUE;
+ }
+ break;
+ case SSL_HND_NEWSESSION_TICKET:
+ proto_tree_add_item(tree, hf->hf.hs_ext_max_early_data_size, tvb, offset, 4, ENC_BIG_ENDIAN);
+ offset += 4;
+ break;
+ default:
+ break;
+ }
+ return offset;
+}
+
static gint
ssl_dissect_hnd_hello_ext_supported_versions(ssl_common_dissect_t *hf, tvbuff_t *tvb, packet_info *pinfo,
proto_tree *tree, guint32 offset, guint32 offset_end)
@@ -7744,10 +7777,7 @@ ssl_dissect_hnd_extension(ssl_common_dissect_t *hf, tvbuff_t *tvb, proto_tree *t
offset = ssl_dissect_hnd_hello_ext_pre_shared_key(hf, tvb, pinfo, ext_tree, offset, next_offset, hnd_type);
break;
case SSL_HND_HELLO_EXT_EARLY_DATA:
- if (hnd_type == SSL_HND_CLIENT_HELLO && ssl) {
- ssl_debug_printf("%s found early_data extension\n", G_STRFUNC);
- ssl->has_early_data = TRUE;
- }
+ offset = ssl_dissect_hnd_hello_ext_early_data(hf, tvb, pinfo, ext_tree, offset, next_offset, hnd_type, ssl);
break;
case SSL_HND_HELLO_EXT_SUPPORTED_VERSIONS:
offset = ssl_dissect_hnd_hello_ext_supported_versions(hf, tvb, pinfo, ext_tree, offset, next_offset);