A stack which works with or without an Mbed os library. Provides IPv4 or IPv6 with a full 1500 byte buffer.

Dependents:   oldheating gps motorhome heating

Committer:
andrewboyson
Date:
Thu Dec 07 20:44:32 2017 +0000
Revision:
58:d48c899e482f
Parent:
49:1a6336f2b3f9
Child:
59:e0e556c8bd46
Lots of tidying of the DNS routines

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 13:9cd54f7db57a 1 #include "mbed.h"
andrewboyson 13:9cd54f7db57a 2 #include "dns.h"
andrewboyson 13:9cd54f7db57a 3 #include "net.h"
andrewboyson 13:9cd54f7db57a 4 #include "log.h"
andrewboyson 14:e75a59c1123d 5 #include "net.h"
andrewboyson 14:e75a59c1123d 6 #include "eth.h"
andrewboyson 49:1a6336f2b3f9 7 #include "ip4addr.h"
andrewboyson 49:1a6336f2b3f9 8 #include "ip6addr.h"
andrewboyson 14:e75a59c1123d 9 #include "udp.h"
andrewboyson 37:793b39683406 10 #include "dnsname.h"
andrewboyson 13:9cd54f7db57a 11
andrewboyson 13:9cd54f7db57a 12 #define HEADER_LENGTH 12
andrewboyson 13:9cd54f7db57a 13
andrewboyson 13:9cd54f7db57a 14 __packed struct header
andrewboyson 13:9cd54f7db57a 15 {
andrewboyson 13:9cd54f7db57a 16 uint16_t id;
andrewboyson 13:9cd54f7db57a 17 uint8_t uflags;
andrewboyson 13:9cd54f7db57a 18 uint8_t lflags;
andrewboyson 13:9cd54f7db57a 19
andrewboyson 13:9cd54f7db57a 20 uint16_t qdcount;
andrewboyson 13:9cd54f7db57a 21 uint16_t ancount;
andrewboyson 13:9cd54f7db57a 22 uint16_t nscount;
andrewboyson 13:9cd54f7db57a 23 uint16_t arcount;
andrewboyson 13:9cd54f7db57a 24 };
andrewboyson 13:9cd54f7db57a 25
andrewboyson 13:9cd54f7db57a 26 uint16_t DnsHdrId;
andrewboyson 13:9cd54f7db57a 27
andrewboyson 13:9cd54f7db57a 28 bool DnsHdrIsReply;
andrewboyson 13:9cd54f7db57a 29 bool DnsHdrIsAuthoritative;
andrewboyson 13:9cd54f7db57a 30 bool DnsHdrIsRecursiveQuery;
andrewboyson 13:9cd54f7db57a 31
andrewboyson 13:9cd54f7db57a 32 uint16_t DnsHdrQdcount;
andrewboyson 13:9cd54f7db57a 33 uint16_t DnsHdrAncount;
andrewboyson 13:9cd54f7db57a 34 uint16_t DnsHdrNscount;
andrewboyson 13:9cd54f7db57a 35 uint16_t DnsHdrArcount;
andrewboyson 13:9cd54f7db57a 36
andrewboyson 13:9cd54f7db57a 37 char* DnsHdrPacket;
andrewboyson 13:9cd54f7db57a 38 char* DnsHdrData;
andrewboyson 13:9cd54f7db57a 39
andrewboyson 13:9cd54f7db57a 40 void DnsHdrSetup(void* pPacket)
andrewboyson 13:9cd54f7db57a 41 {
andrewboyson 13:9cd54f7db57a 42 DnsHdrPacket = (char*)pPacket;
andrewboyson 13:9cd54f7db57a 43 DnsHdrData = DnsHdrPacket + HEADER_LENGTH;
andrewboyson 13:9cd54f7db57a 44 }
andrewboyson 13:9cd54f7db57a 45
andrewboyson 13:9cd54f7db57a 46 void DnsHdrRead()
andrewboyson 13:9cd54f7db57a 47 {
andrewboyson 13:9cd54f7db57a 48 struct header* pHeader = (header*)DnsHdrPacket;
andrewboyson 13:9cd54f7db57a 49
andrewboyson 13:9cd54f7db57a 50 DnsHdrId = NetToHost16(pHeader->id);
andrewboyson 13:9cd54f7db57a 51
andrewboyson 13:9cd54f7db57a 52 uint8_t uflags = pHeader->uflags;
andrewboyson 13:9cd54f7db57a 53 DnsHdrIsReply = uflags & 0x80;
andrewboyson 13:9cd54f7db57a 54 DnsHdrIsAuthoritative = uflags & 0x04;
andrewboyson 33:714a0345e59b 55 DnsHdrIsRecursiveQuery = uflags & 0x01;
andrewboyson 13:9cd54f7db57a 56
andrewboyson 13:9cd54f7db57a 57 DnsHdrQdcount = NetToHost16(pHeader->qdcount);
andrewboyson 13:9cd54f7db57a 58 DnsHdrAncount = NetToHost16(pHeader->ancount);
andrewboyson 13:9cd54f7db57a 59 DnsHdrNscount = NetToHost16(pHeader->nscount);
andrewboyson 13:9cd54f7db57a 60 DnsHdrArcount = NetToHost16(pHeader->arcount);
andrewboyson 13:9cd54f7db57a 61
andrewboyson 13:9cd54f7db57a 62 }
andrewboyson 13:9cd54f7db57a 63 void DnsHdrWrite()
andrewboyson 13:9cd54f7db57a 64 {
andrewboyson 13:9cd54f7db57a 65 struct header* pHeader = (header*)DnsHdrPacket;
andrewboyson 13:9cd54f7db57a 66
andrewboyson 13:9cd54f7db57a 67 pHeader->id = NetToHost16(DnsHdrId);
andrewboyson 13:9cd54f7db57a 68
andrewboyson 13:9cd54f7db57a 69 uint8_t uflags = 0;
andrewboyson 13:9cd54f7db57a 70 uint8_t lflags = 0;
andrewboyson 13:9cd54f7db57a 71 if (DnsHdrIsReply) uflags |= 0x80;
andrewboyson 13:9cd54f7db57a 72 if (DnsHdrIsAuthoritative) uflags |= 0x04;
andrewboyson 13:9cd54f7db57a 73 if (DnsHdrIsRecursiveQuery) uflags |= 0x01;
andrewboyson 13:9cd54f7db57a 74 pHeader->uflags = uflags;
andrewboyson 13:9cd54f7db57a 75 pHeader->lflags = lflags;
andrewboyson 13:9cd54f7db57a 76
andrewboyson 13:9cd54f7db57a 77 pHeader->qdcount = NetToHost16(DnsHdrQdcount);
andrewboyson 13:9cd54f7db57a 78 pHeader->ancount = NetToHost16(DnsHdrAncount);
andrewboyson 13:9cd54f7db57a 79 pHeader->nscount = NetToHost16(DnsHdrNscount);
andrewboyson 13:9cd54f7db57a 80 pHeader->arcount = NetToHost16(DnsHdrArcount);
andrewboyson 13:9cd54f7db57a 81 }
andrewboyson 58:d48c899e482f 82 static uint16_t decodeUint16(char* p)
andrewboyson 58:d48c899e482f 83 {
andrewboyson 58:d48c899e482f 84 uint16_t value = *p++;
andrewboyson 58:d48c899e482f 85 value <<= 8; value += *p++;
andrewboyson 58:d48c899e482f 86 return value;
andrewboyson 58:d48c899e482f 87 }
andrewboyson 58:d48c899e482f 88 static uint32_t decodeUint32(char* p)
andrewboyson 58:d48c899e482f 89 {
andrewboyson 58:d48c899e482f 90 uint32_t value = *p++;
andrewboyson 58:d48c899e482f 91 value <<= 8; value += *p++;
andrewboyson 58:d48c899e482f 92 value <<= 8; value += *p++;
andrewboyson 58:d48c899e482f 93 value <<= 8; value += *p++;
andrewboyson 58:d48c899e482f 94 return value;
andrewboyson 58:d48c899e482f 95 }
andrewboyson 58:d48c899e482f 96 static void logRecordA(int len, char* p)
andrewboyson 58:d48c899e482f 97 {
andrewboyson 58:d48c899e482f 98 if (len == 4) Ip4AddressLog(*(uint32_t*)p);
andrewboyson 58:d48c899e482f 99 else LogF("expected 4 bytes but had %d", len);
andrewboyson 58:d48c899e482f 100 }
andrewboyson 58:d48c899e482f 101 static void logRecordAAAA(int len, char* p)
andrewboyson 58:d48c899e482f 102 {
andrewboyson 58:d48c899e482f 103 if (len == 16) Ip6AddressLog(p);
andrewboyson 58:d48c899e482f 104 else LogF("expected 16 bytes but had %d", len);
andrewboyson 58:d48c899e482f 105 }
andrewboyson 58:d48c899e482f 106 static void logRecordPTR(int len, char* p)
andrewboyson 58:d48c899e482f 107 {
andrewboyson 58:d48c899e482f 108 if (len <= DNS_MAX_LABEL_LENGTH) DnsNameLogPtr(p);
andrewboyson 58:d48c899e482f 109 else LogF("length %d is greater than max DNS label length of %d\r\n", len, DNS_MAX_LABEL_LENGTH);
andrewboyson 58:d48c899e482f 110 }
andrewboyson 58:d48c899e482f 111 static void logRecordSRV(int len, char* p)
andrewboyson 58:d48c899e482f 112 {
andrewboyson 58:d48c899e482f 113 LogF("pri=%d " , decodeUint16(p)); p += 2;
andrewboyson 58:d48c899e482f 114 LogF("wei=%d " , decodeUint16(p)); p += 2;
andrewboyson 58:d48c899e482f 115 LogF("port=%d ", decodeUint16(p)); p += 2;
andrewboyson 58:d48c899e482f 116 DnsNameLogPtr(p);
andrewboyson 58:d48c899e482f 117 }
andrewboyson 58:d48c899e482f 118 static void logRecordTXT(int len, char* p)
andrewboyson 58:d48c899e482f 119 {
andrewboyson 58:d48c899e482f 120 char* pEnd = p + len;
andrewboyson 58:d48c899e482f 121 while (p < pEnd)
andrewboyson 58:d48c899e482f 122 {
andrewboyson 58:d48c899e482f 123 Log("\r\n ");
andrewboyson 58:d48c899e482f 124 int fieldLen = *p++;
andrewboyson 58:d48c899e482f 125 for (int i = 0; i < fieldLen; i++) LogPush(*p++);
andrewboyson 58:d48c899e482f 126 }
andrewboyson 58:d48c899e482f 127 }
andrewboyson 37:793b39683406 128 static void logContent()
andrewboyson 37:793b39683406 129 {
andrewboyson 58:d48c899e482f 130 char* p = DnsHdrData;
andrewboyson 37:793b39683406 131
andrewboyson 37:793b39683406 132 //Get the questions
andrewboyson 37:793b39683406 133 for (int q = 0; q < DnsHdrQdcount; q++)
andrewboyson 37:793b39683406 134 {
andrewboyson 37:793b39683406 135 if (p > DnsHdrData + 500)
andrewboyson 37:793b39683406 136 {
andrewboyson 58:d48c899e482f 137 Log(" Questions have overrun the buffer\r\n");
andrewboyson 37:793b39683406 138 return;
andrewboyson 37:793b39683406 139 }
andrewboyson 58:d48c899e482f 140 char* pEncodedName = p;
andrewboyson 37:793b39683406 141 int nameLength = DnsNameLength(p);
andrewboyson 58:d48c899e482f 142 if (!nameLength) { LogTimeF(" Questions namelength is zero\r\n"); return; }
andrewboyson 37:793b39683406 143 p += nameLength; //Skip past the name
andrewboyson 37:793b39683406 144 p++ ; //skip the first byte of the type
andrewboyson 37:793b39683406 145 char recordType = *p++; //read the record type
andrewboyson 37:793b39683406 146 p += 2; //skip the class
andrewboyson 37:793b39683406 147
andrewboyson 47:73af5c0b0dc2 148 LogF(" Query ");
andrewboyson 47:73af5c0b0dc2 149 DnsRecordTypeLog(recordType);
andrewboyson 47:73af5c0b0dc2 150 Log(" type record of ");
andrewboyson 58:d48c899e482f 151 DnsNameLogPtr(pEncodedName);
andrewboyson 47:73af5c0b0dc2 152 Log("\r\n");
andrewboyson 37:793b39683406 153 }
andrewboyson 37:793b39683406 154
andrewboyson 37:793b39683406 155 //Get the answers
andrewboyson 37:793b39683406 156 for (int a = 0; a < DnsHdrAncount; a++)
andrewboyson 37:793b39683406 157 {
andrewboyson 43:bc028d5a6424 158 if (p > DnsHdrData + 500) { Log(" Answers have overrun the buffer\r\n"); return; }
andrewboyson 37:793b39683406 159
andrewboyson 58:d48c899e482f 160 char* pEncodedName = p;
andrewboyson 37:793b39683406 161 int nameLength = DnsNameLength(p);
andrewboyson 43:bc028d5a6424 162 if (!nameLength) { Log(" Answer name length is zero\r\n"); return; }
andrewboyson 37:793b39683406 163 p += nameLength; //Skip past the name
andrewboyson 37:793b39683406 164
andrewboyson 37:793b39683406 165 p++; //Skip the high byte of the record type
andrewboyson 37:793b39683406 166 int recordType = *p++; //Record type
andrewboyson 37:793b39683406 167
andrewboyson 37:793b39683406 168 p++; //Skip the high byte of the class type
andrewboyson 37:793b39683406 169 int classType = *p++; //Class type
andrewboyson 37:793b39683406 170
andrewboyson 58:d48c899e482f 171 int ttl = decodeUint32(p); p += 4; //32bit TTL
andrewboyson 37:793b39683406 172
andrewboyson 58:d48c899e482f 173 int len = decodeUint16(p); p += 2; //16bit length
andrewboyson 37:793b39683406 174
andrewboyson 43:bc028d5a6424 175 Log(" Answer ");
andrewboyson 47:73af5c0b0dc2 176 DnsRecordTypeLog(recordType);
andrewboyson 43:bc028d5a6424 177 Log(" type record of ");
andrewboyson 58:d48c899e482f 178 DnsNameLogPtr(pEncodedName);
andrewboyson 43:bc028d5a6424 179 Log(" ==> ");
andrewboyson 37:793b39683406 180
andrewboyson 37:793b39683406 181 switch (recordType) //Log the payload if its type is known
andrewboyson 37:793b39683406 182 {
andrewboyson 58:d48c899e482f 183 case DNS_RECORD_A: logRecordA (len, p); break;
andrewboyson 58:d48c899e482f 184 case DNS_RECORD_AAAA: logRecordAAAA(len, p); break;
andrewboyson 58:d48c899e482f 185 case DNS_RECORD_PTR: logRecordPTR (len, p); break;
andrewboyson 58:d48c899e482f 186 case DNS_RECORD_SRV: logRecordSRV (len, p); break;
andrewboyson 58:d48c899e482f 187 case DNS_RECORD_TXT: logRecordTXT (len, p); break;
andrewboyson 58:d48c899e482f 188 default: LogF("%d characters", len); break;
andrewboyson 37:793b39683406 189 }
andrewboyson 43:bc028d5a6424 190 Log("\r\n");
andrewboyson 37:793b39683406 191 p += len; //Adjust the pointer to the next character after the payload
andrewboyson 37:793b39683406 192 }
andrewboyson 37:793b39683406 193 }
andrewboyson 37:793b39683406 194
andrewboyson 37:793b39683406 195 void DnsHdrLog(int protocol)
andrewboyson 13:9cd54f7db57a 196 {
andrewboyson 43:bc028d5a6424 197 if (NetTraceVerbose)
andrewboyson 15:6ca6778168b1 198 {
andrewboyson 47:73af5c0b0dc2 199 DnsProtocolLog(protocol);
andrewboyson 47:73af5c0b0dc2 200 Log(" header\r\n");
andrewboyson 43:bc028d5a6424 201 LogF(" Ident %hd\r\n", DnsHdrId);
andrewboyson 43:bc028d5a6424 202 if (DnsHdrIsReply)
andrewboyson 43:bc028d5a6424 203 {
andrewboyson 43:bc028d5a6424 204 if (DnsHdrIsAuthoritative) LogF(" Authoritative reply\r\n");
andrewboyson 43:bc028d5a6424 205 else LogF(" Non authoritative reply\r\n");
andrewboyson 43:bc028d5a6424 206 }
andrewboyson 43:bc028d5a6424 207 else
andrewboyson 43:bc028d5a6424 208 {
andrewboyson 43:bc028d5a6424 209 if (DnsHdrIsRecursiveQuery) LogF(" Recursive query\r\n");
andrewboyson 43:bc028d5a6424 210 else LogF(" Non recursive query\r\n");
andrewboyson 43:bc028d5a6424 211 }
andrewboyson 43:bc028d5a6424 212 LogF(" qd, an, ns, ar %hu, %hu, %hu, %hu\r\n", DnsHdrQdcount, DnsHdrAncount, DnsHdrNscount, DnsHdrArcount);
andrewboyson 15:6ca6778168b1 213 }
andrewboyson 15:6ca6778168b1 214 else
andrewboyson 15:6ca6778168b1 215 {
andrewboyson 47:73af5c0b0dc2 216 DnsProtocolLog(protocol);
andrewboyson 47:73af5c0b0dc2 217 LogF(" header qd, an, ns, ar %hu, %hu, %hu, %hu\r\n", DnsHdrQdcount, DnsHdrAncount, DnsHdrNscount, DnsHdrArcount);
andrewboyson 15:6ca6778168b1 218 }
andrewboyson 37:793b39683406 219 logContent();
andrewboyson 13:9cd54f7db57a 220 }
andrewboyson 13:9cd54f7db57a 221