Revert "Validate smack label of forked/executed WebProcess and PluginProcess"
[framework/web/webkit-efl.git] / Source / WebKit2 / PluginProcess / efl / PluginProcessMainEfl.cpp
1 /*
2  * Copyright (C) 2011 Igalia S.L.
3  * Copyright (C) 2011 Apple Inc.
4  * Copyright (C) 2011 Samsung Electronics
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
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.
14  *
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.
26  */
27
28 #include "config.h"
29 #include "PluginProcessMainEfl.h"
30
31 #include "PluginProcess.h"
32 #include <Ecore.h>
33 #include <Ecore_X.h>
34 #include <WebCore/RunLoop.h>
35 #include <runtime/InitializeThreading.h>
36 #include <wtf/MainThread.h>
37
38 #if defined(XP_UNIX)
39 #include <X11/Xlib.h>
40 #endif
41
42 #if ENABLE(TIZEN_SCAN_PLUGIN)
43 #include "NetscapePlugin.h"
44 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
45
46 using namespace WebCore;
47
48 namespace WebKit {
49
50 #if defined(XP_UNIX)
51 static int webkiteflXError(Display* xdisplay, XErrorEvent* error)
52 {
53     char errorMessage[64];
54     XGetErrorText(xdisplay, error->error_code, errorMessage, 63);
55     printf("The program received an X Window System error.\n"
56               "This probably reflects a bug in a browser plugin.\n"
57               "The error was '%s'.\n"
58               "  (Details: serial %ld error_code %d request_code %d minor_code %d)\n",
59               errorMessage,
60               error->serial, error->error_code,
61               error->request_code, error->minor_code);
62     return 0;
63 }
64 #endif
65
66 WK_EXPORT int PluginProcessMainEfl(int argc, char* argv[])
67 {
68 #if ENABLE(TIZEN_SCAN_PLUGIN)
69     ASSERT(argc == 2 || argc == 3);
70     bool scanPlugin = !strcmp(argv[1], "-scanPlugin");
71     ASSERT(argc == 2 || (argc == 3 && scanPlugin));
72 #else
73     ASSERT(argc == 2);
74 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
75
76     if (!eina_init())
77         return 1;
78
79     if (!ecore_x_init(0))
80         return 1;
81
82     JSC::initializeThreading();
83     WTF::initializeMainThread();
84 #if !LOG_DISABLED && ENABLE(TIZEN_LOG)
85     WebCore::initializeLoggingChannelsIfNecessary();
86 #endif
87
88 #if ENABLE(TIZEN_SCAN_PLUGIN)
89     if (scanPlugin) {
90 #if ENABLE(TIZEN_LOG)
91         TIZEN_LOGI("[Plugins] scan plugin");
92 #endif
93         String pluginPath(argv[2]);
94         if (!NetscapePluginModule::scanPlugin(pluginPath))
95             return 1;
96         return 0;
97     }
98 #endif // ENABLE(TIZEN_SCAN_PLUGIN)
99
100     RunLoop::initializeMainRunLoop();
101
102 #if defined(XP_UNIX)
103     XSetErrorHandler(webkiteflXError);
104 #endif
105
106     int socket = atoi(argv[1]);
107     WebKit::PluginProcess::shared().initialize(socket, RunLoop::main());
108     RunLoop::run();
109
110     return 0;
111 }
112
113 } // namespace WebKit