diff options
| author | 2022-07-30 05:58:23 +0200 | |
|---|---|---|
| committer | 2022-08-15 20:25:42 +0200 | |
| commit | f80c7c4cd5c090b9a31f89a0eb3d86cbe928c50b (patch) | |
| tree | ad359908ba2d3cd003082b39cc7217b61e5b18f6 /src/network/room_member.h | |
| parent | web_service: Correct jwt issuer string (diff) | |
| download | yuzu-f80c7c4cd5c090b9a31f89a0eb3d86cbe928c50b.tar.gz yuzu-f80c7c4cd5c090b9a31f89a0eb3d86cbe928c50b.tar.xz yuzu-f80c7c4cd5c090b9a31f89a0eb3d86cbe928c50b.zip | |
core, network: Add ability to proxy socket packets
Diffstat (limited to 'src/network/room_member.h')
| -rw-r--r-- | src/network/room_member.h | 70 |
1 files changed, 28 insertions, 42 deletions
diff --git a/src/network/room_member.h b/src/network/room_member.h index bbb7d13d4..4252b7146 100644 --- a/src/network/room_member.h +++ b/src/network/room_member.h | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <vector> | 9 | #include <vector> |
| 10 | #include "common/announce_multiplayer_room.h" | 10 | #include "common/announce_multiplayer_room.h" |
| 11 | #include "common/common_types.h" | 11 | #include "common/common_types.h" |
| 12 | #include "common/socket_types.h" | ||
| 12 | #include "network/room.h" | 13 | #include "network/room.h" |
| 13 | 14 | ||
| 14 | namespace Network { | 15 | namespace Network { |
| @@ -17,22 +18,12 @@ using AnnounceMultiplayerRoom::GameInfo; | |||
| 17 | using AnnounceMultiplayerRoom::RoomInformation; | 18 | using AnnounceMultiplayerRoom::RoomInformation; |
| 18 | 19 | ||
| 19 | /// Information about the received WiFi packets. | 20 | /// Information about the received WiFi packets. |
| 20 | /// Acts as our own 802.11 header. | 21 | struct ProxyPacket { |
| 21 | struct WifiPacket { | 22 | SockAddrIn local_endpoint; |
| 22 | enum class PacketType : u8 { | 23 | SockAddrIn remote_endpoint; |
| 23 | Beacon, | 24 | Protocol protocol; |
| 24 | Data, | 25 | bool broadcast; |
| 25 | Authentication, | 26 | std::vector<u8> data; |
| 26 | AssociationResponse, | ||
| 27 | Deauthentication, | ||
| 28 | NodeMap | ||
| 29 | }; | ||
| 30 | PacketType type; ///< The type of 802.11 frame. | ||
| 31 | std::vector<u8> data; ///< Raw 802.11 frame data, starting at the management frame header | ||
| 32 | /// for management frames. | ||
| 33 | MacAddress transmitter_address; ///< Mac address of the transmitter. | ||
| 34 | MacAddress destination_address; ///< Mac address of the receiver. | ||
| 35 | u8 channel; ///< WiFi channel where this frame was transmitted. | ||
| 36 | }; | 27 | }; |
| 37 | 28 | ||
| 38 | /// Represents a chat message. | 29 | /// Represents a chat message. |
| @@ -72,15 +63,14 @@ public: | |||
| 72 | HostKicked, ///< Kicked by the host | 63 | HostKicked, ///< Kicked by the host |
| 73 | 64 | ||
| 74 | // Reasons why connection was rejected | 65 | // Reasons why connection was rejected |
| 75 | UnknownError, ///< Some error [permissions to network device missing or something] | 66 | UnknownError, ///< Some error [permissions to network device missing or something] |
| 76 | NameCollision, ///< Somebody is already using this name | 67 | NameCollision, ///< Somebody is already using this name |
| 77 | MacCollision, ///< Somebody is already using that mac-address | 68 | IpCollision, ///< Somebody is already using that fake-ip-address |
| 78 | ConsoleIdCollision, ///< Somebody in the room has the same Console ID | 69 | WrongVersion, ///< The room version is not the same as for this RoomMember |
| 79 | WrongVersion, ///< The room version is not the same as for this RoomMember | 70 | WrongPassword, ///< The password doesn't match the one from the Room |
| 80 | WrongPassword, ///< The password doesn't match the one from the Room | 71 | CouldNotConnect, ///< The room is not responding to a connection attempt |
| 81 | CouldNotConnect, ///< The room is not responding to a connection attempt | 72 | RoomIsFull, ///< Room is already at the maximum number of players |
| 82 | RoomIsFull, ///< Room is already at the maximum number of players | 73 | HostBanned, ///< The user is banned by the host |
| 83 | HostBanned, ///< The user is banned by the host | ||
| 84 | 74 | ||
| 85 | // Reasons why moderation request failed | 75 | // Reasons why moderation request failed |
| 86 | PermissionDenied, ///< The user does not have mod permissions | 76 | PermissionDenied, ///< The user does not have mod permissions |
| @@ -92,9 +82,9 @@ public: | |||
| 92 | std::string username; ///< The web services username of the member. Can be empty. | 82 | std::string username; ///< The web services username of the member. Can be empty. |
| 93 | std::string display_name; ///< The web services display name of the member. Can be empty. | 83 | std::string display_name; ///< The web services display name of the member. Can be empty. |
| 94 | std::string avatar_url; ///< Url to the member's avatar. Can be empty. | 84 | std::string avatar_url; ///< Url to the member's avatar. Can be empty. |
| 95 | GameInfo game_info; ///< Name of the game they're currently playing, or empty if they're | 85 | GameInfo game_info; ///< Name of the game they're currently playing, or empty if they're |
| 96 | /// not playing anything. | 86 | /// not playing anything. |
| 97 | MacAddress mac_address; ///< MAC address associated with this member. | 87 | IPv4Address fake_ip; ///< Fake Ip address associated with this member. |
| 98 | }; | 88 | }; |
| 99 | using MemberList = std::vector<MemberInformation>; | 89 | using MemberList = std::vector<MemberInformation>; |
| 100 | 90 | ||
| @@ -135,7 +125,7 @@ public: | |||
| 135 | /** | 125 | /** |
| 136 | * Returns the MAC address of the RoomMember. | 126 | * Returns the MAC address of the RoomMember. |
| 137 | */ | 127 | */ |
| 138 | const MacAddress& GetMacAddress() const; | 128 | const IPv4Address& GetFakeIpAddress() const; |
| 139 | 129 | ||
| 140 | /** | 130 | /** |
| 141 | * Returns information about the room we're currently connected to. | 131 | * Returns information about the room we're currently connected to. |
| @@ -149,19 +139,17 @@ public: | |||
| 149 | 139 | ||
| 150 | /** | 140 | /** |
| 151 | * Attempts to join a room at the specified address and port, using the specified nickname. | 141 | * Attempts to join a room at the specified address and port, using the specified nickname. |
| 152 | * A console ID hash is passed in to check console ID conflicts. | ||
| 153 | * This may fail if the username or console ID is already taken. | ||
| 154 | */ | 142 | */ |
| 155 | void Join(const std::string& nickname, const std::string& console_id_hash, | 143 | void Join(const std::string& nickname, const char* server_addr = "127.0.0.1", |
| 156 | const char* server_addr = "127.0.0.1", u16 server_port = DefaultRoomPort, | 144 | u16 server_port = DefaultRoomPort, u16 client_port = 0, |
| 157 | u16 client_port = 0, const MacAddress& preferred_mac = NoPreferredMac, | 145 | const IPv4Address& preferred_fake_ip = NoPreferredIP, |
| 158 | const std::string& password = "", const std::string& token = ""); | 146 | const std::string& password = "", const std::string& token = ""); |
| 159 | 147 | ||
| 160 | /** | 148 | /** |
| 161 | * Sends a WiFi packet to the room. | 149 | * Sends a WiFi packet to the room. |
| 162 | * @param packet The WiFi packet to send. | 150 | * @param packet The WiFi packet to send. |
| 163 | */ | 151 | */ |
| 164 | void SendWifiPacket(const WifiPacket& packet); | 152 | void SendProxyPacket(const ProxyPacket& packet); |
| 165 | 153 | ||
| 166 | /** | 154 | /** |
| 167 | * Sends a chat message to the room. | 155 | * Sends a chat message to the room. |
| @@ -207,14 +195,14 @@ public: | |||
| 207 | CallbackHandle<Error> BindOnError(std::function<void(const Error&)> callback); | 195 | CallbackHandle<Error> BindOnError(std::function<void(const Error&)> callback); |
| 208 | 196 | ||
| 209 | /** | 197 | /** |
| 210 | * Binds a function to an event that will be triggered every time a WifiPacket is received. | 198 | * Binds a function to an event that will be triggered every time a ProxyPacket is received. |
| 211 | * The function wil be called everytime the event is triggered. | 199 | * The function wil be called everytime the event is triggered. |
| 212 | * The callback function must not bind or unbind a function. Doing so will cause a deadlock | 200 | * The callback function must not bind or unbind a function. Doing so will cause a deadlock |
| 213 | * @param callback The function to call | 201 | * @param callback The function to call |
| 214 | * @return A handle used for removing the function from the registered list | 202 | * @return A handle used for removing the function from the registered list |
| 215 | */ | 203 | */ |
| 216 | CallbackHandle<WifiPacket> BindOnWifiPacketReceived( | 204 | CallbackHandle<ProxyPacket> BindOnProxyPacketReceived( |
| 217 | std::function<void(const WifiPacket&)> callback); | 205 | std::function<void(const ProxyPacket&)> callback); |
| 218 | 206 | ||
| 219 | /** | 207 | /** |
| 220 | * Binds a function to an event that will be triggered every time the RoomInformation changes. | 208 | * Binds a function to an event that will be triggered every time the RoomInformation changes. |
| @@ -292,10 +280,8 @@ inline const char* GetErrorStr(const RoomMember::Error& e) { | |||
| 292 | return "UnknownError"; | 280 | return "UnknownError"; |
| 293 | case RoomMember::Error::NameCollision: | 281 | case RoomMember::Error::NameCollision: |
| 294 | return "NameCollision"; | 282 | return "NameCollision"; |
| 295 | case RoomMember::Error::MacCollision: | 283 | case RoomMember::Error::IpCollision: |
| 296 | return "MaxCollision"; | 284 | return "IpCollision"; |
| 297 | case RoomMember::Error::ConsoleIdCollision: | ||
| 298 | return "ConsoleIdCollision"; | ||
| 299 | case RoomMember::Error::WrongVersion: | 285 | case RoomMember::Error::WrongVersion: |
| 300 | return "WrongVersion"; | 286 | return "WrongVersion"; |
| 301 | case RoomMember::Error::WrongPassword: | 287 | case RoomMember::Error::WrongPassword: |