1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
27
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
138
139
140
141
146
147
148
149
154
155
156
157
162
163
164
165
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
273
274
275
276
281
282
283
284
289
290
291
292
297
298
299
300
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
366
367
368
369
370
371
372
373
374
375
376
377
378
379
384
385
386
387
392
393
394
395
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
458
459
460
461
462
463
464
465
466
467
468
469
470
471
476
477
478
479
484
485
486
487
492
493
494
495
496
497
498
499
/* ... */
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "libjaylink.h"
#include "libjaylink-internal.h"
5 includes
/* ... */
#define CMD_FILE_IO 0x1e
#define FILE_IO_CMD_READ 0x64
#define FILE_IO_CMD_WRITE 0x65
#define FILE_IO_CMD_GET_SIZE 0x66
#define FILE_IO_CMD_DELETE 0x67
#define FILE_IO_PARAM_FILENAME 0x01
#define FILE_IO_PARAM_OFFSET 0x02
#define FILE_IO_PARAM_LENGTH 0x03
#define FILE_IO_ERR 0x80000000
9 defines
/* ... */
JAYLINK_API int jaylink_file_read(struct jaylink_device_handle *devh,
const char *filename, uint8_t *buffer, uint32_t offset,
uint32_t *length)
{
int ret;
struct jaylink_context *ctx;
uint8_t buf[18 + JAYLINK_FILE_NAME_MAX_LENGTH];
size_t filename_length;
uint32_t tmp;
if (!devh || !filename || !buffer || !length)
return JAYLINK_ERR_ARG;
if (!*length)
return JAYLINK_ERR_ARG;
if (*length > JAYLINK_FILE_MAX_TRANSFER_SIZE)
return JAYLINK_ERR_ARG;
filename_length = strlen(filename);
if (!filename_length)
return JAYLINK_ERR_ARG;
if (filename_length > JAYLINK_FILE_NAME_MAX_LENGTH)
return JAYLINK_ERR_ARG;
ctx = devh->dev->ctx;
ret = transport_start_write(devh, 18 + filename_length, true);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
buf[0] = CMD_FILE_IO;
buf[1] = FILE_IO_CMD_READ;
buf[2] = 0x00;
buf[3] = filename_length;
buf[4] = FILE_IO_PARAM_FILENAME;
memcpy(buf + 5, filename, filename_length);
buf[filename_length + 5] = 0x04;
buf[filename_length + 6] = FILE_IO_PARAM_OFFSET;
buffer_set_u32(buf, offset, filename_length + 7);
buf[filename_length + 11] = 0x04;
buf[filename_length + 12] = FILE_IO_PARAM_LENGTH;
buffer_set_u32(buf, *length, filename_length + 13);
buf[filename_length + 17] = 0x00;
ret = transport_write(devh, buf, 18 + filename_length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_read(devh, *length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_read(devh, buffer, *length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_read(devh, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_read(devh, buf, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
tmp = buffer_get_u32(buf, 0);
if (tmp & FILE_IO_ERR)
return JAYLINK_ERR_DEV;
*length = tmp;
return JAYLINK_OK;
}{ ... }
/* ... */
JAYLINK_API int jaylink_file_write(struct jaylink_device_handle *devh,
const char *filename, const uint8_t *buffer, uint32_t offset,
uint32_t *length)
{
int ret;
struct jaylink_context *ctx;
uint8_t buf[18 + JAYLINK_FILE_NAME_MAX_LENGTH];
size_t filename_length;
uint32_t tmp;
if (!devh || !filename || !buffer || !length)
return JAYLINK_ERR_ARG;
if (!*length)
return JAYLINK_ERR_ARG;
if (*length > JAYLINK_FILE_MAX_TRANSFER_SIZE)
return JAYLINK_ERR_ARG;
filename_length = strlen(filename);
if (!filename_length)
return JAYLINK_ERR_ARG;
if (filename_length > JAYLINK_FILE_NAME_MAX_LENGTH)
return JAYLINK_ERR_ARG;
ctx = devh->dev->ctx;
ret = transport_start_write(devh, 18 + filename_length, true);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
buf[0] = CMD_FILE_IO;
buf[1] = FILE_IO_CMD_WRITE;
buf[2] = 0x00;
buf[3] = filename_length;
buf[4] = FILE_IO_PARAM_FILENAME;
memcpy(buf + 5, filename, filename_length);
buf[filename_length + 5] = 0x04;
buf[filename_length + 6] = FILE_IO_PARAM_OFFSET;
buffer_set_u32(buf, offset, filename_length + 7);
buf[filename_length + 11] = 0x04;
buf[filename_length + 12] = FILE_IO_PARAM_LENGTH;
buffer_set_u32(buf, *length, filename_length + 13);
buf[filename_length + 17] = 0x00;
ret = transport_write(devh, buf, 18 + filename_length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_write(devh, *length, true);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_write(devh, buffer, *length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_read(devh, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_read(devh, buf, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
tmp = buffer_get_u32(buf, 0);
if (tmp & FILE_IO_ERR)
return JAYLINK_ERR_DEV;
*length = tmp;
return JAYLINK_OK;
}{ ... }
/* ... */
JAYLINK_API int jaylink_file_get_size(struct jaylink_device_handle *devh,
const char *filename, uint32_t *size)
{
int ret;
struct jaylink_context *ctx;
uint8_t buf[6 + JAYLINK_FILE_NAME_MAX_LENGTH];
size_t length;
uint32_t tmp;
if (!devh || !filename || !size)
return JAYLINK_ERR_ARG;
length = strlen(filename);
if (!length)
return JAYLINK_ERR_ARG;
if (length > JAYLINK_FILE_NAME_MAX_LENGTH)
return JAYLINK_ERR_ARG;
ctx = devh->dev->ctx;
ret = transport_start_write(devh, 6 + length, true);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
buf[0] = CMD_FILE_IO;
buf[1] = FILE_IO_CMD_GET_SIZE;
buf[2] = 0x00;
buf[3] = length;
buf[4] = FILE_IO_PARAM_FILENAME;
memcpy(buf + 5, filename, length);
buf[length + 5] = 0x00;
ret = transport_write(devh, buf, 6 + length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_read(devh, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_read(devh, buf, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
tmp = buffer_get_u32(buf, 0);
if (tmp & FILE_IO_ERR)
return JAYLINK_ERR_DEV;
*size = tmp;
return JAYLINK_OK;
}{ ... }
/* ... */
JAYLINK_API int jaylink_file_delete(struct jaylink_device_handle *devh,
const char *filename)
{
int ret;
struct jaylink_context *ctx;
uint8_t buf[6 + JAYLINK_FILE_NAME_MAX_LENGTH];
size_t length;
uint32_t tmp;
if (!devh || !filename)
return JAYLINK_ERR_ARG;
length = strlen(filename);
if (!length)
return JAYLINK_ERR_ARG;
if (length > JAYLINK_FILE_NAME_MAX_LENGTH)
return JAYLINK_ERR_ARG;
ctx = devh->dev->ctx;
ret = transport_start_write(devh, 6 + length, true);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
buf[0] = CMD_FILE_IO;
buf[1] = FILE_IO_CMD_DELETE;
buf[2] = 0x00;
buf[3] = length;
buf[4] = FILE_IO_PARAM_FILENAME;
memcpy(buf + 5, filename, length);
buf[length + 5] = 0x00;
ret = transport_write(devh, buf, 6 + length);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_write() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_start_read(devh, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_start_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
ret = transport_read(devh, buf, 4);
if (ret != JAYLINK_OK) {
log_err(ctx, "transport_read() failed: %s",
jaylink_strerror(ret));
return ret;
}if (ret != JAYLINK_OK) { ... }
tmp = buffer_get_u32(buf, 0);
if (tmp & FILE_IO_ERR)
return JAYLINK_ERR_DEV;
return JAYLINK_OK;
}{ ... }