aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/tls/gnutls_supplemental.c
blob: 0419917c0e8f54e8d6d72c32478fcb6e7413643b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
 * Copyright (C) 2007 Free Software Foundation
 *
 * Author: Simon Josefsson
 *
 * This file is part of GNUTLS.
 *
 * The GNUTLS library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 * USA
 *
 */

/* This file contains support functions for 'TLS Handshake Message for
 * Supplemental Data' (RFC 4680).
 *
 * The idea here is simple.  MHD__gnutls_handshake() in gnuts_handshake.c
 * will call MHD__gnutls_gen_supplemental and MHD__gnutls_parse_supplemental
 * when some extension requested that supplemental data be sent or
 * received.  Extension request this by setting the flags
 * do_recv_supplemental or do_send_supplemental in the session.
 *
 * The functions in this file iterate through the MHD__gnutls_supplemental
 * array, and calls the send/recv functions for each respective data
 * type.
 *
 * The receive function of each data type is responsible for decoding
 * its own data.  If the extension did not expect to receive
 * supplemental data, it should return GNUTLS_E_UNEXPECTED_PACKET.
 * Otherwise, it just parse the data as normal.
 *
 * The send function needs to append the 2-byte data format type, and
 * append the 2-byte length of its data, and the data.  If it doesn't
 * want to send any data, it is fine to return without doing anything.
 */

#include "gnutls_int.h"
#include "gnutls_supplemental.h"
#include "gnutls_errors.h"
#include "gnutls_num.h"

typedef int (*supp_recv_func) (MHD_gtls_session_t session,
                               const opaque * data, size_t data_size);
typedef int (*supp_send_func) (MHD_gtls_session_t session,
                               MHD_gtls_buffer * buf);

typedef struct
{
  const char *name;
  MHD_gnutls_supplemental_data_format_type_t type;
  supp_recv_func supp_recv_func;
  supp_send_func supp_send_func;
} MHD_gnutls_supplemental_entry;

MHD_gnutls_supplemental_entry MHD__gnutls_supplemental[] = {
  {0, 0, 0, 0}
};

const char *
MHD_gtls_supplemental_get_name (MHD_gnutls_supplemental_data_format_type_t
                                type)
{
  MHD_gnutls_supplemental_entry *p;

  for (p = MHD__gnutls_supplemental; p->name != NULL; p++)
    if (p->type == type)
      return p->name;

  return NULL;
}

static supp_recv_func
get_supp_func_recv (MHD_gnutls_supplemental_data_format_type_t type)
{
  MHD_gnutls_supplemental_entry *p;

  for (p = MHD__gnutls_supplemental; p->name != NULL; p++)
    if (p->type == type)
      return p->supp_recv_func;

  return NULL;
}

int
MHD__gnutls_gen_supplemental (MHD_gtls_session_t session,
                              MHD_gtls_buffer * buf)
{
  MHD_gnutls_supplemental_entry *p;
  int ret;

  /* Make room for 3 byte length field. */
  ret = MHD_gtls_buffer_append (buf, "\0\0\0", 3);
  if (ret < 0)
    {
      MHD_gnutls_assert ();
      return ret;
    }

  for (p = MHD__gnutls_supplemental; p->name; p++)
    {
      supp_send_func supp_send = p->supp_send_func;
      size_t sizepos = buf->length;
      int ret;

      /* Make room for supplement type and length byte length field. */
      ret = MHD_gtls_buffer_append (buf, "\0\0\0\0", 4);
      if (ret < 0)
        {
          MHD_gnutls_assert ();
          return ret;
        }

      ret = supp_send (session, buf);
      if (ret < 0)
        {
          MHD_gnutls_assert ();
          return ret;
        }

      /* If data were added, store type+length, otherwise reset. */
      if (buf->length > sizepos + 4)
        {
          buf->data[sizepos] = 0;
          buf->data[sizepos + 1] = p->type;
          buf->data[sizepos + 2] = ((buf->length - sizepos - 4) >> 8) & 0xFF;
          buf->data[sizepos + 3] = (buf->length - sizepos - 4) & 0xFF;
        }
      else
        buf->length -= 4;
    }

  buf->data[0] = ((buf->length - 3) >> 16) & 0xFF;
  buf->data[1] = ((buf->length - 3) >> 8) & 0xFF;
  buf->data[2] = (buf->length - 3) & 0xFF;

  MHD__gnutls_debug_log ("EXT[%x]: Sending %d bytes of supplemental data\n",
                         session, buf->length);

  return buf->length;
}

int
MHD__gnutls_parse_supplemental (MHD_gtls_session_t session,
                                const uint8_t * data, int datalen)
{
  const opaque *p = data;
  ssize_t dsize = datalen;
  size_t total_size;

  DECR_LEN (dsize, 3);
  total_size = MHD_gtls_read_uint24 (p);
  p += 3;

  if (dsize != total_size)
    {
      MHD_gnutls_assert ();
      return GNUTLS_E_RECEIVED_ILLEGAL_PARAMETER;
    }

  do
    {
      uint16_t supp_data_type;
      uint16_t supp_data_length;
      supp_recv_func recv_func;

      DECR_LEN (dsize, 2);
      supp_data_type = MHD_gtls_read_uint16 (p);
      p += 2;

      DECR_LEN (dsize, 2);
      supp_data_length = MHD_gtls_read_uint16 (p);
      p += 2;

      MHD__gnutls_debug_log
        ("EXT[%x]: Got supplemental type=%02x length=%d\n", session,
         supp_data_type, supp_data_length);

      recv_func = get_supp_func_recv (supp_data_type);
      if (recv_func)
        {
          int ret = recv_func (session, p, supp_data_length);
          if (ret < 0)
            {
              MHD_gnutls_assert ();
              return ret;
            }
        }
      else
        {
          MHD_gnutls_assert ();
          return GNUTLS_E_RECEIVED_ILLEGAL_PARAMETER;
        }

      DECR_LEN (dsize, supp_data_length);
      p += supp_data_length;
    }
  while (dsize > 0);

  return 0;
}