]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/signingpipe.hh
Merge pull request #5616 from rgacogne/nmt-cleanup-from-weakforced
[thirdparty/pdns.git] / pdns / signingpipe.hh
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #ifndef PDNS_SIGNINGPIPE
23 #define PDNS_SIGNINGPIPE
24 #include <stdio.h>
25 #include <thread>
26 #include <vector>
27
28 #include "dnsseckeeper.hh"
29 #include "dns.hh"
30
31 void writeLStringToSocket(int fd, const string& msg);
32 bool readLStringFromSocket(int fd, string& msg);
33
34 /** input: DNSZoneRecords ordered in qname,qtype (we emit a signature chunk on a break)
35 * output: "chunks" of those very same DNSZoneRecords, interleaved with signatures
36 */
37
38 class ChunkedSigningPipe
39 {
40 public:
41 typedef vector<DNSZoneRecord> rrset_t;
42 typedef rrset_t chunk_t; // for now
43
44 ChunkedSigningPipe(const DNSName& signerName, bool mustSign, unsigned int numWorkers=3);
45 ~ChunkedSigningPipe();
46 bool submit(const DNSZoneRecord& rr);
47 chunk_t getChunk(bool final=false);
48 unsigned int getReady() const;
49
50 std::atomic<unsigned long> d_signed;
51 unsigned int d_queued;
52 unsigned int d_outstanding;
53
54 private:
55 void flushToSign();
56 void dedupRRSet();
57 void sendRRSetToWorker(); // dispatch RRSET to worker
58 void addSignedToChunks(chunk_t* signedChunk);
59 pair<vector<int>, vector<int> > waitForRW(bool rd, bool wr, int seconds);
60
61 static void* helperWorker(ChunkedSigningPipe* csp, int fd);
62 void worker(int fd);
63
64 unsigned int d_numworkers;
65 unsigned int d_submitted;
66
67 rrset_t* d_rrsetToSign;
68 std::deque< std::vector<DNSZoneRecord> > d_chunks;
69 DNSName d_signer;
70
71 chunk_t::size_type d_maxchunkrecords;
72
73 std::vector<int> d_sockets;
74 std::set<int> d_eof;
75 std::map<int,int> d_outstandings;
76
77 vector<std::thread> d_threads;
78 bool d_mustSign;
79 bool d_final;
80 };
81
82 #endif