mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	 5e1499d104
			
		
	
	
		5e1499d104
		
	
	
	
	
		
			
			This commit un-deprecates DeprecatedString, and repurposes it as a byte
string.
As the null state has already been removed, there are no other
particularly hairy blockers in repurposing this type as a byte string
(what it _really_ is).
This commit is auto-generated:
  $ xs=$(ack -l \bDeprecatedString\b\|deprecated_string AK Userland \
    Meta Ports Ladybird Tests Kernel)
  $ perl -pie 's/\bDeprecatedString\b/ByteString/g;
    s/deprecated_string/byte_string/g' $xs
  $ clang-format --style=file -i \
    $(git diff --name-only | grep \.cpp\|\.h)
  $ gn format $(git ls-files '*.gn' '*.gni')
		
	
			
		
			
				
	
	
		
			111 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
	
		
			3.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * Copyright (c) 2021, Sergey Bugaev <bugaevc@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include "Name.h"
 | |
| #include <AK/Random.h>
 | |
| #include <AK/Stream.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <ctype.h>
 | |
| 
 | |
| namespace DNS {
 | |
| 
 | |
| Name::Name(ByteString const& name)
 | |
| {
 | |
|     if (name.ends_with('.'))
 | |
|         m_name = name.substring(0, name.length() - 1);
 | |
|     else
 | |
|         m_name = name;
 | |
| }
 | |
| 
 | |
| ErrorOr<Name> Name::parse(ReadonlyBytes data, size_t& offset, size_t recursion_level)
 | |
| {
 | |
|     static constexpr size_t MAX_LABEL_SIZE = 63;
 | |
|     static constexpr size_t MAX_NAME_SIZE = 253;
 | |
| 
 | |
|     if (recursion_level > 4)
 | |
|         return Name {};
 | |
| 
 | |
|     StringBuilder builder;
 | |
|     while (true) {
 | |
|         if (offset >= data.size())
 | |
|             return Error::from_string_literal("Unexpected EOF when parsing name");
 | |
|         u8 b = data[offset++];
 | |
|         if (b == '\0') {
 | |
|             if (builder.length() > MAX_NAME_SIZE)
 | |
|                 return Error::from_string_literal("Domain name exceeds maximum allowed length");
 | |
|             // This terminates the name.
 | |
|             return builder.to_byte_string();
 | |
|         } else if ((b & 0xc0) == 0xc0) {
 | |
|             // The two bytes tell us the offset when to continue from.
 | |
|             if (offset >= data.size())
 | |
|                 return Error::from_string_literal("Unexpected EOF when parsing name");
 | |
|             size_t dummy = (b & 0x3f) << 8 | data[offset++];
 | |
|             auto rest_of_name = TRY(parse(data, dummy, recursion_level + 1));
 | |
|             builder.append(rest_of_name.as_string());
 | |
|             if (builder.length() > MAX_NAME_SIZE)
 | |
|                 return Error::from_string_literal("Domain name exceeds maximum allowed length");
 | |
|             return builder.to_byte_string();
 | |
|         } else {
 | |
|             // This is the length of a part.
 | |
|             if (offset + b >= data.size())
 | |
|                 return Error::from_string_literal("Unexpected EOF when parsing name");
 | |
|             if (b > MAX_LABEL_SIZE)
 | |
|                 return Error::from_string_literal("DNS label exceeds maximum allowed length");
 | |
|             builder.append({ data.offset_pointer(offset), b });
 | |
|             builder.append('.');
 | |
|             if (builder.length() > MAX_NAME_SIZE)
 | |
|                 return Error::from_string_literal("Domain name exceeds maximum allowed length");
 | |
|             offset += b;
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| size_t Name::serialized_size() const
 | |
| {
 | |
|     if (m_name.is_empty())
 | |
|         return 1;
 | |
|     return m_name.length() + 2;
 | |
| }
 | |
| 
 | |
| void Name::randomize_case()
 | |
| {
 | |
|     StringBuilder builder;
 | |
|     for (char c : m_name) {
 | |
|         // Randomize the 0x20 bit in every ASCII character.
 | |
|         if (isalpha(c)) {
 | |
|             if (get_random_uniform(2))
 | |
|                 c |= 0x20;
 | |
|             else
 | |
|                 c &= ~0x20;
 | |
|         }
 | |
|         builder.append(c);
 | |
|     }
 | |
|     m_name = builder.to_byte_string();
 | |
| }
 | |
| 
 | |
| ErrorOr<void> Name::write_to_stream(Stream& stream) const
 | |
| {
 | |
|     auto parts = as_string().split_view('.');
 | |
|     for (auto& part : parts) {
 | |
|         TRY(stream.write_value<u8>(part.length()));
 | |
|         TRY(stream.write_until_depleted(part.bytes()));
 | |
|     }
 | |
|     TRY(stream.write_value('\0'));
 | |
|     return {};
 | |
| }
 | |
| 
 | |
| unsigned Name::Traits::hash(Name const& name)
 | |
| {
 | |
|     return CaseInsensitiveStringTraits::hash(name.as_string());
 | |
| }
 | |
| 
 | |
| bool Name::Traits::equals(Name const& a, Name const& b)
 | |
| {
 | |
|     return CaseInsensitiveStringTraits::equals(a.as_string(), b.as_string());
 | |
| }
 | |
| 
 | |
| }
 |