forked from YeeYoungHan/cppftpstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSipUdp.cpp
More file actions
565 lines (472 loc) · 13 KB
/
SipUdp.cpp
File metadata and controls
565 lines (472 loc) · 13 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
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
/*
* Copyright (C) 2012 Yee Young Han <[email protected]> (http://blog.naver.com/websearch)
*
* 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 3 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
*/
#include "SipPlatformDefine.h"
#include <time.h>
#include "SipUdp.h"
#include "Log.h"
#ifndef WIN32
#include <sys/ioctl.h>
#include <net/if.h>
#endif
#include "MemoryDebug.h"
/**
* @ingroup SipPlatform
* @brief UDP 소켓을 생성한다.
* @param bIpv6 IPv6 소켓을 생성할 것인가?
* @return 성공하면 socket handle 을 리턴한다. 그렇지 않으면 INVALID_SOCKET 를 리턴한다.
*/
Socket UdpSocket( bool bIpv6 )
{
Socket iFd;
iFd = socket( bIpv6 ? AF_INET6 : AF_INET, SOCK_DGRAM, IPPROTO_UDP );
if( iFd == INVALID_SOCKET )
{
return INVALID_SOCKET;
}
return iFd;
}
/**
* @ingroup SipPlatform
* @brief UDP listen 소켓을 생성한다.
* @param iPort UDP 포트
* @param pszIp UDP IP 주소. NULL 을 입력하면 any ip 주소를 사용한다.
* @param bIpv6 IPv6 소켓을 생성할 것인가?
* @return 성공하면 socket handle 을 리턴한다. 그렇지 않으면 INVALID_SOCKET 를 리턴한다.
*/
Socket UdpListen( unsigned short iPort, const char * pszIp, bool bIpv6 )
{
if( iPort == 0 )
{
return INVALID_SOCKET;
}
Socket iFd;
int n;
iFd = socket( bIpv6 ? AF_INET6 : AF_INET, SOCK_DGRAM, IPPROTO_UDP );
if( iFd == INVALID_SOCKET )
{
return INVALID_SOCKET;
}
#ifndef WINXP
if( bIpv6 )
{
struct sockaddr_in6 addr;
memset((char*) &(addr),0, sizeof((addr)));
addr.sin6_family = AF_INET6;
addr.sin6_port = htons(iPort);
if( pszIp )
{
inet_pton( AF_INET6, pszIp, &addr.sin6_addr );
}
else
{
addr.sin6_addr = in6addr_any;
}
n = bind( iFd,(struct sockaddr*)&addr, sizeof(addr));
}
else
#endif
{
struct sockaddr_in addr;
memset((char*) &(addr),0, sizeof((addr)));
addr.sin_family = AF_INET;
addr.sin_port = htons(iPort);
if( pszIp )
{
#ifdef WINXP
addr.sin_addr.s_addr = inet_addr(pszIp);
#else
inet_pton( AF_INET, pszIp, &addr.sin_addr.s_addr );
#endif
}
else
{
addr.sin_addr.s_addr = htonl(INADDR_ANY);
}
n = bind( iFd,(struct sockaddr*)&addr, sizeof(addr));
}
if( n != 0 )
{
closesocket( iFd );
return INVALID_SOCKET;
}
return iFd;
}
/**
* @ingroup SipPlatform
* @brief UDP 메시지를 수신한다.
* @param iFd 소켓 핸들
* @param pszBuf 수신 버퍼
* @param piLen 수신 패킷 크기를 저장할 변수
* @param pszIp IP 주소
* @param iIpSize IP 주소 변수 크기
* @param piPort 포트 번호
* @param bIpv6 IPv6 소켓인가?
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpRecv( Socket iFd, char * pszBuf, int * piLen, char * pszIp, int iIpSize, unsigned short* piPort, bool bIpv6 )
{
if( iFd == INVALID_SOCKET ) return false;
int iBufSize = *piLen;
if( iBufSize <= 0 ) return false;
#ifndef WINXP
if( bIpv6 )
{
struct sockaddr_in6 sttAddr;
int iAddrSize = sizeof(sttAddr);
*piLen = recvfrom( iFd, pszBuf, iBufSize, 0, (struct sockaddr *)&sttAddr, (socklen_t*)&iAddrSize );
if( *piLen <= 0 )
{
return false;
}
if( piPort ) *piPort = ntohs( sttAddr.sin6_port );
if( pszIp )
{
inet_ntop( AF_INET6, &sttAddr.sin6_addr, pszIp, iIpSize );
}
}
else
#endif
{
struct sockaddr_in sttAddr;
int iAddrSize = sizeof(sttAddr);
*piLen = recvfrom( iFd, pszBuf, iBufSize, 0, (struct sockaddr *)&sttAddr, (socklen_t*)&iAddrSize );
if( *piLen <= 0 )
{
return false;
}
if( piPort ) *piPort = ntohs( sttAddr.sin_port );
if( pszIp )
{
#ifdef WINXP
snprintf( pszIp, iIpSize, "%s", inet_ntoa( sttAddr.sin_addr ) );
#else
inet_ntop( AF_INET, &sttAddr.sin_addr, pszIp, iIpSize );
#endif
}
}
if( (*piLen)+1 >= iBufSize )
{
return false;
}
pszBuf[*piLen] = 0;
return true;
}
/**
* @ingroup SipPlatform
* @brief IPv4 로 UDP 메시지를 수신한다.
* @param iFd 소켓 핸들
* @param pszBuf 수신 버퍼
* @param piLen 수신 패킷 크기
* @param piIp IP 주소
* @param piPort 포트 번호
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpRecv( Socket iFd, char * pszBuf, int * piLen, unsigned int * piIp, unsigned short* piPort )
{
if( iFd == INVALID_SOCKET ) return false;
int iBufSize = *piLen;
if( iBufSize <= 0 ) return false;
struct sockaddr_in sttAddr;
int iAddrSize = sizeof(sttAddr);
*piLen = recvfrom( iFd, pszBuf, iBufSize-1, 0, (struct sockaddr *)&sttAddr, (socklen_t*)&iAddrSize );
if( *piLen <= 0 )
{
return false;
}
if( piPort ) *piPort = sttAddr.sin_port;
if( piIp ) *piIp = sttAddr.sin_addr.s_addr;
if( (*piLen)+1 > iBufSize )
{
return false;
}
pszBuf[*piLen] = 0;
return true;
}
/**
* @ingroup SipPlatform
* @brief IPv6 로 UDP 메시지를 수신한다.
* @param iFd 소켓 핸들
* @param pszBuf 수신 버퍼
* @param piLen 수신 패킷 크기
* @param psttIp IP 주소
* @param piPort 포트 번호
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpRecv( Socket iFd, char * pszBuf, int * piLen, IN6_ADDR * psttIp, unsigned short* piPort )
{
if( iFd == INVALID_SOCKET ) return false;
int iBufSize = *piLen;
if( iBufSize <= 0 ) return false;
struct sockaddr_in6 sttAddr;
int iAddrSize = sizeof(sttAddr);
*piLen = recvfrom( iFd, pszBuf, iBufSize-1, 0, (struct sockaddr *)&sttAddr, (socklen_t*)&iAddrSize );
if( *piLen <= 0 )
{
return false;
}
if( piPort ) *piPort = sttAddr.sin6_port;
if( psttIp ) memcpy( psttIp, &sttAddr.sin6_addr, sizeof(IN6_ADDR) );
if( (*piLen)+1 > iBufSize )
{
return false;
}
pszBuf[*piLen] = 0;
return true;
}
/**
* @ingroup SipPlatform
* @brief UDP 메시지를 전송한다.
* @param iFd 소캣 핸들
* @param pszBuf 전송 버퍼
* @param iBufLen 전송 버퍼 길이
* @param pszIp 목적지 IP 주소
* @param iPort 목적지 포트 번호
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpSend( Socket iFd, const char * pszBuf, int iBufLen, const char * pszIp, unsigned short iPort )
{
if( iFd == INVALID_SOCKET || pszBuf == NULL || iBufLen <= 0 || pszIp == NULL || iPort == 0 ) return false;
int n;
#ifndef WINXP
if( strstr( pszIp, ":" ) )
{
struct sockaddr_in6 sttAddr;
memset( &sttAddr, 0, sizeof(sttAddr) );
sttAddr.sin6_family = AF_INET6;
sttAddr.sin6_port = htons( iPort );
inet_pton( AF_INET6, pszIp, &sttAddr.sin6_addr );
n = sendto( iFd, pszBuf, iBufLen, 0, (sockaddr*)&sttAddr, sizeof(sttAddr) );
}
else
#endif
{
struct sockaddr_in sttAddr;
memset( &sttAddr, 0, sizeof(sttAddr) );
sttAddr.sin_family = AF_INET;
sttAddr.sin_port = htons( iPort );
#ifdef WINXP
sttAddr.sin_addr.s_addr = inet_addr( pszIp );
#else
inet_pton( AF_INET, pszIp, &sttAddr.sin_addr.s_addr );
#endif
n = sendto( iFd, pszBuf, iBufLen, 0, (sockaddr*)&sttAddr, sizeof(sttAddr) );
}
if( n != iBufLen )
{
CLog::Print( LOG_ERROR, "%s sendto error(%d)", __FUNCTION__, GetError() );
return false;
}
return true;
}
/**
* @ingroup SipPlatform
* @brief IPv4 로 UDP 메시지를 전송한다.
* @param iFd 소캣 핸들
* @param pszBuf 발신 버퍼
* @param iBufLen 발신 버퍼 길이
* @param iIp 목적지 IP 주소
* @param iPort 목적지 포트 번호
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpSend( Socket iFd, const char * pszBuf, int iBufLen, unsigned int iIp, unsigned short iPort )
{
if( iFd == INVALID_SOCKET || pszBuf == NULL || iBufLen <= 0 || iPort == 0 ) return false;
struct sockaddr_in sttAddr;
memset( &sttAddr, 0, sizeof(sttAddr) );
sttAddr.sin_family = AF_INET;
sttAddr.sin_port = iPort;
sttAddr.sin_addr.s_addr = iIp;
if( sendto( iFd, pszBuf, iBufLen, 0,(sockaddr*)&sttAddr, sizeof(sttAddr) ) != iBufLen )
{
return false;
}
return true;
}
/**
* @ingroup SipPlatform
* @brief IPv6 로 UDP 메시지를 전송한다.
* @param iFd 소캣 핸들
* @param pszBuf 발신 버퍼
* @param iBufLen 발신 버퍼 길이
* @param psttIp 목적지 IP 주소
* @param iPort 목적지 포트 번호
* @returns 성공하면 true 를 리턴하고 실패하면 false 를 리턴한다.
*/
bool UdpSend( Socket iFd, const char * pszBuf, int iBufLen, IN6_ADDR * psttIp, unsigned short iPort )
{
if( iFd == INVALID_SOCKET || pszBuf == NULL || iBufLen <= 0 || iPort == 0 ) return false;
struct sockaddr_in6 sttAddr;
memset( &sttAddr, 0, sizeof(sttAddr) );
sttAddr.sin6_family = AF_INET6;
sttAddr.sin6_port = iPort;
memcpy( &sttAddr.sin6_addr, psttIp, sizeof(sttAddr.sin6_addr) );
if( sendto( iFd, pszBuf, iBufLen, 0,(sockaddr*)&sttAddr, sizeof(sttAddr) ) != iBufLen )
{
return false;
}
return true;
}
/**
* @ingroup SipPlatform
* @brief 네트워크 API 를 초기화시킨다.
*/
void InitNetwork()
{
#ifdef WIN32
static bool bInitNetwork = false;
if( bInitNetwork == false )
{
WORD wVersionRequested = MAKEWORD( 2, 2 );
WSADATA wsaData;
if( WSAStartup( wVersionRequested, &wsaData ) != 0 )
{
return;
}
bInitNetwork = true;
}
#endif
}
/**
* @brief pollfd 구조체에 수신할 핸들을 저장한다.
* @param sttPollFd pollfd 구조체
* @param hSocket 수신 이벤트를 위한 소켓
*/
void TcpSetPollIn( struct pollfd & sttPollFd, Socket hSocket )
{
sttPollFd.fd = hSocket;
sttPollFd.events = POLLIN;
sttPollFd.revents = 0;
}
#ifdef WIN32
/**
* @ingroup SipPlatform
* @brief 윈도우용 poll 메소드
* - 현재는 read event 만 처리할 수 있다.
*/
int poll( struct pollfd *fds, unsigned int nfds, int timeout )
{
fd_set rset;
unsigned int i;
int n, iCount = 0;
struct timeval sttTimeout;
sttTimeout.tv_sec = timeout / 1000;
sttTimeout.tv_usec = ( timeout % 1000 ) * 1000;
FD_ZERO(&rset);
for( i = 0; i < nfds; ++i )
{
if( fds[i].fd != -1 ) FD_SET( fds[i].fd, &rset );
}
n = select( 0, &rset, NULL, NULL, &sttTimeout );
if( n <= 0 )
{
return n;
}
for( i = 0; i < nfds; ++i )
{
if( FD_ISSET( fds[i].fd, &rset ) )
{
fds[i].revents = POLLIN;
++iCount;
}
else
{
fds[i].revents = 0;
}
}
return iCount;
}
#endif
/**
* @ingroup SipPlatform
* @brief localhost IP 주소를 제외한 호스트에 연결된 IP 주소를 가져온다.
* @param strIp IP 주소를 저장할 변수
* @return 성공하면 true 를 리턴한다. 실패하면 false 를 리턴한다.
*/
bool GetLocalIp( std::string & strIp )
{
#ifdef WIN32
char szHostName[128], szIpAddr[INET6_ADDRSTRLEN];
struct sockaddr_in sttAddr;
struct hostent *psttHost = NULL;
InitNetwork();
memset( szHostName, 0, sizeof(szHostName) );
if( gethostname(szHostName, sizeof(szHostName)) ) return false;
psttHost = gethostbyname( szHostName );
if( !psttHost ) return false;
for( int i = 0; psttHost->h_addr_list[i]; i++ )
{
memcpy( &sttAddr.sin_addr, psttHost->h_addr_list[i], psttHost->h_length );
#ifdef WINXP
snprintf( szIpAddr, sizeof(szIpAddr), "%s", inet_ntoa(sttAddr.sin_addr) );
#else
inet_ntop( AF_INET, &sttAddr.sin_addr, szIpAddr, sizeof(szIpAddr) );
#endif
if( strcmp( szIpAddr, "127.0.0.1" ) )
{
strIp = szIpAddr;
break;
}
}
#else
struct ifconf ifc;
int hSocket = socket( AF_INET, SOCK_DGRAM, 0 );
int len = 100 * sizeof(struct ifreq);
char buf[ len ];
char szError[255];
ifc.ifc_len = len;
ifc.ifc_buf = buf;
int e = ioctl( hSocket, SIOCGIFCONF, &ifc );
if( e == -1 ) return false;
char *ptr = buf;
int tl = ifc.ifc_len;
char szIpAddr[INET6_ADDRSTRLEN];
while ( tl > 0 )
{
struct ifreq * ifr = (struct ifreq *)ptr;
int si;
#ifdef __APPLE__
si = sizeof(ifr->ifr_name) + sizeof(ifr->ifr_addr);
#else
si = sizeof(ifr->ifr_name) + sizeof(ifr->ifr_map);
#endif
tl -= si;
ptr += si;
struct ifreq ifr2;
ifr2 = *ifr;
e = ioctl( hSocket, SIOCGIFADDR, &ifr2 );
if( e == -1 )
{
printf( "ioctl error(%d) - %s\n", errno, strerror_r( errno, szError, sizeof(szError) ) );
continue;
}
struct sockaddr a = ifr2.ifr_addr;
struct sockaddr_in* addr = (struct sockaddr_in*) &a;
unsigned int ai = ntohl( addr->sin_addr.s_addr );
// 127.0.0.1 주소는 출력하지 않는다.
if( int((ai>>24)&0xFF) == 127 ) continue;
snprintf( szIpAddr, sizeof(szIpAddr), "%d.%d.%d.%d", int((ai>>24)&0xFF)
, int((ai>>16)&0xFF)
, int((ai>> 8)&0xFF)
, int((ai )&0xFF) );
strIp = szIpAddr;
break;
}
close(hSocket);
#endif
return true;
}