Add cache and bitmap decompress stub.
[libguac-client-rdp.git] / src / client.c
1
2 /* ***** BEGIN LICENSE BLOCK *****
3  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4  *
5  * The contents of this file are subject to the Mozilla Public License Version
6  * 1.1 (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  * http://www.mozilla.org/MPL/
9  *
10  * Software distributed under the License is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12  * for the specific language governing rights and limitations under the
13  * License.
14  *
15  * The Original Code is libguac-client-rdp.
16  *
17  * The Initial Developer of the Original Code is
18  * Michael Jumper.
19  * Portions created by the Initial Developer are Copyright (C) 2011
20  * the Initial Developer. All Rights Reserved.
21  *
22  * Contributor(s):
23  *
24  * Alternatively, the contents of this file may be used under the terms of
25  * either the GNU General Public License Version 2 or later (the "GPL"), or
26  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27  * in which case the provisions of the GPL or the LGPL are applicable instead
28  * of those above. If you wish to allow use of your version of this file only
29  * under the terms of either the GPL or the LGPL, and not to allow others to
30  * use your version of this file under the terms of the MPL, indicate your
31  * decision by deleting the provisions above and replace them with the notice
32  * and other provisions required by the GPL or the LGPL. If you do not delete
33  * the provisions above, a recipient may use your version of this file under
34  * the terms of any one of the MPL, the GPL or the LGPL.
35  *
36  * ***** END LICENSE BLOCK ***** */
37
38 #include <stdlib.h>
39 #include <string.h>
40
41 #include <sys/select.h>
42 #include <errno.h>
43
44 #include <freerdp/freerdp.h>
45 #include <freerdp/utils/memory.h>
46 #include <freerdp/cache/bitmap.h>
47 #include <freerdp/cache/brush.h>
48 #include <freerdp/cache/glyph.h>
49 #include <freerdp/cache/palette.h>
50 #include <freerdp/cache/pointer.h>
51 #include <freerdp/cache/offscreen.h>
52 #include <freerdp/channels/channels.h>
53 #include <freerdp/input.h>
54 #include <freerdp/constants.h>
55
56 #include <guacamole/socket.h>
57 #include <guacamole/protocol.h>
58 #include <guacamole/client.h>
59
60 #include "client.h"
61 #include "guac_handlers.h"
62 #include "rdp_keymap.h"
63 #include "rdp_bitmap.h"
64 #include "rdp_glyph.h"
65 #include "rdp_pointer.h"
66 #include "rdp_gdi.h"
67
68 /* Client plugin arguments */
69 const char* GUAC_CLIENT_ARGS[] = {
70     "hostname",
71     "port",
72     NULL
73 };
74
75 CLRCONV guac_rdp_clrconv = {
76     .alpha  = 1,
77     .invert = 0,
78     .rgb555 = 0,
79     .palette = NULL
80 };
81
82 boolean rdp_freerdp_pre_connect(freerdp* instance) {
83
84     rdpContext* context = instance->context;
85     guac_client* client = ((rdp_freerdp_context*) context)->client;
86     rdpChannels* channels = context->channels;
87     rdpBitmap* bitmap;
88     rdpGlyph* glyph;
89     rdpPointer* pointer;
90     rdpPrimaryUpdate* primary;
91
92     /* Init FreeRDP cache */
93     instance->context->cache = cache_new(instance->settings);
94
95     /* Set up bitmap handling */
96     bitmap = xnew(rdpBitmap);
97     bitmap->size = sizeof(guac_rdp_bitmap);
98     bitmap->New = guac_rdp_bitmap_new;
99     bitmap->Free = guac_rdp_bitmap_free;
100     bitmap->Paint = guac_rdp_bitmap_paint;
101     bitmap->Decompress = guac_rdp_bitmap_decompress;
102     bitmap->SetSurface = guac_rdp_bitmap_setsurface;
103     graphics_register_bitmap(context->graphics, bitmap);
104
105     /* Set up glyph handling */
106     glyph = xnew(rdpGlyph);
107     glyph->size = sizeof(guac_rdp_glyph);
108     glyph->New = guac_rdp_glyph_new;
109     glyph->Free = guac_rdp_glyph_free;
110     glyph->Draw = guac_rdp_glyph_draw;
111     graphics_register_glyph(context->graphics, glyph);
112
113     /* Set up pointer handling */
114     pointer = xnew(rdpPointer);
115     pointer->size = sizeof(guac_rdp_pointer);
116     pointer->New = guac_rdp_pointer_new;
117     pointer->Free = guac_rdp_pointer_free;
118     pointer->Set = guac_rdp_pointer_set;
119     graphics_register_pointer(context->graphics, pointer);
120
121     /* Set up GDI */
122     primary = instance->update->primary;
123
124     primary->DstBlt = guac_rdp_gdi_dstblt;
125     primary->PatBlt = guac_rdp_gdi_patblt;
126     primary->ScrBlt = guac_rdp_gdi_scrblt;
127     primary->MemBlt = guac_rdp_gdi_memblt;
128     primary->OpaqueRect = guac_rdp_gdi_opaquerect;
129
130     /*pointer_cache_register_callbacks(instance->update);*/
131     glyph_cache_register_callbacks(instance->update);
132     /*brush_cache_register_callbacks(instance->update);*/
133     bitmap_cache_register_callbacks(instance->update);
134     /*offscreen_cache_register_callbacks(instance->update);*/
135     /*palette_cache_register_callbacks(instance->update);*/
136
137     /* Init channels (pre-connect) */
138     if (freerdp_channels_pre_connect(channels, instance)) {
139         guac_protocol_send_error(client->socket, "Error initializing RDP client channel manager");
140         guac_socket_flush(client->socket);
141         return false;
142     }
143
144     return true;
145
146 }
147
148 boolean rdp_freerdp_post_connect(freerdp* instance) {
149
150     rdpContext* context = instance->context;
151     guac_client* client = ((rdp_freerdp_context*) context)->client;
152     rdpChannels* channels = instance->context->channels;
153
154     /* Init channels (post-connect) */
155     if (freerdp_channels_post_connect(channels, instance)) {
156         guac_protocol_send_error(client->socket, "Error initializing RDP client channel manager");
157         guac_socket_flush(client->socket);
158         return false;
159     }
160
161     /* Client handlers */
162     client->free_handler = rdp_guac_client_free_handler;
163     client->handle_messages = rdp_guac_client_handle_messages;
164     client->mouse_handler = rdp_guac_client_mouse_handler;
165     client->key_handler = rdp_guac_client_key_handler;
166
167     /* FIXME: Actually read REAL screen size from whatever RDP sends us */
168     guac_protocol_send_size(client->socket, 1024, 768);
169     guac_socket_flush(client->socket);
170
171     return true;
172
173 }
174
175 void rdp_freerdp_context_new(freerdp* instance, rdpContext* context) {
176     context->channels = freerdp_channels_new();
177 }
178
179 void rdp_freerdp_context_free(freerdp* instance, rdpContext* context) {
180     /* EMPTY */
181 }
182
183 int guac_client_init(guac_client* client, int argc, char** argv) {
184
185     rdp_guac_client_data* guac_client_data;
186
187     freerdp* rdp_inst;
188         rdpSettings* settings;
189
190     char* hostname;
191     int port = RDP_DEFAULT_PORT;
192     boolean bitmap_cache;
193
194     if (argc < 2) {
195         guac_protocol_send_error(client->socket, "Wrong argument count received.");
196         guac_socket_flush(client->socket);
197         return 1;
198     }
199
200     /* If port specified, use it */
201     if (argv[1][0] != '\0')
202         port = atoi(argv[1]);
203
204     hostname = argv[0];
205
206     /* Allocate client data */
207     guac_client_data = malloc(sizeof(rdp_guac_client_data));
208
209     /* Init client */
210     freerdp_channels_global_init();
211     rdp_inst = freerdp_new();
212     rdp_inst->PreConnect = rdp_freerdp_pre_connect;
213     rdp_inst->PostConnect = rdp_freerdp_post_connect;
214
215     /* Allocate FreeRDP context */
216     rdp_inst->context_size = sizeof(rdp_freerdp_context);
217     rdp_inst->ContextNew  = (pContextNew) rdp_freerdp_context_new;
218     rdp_inst->ContextFree = (pContextFree) rdp_freerdp_context_free;
219     freerdp_context_new(rdp_inst);
220
221     /* Set settings */
222     settings = rdp_inst->settings;
223
224     /* --no-auth */
225     settings->authentication = false;
226
227     /* --sec rdp */
228     settings->rdp_security = true;
229     settings->tls_security = false;
230     settings->nla_security = false;
231     settings->encryption = true;
232     settings->encryption_method = ENCRYPTION_METHOD_40BIT | ENCRYPTION_METHOD_128BIT | ENCRYPTION_METHOD_FIPS;
233     settings->encryption_level = ENCRYPTION_LEVEL_CLIENT_COMPATIBLE;
234
235     /* Default size */
236         settings->width = 1024;
237         settings->height = 768;
238
239     /* Set hostname */
240     settings->hostname = strdup(hostname);
241         settings->window_title = strdup(hostname);
242         settings->username = "guest";
243
244     /* Order support */
245     bitmap_cache = settings->bitmap_cache;
246     settings->os_major_type = OSMAJORTYPE_UNSPECIFIED;
247     settings->os_minor_type = OSMINORTYPE_UNSPECIFIED;
248     settings->order_support[NEG_DSTBLT_INDEX] = true;
249     settings->order_support[NEG_PATBLT_INDEX] = true;
250     settings->order_support[NEG_SCRBLT_INDEX] = true;
251     settings->order_support[NEG_OPAQUE_RECT_INDEX] = true;
252     settings->order_support[NEG_DRAWNINEGRID_INDEX] = false;
253     settings->order_support[NEG_MULTIDSTBLT_INDEX] = false;
254     settings->order_support[NEG_MULTIPATBLT_INDEX] = false;
255     settings->order_support[NEG_MULTISCRBLT_INDEX] = false;
256     settings->order_support[NEG_MULTIOPAQUERECT_INDEX] = false;
257     settings->order_support[NEG_MULTI_DRAWNINEGRID_INDEX] = false;
258     settings->order_support[NEG_LINETO_INDEX] = false;
259     settings->order_support[NEG_POLYLINE_INDEX] = false;
260     settings->order_support[NEG_MEMBLT_INDEX] = bitmap_cache;
261     settings->order_support[NEG_MEM3BLT_INDEX] = false;
262     settings->order_support[NEG_MEMBLT_V2_INDEX] = bitmap_cache;
263     settings->order_support[NEG_MEM3BLT_V2_INDEX] = false;
264     settings->order_support[NEG_SAVEBITMAP_INDEX] = false;
265     settings->order_support[NEG_GLYPH_INDEX_INDEX] = false;
266     settings->order_support[NEG_FAST_INDEX_INDEX] = false;
267     settings->order_support[NEG_FAST_GLYPH_INDEX] = false;
268     settings->order_support[NEG_POLYGON_SC_INDEX] = false;
269     settings->order_support[NEG_POLYGON_CB_INDEX] = false;
270     settings->order_support[NEG_ELLIPSE_SC_INDEX] = false;
271     settings->order_support[NEG_ELLIPSE_CB_INDEX] = false;
272
273     /* Store client data */
274     guac_client_data->rdp_inst = rdp_inst;
275     guac_client_data->mouse_button_mask = 0;
276     guac_client_data->current_surface = GUAC_DEFAULT_LAYER;
277
278     ((rdp_freerdp_context*) rdp_inst->context)->client = client;
279     client->data = guac_client_data;
280
281     /* Connect to RDP server */
282     if (!freerdp_connect(rdp_inst)) {
283         guac_protocol_send_error(client->socket, "Error connecting to RDP server");
284         guac_socket_flush(client->socket);
285         return 1;
286     }
287
288     /* Success */
289     return 0;
290
291 }
292