File: hex2dbus.c

package info (click to toggle)
libticables 1.3.5%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 1,720 kB
  • sloc: ansic: 12,246; makefile: 1,446; sh: 131; xml: 23; sed: 16
file content (338 lines) | stat: -rw-r--r-- 6,304 bytes parent folder | download | duplicates (3)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
/*  hex2dbus - an D-BUS packet decompiler
 *  Copyright (C) 2002-2007  Romain LiƩvin
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software Foundation,
 *  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>

#include "ticables.h"
#include "internal.h"

static const unsigned char machine_id[] =
{
	0x00, 0x02, 0x03, 0x05, 0x06, 0x07, 0x08, 0x08, 0x09, 0x23,
	0x00, 0x82, 0x83, 0x85, 0x86, 0x74, 0x98, 0x88, 0x89, 0x73,
	0xff
};

static const char* machine_way[] = 
{
	"PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI", "PC>TI",
	"TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC", "TI>PC",
	"",
};

static const unsigned char command_id[] =
{
	0x06, 0x09, 0x15, 0x2d, 0x36, 0x47, 0x56, 0x5A, 
	0x68, 0x6D, 0x74, 0x78, 0x87, 0x88, 0x92, 0xA2, 
	0xB7, 0xC9, 
	0xff
};

static const char command_name[][8] =
{
	"VAR", "CTS", "XDP", "VER", "SKP", "SID", "ACK", "ERR", 
	"RDY", "SCR", "RID", "CNT", "KEY", "DEL", "EOT", "REQ", 
	"IND", "RTS", 
	""
};

static const int cmd_with_data[] =
{
	!0, 0, !0, 0, !0, !0, 0, !0, 
	0, 0, 0, 0, 0, !0, 0, !0,
	!0, !0, -1
};

static int is_a_machine_id(unsigned char id)
{
	int i;

	for (i=0; machine_id[i] != 0xff; i++)
	{
		if (id == machine_id[i])
		{
			break;
		}
	}

	return i;
}

static int is_a_command_id(unsigned char id)
{
	int i;

	for (i=0; command_id[i] != 0xff; i++)
	{
		if (id == command_id[i])
		{
			break;
		}
	}

	return i;
}

#define WIDTH	12

static int fill_buf(FILE *f, char data, int flush)
{
	static char buf[WIDTH];
	static unsigned int cnt = 0;
	unsigned int i, j;

	if (!flush)
	{
		buf[cnt++] = data;
	}

	if ((cnt >= WIDTH) || flush)
	{
		//printf(".");
		fprintf(f, "    ");
		for (i = 0; i < cnt; i++)
		{
			fprintf(f, "%02X ", 0xff & buf[i]);
		}

		if (flush)
		{
			for (j = i; j < WIDTH; j++)
			{
				fprintf(f, "   ");
			}
		}

		fprintf(f, "| ");
		for (i = 0; i < cnt; i++)
		{
			fprintf(f, "%c", isalnum(buf[i]) ? buf[i] : '.');
		}

		fprintf(f, "\n");
		cnt = 0;
	}

	return 0;
}

/*
  Format of data: 8 hexadecimal numbers with spaces
*/
int dbus_decomp(const char *filename, int resync)
{
	char src_name[1024];
	char dst_name[1024];
	FILE *fi = NULL, *fo = NULL;
	long file_size;
	unsigned char *buffer;
	int i;
	unsigned int j;
	int num_bytes;
	char str[256];
	unsigned char mid, cid;
	unsigned int length;
	int idx;
	int ret = 0;

	// build filenames
	snprintf(src_name, sizeof(src_name) - 1, "%s.hex", filename);
	src_name[sizeof(src_name) - 1] = 0;

	snprintf(dst_name, sizeof(dst_name) - 1, "%s.pkt", filename);
	dst_name[sizeof(dst_name) - 1] = 0;

	// open files
	fi = fopen(src_name, "rt");
	if (fi == NULL)
	{
		fprintf(stderr, "Unable to open input file: %s\n", src_name);
		return -1;
	}

	if (fseek(fi, 0, SEEK_END) < 0)
	{
		fclose(fi);
		return -1;
	}
	file_size = ftell(fi);
	if (file_size < 0)
	{
		fclose(fi);
		return -1;
	}
	if (fseek(fi, 0, SEEK_SET) < 0)
	{
		fclose(fi);
		return -1;
	}

	// allocate buffer
	buffer = (unsigned char*)calloc(file_size < 131072 ? 65536 : file_size / 2, 1);
	if (buffer == NULL)
	{
		fprintf(stderr, "calloc error.\n");
		fclose(fi);
		return -1;
	}
	memset(buffer, 0xff, file_size/2);

	fo = fopen(dst_name, "wt");
	if (fo == NULL)
	{
		fprintf(stderr, "Unable to open output file: %s\n", dst_name);
		free(buffer);
		fclose(fi);
		return -1;
	}

	fprintf(fo, "TI packet decompiler for D-BUS, version 1.2\n");

	// skip comments
	if (   fgets(str, sizeof(str), fi) == NULL
	    || fgets(str, sizeof(str), fi) == NULL
	    || fgets(str, sizeof(str), fi) == NULL)
	{
		goto exit;
	}

	// read source file
	for (i = 0; !feof(fi);)
	{
		for (j = 0; j < 16 && !feof(fi); j++)
		{
			if (fscanf(fi, "%02X", (unsigned int *)&(buffer[i+j])) < 1)
			{
				ret = -1;
				goto exit;
			}
			if (fgetc(fi) < 0)
			{
				goto exit;
			}
		}
		i += j;

		for (j=0; j<18 && !feof(fi); j++)
		{
			if (fgetc(fi) < 0)
			{
				goto exit;
			}
		}
	}
	num_bytes = i-1; // -1 due to EOF char
	printf("%i bytes read.\n", num_bytes);

	// process data
	for (i = 0; i < num_bytes;)
	{
restart:
		mid = buffer[i+0];
		cid = buffer[i+1];
		length = buffer[i+2];
		length |= ((int)(buffer[i+3])) << 8;

		// check for valid packet
		if (is_a_machine_id(mid) == -1)
		{
			ret = -1;
			goto exit;
		}

		// check for valid packet
		idx = is_a_command_id(cid);
		if (idx == -1)
		{
			ret = -2;
			goto exit;
		}

		fprintf(fo, "%02X %02X %02X %02X", mid, cid, length >> 8, length & 0xff);
		for (j = 4; j <= WIDTH; j++)
		{
			fprintf(fo, "   ");
		}
		fprintf(fo, "  | ");
		fprintf(fo, "%s: %s\n", machine_way[is_a_machine_id(mid)], command_name[is_a_command_id(cid)]);

		i += 4;

		// get data & checksum
		if (cmd_with_data[idx] && length > 0)
		{
			// data
			for(j = 0; j < length; j++, i++)
			{
				if (resync && buffer[i] == 0x98 && (buffer[i+1] == 0x15 ||  buffer[i+1] == 0x56))
				{
					printf("Warning: there is packets in data !\n");
					fprintf(fo, "Beware : length of previous packet is wrong !\n");
					goto restart;
				}

				fill_buf(fo, buffer[i], 0);
			}

			fill_buf(fo, 0, !0);
			//fprintf(fo, "\n");

			// write checksum
			fprintf(fo, "    ");
			fprintf(fo, "%02X ", buffer[i++]);
			fprintf(fo, "%02X ", buffer[i++]);
			fprintf(fo, "\n");
		}
	}

exit:
	if (ret < 0)
	{
		printf("Error %i\n", -ret);
	}

	free(buffer);
	fclose(fo);
	fclose(fi);

	return ret;
}

#if 0
int main(int argc, char **argv)
{
	int resync = 0;

	if (argc < 2)
	{
		fprintf(stderr, "Usage: hex2dbus [file]\n");
		exit(0);
	}

	if (argc > 2)
	{
		resync = !0;
	}

	return dbus_decomp(argv[1], resync);
}
#endif