Updated buildgen.sh's clean option to remove gui/config.rpath
[barry.git] / src / packet.h
blob1a396fc3866950860f393fceb88dbb1d97b21aa4
1 ///
2 /// \file packet.h
3 /// Low level protocol packet builder class.
4 /// Has knowledge of specific protocol commands in order
5 /// to hide protocol details behind an API.
6 ///
8 /*
9 Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 See the GNU General Public License in the COPYING file at the
21 root directory of this project for more details.
24 #ifndef __BARRY_PACKET_H__
25 #define __BARRY_PACKET_H__
27 #include <string>
28 #include <stdint.h>
29 #include "protocol.h"
31 namespace Barry { class Data; }
33 namespace Barry {
35 // forward declarations
36 class Parser;
37 class Builder;
38 class SocketZero;
39 class Socket;
40 class IConverter;
41 namespace Mode {
42 class Desktop;
43 class JavaLoader;
46 class Packet
48 friend class SocketZero;
49 friend class Socket;
51 protected:
52 Data &m_send, &m_receive;
54 Data& GetSend() { return m_send; }
55 Data& GetReceive() { return m_receive; }
57 public:
58 Packet(Data &send, Data &receive)
59 : m_send(send), m_receive(receive)
61 virtual ~Packet() {}
63 //////////////////////////////////
64 // common response analysis
66 unsigned int Command() const; // throws Error if receive isn't big enough
70 // ZeroPacket class
72 /// Provides an API for building and analyzing socket-0 protocol packets.
73 /// This class relies on 2 external objects: a send and receive Data buffer.
74 ///
75 /// Note that the receive buffer may be modified
76 /// during a packet send, and this class provides API helpers
77 /// to analyze the results.
78 ///
79 class ZeroPacket : public Packet
81 friend class Socket;
83 public:
84 ZeroPacket(Data &send, Data &receive);
85 ~ZeroPacket();
87 //////////////////////////////////
88 // meta access
90 //////////////////////////////////
91 // packet building
93 void GetAttribute(unsigned int object, unsigned int attribute);
94 void Echo(uint64_t us_ticks);
95 void Reset();
98 //////////////////////////////////
99 // response analysis
101 unsigned int ObjectID() const;
102 unsigned int AttributeID() const;
103 uint32_t ChallengeSeed() const;
104 unsigned int RemainingTries() const;
105 unsigned int SocketResponse() const;
106 unsigned char SocketSequence() const;
107 uint8_t CommandResponse() const;
112 // DBPacket class
114 /// Provides an API for building and analyzing raw DB protocol packets.
115 /// This class relies on 3 external objects: a Mode::Desktop object,
116 /// a send Data buffer, and a receive data buffer. Socket and
117 /// connection details are retrieved on a readonly basis from the
118 /// Mode::Desktop object, but both send and receive buffers can be
119 /// modified.
121 /// Note that the receive buffer may be modified
122 /// during a packet send, and this DBPacket class provides API helpers
123 /// to analyze the results.
125 class DBPacket : public Packet
127 friend class Socket;
129 private:
130 Mode::Desktop &m_con;
131 unsigned int m_last_dbop; // last database operation
133 protected:
135 public:
136 DBPacket(Mode::Desktop &con, Data &send, Data &receive);
137 ~DBPacket();
139 //////////////////////////////////
140 // meta access
142 //////////////////////////////////
143 // packet building
145 // commands that correspond to the DB operation
146 // constants in protocol.h
147 void ClearDatabase(unsigned int dbId);
148 void GetDBDB();
149 void GetRecordStateTable(unsigned int dbId);
150 void SetRecordFlags(unsigned int dbId, unsigned int stateTableIndex, uint8_t flag1);
151 void DeleteRecordByIndex(unsigned int dbId, unsigned int stateTableIndex);
152 void GetRecordByIndex(unsigned int dbId, unsigned int stateTableIndex);
153 bool SetRecordByIndex(unsigned int dbId, unsigned int stateTableIndex, Builder &build, const IConverter *ic);
154 void GetRecords(unsigned int dbId);
155 bool SetRecord(unsigned int dbId, Builder &build, const IConverter *ic);
158 //////////////////////////////////
159 // response analysis
161 // DB command response functions
162 unsigned int ReturnCode() const; // throws FIXME if packet doesn't support it
163 unsigned int DBOperation() const; // throws Error on size trouble
165 bool Parse(Parser &parser, const IConverter *ic); // switches based on last m_send command
167 // response parsers
172 // JLPacket class
174 /// Provides an API for building and analyzing raw Javaloader protocol packets.
175 /// This class relies on 3 external objects:
176 /// a command send Data buffer (which can be fairly small), a data
177 /// or argument send Data buffer, and a receive data buffer. Socket and
178 /// connection details are retrieved on a readonly basis from the
179 /// Mode::JavaLoader object, but all buffers can be modified.
181 /// Note that the receive buffer may be modified
182 /// during a packet send, and this JLPacket class provides API helpers
183 /// to analyze the results.
185 class JLPacket : public Packet
187 friend class Socket;
189 private:
190 Data &m_cmd, &m_data;
191 int m_last_set_size;
193 public:
194 JLPacket(Data &cmd, Data &send, Data &receive);
195 ~JLPacket();
197 //////////////////////////////////
198 // meta access
200 bool HasData() const { return m_last_set_size == 2; }
201 Data& GetReceive() { return m_receive; }
203 //////////////////////////////////
204 // packet building
206 // commands that correspond to the operation
207 // constants in protocol.h
209 // returns 1 or 2 depending on whether cmd or cmd+send are available
210 int SimpleCmd(uint8_t cmd, uint8_t unknown = 0, uint16_t size = 0);
211 int SimpleData(const void *data, uint16_t size);
212 int BigEndianData(uint16_t value);
213 int BigEndianData(uint32_t value);
215 int Hello() { return SimpleCmd(SB_COMMAND_JL_HELLO); }
216 int Goodbye() { return SimpleCmd(SB_COMMAND_JL_GOODBYE); }
217 int SetUnknown1();
218 int SetCodFilename(const std::string &filename);
219 int SetCodSize(off_t size);
220 int SetTime(time_t when);
221 int GetScreenshot();
222 int GetData() { return SimpleCmd(SB_COMMAND_JL_SEND_DATA); }
223 int DeviceInfo() { return SimpleCmd(SB_COMMAND_JL_DEVICE_INFO); }
224 int OsMetrics() { return SimpleCmd(SB_COMMAND_JL_OS_METRICS); }
225 int BootromMetrics() { return SimpleCmd(SB_COMMAND_JL_BOOTROM_METRICS); }
226 int GetDirectory() { return SimpleCmd(SB_COMMAND_JL_GET_DIRECTORY); }
227 int GetSubDir(uint16_t id);
228 int GetDirEntry(uint8_t entry_cmd, uint16_t id);
229 int Erase(uint16_t cmd, uint16_t id);
230 int GetEventlog() { return SimpleCmd(SB_COMMAND_JL_GET_LOG); }
231 int GetEventlogEntry(uint16_t entry_num);
232 int ClearEventlog() { return SimpleCmd(SB_COMMAND_JL_CLEAR_LOG); }
233 int SaveModule(uint16_t id);
234 int PutData(const void *data, uint16_t size);
235 int WipeApps() { return SimpleCmd(SB_COMMAND_JL_WIPE_APPS); }
236 int WipeFs() { return SimpleCmd(SB_COMMAND_JL_WIPE_FS); }
237 int LogStackTraces() { return SimpleCmd(SB_COMMAND_JL_LOG_STRACES); }
238 int ResetToFactory() { return SimpleCmd(SB_COMMAND_JL_RESET_FACTORY); }
240 //////////////////////////////////
241 // response analysis
242 unsigned int Size();
247 // JVMPacket class
249 /// Provides an API for building and analyzing raw JavaDebug protocol packets.
250 /// This class relies on 3 external objects:
251 /// a command send Data buffer (which can be fairly small), a data
252 /// or argument send Data buffer, and a receive data buffer. Socket and
253 /// connection details are retrieved on a readonly basis from the
254 /// Mode::JavaDebug object, but all buffers can be modified.
256 /// Note that the receive buffer may be modified
257 /// during a packet send, and this JVMPacket class provides API helpers
258 /// to analyze the results.
260 class JVMPacket : public Packet
262 friend class Socket;
264 private:
265 Data &m_cmd;
267 public:
268 JVMPacket(Data &cmd, Data &receive);
269 ~JVMPacket();
271 //////////////////////////////////
272 // meta access
274 Data& GetReceive() { return m_receive; }
276 //////////////////////////////////
277 // packet building
279 // commands that correspond to the operation
280 // constants in protocol.h
282 // returns 1 or 2 depending on whether cmd or cmd+send are available
283 void SimpleCmd(uint8_t cmd);
284 void ComplexCmd(uint8_t cmd, const void *param, uint16_t size = 0);
286 void Unknown01(); // Command 0x53
287 void Unknown02(); // Command 0x01
288 void Unknown03(); // Command 0x6f
289 void Unknown04(); // Command 0x8a
290 void Unknown05(); // Command 0x90
291 void Unknown06(); // Command 0x44
292 void Unknown07(); // Command 0x45
293 void Unknown08(); // Command 0x54
294 void Unknown09(); // Command 0x33
295 void Unknown10(); // Command 0x46
296 void Unknown11(uint32_t id); // Command 0x0e
297 void Unknown12(uint32_t id); // Command 0x50
298 void Unknown13(uint32_t id); // Command 0x0d
299 void Unknown14(uint32_t id); // Command 0x85
300 void Unknown15(uint32_t id); // Command 0x84
301 void GetModulesList(uint32_t id); // Command 0x8d
302 void GetThreadsList(); // Command 0x08
303 void GetConsoleMessage();
304 void Go(); // Command mal formed :)
305 void Stop(); // Command 0x02
306 void GetStatus(); // Command 0x06
308 //////////////////////////////////
309 // response analysis
310 unsigned int Size();
314 } // namespace Barry
316 #endif