1 | /* -*- c-basic-offset: 8 -*-
|
---|
2 | rdesktop: A Remote Desktop Protocol client.
|
---|
3 | Protocol services - TCP layer
|
---|
4 | Copyright (C) Matthew Chapman 1999-2005
|
---|
5 |
|
---|
6 | This program is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 2 of the License, or
|
---|
9 | (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with this program; if not, write to the Free Software
|
---|
18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #include <unistd.h> /* select read write close */
|
---|
22 | #include <sys/socket.h> /* socket connect setsockopt */
|
---|
23 | #include <sys/time.h> /* timeval */
|
---|
24 | #include <netdb.h> /* gethostbyname */
|
---|
25 | #include <netinet/in.h> /* sockaddr_in */
|
---|
26 | #include <netinet/tcp.h> /* TCP_NODELAY */
|
---|
27 | #include <arpa/inet.h> /* inet_addr */
|
---|
28 | #include <errno.h> /* errno */
|
---|
29 | #include "rdesktop.h"
|
---|
30 |
|
---|
31 | #ifndef INADDR_NONE
|
---|
32 | #define INADDR_NONE ((unsigned long) -1)
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | static int sock;
|
---|
36 | static struct stream in;
|
---|
37 | static struct stream out;
|
---|
38 | int g_tcp_port_rdp = TCP_PORT_RDP;
|
---|
39 |
|
---|
40 | /* Initialise TCP transport data packet */
|
---|
41 | STREAM
|
---|
42 | tcp_init(uint32 maxlen)
|
---|
43 | {
|
---|
44 | if (maxlen > out.size)
|
---|
45 | {
|
---|
46 | out.data = (uint8 *) xrealloc(out.data, maxlen);
|
---|
47 | out.size = maxlen;
|
---|
48 | }
|
---|
49 |
|
---|
50 | out.p = out.data;
|
---|
51 | out.end = out.data + out.size;
|
---|
52 | return &out;
|
---|
53 | }
|
---|
54 |
|
---|
55 | /* Send TCP transport data packet */
|
---|
56 | void
|
---|
57 | tcp_send(STREAM s)
|
---|
58 | {
|
---|
59 | int length = s->end - s->data;
|
---|
60 | int sent, total = 0;
|
---|
61 |
|
---|
62 | while (total < length)
|
---|
63 | {
|
---|
64 | sent = send(sock, s->data + total, length - total, 0);
|
---|
65 | if (sent <= 0)
|
---|
66 | {
|
---|
67 | error("send: %s\n", strerror(errno));
|
---|
68 | return;
|
---|
69 | }
|
---|
70 |
|
---|
71 | total += sent;
|
---|
72 | }
|
---|
73 | }
|
---|
74 |
|
---|
75 | /* Receive a message on the TCP layer */
|
---|
76 | STREAM
|
---|
77 | tcp_recv(STREAM s, uint32 length)
|
---|
78 | {
|
---|
79 | unsigned int new_length, end_offset, p_offset;
|
---|
80 | int rcvd = 0;
|
---|
81 |
|
---|
82 | if (s == NULL)
|
---|
83 | {
|
---|
84 | /* read into "new" stream */
|
---|
85 | if (length > in.size)
|
---|
86 | {
|
---|
87 | in.data = (uint8 *) xrealloc(in.data, length);
|
---|
88 | in.size = length;
|
---|
89 | }
|
---|
90 | in.end = in.p = in.data;
|
---|
91 | s = ∈
|
---|
92 | }
|
---|
93 | else
|
---|
94 | {
|
---|
95 | /* append to existing stream */
|
---|
96 | new_length = (s->end - s->data) + length;
|
---|
97 | if (new_length > s->size)
|
---|
98 | {
|
---|
99 | p_offset = s->p - s->data;
|
---|
100 | end_offset = s->end - s->data;
|
---|
101 | s->data = (uint8 *) xrealloc(s->data, new_length);
|
---|
102 | s->size = new_length;
|
---|
103 | s->p = s->data + p_offset;
|
---|
104 | s->end = s->data + end_offset;
|
---|
105 | }
|
---|
106 | }
|
---|
107 |
|
---|
108 | while (length > 0)
|
---|
109 | {
|
---|
110 | if (!ui_select(sock))
|
---|
111 | /* User quit */
|
---|
112 | return NULL;
|
---|
113 |
|
---|
114 | rcvd = recv(sock, s->end, length, 0);
|
---|
115 | if (rcvd < 0)
|
---|
116 | {
|
---|
117 | error("recv: %s\n", strerror(errno));
|
---|
118 | return NULL;
|
---|
119 | }
|
---|
120 | else if (rcvd == 0)
|
---|
121 | {
|
---|
122 | error("Connection closed\n");
|
---|
123 | return NULL;
|
---|
124 | }
|
---|
125 |
|
---|
126 | s->end += rcvd;
|
---|
127 | length -= rcvd;
|
---|
128 | }
|
---|
129 |
|
---|
130 | return s;
|
---|
131 | }
|
---|
132 |
|
---|
133 | /* Establish a connection on the TCP layer */
|
---|
134 | BOOL
|
---|
135 | tcp_connect(char *server)
|
---|
136 | {
|
---|
137 | int true_value = 1;
|
---|
138 |
|
---|
139 | #ifdef IPv6
|
---|
140 |
|
---|
141 | int n;
|
---|
142 | struct addrinfo hints, *res, *ressave;
|
---|
143 | char tcp_port_rdp_s[10];
|
---|
144 |
|
---|
145 | snprintf(tcp_port_rdp_s, 10, "%d", g_tcp_port_rdp);
|
---|
146 |
|
---|
147 | memset(&hints, 0, sizeof(struct addrinfo));
|
---|
148 | hints.ai_family = AF_UNSPEC;
|
---|
149 | hints.ai_socktype = SOCK_STREAM;
|
---|
150 |
|
---|
151 | if ((n = getaddrinfo(server, tcp_port_rdp_s, &hints, &res)))
|
---|
152 | {
|
---|
153 | error("getaddrinfo: %s\n", gai_strerror(n));
|
---|
154 | return False;
|
---|
155 | }
|
---|
156 |
|
---|
157 | ressave = res;
|
---|
158 | sock = -1;
|
---|
159 | while (res)
|
---|
160 | {
|
---|
161 | sock = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
|
---|
162 | if (!(sock < 0))
|
---|
163 | {
|
---|
164 | if (connect(sock, res->ai_addr, res->ai_addrlen) == 0)
|
---|
165 | break;
|
---|
166 | close(sock);
|
---|
167 | sock = -1;
|
---|
168 | }
|
---|
169 | res = res->ai_next;
|
---|
170 | }
|
---|
171 | freeaddrinfo(ressave);
|
---|
172 |
|
---|
173 | if (sock == -1)
|
---|
174 | {
|
---|
175 | error("%s: unable to connect\n", server);
|
---|
176 | return False;
|
---|
177 | }
|
---|
178 |
|
---|
179 | #else /* no IPv6 support */
|
---|
180 |
|
---|
181 | struct hostent *nslookup;
|
---|
182 | struct sockaddr_in servaddr;
|
---|
183 |
|
---|
184 | if ((nslookup = gethostbyname(server)) != NULL)
|
---|
185 | {
|
---|
186 | memcpy(&servaddr.sin_addr, nslookup->h_addr, sizeof(servaddr.sin_addr));
|
---|
187 | }
|
---|
188 | else if ((servaddr.sin_addr.s_addr = inet_addr(server)) == INADDR_NONE)
|
---|
189 | {
|
---|
190 | error("%s: unable to resolve host\n", server);
|
---|
191 | return False;
|
---|
192 | }
|
---|
193 |
|
---|
194 | if ((sock = socket(AF_INET, SOCK_STREAM, 0)) < 0)
|
---|
195 | {
|
---|
196 | error("socket: %s\n", strerror(errno));
|
---|
197 | return False;
|
---|
198 | }
|
---|
199 |
|
---|
200 | servaddr.sin_family = AF_INET;
|
---|
201 | servaddr.sin_port = htons(g_tcp_port_rdp);
|
---|
202 |
|
---|
203 | if (connect(sock, (struct sockaddr *) &servaddr, sizeof(struct sockaddr)) < 0)
|
---|
204 | {
|
---|
205 | error("connect: %s\n", strerror(errno));
|
---|
206 | close(sock);
|
---|
207 | return False;
|
---|
208 | }
|
---|
209 |
|
---|
210 | #endif /* IPv6 */
|
---|
211 |
|
---|
212 | setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (void *) &true_value, sizeof(true_value));
|
---|
213 |
|
---|
214 | in.size = 4096;
|
---|
215 | in.data = (uint8 *) xmalloc(in.size);
|
---|
216 |
|
---|
217 | out.size = 4096;
|
---|
218 | out.data = (uint8 *) xmalloc(out.size);
|
---|
219 |
|
---|
220 | return True;
|
---|
221 | }
|
---|
222 |
|
---|
223 | /* Disconnect on the TCP layer */
|
---|
224 | void
|
---|
225 | tcp_disconnect(void)
|
---|
226 | {
|
---|
227 | close(sock);
|
---|
228 | }
|
---|
229 |
|
---|
230 | char *
|
---|
231 | tcp_get_address()
|
---|
232 | {
|
---|
233 | static char ipaddr[32];
|
---|
234 | struct sockaddr_in sockaddr;
|
---|
235 | socklen_t len = sizeof(sockaddr);
|
---|
236 | if (getsockname(sock, (struct sockaddr *) &sockaddr, &len) == 0)
|
---|
237 | {
|
---|
238 | unsigned char *ip = (unsigned char *) &sockaddr.sin_addr;
|
---|
239 | sprintf(ipaddr, "%d.%d.%d.%d", ip[0], ip[1], ip[2], ip[3]);
|
---|
240 | }
|
---|
241 | else
|
---|
242 | strcpy(ipaddr, "127.0.0.1");
|
---|
243 | return ipaddr;
|
---|
244 | }
|
---|
245 |
|
---|
246 | /* reset the state of the tcp layer */
|
---|
247 | /* Support for Session Directory */
|
---|
248 | void
|
---|
249 | tcp_reset_state(void)
|
---|
250 | {
|
---|
251 | sock = -1; /* reset socket */
|
---|
252 |
|
---|
253 | /* Clear the incoming stream */
|
---|
254 | if (in.data != NULL)
|
---|
255 | xfree(in.data);
|
---|
256 | in.p = NULL;
|
---|
257 | in.end = NULL;
|
---|
258 | in.data = NULL;
|
---|
259 | in.size = 0;
|
---|
260 | in.iso_hdr = NULL;
|
---|
261 | in.mcs_hdr = NULL;
|
---|
262 | in.sec_hdr = NULL;
|
---|
263 | in.rdp_hdr = NULL;
|
---|
264 | in.channel_hdr = NULL;
|
---|
265 |
|
---|
266 | /* Clear the outgoing stream */
|
---|
267 | if (out.data != NULL)
|
---|
268 | xfree(out.data);
|
---|
269 | out.p = NULL;
|
---|
270 | out.end = NULL;
|
---|
271 | out.data = NULL;
|
---|
272 | out.size = 0;
|
---|
273 | out.iso_hdr = NULL;
|
---|
274 | out.mcs_hdr = NULL;
|
---|
275 | out.sec_hdr = NULL;
|
---|
276 | out.rdp_hdr = NULL;
|
---|
277 | out.channel_hdr = NULL;
|
---|
278 | }
|
---|