File: Network.cpp

package info (click to toggle)
dolphin-emu 5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 28,976 kB
  • ctags: 35,666
  • sloc: cpp: 213,139; java: 6,252; asm: 2,277; xml: 1,998; ansic: 1,514; python: 462; sh: 279; pascal: 247; makefile: 124; perl: 97
file content (69 lines) | stat: -rw-r--r-- 1,683 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2014 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.

#include <cctype>
#include <cstring>
#include <ctime>
#include <random>

#include "Common/Network.h"
#include "Common/StringUtil.h"
#include "Common/Timer.h"

void GenerateMacAddress(const MACConsumer type, u8* mac)
{
	memset(mac, 0, MAC_ADDRESS_SIZE);

	u8 const oui_bba[] = { 0x00, 0x09, 0xbf };
	u8 const oui_ios[] = { 0x00, 0x17, 0xab };

	switch (type)
	{
	case BBA:
		memcpy(mac, oui_bba, 3);
		break;
	case IOS:
		memcpy(mac, oui_ios, 3);
		break;
	}

	// Generate the 24-bit NIC-specific portion of the MAC address.
	std::default_random_engine generator(Common::Timer::GetTimeMs());
	std::uniform_int_distribution<int> distribution(0x00, 0xFF);
	mac[3] = static_cast<u8>(distribution(generator));
	mac[4] = static_cast<u8>(distribution(generator));
	mac[5] = static_cast<u8>(distribution(generator));
}

std::string MacAddressToString(const u8* mac)
{
	return StringFromFormat("%02x:%02x:%02x:%02x:%02x:%02x",
	                        mac[0], mac[1], mac[2],
	                        mac[3], mac[4], mac[5]);
}

bool StringToMacAddress(const std::string& mac_string, u8* mac)
{
	bool success = false;
	if (!mac_string.empty())
	{
		int x = 0;
		memset(mac, 0, MAC_ADDRESS_SIZE);

		for (size_t i = 0; i < mac_string.size() && x < (MAC_ADDRESS_SIZE*2); ++i)
		{
			char c = tolower(mac_string.at(i));
			if (c >= '0' && c <= '9')
			{
				mac[x / 2] |= (c - '0') << ((x & 1) ? 0 : 4); ++x;
			}
			else if (c >= 'a' && c <= 'f')
			{
				mac[x / 2] |= (c - 'a' + 10) << ((x & 1) ? 0 : 4); ++x;
			}
		}
		success = x / 2 == MAC_ADDRESS_SIZE;
	}
	return success;
}