X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Foidentdconfiggenerator.h;h=6a394913fceda754131044f5bfcac2729a999bfa;hp=dbc58d1a3585bc00f6af30fe2728ee44077f0115;hb=1f21c1f9613031ae263eeed0c4883bfcd5488343;hpb=f9a73e3ad8142212028a39b26ced62456e575b7a diff --git a/src/core/oidentdconfiggenerator.h b/src/core/oidentdconfiggenerator.h index dbc58d1a..6a394913 100644 --- a/src/core/oidentdconfiggenerator.h +++ b/src/core/oidentdconfiggenerator.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2012 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,49 +15,84 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef OIDENTDCONFIGGENERATOR_H #define OIDENTDCONFIGGENERATOR_H -#include +#include +#include #include #include -#include #include +#include +#include +#include -#include "quassel.h" #include "coreidentity.h" -#include +#include "quassel.h" + +//! Produces oidentd configuration files +/*! + Upon IRC connect this class puts the clients' ident data into an oidentd configuration file. + + The default path is <~/.oidentd.conf>. + + For oidentd to incorporate this file, the global oidentd.conf has to state something like this: + + user "quassel" { + default { + allow spoof + allow spoof_all + } + } + +*/ class OidentdConfigGenerator : public QObject { Q_OBJECT public: - explicit OidentdConfigGenerator(QObject *parent = 0); + explicit OidentdConfigGenerator(QObject* parent = nullptr); + ~OidentdConfigGenerator() override; -signals: - public slots: - bool addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); + bool addSocket(const CoreIdentity* identity, + const QHostAddress& localAddress, + quint16 localPort, + const QHostAddress& peerAddress, + quint16 peerPort, + qint64 socketId); + bool removeSocket(const CoreIdentity* identity, + const QHostAddress& localAddress, + quint16 localPort, + const QHostAddress& peerAddress, + quint16 peerPort, + qint64 socketId); private: - bool init(); - bool writeConfig(); - bool parseConfig(bool stripQuasselStanzas = false); - bool checkLine(const QByteArray &line); - - bool _initialized; - QDateTime _lastSync; - QFile *_configFile; - QByteArray _config; - - QDir configDir; - QString configFileName; - QString configPath; - QString configTag; - QRegExp quasselStanza; + QString sysIdentForIdentity(const CoreIdentity* identity) const; + bool init(); + bool writeConfig(); + bool parseConfig(bool readQuasselStanzas = false); + bool lineByUs(const QByteArray& line); + + bool _initialized{false}; + bool _strict; + QDateTime _lastSync; + QFile* _configFile; + QByteArray _parsedConfig; + QByteArray _quasselConfig; + // Mutex isn't strictly necessary at the moment, since with the current invocation in Core only one instance at a time exists + QMutex _mutex; + + QDir _configDir; + QString _configFileName; + QString _configPath; + QString _configTag; + QRegExp _quasselStanzaRx; + QString _quasselStanzaTemplate; }; -#endif // OIDENTDCONFIGGENERATOR_H +#endif // OIDENTDCONFIGGENERATOR_H