aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/desktop-file/plugin.cpp
blob: d9c6bb531f9815c6aa5cc42b0355c4321c465898 (plain) (blame)
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
/*
 *  Copyright © 2005 Jorn Baayen <jbaayen@gnome.org>
 *  Copyright © 2005 Christian Persch
 *
 *  Based on the work of:
 *
 *  Copyright © 2004 Bastien Nocera <hadess@hadess.net>
 *  Copyright © 2002 David A. Schleef <ds@schleef.org>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this library; if not, write to the
 *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 *  Boston, MA 02111-1307, USA.
 *
 *  $Id$
 */

#include "mozilla-config.h"
#include "config.h"

#include <string.h>
#include <glib.h>
#include <gtk/gtkwidget.h>
#include <gtk/gtkwindow.h>
#include <gtk/gtkmessagedialog.h>

#include "ephy-stock-icons.h"

#include <npupp.h>
#include <nsCOMPtr.h>
#include <nsIDOMWindow.h>
#include "../../embed/mozilla/EphyUtils.h"

/* NOTE: For simplicity, we use the Epiphany domain for translations,
 * instead of setting up another one for just a few strings. So we
 * don't need gi18n-lib.h here.
 */
#include <glib/gi18n.h>

#define DESKTOP_FILE_MIME_TYPE  "application/x-desktop"
#define URL_FILE_MIME_TYPE_1    "text/x-uri"
#define URL_FILE_MIME_TYPE_2    "application/x-mswinurl"

static const char kDesktopEntry[] = "Desktop Entry";
static const char kInternetShortcut[] = "InternetShortcut";
static const char kInternetShortcutW[] = "InternetShortcut.W";

typedef enum
{
    FORMAT_DESKTOP_FILE,
    FORMAT_URL_FILE
} FileFormat;

typedef struct {
    NPP instance;
    guint format : 2;
    guint handled : 1;
} Plugin;

static NPNetscapeFuncs mozilla_functions;

static char *
parse_desktop_file (const char *filename)
{
    GKeyFile *keyfile = g_key_file_new ();
    if (!g_key_file_load_from_file (keyfile, filename, (GKeyFileFlags) 0, NULL)) {
        /* Not a valid key file */
        g_key_file_free (keyfile);
        return NULL;
    }

    char *group = g_key_file_get_start_group (keyfile);
    if (!group || strcmp (group, kDesktopEntry) != 0) {
        /* Not a valid Desktop file */
        g_free (group);
        g_key_file_free (keyfile);
        return NULL;
    }
    g_free (group);

    char *encoding = g_key_file_get_string (keyfile, kDesktopEntry, "Encoding", NULL);
    if (!encoding || strcmp (encoding, "UTF-8") != 0) {
        /* Not a properly encoded desktop file */
        g_free (encoding);
        g_key_file_free (keyfile);
        return NULL;
    }
    g_free (encoding);

    char *type = g_key_file_get_string (keyfile, kDesktopEntry, "Type", NULL);
    if (!type || strcmp (type, "Link") != 0) {
        /* Not a "Link" file */
        g_free (type);
        g_key_file_free (keyfile);
        return NULL;
    }
    g_free (type);

    char *url = g_key_file_get_string (keyfile, kDesktopEntry, "URL", NULL);
    if (!url || !url[0]) {
        /* Not a valid URL */
        g_free (url);
        g_key_file_free (keyfile);
        return NULL;
    }

    g_key_file_free (keyfile);

    return url;
}

static char *
parse_url_file (const char *filename)
{
    char *contents = NULL;
    gsize len = 0;
    if (!g_file_get_contents (filename, &contents, &len, NULL)) {
        return NULL;
    }

    /* URL files are encoded in MS-ANSI, so convert to UTF-8 first */
    gsize bytes_read, bytes_written;
    char *converted = g_convert (contents, len, "UTF-8", "MS-ANSI",
                     &bytes_read, &bytes_written, NULL);
    g_free (contents);
    if (converted == NULL) {
        return NULL;
    }

    /* Now load as keyfile */
    GKeyFile *keyfile = g_key_file_new ();
    if (!g_key_file_load_from_data (keyfile, converted, strlen (converted), (GKeyFileFlags) 0, NULL)) {
        /* Not a valid key file */
        g_free (converted);
        g_key_file_free (keyfile);
        return NULL;
    }
    g_free (converted);

    /* First try the [InternetShortcut.W] section */
    if (g_key_file_has_group (keyfile, kInternetShortcutW))
    {
        char *entry = g_key_file_get_string (keyfile, kInternetShortcutW, "URL", NULL);
        if (!entry || !entry[0]) {
            g_free (entry);
            g_key_file_free (keyfile);
            return NULL;
        }

        /* The URL is encoded in UTF-7 */
        char *url = g_convert (entry, strlen (entry), "UTF-8", "UTF-7",
                       &bytes_read, &bytes_written, NULL);
        g_free (entry);
        if (!url || !url[0]) {
            g_free (url);
            g_key_file_free (keyfile);
            return NULL;
        }

        g_key_file_free (keyfile);

        return url;
    }

    /* No [InternetShortcut.W] section, fallback to [InternetShortcut] */
    if (g_key_file_has_group (keyfile, kInternetShortcut))
    {
        char *url = g_key_file_get_string (keyfile, kInternetShortcut, "URL", NULL);
        if (!url || !url[0]) {
            g_free (url);
            g_key_file_free (keyfile);
            return NULL;
        }

        return url;
    }

    g_key_file_free (keyfile);
    return NULL;
}

static void
show_error_dialog (NPP instance,
           const char *primary_text,
           const char *secondary_text)
{
    GtkWidget *dialog, *parent;

    nsCOMPtr<nsIDOMWindow> domWin;
    mozilla_functions.getvalue (instance, NPNVDOMWindow,
                    NS_STATIC_CAST (nsIDOMWindow **, getter_AddRefs (domWin)));
    parent = EphyUtils::FindGtkParent (domWin);

    dialog = gtk_message_dialog_new (GTK_WINDOW (parent),
                     (GtkDialogFlags) (GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT),
                     GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
                     primary_text, NULL);

    gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
                          secondary_text);
    gtk_window_set_icon_name (GTK_WINDOW (dialog), EPHY_STOCK_EPHY);

    gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);

    g_signal_connect (dialog, "response",
              G_CALLBACK (gtk_widget_destroy), NULL);

    if (parent && GTK_WINDOW (parent)->group) {
        gtk_window_group_add_window (GTK_WINDOW (parent)->group,
                         GTK_WINDOW (dialog));
    }

    gtk_widget_show (dialog);
}

/* Check for unsafe protocols. See:
 * http://www.mozilla.org/projects/security/components/reviewguide.html
 */

#define JAVASCRIPT_PROTOCOL "javascript:"
#define DATA_PROTOCOL       "data:"

static gboolean
is_safe_url (char *url)
{
    /* FIXME: when we allow non-file: .desktop files, add a security check here,
     * like the one HTPP protocol handler does on redirect.
     */

    url = g_strstrip (url);

    return (g_ascii_strncasecmp (url, JAVASCRIPT_PROTOCOL,
                         strlen (JAVASCRIPT_PROTOCOL)) != 0 &&
            g_ascii_strncasecmp (url, DATA_PROTOCOL,
                         strlen (DATA_PROTOCOL)) != 0);
}

static NPError
plugin_new_instance (NPMIMEType mime_type,
             NPP instance,
             guint16 mode,
             gint16 argc,
             char **argn,
             char **argv,
             NPSavedData *saved)
{
    if (instance == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    /* We don't do embedded */
    if (mode != NP_FULL)
        return NPERR_INVALID_PARAM;

    /* FIXME: Until I've thought more about security when loading .desktop
     * files from non-file: locations, only allow local desktop files.
    */
    PRBool isSafe = PR_FALSE;
    for (gint16 i = 0; i < argc; ++i) {
        if (argn[i] && g_ascii_strcasecmp (argn[i], "src") == 0) {
            isSafe = argv[i] && g_ascii_strncasecmp (argv[i], "file:/", strlen ("file:/")) == 0;
            break;
        }
    }

    if (!isSafe)
        return NPERR_INVALID_URL;

    instance->pdata = mozilla_functions.memalloc (sizeof (Plugin));

    Plugin *plugin = (Plugin *) instance->pdata;
    if (plugin == NULL)
        return NPERR_OUT_OF_MEMORY_ERROR;

    memset (plugin, 0, sizeof (Plugin));

    plugin->instance = instance;

    mozilla_functions.setvalue (plugin->instance, NPPVpluginWindowBool,
                    GINT_TO_POINTER (FALSE));

    return NPERR_NO_ERROR;
}

static NPError
plugin_destroy_instance (NPP instance,
             NPSavedData **save)
{
    if (instance == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    Plugin *plugin = (Plugin *) instance->pdata;
    if (plugin == NULL)
        return NPERR_NO_ERROR;

    mozilla_functions.memfree (instance->pdata);
    instance->pdata = NULL;

    return NPERR_NO_ERROR;
}

static NPError
plugin_new_stream (NPP instance,
           NPMIMEType type,
           NPStream *stream_ptr,
           NPBool seekable,
           guint16 *stype)
{
    if (instance == NULL || type == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    Plugin *plugin = (Plugin *) instance->pdata;
    if (plugin == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    if (type && strcmp (type, DESKTOP_FILE_MIME_TYPE) == 0) {
        plugin->format = FORMAT_DESKTOP_FILE;
    }
    else if (type && (strcmp (type, URL_FILE_MIME_TYPE_1) == 0 ||
              strcmp (type, URL_FILE_MIME_TYPE_2) == 0)) {
        plugin->format = FORMAT_URL_FILE;
    }
    else
    {
        return NPERR_INVALID_PARAM;
    }

    *stype = NP_ASFILEONLY;

    plugin->handled = FALSE;

    return NPERR_NO_ERROR;
}

static NPError
plugin_stream_as_file (NPP instance,
               NPStream* stream,
               const char *filename)
{
    if (instance == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    Plugin *plugin = (Plugin *) instance->pdata;
    if (plugin == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    if (!filename)
        return NPERR_INVALID_PARAM;

    char *url = NULL;
    if (plugin->format == FORMAT_DESKTOP_FILE) {
        url = parse_desktop_file (filename);
    } else if (plugin->format == FORMAT_URL_FILE) {
        url = parse_url_file (filename);
    }

    if (!url) {
        return NPERR_GENERIC_ERROR;
    }

    plugin->handled = TRUE;

    if (is_safe_url (url)) {
        mozilla_functions.geturl (instance, url, "_top");
    } else {
        /* Load blank page, so that further drags to the embed work */
        mozilla_functions.geturl (instance, "about:blank", "_top");

        show_error_dialog (instance,
                   _("Unsafe protocol."),
                   _("The address has not been "
                     "loaded, because it refers to an "
                     "unsafe protocol and thereby presents "
                     "a security risk to your system."));
    }

    g_free (url);

    return NPERR_NO_ERROR;
}

static NPError
plugin_destroy_stream (NPP instance,
               NPStream *stream,
               NPError reason)
{
    if (instance == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    Plugin *plugin = (Plugin *) instance->pdata;
    if (plugin == NULL)
        return NPERR_INVALID_INSTANCE_ERROR;

    if (!plugin->handled) {
        /* Load blank page, so that further drags to the embed work */
        mozilla_functions.geturl (instance, "about:blank", "_top");

        show_error_dialog (instance,
                   _("No address found."),
                   _("No web address could be found in this file."));
    }

    return NPERR_NO_ERROR;
}

static int32
plugin_write_ready (NPP instance,
            NPStream *stream)
{
    /* Ready to read 8 KB - should do. Can always get more. */
    return 8192;
}

static int32
plugin_write (NPP instance,
          NPStream *stream,
          int32 offset,
          int32 len,
          gpointer buffer)
{
    /* FIXME */
    return len;
}

static NPError
plugin_get_value (NPP instance,
          NPPVariable variable,
          gpointer value)
{
    NPError err = NPERR_NO_ERROR;

    switch (variable) {
    case NPPVpluginNameString:
        /* Translators: "Desktop File" refers to .desktop files containing a link */
        *((char **) value) = _("Epiphany Desktop File Plugin");
        break;

    case NPPVpluginDescriptionString:
        *((char **) value) = _("This plugin handles “.desktop” and “.url” files containing web links.");
        break;

    case NPPVpluginNeedsXEmbed:
        *((NPBool *) value) = PR_FALSE;
        break;

    default:
        err = NPERR_INVALID_PARAM;
        break;
    }

    return err;
}

NPError
NP_GetValue (void *future,
         NPPVariable variable,
         gpointer value)
{
    return plugin_get_value (NULL, variable, value);
}

char *
NP_GetMIMEDescription (void)
{
    return DESKTOP_FILE_MIME_TYPE ":desktop:desktop link file;"
           URL_FILE_MIME_TYPE_1 ":url:URL file;"
           URL_FILE_MIME_TYPE_2 "::URL file;";
}

NPError
NP_Initialize (NPNetscapeFuncs *moz_funcs,
               NPPluginFuncs *plugin_funcs)
{
    if (moz_funcs == NULL || plugin_funcs == NULL)
        return NPERR_INVALID_FUNCTABLE_ERROR;

    if ((moz_funcs->version >> 8) > NP_VERSION_MAJOR)
        return NPERR_INCOMPATIBLE_VERSION_ERROR;
    if (moz_funcs->size < sizeof (NPNetscapeFuncs))
        return NPERR_INVALID_FUNCTABLE_ERROR;
    if (plugin_funcs->size < sizeof (NPPluginFuncs))
        return NPERR_INVALID_FUNCTABLE_ERROR;

    /*
     * Copy all of the fields of the Mozilla function table into our
     * copy so we can call back into Mozilla later.  Note that we need
     * to copy the fields one by one, rather than assigning the whole
     * structure, because the Mozilla function table could actually be
     * bigger than what we expect.
     */
    mozilla_functions.size             = moz_funcs->size;
    mozilla_functions.version          = moz_funcs->version;
    mozilla_functions.geturl           = moz_funcs->geturl;
    mozilla_functions.posturl          = moz_funcs->posturl;
    mozilla_functions.requestread      = moz_funcs->requestread;
    mozilla_functions.newstream        = moz_funcs->newstream;
    mozilla_functions.write            = moz_funcs->write;
    mozilla_functions.destroystream    = moz_funcs->destroystream;
    mozilla_functions.status           = moz_funcs->status;
    mozilla_functions.uagent           = moz_funcs->uagent;
    mozilla_functions.memalloc         = moz_funcs->memalloc;
    mozilla_functions.memfree          = moz_funcs->memfree;
    mozilla_functions.memflush         = moz_funcs->memflush;
    mozilla_functions.reloadplugins    = moz_funcs->reloadplugins;
    mozilla_functions.getJavaEnv       = moz_funcs->getJavaEnv;
    mozilla_functions.getJavaPeer      = moz_funcs->getJavaPeer;
    mozilla_functions.geturlnotify     = moz_funcs->geturlnotify;
    mozilla_functions.posturlnotify    = moz_funcs->posturlnotify;
    mozilla_functions.getvalue         = moz_funcs->getvalue;
    mozilla_functions.setvalue         = moz_funcs->setvalue;
    mozilla_functions.invalidaterect   = moz_funcs->invalidaterect;
    mozilla_functions.invalidateregion = moz_funcs->invalidateregion;
    mozilla_functions.forceredraw      = moz_funcs->forceredraw;
    mozilla_functions.geturl           = moz_funcs->geturl;

    /*
     * Set up a plugin function table that Mozilla will use to call
     * into us.  Mozilla needs to know about our version and size and
     * have a UniversalProcPointer for every function we implement.
     */

    plugin_funcs->size = sizeof (NPPluginFuncs);
    plugin_funcs->version = (NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR;
    plugin_funcs->newp = NewNPP_NewProc (plugin_new_instance);
    plugin_funcs->destroy = NewNPP_DestroyProc (plugin_destroy_instance);
    plugin_funcs->setwindow = NewNPP_SetWindowProc (NULL);
    plugin_funcs->newstream = NewNPP_NewStreamProc (plugin_new_stream);
    plugin_funcs->destroystream = NewNPP_DestroyStreamProc (plugin_destroy_stream);
    plugin_funcs->asfile = NewNPP_StreamAsFileProc (plugin_stream_as_file);
    plugin_funcs->writeready = NewNPP_WriteReadyProc (plugin_write_ready);
    plugin_funcs->write = NewNPP_WriteProc (plugin_write);
    plugin_funcs->print = NewNPP_PrintProc (NULL);
    plugin_funcs->event = NewNPP_HandleEventProc (NULL);
    plugin_funcs->urlnotify = NewNPP_URLNotifyProc (NULL);
    plugin_funcs->javaClass = NULL;
    plugin_funcs->getvalue = NewNPP_GetValueProc (plugin_get_value);
    plugin_funcs->setvalue = NewNPP_SetValueProc (NULL);

    return NPERR_NO_ERROR;
}

NPError
NP_Shutdown (void)
{
    return NPERR_NO_ERROR;
}