<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[187011] trunk</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/187011">187011</a></dd>
<dt>Author</dt> <dd>mcatanzaro@igalia.com</dd>
<dt>Date</dt> <dd>2015-07-19 09:32:58 -0700 (Sun, 19 Jul 2015)</dd>
</dl>
<h3>Log Message</h3>
<pre>[GTK] Add seccomp filters support
https://bugs.webkit.org/show_bug.cgi?id=110014
Reviewed by Žan Doberšek.
.:
Find needed compiler and linker flags for libseccomp.
* Source/cmake/OptionsGTK.cmake:
Source/WebKit2:
Allow building with ENABLE_SECCOMP_FILTERS=ON. Based on work by Thiago Marcos P. Santos.
* PlatformGTK.cmake: Support ENABLE_SECCOMP_FILTERS build option.
* WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp: Added.
(WebKit::SeccompFiltersWebProcessGtk::SeccompFiltersWebProcessGtk):
(WebKit::SeccompFiltersWebProcessGtk::platformInitialize):
* WebProcess/gtk/SeccompFiltersWebProcessGtk.h: Added.
* WebProcess/soup/WebProcessSoup.cpp:
(WebKit::WebProcess::platformInitializeWebProcess): Initialize default
GTK+ web process seccomp filters.
Tools:
Add libseccomp to jhbuild modulesets.
* gtk/jhbuild.modules:</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkChangeLog">trunk/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2PlatformGTKcmake">trunk/Source/WebKit2/PlatformGTK.cmake</a></li>
<li><a href="#trunkSourceWebKit2WebProcesssoupWebProcessSoupcpp">trunk/Source/WebKit2/WebProcess/soup/WebProcessSoup.cpp</a></li>
<li><a href="#trunkSourcecmakeOptionsGTKcmake">trunk/Source/cmake/OptionsGTK.cmake</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsgtkjhbuildmodules">trunk/Tools/gtk/jhbuild.modules</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2WebProcessgtkSeccompFiltersWebProcessGtkcpp">trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp</a></li>
<li><a href="#trunkSourceWebKit2WebProcessgtkSeccompFiltersWebProcessGtkh">trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.h</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/ChangeLog (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/ChangeLog        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/ChangeLog        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -1,3 +1,14 @@
</span><ins>+2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [GTK] Add seccomp filters support
+ https://bugs.webkit.org/show_bug.cgi?id=110014
+
+ Reviewed by Žan Doberšek.
+
+ Find needed compiler and linker flags for libseccomp.
+
+ * Source/cmake/OptionsGTK.cmake:
+
</ins><span class="cx"> 2015-07-17 Ting-Wei Lan <lantw44@gmail.com>
</span><span class="cx">
</span><span class="cx"> Bring back the GNU ar check to create thin archives on non-Linux systems
</span></span></pre></div>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Source/WebKit2/ChangeLog        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -1,3 +1,21 @@
</span><ins>+2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [GTK] Add seccomp filters support
+ https://bugs.webkit.org/show_bug.cgi?id=110014
+
+ Reviewed by Žan Doberšek.
+
+ Allow building with ENABLE_SECCOMP_FILTERS=ON. Based on work by Thiago Marcos P. Santos.
+
+ * PlatformGTK.cmake: Support ENABLE_SECCOMP_FILTERS build option.
+ * WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp: Added.
+ (WebKit::SeccompFiltersWebProcessGtk::SeccompFiltersWebProcessGtk):
+ (WebKit::SeccompFiltersWebProcessGtk::platformInitialize):
+ * WebProcess/gtk/SeccompFiltersWebProcessGtk.h: Added.
+ * WebProcess/soup/WebProcessSoup.cpp:
+ (WebKit::WebProcess::platformInitializeWebProcess): Initialize default
+ GTK+ web process seccomp filters.
+
</ins><span class="cx"> 2015-07-18 Gyuyoung Kim <gyuyoung.kim@webkit.org>
</span><span class="cx">
</span><span class="cx"> Reduce PassRefPtr in WebKit2 - 3
</span></span></pre></div>
<a id="trunkSourceWebKit2PlatformGTKcmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/PlatformGTK.cmake (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/PlatformGTK.cmake        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Source/WebKit2/PlatformGTK.cmake        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -15,9 +15,12 @@
</span><span class="cx">
</span><span class="cx"> add_definitions(-DBUILDING_WEBKIT)
</span><span class="cx"> add_definitions(-DWEBKIT2_COMPILATION)
</span><ins>+
+add_definitions(-DLIBEXECDIR="${CMAKE_INSTALL_FULL_LIBEXECDIR}")
</ins><span class="cx"> add_definitions(-DPKGLIBEXECDIR="${LIBEXEC_INSTALL_DIR}")
</span><span class="cx"> add_definitions(-DLOCALEDIR="${CMAKE_INSTALL_FULL_LOCALEDIR}")
</span><span class="cx"> add_definitions(-DLIBDIR="${LIB_INSTALL_DIR}")
</span><ins>+add_definitions(-DDATADIR="${CMAKE_INSTALL_FULL_DATADIR}")
</ins><span class="cx">
</span><span class="cx"> set(WebKit2_USE_PREFIX_HEADER ON)
</span><span class="cx">
</span><span class="lines">@@ -340,6 +343,8 @@
</span><span class="cx"> WebProcess/WebPage/gtk/WebPageGtk.cpp
</span><span class="cx"> WebProcess/WebPage/gtk/WebPrintOperationGtk.cpp
</span><span class="cx">
</span><ins>+ WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp
+ WebProcess/gtk/SeccompFiltersWebProcessGtk.h
</ins><span class="cx"> WebProcess/gtk/WebGtkExtensionManager.cpp
</span><span class="cx"> WebProcess/gtk/WebGtkInjectedBundleMain.cpp
</span><span class="cx"> WebProcess/gtk/WebProcessMainGtk.cpp
</span><span class="lines">@@ -474,6 +479,8 @@
</span><span class="cx"> "${WEBKIT2_DIR}/Shared/Downloads/soup"
</span><span class="cx"> "${WEBKIT2_DIR}/Shared/Plugins/unix"
</span><span class="cx"> "${WEBKIT2_DIR}/Shared/gtk"
</span><ins>+ "${WEBKIT2_DIR}/Shared/linux"
+ "${WEBKIT2_DIR}/Shared/linux/SeccompFilters"
</ins><span class="cx"> "${WEBKIT2_DIR}/Shared/soup"
</span><span class="cx"> "${WEBKIT2_DIR}/Shared/unix"
</span><span class="cx"> "${WEBKIT2_DIR}/UIProcess/API/C/cairo"
</span><span class="lines">@@ -558,6 +565,21 @@
</span><span class="cx"> )
</span><span class="cx"> endif ()
</span><span class="cx">
</span><ins>+if (ENABLE_SECCOMP_FILTERS)
+ list(APPEND WebKit2_LIBRARIES
+ ${LIBSECCOMP_LIBRARIES}
+ )
+ list(APPEND WebKit2_INCLUDE_DIRECTORIES
+ ${LIBSECCOMP_INCLUDE_DIRS}
+ )
+
+ # If building with WebKit jhbuild (not GNOME jhbuild), add the root build
+ # directory to the filesystem access policy.
+ if (DEVELOPER_MODE AND IS_DIRECTORY ${CMAKE_SOURCE_DIR}/WebKitBuild/DependenciesGTK)
+ add_definitions(-DSOURCE_DIR=\"${CMAKE_SOURCE_DIR}\")
+ endif ()
+endif ()
+
</ins><span class="cx"> ADD_WHOLE_ARCHIVE_TO_LIBRARIES(WebKit2_LIBRARIES)
</span><span class="cx">
</span><span class="cx"> set(WebKit2_MARSHAL_LIST ${WEBKIT2_DIR}/UIProcess/API/gtk/webkit2marshal.list)
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessgtkSeccompFiltersWebProcessGtkcpp"></a>
<div class="addfile"><h4>Added: trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp (0 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp         (rev 0)
+++ trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.cpp        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -0,0 +1,70 @@
</span><ins>+/*
+ * Copyright (C) 2013 Intel Corporation. All rights reserved.
+ * Copyright (C) 2015 Igalia S.L.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "config.h"
+#include "SeccompFiltersWebProcessGtk.h"
+
+#if ENABLE(SECCOMP_FILTERS)
+
+#include "SeccompBroker.h"
+#include "WebProcessCreationParameters.h"
+#include <glib.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+namespace WebKit {
+
+SeccompFiltersWebProcessGtk::SeccompFiltersWebProcessGtk(const WebProcessCreationParameters& parameters)
+ : SeccompFilters(Allow)
+{
+ m_policy.addDefaultWebProcessPolicy(parameters);
+}
+
+void SeccompFiltersWebProcessGtk::platformInitialize()
+{
+ // TODO: We should block all the syscalls and whitelist
+ // what we need + trap what should be handled by the broker.
+ addRule("open", Trap);
+ addRule("openat", Trap);
+ addRule("creat", Trap);
+
+#if USE(GSTREAMER)
+ m_policy.addDirectoryPermission(String::fromUTF8(g_get_user_cache_dir()) + "/gstreamer-1.0", SyscallPolicy::ReadAndWrite);
+ m_policy.addDirectoryPermission(String::fromUTF8(g_get_user_data_dir()) + "/gstreamer-1.0", SyscallPolicy::ReadAndWrite);
+ m_policy.addDirectoryPermission(String::fromUTF8(LIBEXECDIR) + "/gstreamer-1.0", SyscallPolicy::Read);
+#endif
+
+ m_policy.addDirectoryPermission(String::fromUTF8(g_get_user_data_dir()) + "/gvfs-metadata", SyscallPolicy::ReadAndWrite);
+
+ // For libXau
+ m_policy.addDirectoryPermission(ASCIILiteral("/run/gdm"), SyscallPolicy::Read);
+
+ SeccompBroker::launchProcess(this, m_policy);
+}
+
+} // namespace WebKit
+
+#endif // ENABLE(SECCOMP_FILTERS)
</ins></span></pre></div>
<a id="trunkSourceWebKit2WebProcessgtkSeccompFiltersWebProcessGtkh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.h (0 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.h         (rev 0)
+++ trunk/Source/WebKit2/WebProcess/gtk/SeccompFiltersWebProcessGtk.h        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -0,0 +1,52 @@
</span><ins>+/*
+ * Copyright (C) 2013 Intel Corporation. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef SeccompFiltersWebProcessGtk_h
+#define SeccompFiltersWebProcessGtk_h
+
+#if ENABLE(SECCOMP_FILTERS)
+
+#include "SeccompFilters.h"
+#include "SyscallPolicy.h"
+
+namespace WebKit {
+
+class WebProcessCreationParameters;
+
+class SeccompFiltersWebProcessGtk : public SeccompFilters {
+public:
+ SeccompFiltersWebProcessGtk(const WebProcessCreationParameters&);
+
+private:
+ void platformInitialize() override;
+
+ SyscallPolicy m_policy;
+};
+
+} // namespace WebKit
+
+#endif // ENABLE(SECCOMP_FILTERS)
+
+#endif // SeccompFiltersWebProcessGtk_h
</ins></span></pre></div>
<a id="trunkSourceWebKit2WebProcesssoupWebProcessSoupcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/soup/WebProcessSoup.cpp (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/soup/WebProcessSoup.cpp        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Source/WebKit2/WebProcess/soup/WebProcessSoup.cpp        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -29,6 +29,8 @@
</span><span class="cx">
</span><span class="cx"> #if PLATFORM(EFL)
</span><span class="cx"> #include "SeccompFiltersWebProcessEfl.h"
</span><ins>+#elif PLATFORM(GTK)
+#include "SeccompFiltersWebProcessGtk.h"
</ins><span class="cx"> #endif
</span><span class="cx">
</span><span class="cx"> #include "CertificateInfo.h"
</span><span class="lines">@@ -127,6 +129,8 @@
</span><span class="cx"> {
</span><span class="cx"> #if PLATFORM(EFL)
</span><span class="cx"> SeccompFiltersWebProcessEfl seccompFilters(parameters);
</span><ins>+#elif PLATFORM(GTK)
+ SeccompFiltersWebProcessGtk seccompFilters(parameters);
</ins><span class="cx"> #endif
</span><span class="cx"> seccompFilters.initialize();
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourcecmakeOptionsGTKcmake"></a>
<div class="modfile"><h4>Modified: trunk/Source/cmake/OptionsGTK.cmake (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/cmake/OptionsGTK.cmake        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Source/cmake/OptionsGTK.cmake        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -338,6 +338,13 @@
</span><span class="cx"> find_package(GDK2 2.24.10 REQUIRED)
</span><span class="cx"> endif ()
</span><span class="cx">
</span><ins>+if (ENABLE_SECCOMP_FILTERS)
+ find_package(LibSeccomp)
+ if (NOT PC_LIBSECCOMP_FOUND)
+ message(FATAL_ERROR "libseccomp is required for ENABLE_SECCOMP_FILTERS")
+ endif ()
+endif ()
+
</ins><span class="cx"> if (ENABLE_SPELLCHECK)
</span><span class="cx"> find_package(Enchant)
</span><span class="cx"> if (NOT PC_ENCHANT_FOUND)
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Tools/ChangeLog        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -1,3 +1,14 @@
</span><ins>+2015-07-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [GTK] Add seccomp filters support
+ https://bugs.webkit.org/show_bug.cgi?id=110014
+
+ Reviewed by Žan Doberšek.
+
+ Add libseccomp to jhbuild modulesets.
+
+ * gtk/jhbuild.modules:
+
</ins><span class="cx"> 2015-07-18 Simon Fraser <simon.fraser@apple.com>
</span><span class="cx">
</span><span class="cx"> MiniBrowser window title is just "Window" when page has no <title>
</span></span></pre></div>
<a id="trunkToolsgtkjhbuildmodules"></a>
<div class="modfile"><h4>Modified: trunk/Tools/gtk/jhbuild.modules (187010 => 187011)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/gtk/jhbuild.modules        2015-07-19 13:16:54 UTC (rev 187010)
+++ trunk/Tools/gtk/jhbuild.modules        2015-07-19 16:32:58 UTC (rev 187011)
</span><span class="lines">@@ -32,6 +32,7 @@
</span><span class="cx"> <dep package="xserver"/>
</span><span class="cx"> <dep package="mesa"/>
</span><span class="cx"> <dep package="openwebrtc"/>
</span><ins>+ <dep package="libseccomp"/>
</ins><span class="cx"> </dependencies>
</span><span class="cx"> </metamodule>
</span><span class="cx">
</span><span class="lines">@@ -119,6 +120,10 @@
</span><span class="cx"> md5sum="f5898b29bbfd70502831a212d9249d10"/>
</span><span class="cx"> </autotools>
</span><span class="cx">
</span><ins>+ <autotools id="libseccomp" autogen-sh="./autogen.sh; ./configure">
+ <branch repo="github.com" module="seccomp/libseccomp.git" tag="v2.2.3"/>
+ </autotools>
+
</ins><span class="cx"> <autotools id="gdk-pixbuf" autogen-sh="configure"
</span><span class="cx"> autogenargs="--disable-introspection">
</span><span class="cx"> <dependencies>
</span></span></pre>
</div>
</div>
</body>
</html>