]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/ednsoptions.hh
Merge pull request #14032 from rgacogne/ddist-192-changelog-secpoll
[thirdparty/pdns.git] / pdns / ednsoptions.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 #pragma once
23 #include "namespaces.hh"
24
25 struct EDNSOptionCode
26 {
27 enum EDNSOptionCodeEnum {NSID=3, DAU=5, DHU=6, N3U=7, ECS=8, EXPIRE=9, COOKIE=10, TCPKEEPALIVE=11, PADDING=12, CHAIN=13, KEYTAG=14, EXTENDEDERROR=15};
28 };
29
30 /* extract the position (relative to the optRR pointer!) and size of a specific EDNS0 option from a pointer on the beginning rdLen of the OPT RR */
31 int getEDNSOption(const char* optRR, size_t len, uint16_t wantedOption, size_t* optionValuePosition, size_t* optionValueSize);
32
33 struct EDNSOptionViewValue
34 {
35 const char* content{nullptr};
36 uint16_t size{0};
37 };
38
39 struct EDNSOptionView
40 {
41 std::vector<EDNSOptionViewValue> values;
42 };
43
44 static constexpr size_t EDNSOptionCodeSize = 2;
45 static constexpr size_t EDNSOptionLengthSize = 2;
46
47 using EDNSOptionViewMap = std::map<uint16_t, EDNSOptionView>;
48
49 /* extract all EDNS0 options from a pointer on the beginning rdLen of the OPT RR */
50 int getEDNSOptions(const char* optRR, size_t len, EDNSOptionViewMap& options);
51 /* extract all EDNS0 options from the content (so after rdLen) of the OPT RR */
52 bool getEDNSOptionsFromContent(const std::string& content, std::vector<std::pair<uint16_t, std::string>>& options);
53 /* parse the next EDNS option and the return the code and length. data should point to the beginning of the option code, dataLen should be maximum length of the data (minimum of remaining size in packet and remaining size in rdata) */
54 bool getNextEDNSOption(const char* data, size_t dataLen, uint16_t& optionCode, uint16_t& optionLen);
55
56 void generateEDNSOption(uint16_t optionCode, const std::string& payload, std::string& res);