forked from vollero/openCAPWAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWTPFreqStatsReceive.c
More file actions
148 lines (122 loc) · 6.4 KB
/
WTPFreqStatsReceive.c
File metadata and controls
148 lines (122 loc) · 6.4 KB
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
/*******************************************************************************************
* Copyright (c) 2009 Laboratorio di Sistemi di Elaborazione e Bioingegneria Informatica *
* Universita' Campus BioMedico - Italy *
* *
* This program 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 of the License, or (at your option) any later version. *
* *
* This program 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 this *
* program; if not, write to the: *
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, *
* MA 02111-1307, USA. *
* *
* In addition, as a special exception, the copyright holders give permission to link the *
* code of portions of this program with the OpenSSL library under certain conditions as *
* described in each individual source file, and distribute linked combinations including *
* the two. You must obey the GNU General Public License in all respects for all of the *
* code used other than OpenSSL. If you modify file(s) with this exception, you may *
* extend this exception to your version of the file(s), but you are not obligated to do *
* so. If you do not wish to do so, delete this exception statement from your version. *
* If you delete this exception statement from all source files in the program, then also *
* delete it here. *
*
* --------------------------------------------------------------------------------------- *
* Project: Capwap *
* *
* Author : Antonio Davoli (antonio.davoli@gmail.com) *
* *
*******************************************************************************************/
#include "WTPFreqStatsReceive.h"
CW_THREAD_RETURN_TYPE CWWTPReceiveFreqStats(void *arg)
{
int recSock, rlen, k, fragmentsNum = 0;
struct sockaddr_in servaddr, client_addr;
socklen_t slen = sizeof(client_addr);
char buffer[PACKET_SIZE];
CWProtocolMessage *completeMsgPtr = NULL;
CWProtocolMessage *data = NULL;
CWBindingTransportHeaderValues *bindingValuesPtr = NULL;
CWThreadSetSignals(SIG_BLOCK, 1, SIGALRM);
/* Create an Inet UDP socket for this thread (Receive freq/ack packets) */
if ( ( recSock = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP) ) < 0 ) {
CWDebugLog("Thread Frequency Receive Stats: Error creating socket");
CWExitThread();
}
/* Set up address structure for server socket */
servaddr.sin_family = AF_INET;
servaddr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
servaddr.sin_port = htons(SERVER_PORT);
/* Binding Socket */
if ( bind(recSock, (struct sockaddr *) &servaddr, sizeof(struct sockaddr_in)) < 0 ) {
CWDebugLog("Thread Frequency Receive Stats: Binding Socket Error");
close(recSock);
CWExitThread();
}
CW_REPEAT_FOREVER /* Receive data Loop */
{
memset(buffer, 0, PACKET_SIZE);
fragmentsNum = 0;
k = 0;
rlen = 0;
if ( ( rlen = recvfrom(recSock, buffer, PACKET_SIZE, 0, (struct sockaddr *) &client_addr, &slen) ) > 0 )
{
/* Creation of stats/ack message for AC */
CW_CREATE_OBJECT_ERR(data, CWProtocolMessage, return 0;);
CW_CREATE_PROTOCOL_MESSAGE(*data, rlen, return 0;);
memcpy(data->msg, buffer, rlen);
data->offset=rlen;
/**************************************************************
* 2009 Update: *
* *
* Frequency Stats Message, like the QoS Data message are *
* encapsuled on Capwap Data Message. *
* For distinguish the two types of message we use the fields *
* of binding dataRate and SNR. *
* Frequency Stats Message: dataRate=-1 && SNR=1 *
* QoS Stats Message : dataRate=-1 *
* ---------------------------------------------------------- *
* For others Info: see CWBinding.c *
**************************************************************/
/* In this function is tied the name of the socket: recSock */
CW_CREATE_OBJECT_ERR(bindingValuesPtr, CWBindingTransportHeaderValues, EXIT_THREAD);
bindingValuesPtr->dataRate = -1;
bindingValuesPtr->SNR = 1;
/* Capwap Message Assembling */
if ( CWAssembleDataMessage(&completeMsgPtr, &fragmentsNum, gWTPPathMTU, data, bindingValuesPtr,
#ifdef CW_NO_DTLS
CW_PACKET_PLAIN
#else
CW_PACKET_CRYPT
#endif
,0) == CW_TRUE )
{
for (k = 0; k < fragmentsNum; k++) {
#ifdef CW_NO_DTLS
if (!CWNetworkSendUnsafeConnected(gWTPSocket, completeMsgPtr[k].msg, completeMsgPtr[k].offset)) {
#else
if (!CWSecuritySend(gWTPSession, completeMsgPtr[k].msg, completeMsgPtr[k].offset)) {
#endif
CWDebugLog("Failure sending Request");
}
}
}
/* Free used Structures */
for (k = 0; k < fragmentsNum; k++) {
CW_FREE_PROTOCOL_MESSAGE(completeMsgPtr[k]);
}
CW_FREE_OBJECT(completeMsgPtr);
CW_FREE_PROTOCOL_MESSAGE(*data);
CW_FREE_OBJECT(data);
CW_FREE_OBJECT(bindingValuesPtr);
}
else {
CWDebugLog("Thread Frequency Receive Stats: Error on recvfrom");
close(recSock);
}
}
}