]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/ednsoptions.hh
Limit the number of queries sent out to get NS addresses per query.
[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{
d442f33f 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};
5c3b5e7f
RG
28};
29
30/* extract a specific EDNS0 option from a pointer on the beginning rdLen of the OPT RR */
31int getEDNSOption(char* optRR, size_t len, uint16_t wantedOption, char ** optionValue, 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
44typedef std::map<uint16_t, EDNSOptionView> EDNSOptionViewMap;
45
00b8cadc 46/* extract all EDNS0 options from a pointer on the beginning rdLen of the OPT RR */
29e6303a 47int getEDNSOptions(const char* optRR, size_t len, EDNSOptionViewMap& options);
be90d6bd
RG
48/* extract all EDNS0 options from the content (so after rdLen) of the OPT RR */
49bool getEDNSOptionsFromContent(const std::string& content, std::vector<std::pair<uint16_t, std::string>>& options);
00b8cadc 50
5c3b5e7f 51void generateEDNSOption(uint16_t optionCode, const std::string& payload, std::string& res);