summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_notification.c
blob: d70491c9f07668a3987e0b6fc4aec93bb27d7284 (plain)
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/* BGP Notification state handling
 * Copyright (C) 1996, 97, 98 Kunihiro Ishiguro
 *
 * Recast for pthreaded bgpd: Copyright (C) Chris Hall (GMCH), Highwayman
 *
 * This file is part of GNU Zebra.
 *
 * GNU Zebra is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2, or (at your
 * option) any later version.
 *
 * GNU Zebra 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GNU Zebra; see the file COPYING.  If not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */
#include "misc.h"

#include <netinet/in.h>

#include "lib/zassert.h"
#include "lib/memory.h"

#include "bgpd/bgp_notification.h"
#include "bgpd/bgp_open_state.h"

/*==============================================================================
 * A bgp_notify structure encapsulates the contents of a BGP NOTIFICATION
 * message.
 */

/*------------------------------------------------------------------------------
 * Calculate size for bgp_notify of given length
 *
 * Rounds up to multiple of 32, such that is always at least 16 bytes available.
 */
static inline bgp_size_t
bgp_notify_size(bgp_size_t size)
{
  return (size == 0) ? 0 : ((size + 32 + 16 - 1) / 32) * 32 ;
} ;

/*==============================================================================
 * Create/Destroy bgp_notify
 */

/*------------------------------------------------------------------------------
 * Allocate and initialise new notification
 *
 * Can add data later if required.
 *
 * NB: returns a 'NOT received' notification.
 */
extern bgp_notify
bgp_notify_new(bgp_nom_code_t code, bgp_nom_subcode_t subcode)
{
  bgp_notify notification ;

  notification = XCALLOC(MTYPE_BGP_NOTIFY, sizeof(struct bgp_notify)) ;

  notification->code    = code ;
  notification->subcode = subcode ;

  /* Implicitly:
   *
   *  notification->received = false ;
   *  notification->size     = 0
   *  notification->length   = 0
   *  notification->data     = NULL
   */

  return notification ;
} ;

/*------------------------------------------------------------------------------
 * Allocate and initialise new notification -- expecting some data.
 *
 * Can specify an expected amount of data -- may use more or less than this...
 * ...but pre-allocates at least the expected amount.
 *
 * May expect 0.
 *
 * NB: returns a 'NOT received' notification.
 */
extern bgp_notify
bgp_notify_new_expect(bgp_nom_code_t code, bgp_nom_subcode_t subcode,
                                                              bgp_size_t expect)
{
  bgp_notify notification = bgp_notify_new(code, subcode) ;

  if (expect != 0)
    {
      notification->size  = bgp_notify_size(expect) ;
      notification->data  = XCALLOC(MTYPE_TMP, notification->size) ;
    } ;

  return notification ;
} ;

/*------------------------------------------------------------------------------
 * Allocate and initialise new notification, complete with data
 *
 * Can specify an expected amount of data -- copes with len == 0 (and data may
 * be NULL iff len == 0).
 *
 * NB: returns a 'NOT received' notification.
 */
extern bgp_notify
bgp_notify_new_with_data(bgp_nom_code_t code, bgp_nom_subcode_t subcode,
                                               const void* data, bgp_size_t len)
{
  bgp_notify notification ;

  notification = bgp_notify_new_expect(code, subcode, len) ;
  bgp_notify_append_data(notification, data, len) ;

  return notification ;
} ;

/*------------------------------------------------------------------------------
 * Free notification structure
 *
 * Does nothing if there is no structure.
 */
extern void
bgp_notify_free(bgp_notify notification)
{
  if (notification != NULL)
    {
      if (notification->data != NULL)
        XFREE(MTYPE_TMP, notification->data) ;
      XFREE(MTYPE_BGP_NOTIFY, notification) ;
    } ;
} ;

/*------------------------------------------------------------------------------
 * Duplicate existing notification (if any)
 */
extern bgp_notify
bgp_notify_dup(bgp_notify notification)
{
  bgp_notify duplicate ;

  if (notification == NULL)
    return NULL ;

  duplicate = XMALLOC(MTYPE_BGP_NOTIFY, sizeof(struct bgp_notify)) ;
  *duplicate = *notification ;

  if (duplicate->length == 0)
    {
      duplicate->size = 0 ;
      duplicate->data = NULL ;
    }
  else
    {
      duplicate->size = bgp_notify_size(duplicate->length) ;
      duplicate->data = XCALLOC(MTYPE_TMP, duplicate->size) ;
      memcpy(duplicate->data, notification->data, duplicate->length) ;
    } ;

  return duplicate ;
} ;

/*------------------------------------------------------------------------------
 * Unset pointer to notification and free any existing notification structure.
 *
 * Does nothing if there is no structure.
 */
extern void
bgp_notify_unset(bgp_notify* p_notification)
{
  bgp_notify_free(*p_notification) ;    /* free anything that's there   */
  *p_notification = NULL ;
} ;

/*------------------------------------------------------------------------------
 * Unset pointer to notification and return the pointer value.
 *
 * Returns NULL if there is no structure.
 */
extern bgp_notify
bgp_notify_take(bgp_notify* p_notification)
{
  bgp_notify take = *p_notification ;    /* take anything that's there   */
  *p_notification = NULL ;
  return take ;
} ;

/*------------------------------------------------------------------------------
 * Set pointer to notification
 *
 * Frees any existing notification at the destination.
 *
 * NB: copies the source pointer -- so must be clear about responsibility
 *     for the notification structure.
 */
extern void
bgp_notify_set(bgp_notify* p_dst, bgp_notify src)
{
  if (*p_dst != src)            /* empty operation if already set !     */
    {
      bgp_notify_free(*p_dst) ;
      *p_dst = src ;
    } ;
} ;

/*------------------------------------------------------------------------------
 * Set pointer to notification to a *copy* of the source.
 *
 * Frees any existing notification at the destination unless points at src !
 */
extern void
bgp_notify_set_dup(bgp_notify* p_dst, bgp_notify src)
{
  if (*p_dst != src)
    bgp_notify_free(*p_dst) ;   /* avoid freeing what we're duplicating */

  *p_dst = bgp_notify_dup(src) ;
} ;

/*------------------------------------------------------------------------------
 * Set pointer to notification and unset source pointer
 *
 * Frees any existing notification at the destination.
 *
 * NB: responsibility for the notification structure passes to the destination.
 */
extern void
bgp_notify_set_mov(bgp_notify* p_dst, bgp_notify* p_src)
{
  bgp_notify_set(p_dst, *p_src) ;
  *p_src = NULL ;
} ;

/*==============================================================================
 * Set new Code and Subcode and discard and data accumulated so far.
 *
 * NB: does not change the received state of the notification.
 */
extern bgp_notify
bgp_notify_reset(bgp_notify notification, bgp_nom_code_t code,
                                                      bgp_nom_subcode_t subcode)
{
  if (notification == NULL)
    return bgp_notify_new(code, subcode) ;

  notification->code    = code ;
  notification->subcode = subcode ;
  notification->length  = 0 ;

  return notification ;
} ;

/*==============================================================================
 * Append data to given notification
 *
 * Copes with zero length append (and data may be NULL if len == 0).
 *
 * NB: returns possibly NEW ADDRESS of the notification.
 */
extern void
bgp_notify_append_data(bgp_notify notification, const void* data,
                                                                 bgp_size_t len)
{
  bgp_size_t new_length = notification->length + len ;	/* unsigned	*/

  if (new_length > notification->size)
    {
      bgp_size_t size = bgp_notify_size(new_length) ;

      if (notification->size == 0)
        notification->data = XCALLOC(MTYPE_TMP, size) ;
      else
        notification->data = XREALLOC(MTYPE_TMP, notification->data, size) ;

      memset(notification->data + new_length, 0, size - new_length) ;
      notification->size = size ;
    } ;

  if (len > 0)
    memcpy(notification->data + notification->length, data, len) ;

  notification->length = new_length ;
} ;

/*------------------------------------------------------------------------------
 * Append one byte
 */
extern void
bgp_notify_append_b(bgp_notify notification, uint8_t b)
{
  bgp_notify_append_data(notification, &b, 1) ;
} ;

/*------------------------------------------------------------------------------
 * Append one word (uint16_t), in network byte order
 */
extern void
bgp_notify_append_w(bgp_notify notification, uint16_t w)
{
  w = htons(w) ;
  bgp_notify_append_data(notification, &w, 2) ;
} ;

/*------------------------------------------------------------------------------
 * Append one long (uint32_t), in network byte order
 */
extern void
bgp_notify_append_l(bgp_notify notification, uint32_t l)
{
  l = htonl(l) ;
  bgp_notify_append_data(notification, &l, 4) ;
} ;