VirtualBox

source: vbox/trunk/src/VBox/RDP/client/iso.c@ 10076

Last change on this file since 10076 was 9902, checked in by vboxsync, 16 years ago

Added rdesktop 1.6.0.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1/* -*- c-basic-offset: 8 -*-
2 rdesktop: A Remote Desktop Protocol client.
3 Protocol services - ISO layer
4 Copyright (C) Matthew Chapman 1999-2007
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 "rdesktop.h"
22
23/* Send a self-contained ISO PDU */
24static void
25iso_send_msg(uint8 code)
26{
27 STREAM s;
28
29 s = tcp_init(11);
30
31 out_uint8(s, 3); /* version */
32 out_uint8(s, 0); /* reserved */
33 out_uint16_be(s, 11); /* length */
34
35 out_uint8(s, 6); /* hdrlen */
36 out_uint8(s, code);
37 out_uint16(s, 0); /* dst_ref */
38 out_uint16(s, 0); /* src_ref */
39 out_uint8(s, 0); /* class */
40
41 s_mark_end(s);
42 tcp_send(s);
43}
44
45static void
46iso_send_connection_request(char *username)
47{
48 STREAM s;
49 int length = 30 + strlen(username);
50
51 s = tcp_init(length);
52
53 out_uint8(s, 3); /* version */
54 out_uint8(s, 0); /* reserved */
55 out_uint16_be(s, length); /* length */
56
57 out_uint8(s, length - 5); /* hdrlen */
58 out_uint8(s, ISO_PDU_CR);
59 out_uint16(s, 0); /* dst_ref */
60 out_uint16(s, 0); /* src_ref */
61 out_uint8(s, 0); /* class */
62
63 out_uint8p(s, "Cookie: mstshash=", strlen("Cookie: mstshash="));
64 out_uint8p(s, username, strlen(username));
65
66 out_uint8(s, 0x0d); /* Unknown */
67 out_uint8(s, 0x0a); /* Unknown */
68
69 s_mark_end(s);
70 tcp_send(s);
71}
72
73/* Receive a message on the ISO layer, return code */
74static STREAM
75iso_recv_msg(uint8 * code, uint8 * rdpver)
76{
77 STREAM s;
78 uint16 length;
79 uint8 version;
80
81 s = tcp_recv(NULL, 4);
82 if (s == NULL)
83 return NULL;
84 in_uint8(s, version);
85 if (rdpver != NULL)
86 *rdpver = version;
87 if (version == 3)
88 {
89 in_uint8s(s, 1); /* pad */
90 in_uint16_be(s, length);
91 }
92 else
93 {
94 in_uint8(s, length);
95 if (length & 0x80)
96 {
97 length &= ~0x80;
98 next_be(s, length);
99 }
100 }
101 if (length < 4)
102 {
103 error("Bad packet header\n");
104 return NULL;
105 }
106 s = tcp_recv(s, length - 4);
107 if (s == NULL)
108 return NULL;
109 if (version != 3)
110 return s;
111 in_uint8s(s, 1); /* hdrlen */
112 in_uint8(s, *code);
113 if (*code == ISO_PDU_DT)
114 {
115 in_uint8s(s, 1); /* eot */
116 return s;
117 }
118 in_uint8s(s, 5); /* dst_ref, src_ref, class */
119 return s;
120}
121
122/* Initialise ISO transport data packet */
123STREAM
124iso_init(int length)
125{
126 STREAM s;
127
128 s = tcp_init(length + 7);
129 s_push_layer(s, iso_hdr, 7);
130
131 return s;
132}
133
134/* Send an ISO data PDU */
135void
136iso_send(STREAM s)
137{
138 uint16 length;
139
140 s_pop_layer(s, iso_hdr);
141 length = s->end - s->p;
142
143 out_uint8(s, 3); /* version */
144 out_uint8(s, 0); /* reserved */
145 out_uint16_be(s, length);
146
147 out_uint8(s, 2); /* hdrlen */
148 out_uint8(s, ISO_PDU_DT); /* code */
149 out_uint8(s, 0x80); /* eot */
150
151 tcp_send(s);
152}
153
154/* Receive ISO transport data packet */
155STREAM
156iso_recv(uint8 * rdpver)
157{
158 STREAM s;
159 uint8 code = 0;
160
161 s = iso_recv_msg(&code, rdpver);
162 if (s == NULL)
163 return NULL;
164 if (rdpver != NULL)
165 if (*rdpver != 3)
166 return s;
167 if (code != ISO_PDU_DT)
168 {
169 error("expected DT, got 0x%x\n", code);
170 return NULL;
171 }
172 return s;
173}
174
175/* Establish a connection up to the ISO layer */
176RD_BOOL
177iso_connect(char *server, char *username)
178{
179 uint8 code = 0;
180
181 if (!tcp_connect(server))
182 return False;
183
184 iso_send_connection_request(username);
185
186 if (iso_recv_msg(&code, NULL) == NULL)
187 return False;
188
189 if (code != ISO_PDU_CC)
190 {
191 error("expected CC, got 0x%x\n", code);
192 tcp_disconnect();
193 return False;
194 }
195
196 return True;
197}
198
199/* Establish a reconnection up to the ISO layer */
200RD_BOOL
201iso_reconnect(char *server)
202{
203 uint8 code = 0;
204
205 if (!tcp_connect(server))
206 return False;
207
208 iso_send_msg(ISO_PDU_CR);
209
210 if (iso_recv_msg(&code, NULL) == NULL)
211 return False;
212
213 if (code != ISO_PDU_CC)
214 {
215 error("expected CC, got 0x%x\n", code);
216 tcp_disconnect();
217 return False;
218 }
219
220 return True;
221}
222
223/* Disconnect from the ISO layer */
224void
225iso_disconnect(void)
226{
227 iso_send_msg(ISO_PDU_DR);
228 tcp_disconnect();
229}
230
231/* reset the state to support reconnecting */
232void
233iso_reset_state(void)
234{
235 tcp_reset_state();
236}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette