forked from Igalia/cog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcog.c
506 lines (430 loc) · 19 KB
/
cog.c
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
/*
* cog.c
* Copyright (C) 2021 Igalia S.L.
* Copyright (C) 2018 Eduardo Lima <[email protected]>
* Copyright (C) 2017-2018 Adrian Perez <[email protected]>
*
* Distributed under terms of the MIT license.
*/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "core/cog.h"
enum webprocess_fail_action {
WEBPROCESS_FAIL_UNKNOWN = 0,
WEBPROCESS_FAIL_ERROR_PAGE,
WEBPROCESS_FAIL_EXIT,
WEBPROCESS_FAIL_EXIT_OK,
WEBPROCESS_FAIL_RESTART,
};
static struct {
char *home_uri;
char *config_file;
gboolean version;
gboolean print_appid;
gboolean doc_viewer;
gdouble scale_factor;
gdouble device_scale_factor;
GStrv dir_handlers;
GStrv arguments;
char *background_color;
union {
char *platform_name;
CogPlatform *platform;
};
union {
char *filter_path;
WebKitUserContentFilter *filter;
};
union {
char *action_name;
enum webprocess_fail_action action_id;
} on_failure;
char *web_extensions_dir;
gboolean ignore_tls_errors;
gboolean enable_sandbox;
gboolean automation;
} s_options = {
.scale_factor = 1.0,
.device_scale_factor = 1.0,
};
static GOptionEntry s_cli_options[] = {
{"version", '\0', 0, G_OPTION_ARG_NONE, &s_options.version, "Print version and exit", NULL},
{"print-appid", '\0', 0, G_OPTION_ARG_NONE, &s_options.print_appid, "Print application ID and exit", NULL},
{"scale", '\0', 0, G_OPTION_ARG_DOUBLE, &s_options.scale_factor,
"Zoom/Scaling factor applied to Web content (default: 1.0, no scaling)", "FACTOR"},
{"device-scale", '\0', 0, G_OPTION_ARG_DOUBLE, &s_options.device_scale_factor,
"Output device scaling factor (default: 1.0, no scaling, 96 DPI)", "FACTOR"},
{"doc-viewer", '\0', 0, G_OPTION_ARG_NONE, &s_options.doc_viewer,
"Document viewer mode: optimizes for local loading of Web content. "
"This reduces memory usage at the cost of reducing caching of "
"resources loaded from the network.",
NULL},
{"dir-handler", 'd', 0, G_OPTION_ARG_STRING_ARRAY, &s_options.dir_handlers,
"Add a URI scheme handler for a directory", "SCHEME:PATH"},
{"webprocess-failure", '\0', 0, G_OPTION_ARG_STRING, &s_options.on_failure.action_name,
"Action on WebProcess failures: error-page (default), exit, exit-ok, restart.", "ACTION"},
{"config", 'C', 0, G_OPTION_ARG_FILENAME, &s_options.config_file, "Path to a configuration file", "PATH"},
{"bg-color", 'b', 0, G_OPTION_ARG_STRING, &s_options.background_color,
"Background color, as a CSS name or in #RRGGBBAA hex syntax (default: white)", "BG_COLOR"},
{"platform", 'P', 0, G_OPTION_ARG_STRING, &s_options.platform_name, "Platform plug-in to use.", "NAME"},
{"web-extensions-dir", '\0', 0, G_OPTION_ARG_STRING, &s_options.web_extensions_dir,
"Load Web Extensions from given directory.", "PATH"},
{"ignore-tls-errors", '\0', 0, G_OPTION_ARG_NONE, &s_options.ignore_tls_errors,
"Ignore TLS errors (default: disabled).", NULL},
{"content-filter", 'F', 0, G_OPTION_ARG_FILENAME, &s_options.filter_path,
"Path to content filter JSON rule set (default: none).", "PATH"},
{"enable-sandbox", 's', 0, G_OPTION_ARG_NONE, &s_options.enable_sandbox,
"Enable WebProcess sandbox (default: disabled).", NULL},
{"automation", '\0', 0, G_OPTION_ARG_NONE, &s_options.automation, "Enable automation mode (default: disabled).",
NULL},
{G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &s_options.arguments, "", "[URL]"},
{NULL}};
static gboolean
load_settings (CogShell *shell, GKeyFile *key_file, GError **error)
{
if (g_key_file_has_group (key_file, "websettings")) {
WebKitSettings *settings = cog_shell_get_web_settings (shell);
if (!cog_webkit_settings_apply_from_key_file (settings,
key_file,
"websettings",
error)) {
return FALSE;
}
}
return TRUE;
}
static int
string_to_webprocess_fail_action (const char *action)
{
static const struct {
const char *action;
enum webprocess_fail_action action_id;
} action_map[] = {
{ "error-page", WEBPROCESS_FAIL_ERROR_PAGE },
{ "exit", WEBPROCESS_FAIL_EXIT },
{ "exit-ok", WEBPROCESS_FAIL_EXIT_OK },
{ "restart", WEBPROCESS_FAIL_RESTART },
};
if (!action) // Default.
return WEBPROCESS_FAIL_ERROR_PAGE;
for (unsigned i = 0; i < G_N_ELEMENTS (action_map); i++)
if (strcmp (action, action_map[i].action) == 0)
return action_map[i].action_id;
return WEBPROCESS_FAIL_UNKNOWN;
}
static void
on_filter_saved(WebKitUserContentFilterStore *store, GAsyncResult *result, GMainLoop *loop)
{
g_autoptr(GError) error = NULL;
s_options.filter = webkit_user_content_filter_store_save_from_file_finish(store, result, &error);
if (!s_options.filter)
g_warning("Cannot compile filter: %s", error->message);
g_main_loop_quit(loop);
}
static int
on_handle_local_options (GApplication *application,
GVariantDict *options,
void *user_data)
{
if (s_options.version) {
g_print ("%s (WPE WebKit %u.%u.%u)\n",
COG_VERSION_STRING COG_VERSION_EXTRA,
webkit_get_major_version (),
webkit_get_minor_version (),
webkit_get_micro_version ());
return EXIT_SUCCESS;
}
if (s_options.print_appid) {
const char *appid = g_application_get_application_id (application);
if (appid) g_print ("%s\n", appid);
return EXIT_SUCCESS;
}
{
enum webprocess_fail_action action_id =
string_to_webprocess_fail_action (s_options.on_failure.action_name);
if (action_id == WEBPROCESS_FAIL_UNKNOWN) {
g_printerr ("Invalid action name: '%s'\n",
s_options.on_failure.action_name);
return EXIT_FAILURE;
}
g_clear_pointer (&s_options.on_failure.action_name, g_free);
s_options.on_failure.action_id = action_id;
}
const char *uri = NULL;
g_autoptr(CogShell) shell = cog_launcher_get_shell(COG_LAUNCHER(application));
if (cog_shell_is_automated(shell)) {
uri = "about:blank";
} else if (!s_options.arguments) {
if (!(uri = g_getenv("COG_URL"))) {
#ifdef COG_DEFAULT_HOME_URI
uri = COG_DEFAULT_HOME_URI;
#else
g_printerr ("%s: URL not passed in the command line, and COG_URL not set\n", g_get_prgname ());
return EXIT_FAILURE;
#endif // COG_DEFAULT_HOME_URI
}
} else if (g_strv_length(s_options.arguments) > 1) {
g_printerr ("%s: Cannot load more than one URL.\n", g_get_prgname ());
return EXIT_FAILURE;
} else {
uri = s_options.arguments[0];
}
g_autoptr(GError) error = NULL;
g_autofree char *utf8_uri = cog_uri_guess_from_user_input (uri, TRUE, &error);
if (!utf8_uri) {
g_printerr ("%s: URI '%s' is invalid UTF-8: %s\n",
g_get_prgname (), uri, error->message);
return EXIT_FAILURE;
}
g_strfreev (s_options.arguments);
s_options.arguments = NULL;
/*
* Validate the supplied local URI handler specification and check
* whether the directory exists. Note that this creation of the
* corresponding CogURIHandler objects is done at GApplication::startup.
*/
for (size_t i = 0; s_options.dir_handlers && s_options.dir_handlers[i]; i++) {
char *colon = strchr (s_options.dir_handlers[i], ':');
if (!colon) {
g_printerr ("%s: Invalid URI handler specification '%s'\n",
g_get_prgname (), s_options.dir_handlers[i]);
return EXIT_FAILURE;
}
if (s_options.dir_handlers[i] == colon - 1) {
g_printerr ("%s: No scheme specified for '%s' URI handler\n",
g_get_prgname (), s_options.dir_handlers[i]);
return EXIT_FAILURE;
}
if (colon[1] == '\0') {
g_printerr ("%s: Empty path specified for '%s' URI handler\n",
g_get_prgname (), s_options.dir_handlers[i]);
return EXIT_FAILURE;
}
g_autoptr(GFile) file = g_file_new_for_commandline_arg (colon + 1);
g_autoptr(GError) error = NULL;
if (!cog_directory_files_handler_is_suitable_path (file, &error)) {
g_printerr ("%s: %s\n", g_get_prgname (), error->message);
return EXIT_FAILURE;
}
*colon = '\0'; /* NULL-terminate the URI scheme name. */
g_autoptr(CogRequestHandler) handler = cog_directory_files_handler_new (file);
cog_shell_set_request_handler (shell, s_options.dir_handlers[i], handler);
}
s_options.home_uri = g_steal_pointer (&utf8_uri);
if (s_options.config_file) {
g_autoptr(GFile) file =
g_file_new_for_commandline_arg (s_options.config_file);
g_autofree char *config_file_path = g_file_get_path (file);
if (!g_file_query_exists (file, NULL)) {
g_printerr ("%s: File does not exist: %s\n",
g_get_prgname (), config_file_path);
return EXIT_FAILURE;
}
g_autoptr(GError) error = NULL;
g_autoptr(GKeyFile) key_file = g_key_file_new ();
if (!g_key_file_load_from_file (key_file,
config_file_path,
G_KEY_FILE_NONE,
&error) ||
!load_settings (shell, key_file, &error))
{
g_printerr ("%s: Cannot load configuration file: %s\n",
g_get_prgname (), error->message);
return EXIT_FAILURE;
}
g_object_set(shell, "config-file", g_key_file_ref(key_file), NULL);
}
g_object_set(shell, "device-scale-factor", s_options.device_scale_factor, NULL);
if (s_options.web_extensions_dir != NULL) {
webkit_web_context_set_web_extensions_directory(cog_shell_get_web_context(shell), s_options.web_extensions_dir);
}
if (s_options.enable_sandbox) {
webkit_web_context_set_sandbox_enabled(cog_shell_get_web_context(shell), TRUE);
}
#if WEBKIT_CHECK_VERSION(2, 32, 0)
webkit_website_data_manager_set_tls_errors_policy(
#else
webkit_web_context_set_tls_errors_policy(
#endif
webkit_web_context_get_website_data_manager(cog_shell_get_web_context(shell)),
s_options.ignore_tls_errors ? WEBKIT_TLS_ERRORS_POLICY_IGNORE : WEBKIT_TLS_ERRORS_POLICY_FAIL);
if (s_options.filter_path) {
WebKitWebsiteDataManager *data_manager =
webkit_web_context_get_website_data_manager(cog_shell_get_web_context(shell));
g_autofree char *filters_path =
g_build_filename(webkit_website_data_manager_get_base_cache_directory(data_manager), "filters", NULL);
g_autoptr(WebKitUserContentFilterStore) store = webkit_user_content_filter_store_new(filters_path);
g_autoptr(GFile) file = g_file_new_for_commandline_arg(s_options.filter_path);
g_clear_pointer(&s_options.filter_path, g_free);
g_autoptr(GMainLoop) loop = g_main_loop_new(NULL, FALSE);
webkit_user_content_filter_store_save_from_file(store,
"CogFilter",
file,
NULL,
(GAsyncReadyCallback) on_filter_saved,
loop);
g_main_loop_run(loop);
}
return -1; /* Continue startup. */
}
static gboolean
platform_setup (CogShell *shell)
{
/*
* Here we resolve the CogPlatform we are going to use. A Cog platform
* is dynamically loaded object that abstracts the specifics about how
* a WebView's WPE backend is going to be constructed and rendered on
* a given platform.
*/
g_debug ("%s: Platform name: %s", __func__, s_options.platform_name);
g_autoptr(GError) error = NULL;
CogPlatform *platform = cog_platform_new(s_options.platform_name, &error);
if (!platform) {
g_warning("Cannot create platform: %s", error->message);
return FALSE;
}
g_clear_pointer(&s_options.platform_name, g_free);
if (!cog_platform_setup(platform, shell, "", &error)) {
g_warning ("Platform setup failed: %s", error->message);
return FALSE;
}
s_options.platform = g_steal_pointer (&platform);
g_debug("%s: Selected %s @ %p", __func__, g_type_name(G_OBJECT_TYPE(s_options.platform)), s_options.platform);
return TRUE;
}
static void
on_shutdown (CogLauncher *launcher G_GNUC_UNUSED, void *user_data G_GNUC_UNUSED)
{
g_debug ("%s: Platform = %p", __func__, s_options.platform);
if (s_options.platform) {
cog_platform_teardown (s_options.platform);
g_clear_object(&s_options.platform);
g_debug ("%s: Platform teardown completed.", __func__);
}
}
static void*
on_web_view_create (WebKitWebView *web_view,
WebKitNavigationAction *action)
{
webkit_web_view_load_request (web_view, webkit_navigation_action_get_request (action));
return NULL;
}
static WebKitWebView*
on_create_view (CogShell *shell, void *user_data G_GNUC_UNUSED)
{
WebKitWebContext *web_context = cog_shell_get_web_context (shell);
if (s_options.doc_viewer) {
webkit_web_context_set_cache_model (web_context,
WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER);
}
WebKitWebViewBackend *view_backend = NULL;
// Try to load the platform plug-in specified in the command line.
if (platform_setup (shell)) {
g_autoptr(GError) error = NULL;
view_backend = cog_platform_get_view_backend (s_options.platform, NULL, &error);
if (!view_backend) {
g_assert (error);
g_warning ("Failed to get platform's view backend: %s", error->message);
}
}
// If the platform plug-in failed, try the default WPE backend.
if (!view_backend) {
g_debug ("Instantiating default WPE backend as fall-back.");
view_backend = webkit_web_view_backend_new (wpe_view_backend_create (),
NULL, NULL);
}
// At this point, either the platform plug-in or the default WPE backend
// must have succeeded in providing a WebKitWebViewBackend* instance.
if (!view_backend)
g_error ("Could not instantiate any WPE backend.");
g_autoptr(WebKitWebView) web_view =
g_object_new(WEBKIT_TYPE_WEB_VIEW, "settings", cog_shell_get_web_settings(shell), "web-context", web_context,
"zoom-level", s_options.scale_factor, "backend", view_backend, "is-controlled-by-automation",
cog_shell_is_automated(shell), NULL);
if (s_options.filter) {
WebKitUserContentManager *manager = webkit_web_view_get_user_content_manager(web_view);
webkit_user_content_manager_add_filter(manager, s_options.filter);
g_clear_pointer(&s_options.filter, webkit_user_content_filter_unref);
}
g_signal_connect (web_view, "create", G_CALLBACK (on_web_view_create), NULL);
if (s_options.platform) {
cog_platform_init_web_view (s_options.platform, web_view);
g_autoptr(WebKitInputMethodContext) im_context = cog_platform_create_im_context (s_options.platform);
webkit_web_view_set_input_method_context (web_view, im_context);
}
if (s_options.background_color != NULL) {
WebKitColor color;
gboolean has_valid_color = webkit_color_parse (&color, s_options.background_color);
if (has_valid_color)
webkit_web_view_set_background_color (web_view, &color);
else
g_error ("'%s' doesn't represent a valid #RRGGBBAA or CSS color format.", s_options.background_color);
}
switch (s_options.on_failure.action_id) {
case WEBPROCESS_FAIL_ERROR_PAGE:
// Nothing else needed, the default error handler (connected
// below) already implements displaying an error page.
break;
case WEBPROCESS_FAIL_EXIT:
cog_web_view_connect_web_process_terminated_exit_handler (web_view, EXIT_FAILURE);
break;
case WEBPROCESS_FAIL_EXIT_OK:
cog_web_view_connect_web_process_terminated_exit_handler (web_view, EXIT_SUCCESS);
break;
case WEBPROCESS_FAIL_RESTART:
// TODO: Un-hardcode the 5 retries per second.
cog_web_view_connect_web_process_terminated_restart_handler (web_view, 5, 1000);
break;
default:
g_assert_not_reached();
}
cog_web_view_connect_default_progress_handlers (web_view);
cog_web_view_connect_default_error_handlers (web_view);
webkit_web_view_load_uri (web_view, s_options.home_uri);
g_clear_pointer (&s_options.home_uri, g_free);
return g_steal_pointer (&web_view);
}
static void
print_module_info(GIOExtension *extension, void *userdata G_GNUC_UNUSED)
{
g_info(" %s - %d/%s",
g_io_extension_get_name(extension),
g_io_extension_get_priority(extension),
g_type_name(g_io_extension_get_type(extension)));
}
int
main (int argc, char *argv[])
{
// We need to set the program name early because constructing the
// CogLauncher instance will use g_get_prgname() to determine where
// to store the caches for Web content.
{
const char *dir_separator = strrchr (argv[0], G_DIR_SEPARATOR);
g_set_prgname (dir_separator ? dir_separator + 1 : argv[0]);
g_set_application_name ("Cog");
}
cog_modules_add_directory(g_getenv("COG_MODULEDIR") ?: COG_MODULEDIR);
g_info("%s:", COG_MODULES_PLATFORM_EXTENSION_POINT);
cog_modules_foreach(COG_MODULES_PLATFORM, print_module_info, NULL);
// We need to check whether we'll use automation mode before creating the launcher
gboolean automated = FALSE;
for (int i = 1; i < argc; i++) {
if (g_str_equal("--automation", argv[i])) {
automated = TRUE;
break;
}
}
CogSessionType sessionType = automated ? COG_SESSION_AUTOMATED : COG_SESSION_REGULAR;
g_autoptr(GApplication) app = G_APPLICATION(cog_launcher_init_default(sessionType));
g_application_add_main_option_entries(app, s_cli_options);
cog_launcher_add_web_settings_option_entries(COG_LAUNCHER(app));
cog_launcher_add_web_cookies_option_entries(COG_LAUNCHER(app));
cog_launcher_add_web_permissions_option_entries (COG_LAUNCHER (app));
g_signal_connect (app, "shutdown", G_CALLBACK (on_shutdown), NULL);
g_signal_connect (app, "handle-local-options",
G_CALLBACK (on_handle_local_options), NULL);
g_signal_connect (cog_launcher_get_shell (COG_LAUNCHER (app)), "create-view",
G_CALLBACK (on_create_view), NULL);
return g_application_run (app, argc, argv);
}