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
|
/* 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 <string.h>
#include "lib/zassert.h"
#include "lib/memory.h"
#include "bgpd/bgp_notification.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 length)
{
return sizeof(struct bgp_notify) + (((length + 32 + 16 - 1) / 32) * 32) ;
} ;
/*==============================================================================
* Create/Destroy bgp_notify
*/
/*------------------------------------------------------------------------------
* Allocate and initialise new notification
*
* Can specify an expected amount of data.
*/
extern bgp_notify
bgp_notify_new(bgp_nom_code_t code, bgp_nom_subcode_t subcode,
bgp_size_t expect)
{
bgp_notify notification ;
bgp_size_t size = bgp_notify_size(expect) ;
notification = XCALLOC(MTYPE_BGP_NOTIFY, size) ;
notification->code = code ;
notification->subcode = subcode ;
notification->size = size ;
notification->length = 0 ;
return notification ;
} ;
/*------------------------------------------------------------------------------
* Duplicate existing notification (if any)
*/
extern bgp_notify
bgp_notify_dup(bgp_notify notification)
{
bgp_notify duplicate ;
bgp_size_t size ;
if (notification == NULL)
return NULL ;
size = bgp_notify_size(notification->length) ;
duplicate = XMALLOC(MTYPE_BGP_NOTIFY, size) ;
memcpy((void*)duplicate, (void*)notification, size) ;
duplicate->size = size ;
return duplicate ;
} ;
/*------------------------------------------------------------------------------
* Set notification (if any)
*
* 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)
{
bgp_notify_free(p_dst) ;
*p_dst = src ;
} ;
/*------------------------------------------------------------------------------
* Set notification (if any) to a *copy* of the source.
*
* Frees any existing notification at the destination.
*/
extern void
bgp_notify_set_dup(bgp_notify* p_dst, bgp_notify src)
{
bgp_notify_set(p_dst, bgp_notify_dup(src)) ;
} ;
/*------------------------------------------------------------------------------
* Set notification (if any) and set source pointer NULL
*
* 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_free(p_dst) ;
*p_dst = *p_src ;
*p_src = NULL ;
} ;
/*------------------------------------------------------------------------------
* Free notification structure
*
* Does nothing if there is no structure.
*/
extern void
bgp_notify_free(bgp_notify* p_notification)
{
if (*p_notification != NULL)
XFREE(MTYPE_BGP_NOTIFY, *p_notification) ; /* sets *p_notification NULL */
} ;
/*==============================================================================
* Append data to given notification
*
* Copes with zero length append.
*
* NB: returns possibly NEW ADDRESS of the notification.
*/
extern bgp_notify
bgp_notify_append_data(bgp_notify notification, const void* data,
bgp_size_t len)
{
bgp_size_t new_length = notification->length + len ;
if ((sizeof(struct bgp_notify) + new_length) > notification->size)
{
bgp_size_t size = bgp_notify_size(new_length) ;
notification = XREALLOC(MTYPE_BGP_NOTIFY, notification, size) ;
memset((char*)notification + notification->size, 0,
size - notification->size) ;
notification->size = size ;
} ;
if (len > 0)
memcpy((char*)(notification->data) + notification->length, data, len) ;
notification->length = new_length ;
return notification ;
} ;
|