qq
[tedtools.git] / udp.c
1 /*
2  * Copyright (c) 2004 Teodor Sigaev <teodor@sigaev.ru>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *        notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *        notice, this list of conditions and the following disclaimer in the
12  *        documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *        may be used to endorse or promote products derived from this software
15  *        without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
18  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23  * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25  * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <unistd.h>
35 #include <fcntl.h>
36
37
38 #include "connection.h"
39 #include "tlog.h"
40 #include "tmalloc.h"
41
42 int 
43 TC_AcceptUdp(char *host, int port) {
44         struct sockaddr_in serv_addr;
45         int sockfd, flags;
46
47         if ( (sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
48                 tlog(TL_CRIT|TL_EXIT, "udp socket %s", strerror(errno));
49         if ((flags=fcntl(sockfd,F_GETFL,0)) == -1)
50                 tlog(TL_ALARM,"fcntl F_GETFL - %s",strerror(errno));
51
52         if (fcntl(sockfd,F_SETFL,flags|O_NDELAY) < 0 )
53                 tlog(TL_ALARM,"fcntl O_NDELAY - %s",strerror(errno));
54
55         memset(&serv_addr, 0, sizeof(serv_addr));
56         serv_addr.sin_family = AF_INET;
57         serv_addr.sin_addr.s_addr = inet_addr(host);
58         serv_addr.sin_port = htons(port);
59
60         if (bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0)
61                 tlog(TL_CRIT|TL_EXIT, "cannot bind to %s address: %s",
62                         inet_ntoa(serv_addr.sin_addr), strerror(errno));
63
64         return sockfd;
65 }
66
67 #define MSGMAXSIZE      8192
68 char pc_msg_buf[MSGMAXSIZE];
69
70 u_int32_t 
71 TC_getMsg( int sockfd, Msg *msg ) {
72         struct sockaddr_in cli_addr;
73         int n;
74         socklen_t clilen = sizeof(cli_addr);
75         TCMsg *pmsg = (TCMsg*)pc_msg_buf;
76         
77         n = recvfrom(sockfd, pc_msg_buf, MSGMAXSIZE, 0, (struct sockaddr *)&cli_addr, &clilen);
78
79         if ( n<0 ) {
80                 if ( errno == EAGAIN || errno == EWOULDBLOCK)
81                         return CS_AGAIN;
82                 tlog(TL_ALARM, "recvfrom error: %s", strerror(errno));
83                 return CS_ERROR;
84         }
85
86         if ( n<TCMSGHDRSZ  ) {
87                 tlog(TL_ALARM, "Got message %d bytes (should be al least %d)", n, TCMSGHDRSZ );
88                 return CS_AGAIN;
89         }
90
91         if ( pmsg->len > MSGMAXSIZE  ) {
92                 tlog(TL_ALARM, "Messages (%d bytes) is too big", pmsg->len);
93                 return CS_AGAIN;
94         }
95
96         if ( pmsg->len != n ) {
97                 tlog(TL_ALARM, "Wrong size of messages (got %d bytes, should be %d bytes)", n, pmsg->len);
98                 return CS_AGAIN;
99         }
100
101         memcpy( &(msg->host_addr), &cli_addr, clilen );
102         msg->msg = pmsg;
103         
104         return CS_OK; 
105 }
106
107 /* send */
108 u_int32_t 
109 TC_sendMsg( Msg *msg ) {
110         if ( msg->msg == NULL || msg->msg->len <=0  )
111                 return CS_OK;
112
113         if ( msg->msg->len > MSGMAXSIZE )
114                 return CS_ERROR; 
115
116         if ( msg->sockfd <=0 ) {
117                 struct sockaddr_in cli_addr;
118                 if ( (msg->sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
119                         tlog(TL_CRIT,"udp socket %s %d: %s", msg->host, msg->port, strerror(errno));
120                         return CS_ERROR;
121                 }
122         
123                 memset(&cli_addr, 0, sizeof(cli_addr));
124                 cli_addr.sin_family = AF_INET;
125                 cli_addr.sin_addr.s_addr = htonl(INADDR_ANY);
126                 cli_addr.sin_port = htons(0);
127         
128                 if (bind(msg->sockfd, (struct sockaddr *) &cli_addr, sizeof(cli_addr)) < 0) {
129                         tlog(TL_CRIT, "cannot bind to address: %s", strerror(errno));   
130                         close(msg->sockfd);
131                         msg->sockfd=-1;
132                         return CS_ERROR;        
133                 }
134                 memset(&(msg->host_addr), 0, sizeof(msg->host_addr));
135                 msg->host_addr.sin_family = AF_INET;
136                 msg->host_addr.sin_addr.s_addr = inet_addr(msg->host);
137                 msg->host_addr.sin_port = htons(msg->port);
138         }
139
140         if (sendto(msg->sockfd, (void*)msg->msg, msg->msg->len, 0, (struct sockaddr *) &(msg->host_addr), sizeof(msg->host_addr)) != msg->msg->len) {
141                 tlog(TL_CRIT,"Can't send message to %s:%d : %s", msg->host, msg->port, strerror(errno));
142                 close(msg->sockfd);
143                 msg->sockfd=-1;
144                 return CS_ERROR;        
145         }
146
147         return CS_OK;
148 }
149
150 void      
151 TC_closefd( Msg *msg ) {
152         if ( msg->sockfd > 0 )
153                 close(msg->sockfd);
154         msg->sockfd=-1;
155 }
156
157