-
Notifications
You must be signed in to change notification settings - Fork 15
/
device.c
407 lines (327 loc) · 8.9 KB
/
device.c
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
/*
* Copyright (c) 2016-2018, Linaro Ltd.
* All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <sys/file.h>
#include <sys/stat.h>
#include <assert.h>
#include <err.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <syslog.h>
#include "cdba-server.h"
#include "device.h"
#include "fastboot.h"
#include "list.h"
#include "ppps.h"
#include "status-cmd.h"
#include "watch.h"
#define ARRAY_SIZE(x) ((sizeof(x)/sizeof((x)[0])))
#define device_has_control(_dev, _op) \
((_dev)->control_ops && (_dev)->control_ops->_op)
#define device_control(_dev, _op, ...) \
(_dev)->control_ops->_op((_dev) , ## __VA_ARGS__)
#define device_has_console(_dev, _op) \
((_dev)->console_ops && (_dev)->console_ops->_op)
#define device_console(_dev, _op, ...) \
(_dev)->console_ops->_op((_dev) , ## __VA_ARGS__)
static struct list_head devices = LIST_INIT(devices);
void device_add(struct device *device)
{
list_add(&devices, &device->node);
}
static void device_lock(struct device *device)
{
char lock[PATH_MAX];
int fd;
int n;
n = snprintf(lock, sizeof(lock), "/tmp/cdba-%s.lock", device->board);
if (n >= (int)sizeof(lock))
errx(1, "failed to build lockfile path");
fd = open(lock, O_RDONLY | O_CREAT, 0666);
if (fd >= 0)
close(fd);
fd = open(lock, O_RDONLY | O_CLOEXEC);
if (fd < 0)
err(1, "failed to open lockfile %s", lock);
while (1) {
char c;
n = flock(fd, LOCK_EX | LOCK_NB);
if (!n)
return;
warnx("board is in use, waiting...");
sleep(3);
/* check that connection isn't gone */
if (read(STDIN_FILENO, &c, 1) == 0)
errx(1, "connection is gone");
}
}
static bool device_check_access(struct device *device,
const char *username)
{
struct device_user *user;
if (!device->users)
return true;
if (!username)
return false;
list_for_each_entry(user, device->users, node) {
if (!strcmp(user->username, username))
return true;
}
return false;
}
static int device_power_off(struct device *device);
struct device *device_open(const char *board,
const char *username)
{
struct device *device;
list_for_each_entry(device, &devices, node) {
if (!strcmp(device->board, board))
goto found;
}
syslog(LOG_INFO, "user %s asked for non-existing board %s", username, board);
return NULL;
found:
if (!device_check_access(device, username)) {
syslog(LOG_INFO, "user %s access denied to the board %s", username, board);
return NULL;
}
syslog(LOG_INFO, "user %s opening board %s", username, board);
assert(device->console_ops);
assert(device->console_ops->open);
assert(device->console_ops->write);
device_lock(device);
if (device_has_control(device, open)) {
device->cdb = device_control(device, open);
if (!device->cdb)
errx(1, "failed to open device controller");
}
device->console = device_console(device, open);
if (!device->console)
errx(1, "failed to open device console");
/*
* Power off before opening fastboot. Otherwise if the device is
* already in the fastboot state, CDBA will detect it, then power up
* procedure will restart the device causing fastboot to disappear and
* appear again. This will cause CDBA to exit, ending up with the
* unbreakable fastboot-reset-second_fastboot-quit cycle.
* */
if (device->power_always_on) {
device_power_off(device);
sleep(2);
}
if (device->usb_always_on)
device_usb(device, true);
return device;
}
static void device_impl_power(struct device *device, bool on)
{
device_control(device, power, on);
}
static void device_key(struct device *device, int key, bool asserted)
{
if (device_has_control(device, key))
device_control(device, key, key, asserted);
}
enum {
DEVICE_STATE_START,
DEVICE_STATE_CONNECT,
DEVICE_STATE_PRESS,
DEVICE_STATE_RELEASE_PWR,
DEVICE_STATE_RELEASE_FASTBOOT,
DEVICE_STATE_RUNNING,
};
static void device_tick(void *data)
{
struct device *device = data;
switch (device->state) {
case DEVICE_STATE_START:
/* Make sure power key is not engaged */
if (device->fastboot_key_timeout)
device_key(device, DEVICE_KEY_FASTBOOT, true);
if (device->has_power_key)
device_key(device, DEVICE_KEY_POWER, false);
device->state = DEVICE_STATE_CONNECT;
watch_timer_add(10, device_tick, device);
break;
case DEVICE_STATE_CONNECT:
/* Connect power and USB */
device_impl_power(device, true);
device_usb(device, true);
if (device->has_power_key) {
device->state = DEVICE_STATE_PRESS;
watch_timer_add(250, device_tick, device);
} else if (device->fastboot_key_timeout) {
device->state = DEVICE_STATE_RELEASE_FASTBOOT;
watch_timer_add(device->fastboot_key_timeout * 1000, device_tick, device);
} else {
device->state = DEVICE_STATE_RUNNING;
}
break;
case DEVICE_STATE_PRESS:
/* Press power key */
device_key(device, DEVICE_KEY_POWER, true);
device->state = DEVICE_STATE_RELEASE_PWR;
watch_timer_add(100, device_tick, device);
break;
case DEVICE_STATE_RELEASE_PWR:
/* Release power key */
device_key(device, DEVICE_KEY_POWER, false);
if (device->fastboot_key_timeout) {
device->state = DEVICE_STATE_RELEASE_FASTBOOT;
watch_timer_add(device->fastboot_key_timeout * 1000, device_tick, device);
} else {
device->state = DEVICE_STATE_RUNNING;
}
break;
case DEVICE_STATE_RELEASE_FASTBOOT:
device_key(device, DEVICE_KEY_FASTBOOT, false);
device->state = DEVICE_STATE_RUNNING;
break;
}
}
bool device_is_running(struct device *device)
{
return device->state == DEVICE_STATE_RUNNING;
}
static int device_power_on(struct device *device)
{
if (!device || !device_has_control(device, power))
return 0;
device->state = DEVICE_STATE_START;
device_tick(device);
return 0;
}
static int device_power_off(struct device *device)
{
if (!device || !device_has_control(device, power))
return 0;
device_control(device, power, false);
return 0;
}
int device_power(struct device *device, bool on)
{
if (on)
return device_power_on(device);
else
return device_power_off(device);
}
void device_status_enable(struct device *device)
{
if (device->status_enabled)
return;
if (device_has_control(device, status_enable))
device_control(device, status_enable);
if (device->status_cmd)
status_cmd_open(device);
device->status_enabled = true;
}
void device_usb(struct device *device, bool on)
{
if (device->ppps_path)
ppps_power(device, on);
else if (device_has_control(device, usb))
device_control(device, usb, on);
}
int device_write(struct device *device, const void *buf, size_t len)
{
if (!device)
return 0;
return device_console(device, write, buf, len);
}
void device_fastboot_open(struct device *device,
struct fastboot_ops *fastboot_ops)
{
device->fastboot = fastboot_open(device->serial, fastboot_ops, NULL);
}
void device_fastboot_boot(struct device *device)
{
if (!device->fastboot) {
fprintf(stderr, "fastboot not opened\n");
return;
}
fastboot_boot(device->fastboot);
}
void device_fastboot_continue(struct device *device)
{
if (!device->fastboot) {
fprintf(stderr, "fastboot not opened\n");
return;
}
fastboot_continue(device->fastboot);
}
void device_fastboot_flash_reboot(struct device *device)
{
if (!device->fastboot) {
fprintf(stderr, "fastboot not opened\n");
return;
}
fastboot_flash(device->fastboot, "boot");
fastboot_reboot(device->fastboot);
}
void device_boot(struct device *device, const void *data, size_t len)
{
warnx("booting the board...");
if (device->set_active)
fastboot_set_active(device->fastboot, device->set_active);
fastboot_download(device->fastboot, data, len);
device->boot(device);
if (device->status_enabled && !device->usb_always_on) {
warnx("disabling USB, use ^A V to enable");
device_usb(device, false);
}
}
void device_send_break(struct device *device)
{
if (device_has_console(device, send_break))
device_console(device, send_break);
}
void device_list_devices(const char *username)
{
struct device *device;
size_t len;
char buf[80];
list_for_each_entry(device, &devices, node) {
if (!device_check_access(device, username))
continue;
if (device->name)
len = snprintf(buf, sizeof(buf), "%-20s %s", device->board, device->name);
else
len = snprintf(buf, sizeof(buf), "%s", device->board);
cdba_send_buf(MSG_LIST_DEVICES, len, buf);
}
cdba_send_buf(MSG_LIST_DEVICES, 0, NULL);
}
void device_info(const char *username, const void *data, size_t dlen)
{
char *description = NULL;
struct device *device;
size_t len = 0;
list_for_each_entry(device, &devices, node) {
if (strncmp(device->board, data, dlen))
continue;
if (!device_check_access(device, username))
continue;
if (device->description) {
description = device->description;
len = strlen(device->description);
break;
}
}
cdba_send_buf(MSG_BOARD_INFO, len, description);
}
void device_close(struct device *dev)
{
if (!dev->usb_always_on)
device_usb(dev, false);
if (!dev->power_always_on)
device_power(dev, false);
if (device_has_control(dev, close))
device_control(dev, close);
}