mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-12-27 00:09:53 -05:00
Quit the proxy when reading zero or less from stdin
This commit is contained in:
parent
8db604e787
commit
1d80bddde3
@ -52,7 +52,7 @@ protected slots:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void readLength() = 0;
|
virtual void readLength() = 0;
|
||||||
virtual void readStdIn(const quint32 length) = 0;
|
virtual bool readStdIn(const quint32 length) = 0;
|
||||||
void readNativeMessages();
|
void readNativeMessages();
|
||||||
QString jsonToString(const QJsonObject& json) const;
|
QString jsonToString(const QJsonObject& json) const;
|
||||||
void sendReply(const QJsonObject& json);
|
void sendReply(const QJsonObject& json);
|
||||||
|
@ -114,10 +114,10 @@ void NativeMessagingHost::readLength()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeMessagingHost::readStdIn(const quint32 length)
|
bool NativeMessagingHost::readStdIn(const quint32 length)
|
||||||
{
|
{
|
||||||
if (length <= 0) {
|
if (length <= 0) {
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray arr;
|
QByteArray arr;
|
||||||
@ -129,7 +129,7 @@ void NativeMessagingHost::readStdIn(const quint32 length)
|
|||||||
int c = std::getchar();
|
int c = std::getchar();
|
||||||
if (c == EOF) {
|
if (c == EOF) {
|
||||||
// message ended prematurely, ignore it and return
|
// message ended prematurely, ignore it and return
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
arr.append(static_cast<char>(c));
|
arr.append(static_cast<char>(c));
|
||||||
}
|
}
|
||||||
@ -137,6 +137,7 @@ void NativeMessagingHost::readStdIn(const quint32 length)
|
|||||||
if (arr.length() > 0) {
|
if (arr.length() > 0) {
|
||||||
sendReply(m_browserClients.readResponse(arr));
|
sendReply(m_browserClients.readResponse(arr));
|
||||||
}
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeMessagingHost::newLocalConnection()
|
void NativeMessagingHost::newLocalConnection()
|
||||||
|
@ -46,7 +46,7 @@ signals:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void readLength();
|
void readLength();
|
||||||
void readStdIn(const quint32 length);
|
bool readStdIn(const quint32 length);
|
||||||
void sendReplyToAllClients(const QJsonObject& json);
|
void sendReplyToAllClients(const QJsonObject& json);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
@ -49,6 +49,21 @@ NativeMessagingHost::~NativeMessagingHost()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NativeMessagingHost::readNativeMessages()
|
||||||
|
{
|
||||||
|
#ifdef Q_OS_WIN
|
||||||
|
quint32 length = 0;
|
||||||
|
while (m_running.load() && !std::cin.eof()) {
|
||||||
|
length = 0;
|
||||||
|
std::cin.read(reinterpret_cast<char*>(&length), 4);
|
||||||
|
if (!readStdIn(length)) {
|
||||||
|
QCoreApplication::quit();
|
||||||
|
}
|
||||||
|
QThread::msleep(1);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
void NativeMessagingHost::readLength()
|
void NativeMessagingHost::readLength()
|
||||||
{
|
{
|
||||||
quint32 length = 0;
|
quint32 length = 0;
|
||||||
@ -56,14 +71,14 @@ void NativeMessagingHost::readLength()
|
|||||||
if (!std::cin.eof() && length > 0) {
|
if (!std::cin.eof() && length > 0) {
|
||||||
readStdIn(length);
|
readStdIn(length);
|
||||||
} else {
|
} else {
|
||||||
QCoreApplication::quit();
|
QCoreApplication::quit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeMessagingHost::readStdIn(const quint32 length)
|
bool NativeMessagingHost::readStdIn(const quint32 length)
|
||||||
{
|
{
|
||||||
if (length <= 0) {
|
if (length <= 0) {
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
QByteArray arr;
|
QByteArray arr;
|
||||||
@ -73,7 +88,7 @@ void NativeMessagingHost::readStdIn(const quint32 length)
|
|||||||
int c = std::getchar();
|
int c = std::getchar();
|
||||||
if (c == EOF) {
|
if (c == EOF) {
|
||||||
// message ended prematurely, ignore it and return
|
// message ended prematurely, ignore it and return
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
arr.append(static_cast<char>(c));
|
arr.append(static_cast<char>(c));
|
||||||
}
|
}
|
||||||
@ -82,6 +97,8 @@ void NativeMessagingHost::readStdIn(const quint32 length)
|
|||||||
m_localSocket->write(arr.constData(), arr.length());
|
m_localSocket->write(arr.constData(), arr.length());
|
||||||
m_localSocket->flush();
|
m_localSocket->flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeMessagingHost::newLocalMessage()
|
void NativeMessagingHost::newLocalMessage()
|
||||||
@ -92,7 +109,7 @@ void NativeMessagingHost::newLocalMessage()
|
|||||||
|
|
||||||
QByteArray arr = m_localSocket->readAll();
|
QByteArray arr = m_localSocket->readAll();
|
||||||
if (!arr.isEmpty()) {
|
if (!arr.isEmpty()) {
|
||||||
sendReply(arr);
|
sendReply(arr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,11 +33,12 @@ public slots:
|
|||||||
void socketStateChanged(QLocalSocket::LocalSocketState socketState);
|
void socketStateChanged(QLocalSocket::LocalSocketState socketState);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void readNativeMessages();
|
||||||
void readLength();
|
void readLength();
|
||||||
void readStdIn(const quint32 length);
|
bool readStdIn(const quint32 length);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QLocalSocket* m_localSocket;
|
QLocalSocket* m_localSocket;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // NATIVEMESSAGINGHOST_H
|
#endif // NATIVEMESSAGINGHOST_H
|
||||||
|
Loading…
Reference in New Issue
Block a user