2 * Copyright (C) 2011 Igalia S.L.
3 * Copyright (C) 2011 Apple Inc.
4 * Copyright (C) 2012 Samsung Electronics
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
17 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
19 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25 * THE POSSIBILITY OF SUCH DAMAGE.
29 #include "PluginProcessMainUnix.h"
31 #if ENABLE(PLUGIN_PROCESS)
34 #include "NetscapePlugin.h"
35 #include "PluginProcess.h"
36 #include "ScriptController.h"
37 #include <WebCore/RunLoop.h>
41 #elif PLATFORM(EFL) && HAVE_ECORE_X
45 using namespace WebCore;
52 static const char xErrorString[] = "The program '%s' received an X Window System error.\n"
53 "This probably reflects a bug in a browser plugin.\n"
54 "The error was '%s'.\n"
55 " (Details: serial %ld error_code %d request_code %d minor_code %d)\n";
56 #endif /* !LOG_DISABLED */
58 static char* programName = 0;
60 static int webkitXError(Display* xdisplay, XErrorEvent* error)
62 char errorMessage[64];
63 XGetErrorText(xdisplay, error->error_code, errorMessage, 63);
65 LOG(Plugins, xErrorString,
66 programName, errorMessage,
67 error->serial, error->error_code,
68 error->request_code, error->minor_code);
74 WK_EXPORT int PluginProcessMainUnix(int argc, char* argv[])
76 bool scanPlugin = !strcmp(argv[1], "-scanPlugin");
77 ASSERT_UNUSED(argc, argc == 3);
80 gtk_init(&argc, &argv);
88 ScriptController::initializeThreading();
91 String pluginPath(argv[2]);
92 if (!NetscapePluginModule::scanPlugin(pluginPath))
97 RunLoop::initializeMainRunLoop();
99 // Plugins can produce X errors that are handled by the GDK X error handler, which
100 // exits the process. Since we don't want to crash due to plugin bugs, we install a
101 // custom error handler to show a warning when a X error happens without aborting.
103 programName = basename(argv[0]);
104 XSetErrorHandler(webkitXError);
107 int socket = atoi(argv[1]);
109 WebKit::ChildProcessInitializationParameters parameters;
110 parameters.connectionIdentifier = socket;
111 parameters.extraInitializationData.add("plugin-path", argv[2]);
113 WebKit::PluginProcess::shared().initialize(parameters);
120 } // namespace WebKit