This commit is contained in:
Sebastian Livoni 2025-03-30 23:52:53 +02:00 committed by GitHub
commit 9ee12857f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 54 additions and 1 deletions

View file

@ -5,6 +5,10 @@
<key>com.apple.application-identifier</key> <key>com.apple.application-identifier</key>
<string>G2S7P7J672.org.keepassxc.keepassxc</string> <string>G2S7P7J672.org.keepassxc.keepassxc</string>
<key>keychain-access-groups</key> <key>keychain-access-groups</key>
<array>
<string>G2S7P7J672.org.keepassxc.keepassxc</string>
</array>
<key>com.apple.security.application-groups</key>
<array> <array>
<string>G2S7P7J672.org.keepassxc.keepassxc</string> <string>G2S7P7J672.org.keepassxc.keepassxc</string>
</array> </array>

View file

@ -25,6 +25,10 @@
#include <QProcessEnvironment> #include <QProcessEnvironment>
#endif #endif
#if defined(Q_OS_MACOS)
#include "BrowserSharedMac.h"
#endif
namespace BrowserShared namespace BrowserShared
{ {
QString localServerPath() QString localServerPath()
@ -53,7 +57,9 @@ namespace BrowserShared
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
// Windows uses named pipes // Windows uses named pipes
return serverName + "_" + qgetenv("USERNAME"); return serverName + "_" + qgetenv("USERNAME");
#else // Q_OS_MACOS and others #elif defined(Q_OS_MACOS)
return macOSLocalServerPath();
#else // others
return QStandardPaths::writableLocation(QStandardPaths::TempLocation) + serverName; return QStandardPaths::writableLocation(QStandardPaths::TempLocation) + serverName;
#endif #endif
} }

View file

@ -0,0 +1,6 @@
#include <QString>
namespace BrowserShared
{
QString macOSLocalServerPath();
}

View file

@ -0,0 +1,25 @@
#include <Foundation/Foundation.h>
#include <QDir>
#include <QString>
namespace BrowserShared
{
QString macOSLocalServerPath()
{
NSString *appGroupIdentifier = @"G2S7P7J672.org.keepassxc.KeePassXC";
// Get the container URL for the app group identifier
NSURL *containerURL = [[NSFileManager defaultManager] containerURLForSecurityApplicationGroupIdentifier:appGroupIdentifier];
NSString *containerPath = [containerURL path];
QString homePath = QString::fromNSString(containerPath);
QDir().mkpath(homePath);
// The path will become too long therefore we must cut off serverName
QString socketPath = homePath + "/KeePassXC.BrowserServer";
return socketPath;
}
}

View file

@ -31,6 +31,11 @@ if(WITH_XC_BROWSER)
CustomTableWidget.cpp CustomTableWidget.cpp
NativeMessageInstaller.cpp) NativeMessageInstaller.cpp)
if(APPLE)
list(APPEND browser_SOURCES
BrowserSharedMac.mm)
endif()
if(WITH_XC_BROWSER_PASSKEYS) if(WITH_XC_BROWSER_PASSKEYS)
list(APPEND browser_SOURCES list(APPEND browser_SOURCES
BrowserCbor.cpp BrowserCbor.cpp

View file

@ -19,6 +19,11 @@ if(WITH_XC_BROWSER)
keepassxc-proxy.cpp keepassxc-proxy.cpp
NativeMessagingProxy.cpp) NativeMessagingProxy.cpp)
if(APPLE)
list(APPEND proxy_SOURCES
../browser/BrowserSharedMac.mm)
endif()
# Alloc must be defined in a static library to prevent clashing with clang ASAN definitions # Alloc must be defined in a static library to prevent clashing with clang ASAN definitions
add_library(proxy_alloc STATIC ../core/Alloc.cpp) add_library(proxy_alloc STATIC ../core/Alloc.cpp)
target_link_libraries(proxy_alloc PRIVATE Qt5::Core ${BOTAN_LIBRARIES}) target_link_libraries(proxy_alloc PRIVATE Qt5::Core ${BOTAN_LIBRARIES})
@ -39,6 +44,8 @@ if(WITH_XC_BROWSER)
set_property(GLOBAL APPEND PROPERTY set_property(GLOBAL APPEND PROPERTY
_MACDEPLOYQT_EXTRA_BINARIES "${PROXY_INSTALL_DIR}/keepassxc-proxy") _MACDEPLOYQT_EXTRA_BINARIES "${PROXY_INSTALL_DIR}/keepassxc-proxy")
target_link_libraries(keepassxc-proxy "-framework Foundation")
endif() endif()
if(WIN32) if(WIN32)