deb: added new libbarrysync library to debian binary package
[barry.git] / src / protocol.h
blob71e9312591248f92921a7d19115bc74f32bbcff3
1 ///
2 /// \file protocol.h
3 /// USB Blackberry bulk protocol API constants
4 ///
6 /*
7 Copyright (C) 2005-2010, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_PROTOCOL_H__
23 #define __BARRY_PROTOCOL_H__
25 // packet commands (Packet.command: has response codes too)
26 #define SB_COMMAND_ECHO 0x01
27 #define SB_COMMAND_ECHO_REPLY 0x02
28 #define SB_COMMAND_RESET 0x03
29 #define SB_COMMAND_RESET_REPLY 0x04
30 #define SB_COMMAND_FETCH_ATTRIBUTE 0x05
31 #define SB_COMMAND_FETCHED_ATTRIBUTE 0x06
32 #define SB_COMMAND_SELECT_MODE 0x07
33 #define SB_COMMAND_MODE_SELECTED 0x08
34 #define SB_COMMAND_OPEN_SOCKET 0x0a
35 #define SB_COMMAND_CLOSE_SOCKET 0x0b
36 #define SB_COMMAND_CLOSED_SOCKET 0x0c
37 #define SB_COMMAND_PASSWORD_CHALLENGE 0x0e
38 #define SB_COMMAND_PASSWORD 0x0f
39 #define SB_COMMAND_OPENED_SOCKET 0x10
40 #define SB_COMMAND_PASSWORD_FAILED 0x11
41 #define SB_COMMAND_SEQUENCE_HANDSHAKE 0x13
42 #define SB_COMMAND_DB_DATA 0x40
43 #define SB_COMMAND_DB_FRAGMENTED 0x60
44 #define SB_COMMAND_DB_DONE 0x41
46 // JavaLoader commands
47 #define SB_COMMAND_JL_HELLO 0x64 // This could be a general ACK in both directions
48 #define SB_COMMAND_JL_HELLO_ACK 0x65 // From device after host HELLO
49 #define SB_COMMAND_JL_GOODBYE 0x8d
50 #define SB_COMMAND_JL_SET_UNKNOWN1 0x70 // Initial sequence, 0
51 #define SB_COMMAND_JL_SET_COD_FILENAME 0x80
52 #define SB_COMMAND_JL_SET_COD_SIZE 0x67 // Always big endian
53 #define SB_COMMAND_JL_SEND_DATA 0x68
54 #define SB_COMMAND_JL_SET_TIME 0x7c
55 #define SB_COMMAND_JL_GET_SCREENSHOT 0x87
56 #define SB_COMMAND_JL_DEVICE_INFO 0x71
57 #define SB_COMMAND_JL_OS_METRICS 0x78
58 #define SB_COMMAND_JL_BOOTROM_METRICS 0x79
59 #define SB_COMMAND_JL_GET_DIRECTORY 0x6d
60 #define SB_COMMAND_JL_GET_DATA_ENTRY 0x6e // Used for both DIR and SCREENSHOT
61 #define SB_COMMAND_JL_GET_SUBDIR 0x7f
62 #define SB_COMMAND_JL_GET_SUBDIR_ENTRY 0x7d
63 #define SB_COMMAND_JL_ERASE 0x69
64 #define SB_COMMAND_JL_FORCE_ERASE 0x7b
65 #define SB_COMMAND_JL_UNKNOWN3 0x63
66 #define SB_COMMAND_JL_GET_LOG 0x73
67 #define SB_COMMAND_JL_GET_LOG_ENTRY 0x74
68 #define SB_COMMAND_JL_CLEAR_LOG 0x88
69 #define SB_COMMAND_JL_SAVE_MODULE 0x7e
70 #define SB_COMMAND_JL_WIPE_APPS 0x6a
71 #define SB_COMMAND_JL_WIPE_FS 0x6b
72 #define SB_COMMAND_JL_LOG_STRACES 0x8e
73 #define SB_COMMAND_JL_RESET_FACTORY 0x91
75 // JavaLoader response
76 #define SB_COMMAND_JL_ACK 0x64
77 #define SB_COMMAND_JL_READY 0x01
78 #define SB_COMMAND_JL_RESET_REQUIRED 0x78 // Occurs after GOODBYE when handheld reset is required
79 #define SB_COMMAND_JL_COD_IN_USE 0x6c // Perhaps "BUSY" is also a good name?
80 #define SB_COMMAND_JL_COD_NOT_FOUND 0x69
81 #define SB_COMMAND_JL_NOT_ENOUGH_MEMORY 0x6a // Occurs when the internal memory isn't enough to install the new COD file
82 #define SB_COMMAND_JL_NOT_SUPPORTED 0x71 // Occurs when device does not support a command
84 // JavaLoader data
85 #define SB_DATA_JL_SUCCESS 0x64 // Device has accepted the data packet
86 #define SB_DATA_JL_INVALID 0x68 // Device returns this code if the application isn't valid.
89 // JDWP Command set list
90 #define JDWP_CMDSET_VIRTUALMACHINE 1
91 #define JDWP_CMDSET_REFERECENTYPE 2
92 #define JDWP_CMDSET_CLASSTYPE 3
93 #define JDWP_CMDSET_ARRAYTYPE 4
94 #define JDWP_CMDSET_INTERFACETYPE 5
95 #define JDWP_CMDSET_METHOD 6
96 #define JDWP_CMDSET_FIELD 8
97 #define JDWP_CMDSET_OBJECTREFERENCE 9
98 #define JDWP_CMDSET_STRINGREFERENCE 10
99 #define JDWP_CMDSET_THREADREFERENCE 11
100 #define JDWP_CMDSET_THREADGROUPREFERENCE 12
101 #define JDWP_CMDSET_ARRAYREFERENCE 13
102 #define JDWP_CMDSET_CLASSLOADERREFERENCE 14
103 #define JDWP_CMDSET_EVENTREQUEST 15
104 #define JDWP_CMDSET_STACKFRAME 16
105 #define JDWP_CMDSET_CLASSOBJECTREFERENCE 17
106 #define JDWP_CMDSET_EVENT 64
108 // JDWP Command list - VirtualMachine
109 #define JDWP_CMD_VERSION 1
110 #define JDWP_CMD_ALLCLASSES 3
111 #define JDWP_CMD_ALLTHREADS 4
112 #define JDWP_CMD_DISPOSE 6
113 #define JDWP_CMD_IDSIZES 7
114 #define JDWP_CMD_SUSPEND 8
115 #define JDWP_CMD_RESUME 9
116 #define JDWP_CMD_CLASSPATHS 13
118 // JDWP Command list - EventRequest
119 #define JDWP_CMD_SET 1
121 // JVMDebug commands
122 #define SB_COMMAND_JVM_UNKNOWN01 0x53
123 #define SB_COMMAND_JVM_UNKNOWN02 0x01
124 #define SB_COMMAND_JVM_UNKNOWN03 0x6f
125 #define SB_COMMAND_JVM_UNKNOWN04 0x8a
126 #define SB_COMMAND_JVM_UNKNOWN05 0x90
127 #define SB_COMMAND_JVM_UNKNOWN06 0x44
128 #define SB_COMMAND_JVM_UNKNOWN07 0x45
129 #define SB_COMMAND_JVM_UNKNOWN08 0x54
130 #define SB_COMMAND_JVM_UNKNOWN09 0x33
131 #define SB_COMMAND_JVM_UNKNOWN10 0x46
133 #define SB_COMMAND_JVM_UNKNOWN11 0x0e
134 #define SB_COMMAND_JVM_UNKNOWN12 0x50
135 #define SB_COMMAND_JVM_UNKNOWN13 0x0d
136 #define SB_COMMAND_JVM_UNKNOWN14 0x85
137 #define SB_COMMAND_JVM_UNKNOWN15 0x84
139 #define SB_COMMAND_JVM_GET_MODULES_LIST 0x8d // Get all Java modules list with their address and ID
140 #define SB_COMMAND_JVM_GET_THREADS_LIST 0x08 // Get all threads currently running in the virtual machine
141 #define SB_COMMAND_JVM_GET_CONSOLE_MSG 0x40 // Get console message
142 #define SB_COMMAND_JVM_GO 0x02 // Go
143 #define SB_COMMAND_JVM_GET_STATUS 0x06 // Get status
144 #define SB_COMMAND_JVM_SET_BREAKPOINT 0x21 // Set breakpoint
145 #define SB_COMMAND_JVM_RM_BREAKPOINT 0x22 // Remove breakpoint
147 #define SB_COMMAND_JVM_STOP 0xa502
149 // JavaDebug response
150 #define SB_COMMAND_JVM_GET_DATA_ENTRY 0x06
153 // mode constants
154 #define SB_MODE_REQUEST_SOCKET 0x00ff
157 // object and attribute ID codes (for ZeroPacket::GetAttribute())
158 // meanings for most of these are unknown
159 #define SB_OBJECT_INITIAL_UNKNOWN 0x14
160 #define SB_ATTR_INITIAL_UNKNOWN 0x01
161 #define SB_OBJECT_PROFILE 0x08
162 #define SB_ATTR_PROFILE_DESC 0x02
163 #define SB_ATTR_PROFILE_PIN 0x04
164 #define SB_OBJECT_SOCKET_UNKNOWN 0x04
167 // param command parameters
168 //#define SB_PARAM_DEFAULT 0xff
171 // DB Operation Command
172 #define SB_DBOP_SET_RECORD 0x41
173 #define SB_DBOP_CLEAR_DATABASE 0x43
174 #define SB_DBOP_GET_DBDB 0x4a
175 #define SB_DBOP_OLD_GET_DBDB 0x4c
176 #define SB_DBOP_GET_COUNT 0x4e
177 #define SB_DBOP_GET_RECORDS 0x4f
178 #define SB_DBOP_OLD_GET_RECORDS 0x42
179 #define SB_DBOP_OLD_GET_RECORDS_REPLY 0x44
181 #define SB_DBOP_GET_RECORD_STATE_TABLE 0x53 // replies with 0x60, 0x41
182 #define SB_DBOP_SET_RECORD_FLAGS 0x54 // replies with 0x41
183 // used to clear dirty flag
184 #define SB_DBOP_GET_RECORD_BY_INDEX 0x46 // replies with 0x44
185 // John's device uses 0x50, with a reply of 0x4f (!)
186 // Then uses 0x55 as usual
187 // Delete uses 0x50/0x4f to check as well, then uses 0x52 as
188 // usual to do the actual delete.
189 #define SB_DBOP_SET_RECORD_BY_INDEX 0x55 // replies with 0x41
190 #define SB_DBOP_DELETE_RECORD_BY_INDEX 0x52 // intellisync does a GET(0x46)
191 // first, probably to make sure
192 // it has the right data and
193 // record
195 #endif