make oidentd config world readable by default
[quassel.git] / src / core / oidentdconfiggenerator.h
1 /***************************************************************************
2  *   Copyright (C) 2012 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef OIDENTDCONFIGGENERATOR_H
22 #define OIDENTDCONFIGGENERATOR_H
23
24 #include <QObject>
25 #include <QDir>
26 #include <QFile>
27 #include <QDateTime>
28 #include <QHostAddress>
29 #include <QMutex>
30
31 #ifndef Q_OS_WIN32
32 #  include <sys/types.h>
33 #  include <sys/stat.h>
34 #endif /* Q_OS_WIN32 */
35
36 #include "quassel.h"
37 #include "coreidentity.h"
38
39 //!  Produces oidentd configuration files
40 /*!
41   Upon IRC connect this class puts the clients' ident data into an oidentd configuration file.
42
43   The default path is <~/.oidentd.conf>.
44
45   For oidentd to incorporate this file, the global oidentd.conf has to state something like this:
46
47   user "quassel" {
48     default {
49       allow spoof
50       allow spoof_all
51     }
52   }
53
54 */
55
56 class OidentdConfigGenerator : public QObject
57 {
58     Q_OBJECT
59 public:
60   explicit OidentdConfigGenerator(QObject *parent = 0);
61   ~OidentdConfigGenerator();
62
63 public slots:
64   bool addSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
65   bool removeSocket(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort);
66
67 private:
68   bool init();
69   bool writeConfig();
70   bool parseConfig(bool readQuasselStanzas = false);
71   bool lineByUs(const QByteArray &line);
72
73   bool _initialized;
74   QDateTime _lastSync;
75   QFile *_configFile;
76   QByteArray _parsedConfig;
77   QByteArray _quasselConfig;
78   // Mutex isn't strictly necessary at the moment, since with the current invocation in Core only one instance at a time exists
79   QMutex _mutex;
80
81   QDir configDir;
82   QString configFileName;
83   QString configPath;
84   QString configTag;
85   QRegExp quasselStanzaRx;
86   QString quasselStanzaTemplate;
87 };
88
89 #endif // OIDENTDCONFIGGENERATOR_H