]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/ednsoptions.hh
Meson: Add systemd feature support for service files
[thirdparty/pdns.git] / pdns / ednsoptions.hh
CommitLineData
5c3b5e7f 1/*
12471842
PL
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 */
e8c59f2d 22#pragma once
5c3b5e7f
RG
23#include "namespaces.hh"
24
25struct EDNSOptionCode
26{
94e2a9b0 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};
5c3b5e7f
RG
28};
29
341d2553
RG
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 */
31int getEDNSOption(const char* optRR, size_t len, uint16_t wantedOption, size_t* optionValuePosition, size_t* optionValueSize);
00b8cadc 32
29e6303a 33struct EDNSOptionViewValue
00b8cadc
RG
34{
35 const char* content{nullptr};
36 uint16_t size{0};
37};
38
29e6303a
RG
39struct EDNSOptionView
40{
41 std::vector<EDNSOptionViewValue> values;
42};
43
f49ae8cf
RG
44static constexpr size_t EDNSOptionCodeSize = 2;
45static constexpr size_t EDNSOptionLengthSize = 2;
46
3f187820 47using EDNSOptionViewMap = std::map<uint16_t, EDNSOptionView>;
29e6303a 48
00b8cadc 49/* extract all EDNS0 options from a pointer on the beginning rdLen of the OPT RR */
29e6303a 50int getEDNSOptions(const char* optRR, size_t len, EDNSOptionViewMap& options);
be90d6bd
RG
51/* extract all EDNS0 options from the content (so after rdLen) of the OPT RR */
52bool getEDNSOptionsFromContent(const std::string& content, std::vector<std::pair<uint16_t, std::string>>& options);
fa980c59
RG
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) */
54bool getNextEDNSOption(const char* data, size_t dataLen, uint16_t& optionCode, uint16_t& optionLen);
00b8cadc 55
5c3b5e7f 56void generateEDNSOption(uint16_t optionCode, const std::string& payload, std::string& res);