2018-10-18 11:43:49 +00:00
|
|
|
diff -up firefox-63.0/extensions/pref/autoconfig/src/nsReadConfig.cpp.1170092 firefox-63.0/extensions/pref/autoconfig/src/nsReadConfig.cpp
|
|
|
|
--- firefox-63.0/extensions/pref/autoconfig/src/nsReadConfig.cpp.1170092 2018-10-15 21:20:45.000000000 +0200
|
|
|
|
+++ firefox-63.0/extensions/pref/autoconfig/src/nsReadConfig.cpp 2018-10-18 13:37:55.993001292 +0200
|
|
|
|
@@ -265,9 +265,20 @@ nsresult nsReadConfig::openAndEvaluateJS
|
2016-03-21 13:40:15 +00:00
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = NS_NewLocalFileInputStream(getter_AddRefs(inStr), jsFile);
|
2017-09-25 08:49:39 +00:00
|
|
|
- if (NS_FAILED(rv))
|
2016-03-21 13:40:15 +00:00
|
|
|
- return rv;
|
|
|
|
+ if (NS_FAILED(rv)) {
|
|
|
|
+ // Look for cfg file in /etc/<application>/pref
|
|
|
|
+ rv = NS_GetSpecialDirectory(NS_APP_PREFS_SYSTEM_CONFIG_DIR,
|
|
|
|
+ getter_AddRefs(jsFile));
|
|
|
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
+
|
|
|
|
+ rv = jsFile->AppendNative(NS_LITERAL_CSTRING("pref"));
|
|
|
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
+ rv = jsFile->AppendNative(nsDependentCString(aFileName));
|
|
|
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
2017-09-25 08:49:39 +00:00
|
|
|
|
2016-03-21 13:40:15 +00:00
|
|
|
+ rv = NS_NewLocalFileInputStream(getter_AddRefs(inStr), jsFile);
|
|
|
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
+ }
|
|
|
|
} else {
|
|
|
|
nsAutoCString location("resource://gre/defaults/autoconfig/");
|
2017-09-25 08:49:39 +00:00
|
|
|
location += aFileName;
|
2018-10-18 11:43:49 +00:00
|
|
|
diff -up firefox-63.0/modules/libpref/Preferences.cpp.1170092 firefox-63.0/modules/libpref/Preferences.cpp
|
|
|
|
--- firefox-63.0/modules/libpref/Preferences.cpp.1170092 2018-10-15 21:20:49.000000000 +0200
|
|
|
|
+++ firefox-63.0/modules/libpref/Preferences.cpp 2018-10-18 13:37:55.994001285 +0200
|
|
|
|
@@ -4873,6 +4873,8 @@ Preferences::InitInitialObjects(bool aIs
|
2018-01-23 19:25:55 +00:00
|
|
|
//
|
|
|
|
// Thus, in the omni.jar case, we always load app-specific default
|
|
|
|
// preferences from omni.jar, whether or not `$app == $gre`.
|
2016-03-21 13:40:15 +00:00
|
|
|
+ // At very end load configuration from system config location:
|
|
|
|
+ // - /etc/firefox/pref/*.js
|
|
|
|
|
2018-01-23 19:25:55 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsZipFind* findPtr;
|
2018-10-18 11:43:49 +00:00
|
|
|
diff -up firefox-63.0/toolkit/xre/nsXREDirProvider.cpp.1170092 firefox-63.0/toolkit/xre/nsXREDirProvider.cpp
|
|
|
|
--- firefox-63.0/toolkit/xre/nsXREDirProvider.cpp.1170092 2018-10-15 21:20:52.000000000 +0200
|
|
|
|
+++ firefox-63.0/toolkit/xre/nsXREDirProvider.cpp 2018-10-18 13:41:06.969581700 +0200
|
|
|
|
@@ -57,6 +57,7 @@
|
2016-03-21 13:40:15 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
#include <ctype.h>
|
|
|
|
+#include "nsIXULAppInfo.h"
|
|
|
|
#endif
|
2016-03-21 15:45:35 +00:00
|
|
|
#ifdef XP_IOS
|
|
|
|
#include "UIKitDirProvider.h"
|
2018-10-18 11:43:49 +00:00
|
|
|
@@ -527,6 +528,20 @@ nsXREDirProvider::GetFile(const char* aP
|
2016-03-21 13:40:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+#if defined(XP_UNIX)
|
|
|
|
+ if (!strcmp(aProperty, NS_APP_PREFS_SYSTEM_CONFIG_DIR)) {
|
|
|
|
+ nsCString sysConfigDir = NS_LITERAL_CSTRING("/etc/");
|
|
|
|
+ nsCOMPtr<nsIXULAppInfo> appInfo = do_GetService("@mozilla.org/xre/app-info;1");
|
|
|
|
+ if (!appInfo)
|
|
|
|
+ return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
+ nsCString appName;
|
|
|
|
+ appInfo->GetName(appName);
|
|
|
|
+ ToLowerCase(appName);
|
|
|
|
+ sysConfigDir.Append(appName);
|
|
|
|
+ return NS_NewNativeLocalFile(sysConfigDir, false, aFile);
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
if (NS_FAILED(rv) || !file)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2018-10-18 11:43:49 +00:00
|
|
|
@@ -863,6 +878,15 @@ nsXREDirProvider::GetFilesInternal(const
|
2016-03-21 13:40:15 +00:00
|
|
|
LoadDirsIntoArray(mAppBundleDirectories,
|
|
|
|
kAppendPrefDir, directories);
|
2018-10-18 11:43:49 +00:00
|
|
|
|
2016-03-21 13:40:15 +00:00
|
|
|
+ // Add /etc/<application>/pref/ directory if it exists
|
|
|
|
+ nsCOMPtr<nsIFile> systemPrefDir;
|
|
|
|
+ rv = NS_GetSpecialDirectory(NS_APP_PREFS_SYSTEM_CONFIG_DIR, getter_AddRefs(systemPrefDir));
|
|
|
|
+ if (NS_SUCCEEDED(rv)) {
|
|
|
|
+ rv = systemPrefDir->AppendNative(NS_LITERAL_CSTRING("pref"));
|
|
|
|
+ if (NS_SUCCEEDED(rv))
|
2018-10-18 11:43:49 +00:00
|
|
|
+ directories.AppendObject(systemPrefDir);
|
2016-03-21 13:40:15 +00:00
|
|
|
+ }
|
2018-10-18 11:43:49 +00:00
|
|
|
+
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories, NS_GET_IID(nsIFile));
|
2016-03-21 13:40:15 +00:00
|
|
|
}
|
2018-10-18 11:43:49 +00:00
|
|
|
else if (!strcmp(aProperty, NS_APP_CHROME_DIR_LIST)) {
|
|
|
|
diff -up firefox-63.0/xpcom/io/nsAppDirectoryServiceDefs.h.1170092 firefox-63.0/xpcom/io/nsAppDirectoryServiceDefs.h
|
|
|
|
--- firefox-63.0/xpcom/io/nsAppDirectoryServiceDefs.h.1170092 2018-10-15 21:20:52.000000000 +0200
|
|
|
|
+++ firefox-63.0/xpcom/io/nsAppDirectoryServiceDefs.h 2018-10-18 13:37:55.994001285 +0200
|
2018-01-23 19:25:55 +00:00
|
|
|
@@ -59,6 +59,7 @@
|
|
|
|
#define NS_APP_PREFS_50_FILE "PrefF"
|
2016-03-21 13:40:15 +00:00
|
|
|
#define NS_APP_PREFS_DEFAULTS_DIR_LIST "PrefDL"
|
|
|
|
#define NS_APP_PREFS_OVERRIDE_DIR "PrefDOverride" // Directory for per-profile defaults
|
|
|
|
+#define NS_APP_PREFS_SYSTEM_CONFIG_DIR "PrefSysConf" // Directory with system-wide configuration
|
|
|
|
|
|
|
|
#define NS_APP_USER_PROFILE_50_DIR "ProfD"
|
|
|
|
#define NS_APP_USER_PROFILE_LOCAL_50_DIR "ProfLD"
|