Skip to content

Latest commit

 

History

History
1429 lines (1221 loc) · 36 KB

usb_moded.c

File metadata and controls

1429 lines (1221 loc) · 36 KB
 
Mar 22, 2011
Mar 22, 2011
1
2
3
4
/**
@file usb_moded.c
Copyright (C) 2010 Nokia Corporation. All rights reserved.
Nov 7, 2016
Nov 7, 2016
5
Copyright (C) 2012-2016 Jolla. All rights reserved.
Mar 22, 2011
Mar 22, 2011
6
7
@author: Philippe De Swert <philippe.de-swert@nokia.com>
Dec 6, 2012
Dec 6, 2012
8
@author: Philippe De Swert <philippe.deswert@jollamobile.com>
Nov 7, 2016
Nov 7, 2016
9
@author: Simo Piiroinen <simo.piiroinen@jollamobile.com>
Mar 22, 2011
Mar 22, 2011
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
version 2 as published by the Free Software Foundation.
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 Lesser GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
#define _GNU_SOURCE
#include <getopt.h>
Mar 4, 2013
Mar 4, 2013
28
#include <stdio.h>
Mar 22, 2011
Mar 22, 2011
29
30
31
#include <sys/stat.h>
#include <sys/wait.h>
Oct 22, 2013
Oct 22, 2013
32
#include <signal.h>
Mar 22, 2011
Mar 22, 2011
33
Nov 13, 2012
Nov 13, 2012
34
#include <libkmod.h>
Mar 13, 2017
Mar 13, 2017
35
Jan 20, 2014
Jan 20, 2014
36
37
38
#ifdef SYSTEMD
#include <systemd/sd-daemon.h>
#endif
Nov 13, 2012
Nov 13, 2012
39
Mar 22, 2011
Mar 22, 2011
40
41
42
43
44
45
46
#include "usb_moded.h"
#include "usb_moded-modes.h"
#include "usb_moded-dbus.h"
#include "usb_moded-dbus-private.h"
#include "usb_moded-hw-ab.h"
#include "usb_moded-modules.h"
#include "usb_moded-log.h"
Mar 1, 2012
Mar 1, 2012
47
#include "usb_moded-lock.h"
Mar 22, 2011
Mar 22, 2011
48
49
50
#include "usb_moded-modesetting.h"
#include "usb_moded-modules.h"
#include "usb_moded-appsync.h"
May 16, 2011
May 16, 2011
51
52
#include "usb_moded-trigger.h"
#include "usb_moded-config.h"
Sep 11, 2011
Sep 11, 2011
53
#include "usb_moded-config-private.h"
Jan 13, 2012
Jan 13, 2012
54
#include "usb_moded-network.h"
Jan 17, 2013
Jan 17, 2013
55
#include "usb_moded-mac.h"
Aug 2, 2013
Aug 2, 2013
56
#include "usb_moded-android.h"
Nov 7, 2016
Nov 7, 2016
57
#include "usb_moded-systemd.h"
Mar 13, 2017
Mar 13, 2017
58
Aug 21, 2013
Aug 21, 2013
59
60
61
#ifdef MEEGOLOCK
#include "usb_moded-dsme.h"
#endif
Mar 22, 2011
Mar 22, 2011
62
Feb 14, 2017
Feb 14, 2017
63
64
65
66
67
/* Wakelogging is noisy, do not log it by default */
#ifndef VERBOSE_WAKELOCKING
# define VERBOSE_WAKELOCKING 0
#endif
Mar 22, 2011
Mar 22, 2011
68
69
/* global definitions */
Nov 7, 2016
Nov 7, 2016
70
71
72
static int usb_moded_exitcode = EXIT_FAILURE;
static GMainLoop *usb_moded_mainloop = NULL;
Mar 22, 2011
Mar 22, 2011
73
74
75
76
extern const char *log_name;
extern int log_level;
extern int log_type;
Sep 10, 2013
Sep 10, 2013
77
78
gboolean rescue_mode = FALSE;
gboolean diag_mode = FALSE;
Oct 2, 2012
Oct 2, 2012
79
gboolean hw_fallback = FALSE;
Jun 2, 2014
Jun 2, 2014
80
gboolean android_broken_usb = FALSE;
Apr 19, 2015
Apr 19, 2015
81
82
gboolean android_ignore_udev_events = FALSE;
gboolean android_ignore_next_udev_disconnect_event = FALSE;
Jan 20, 2014
Jan 20, 2014
83
84
85
#ifdef SYSTEMD
static gboolean systemd_notify = FALSE;
#endif
Sep 10, 2013
Sep 10, 2013
86
Apr 26, 2016
Apr 26, 2016
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
/** Default allowed cable detection delay
*
* To comply with USB standards, the delay should be
* less than 2 seconds to ensure timely enumeration.
*
* Any value <= zero means no delay.
*/
#define CABLE_CONNECTION_DELAY_DEFAULT 0
/** Maximum allowed cable detection delay
*
* Must be shorter than initial probing delay expected by
* dsme (currently 5 seconds) to avoid reboot loops in
* act dead mode.
*
* And shorter than USB_MODED_SUSPEND_DELAY_DEFAULT_MS to
* allow the timer to trigger also in display off scenarios.
*/
#define CABLE_CONNECTION_DELAY_MAXIMUM 4000
/** Currently allowed cable detection delay
*/
int cable_connection_delay = CABLE_CONNECTION_DELAY_DEFAULT;
/** Helper for setting allowed cable detection delay
*
* Used for implementing --max-cable-delay=<ms> option.
*/
static void set_cable_connection_delay(int delay_ms)
{
if( delay_ms < CABLE_CONNECTION_DELAY_MAXIMUM )
cable_connection_delay = delay_ms;
else {
cable_connection_delay = CABLE_CONNECTION_DELAY_MAXIMUM;
log_warning("using maximum connection delay: %d ms",
cable_connection_delay);
}
}
Mar 22, 2011
Mar 22, 2011
127
struct usb_mode current_mode;
Jul 14, 2011
Jul 14, 2011
128
guint charging_timeout = 0;
May 10, 2011
May 10, 2011
129
static GList *modelist;
Mar 22, 2011
Mar 22, 2011
130
131
/* static helper functions */
May 17, 2011
May 17, 2011
132
static gboolean set_disconnected(gpointer data);
Apr 30, 2014
Apr 30, 2014
133
static gboolean set_disconnected_silent(gpointer data);
Mar 22, 2011
Mar 22, 2011
134
135
136
static void usb_moded_init(void);
static gboolean charging_fallback(gpointer data);
static void usage(void);
Nov 7, 2016
Nov 7, 2016
137
static bool init_done_p(void);
Mar 22, 2011
Mar 22, 2011
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* ============= Implementation starts here =========================================== */
/** set the usb connection status
*
* @param connected The connection status, true for connected
*
*/
void set_usb_connected(gboolean connected)
{
if(connected)
{
/* do not go through the routine if already connected to avoid
spurious load/unloads due to faulty signalling
NOKIA: careful with devicelock
*/
Jan 12, 2015
Jan 12, 2015
154
if(current_mode.connected == connected)
Mar 22, 2011
Mar 22, 2011
155
return;
May 17, 2011
May 17, 2011
156
Jul 14, 2011
Jul 14, 2011
157
158
159
160
161
if(charging_timeout)
{
g_source_remove(charging_timeout);
charging_timeout = 0;
}
Mar 22, 2011
Mar 22, 2011
162
current_mode.connected = TRUE;
Sep 30, 2013
Sep 30, 2013
163
164
165
/* signal usb connected */
log_debug("usb connected\n");
usb_moded_send_signal(USB_CONNECTED);
Mar 22, 2011
Mar 22, 2011
166
167
168
set_usb_connected_state();
}
else
Jun 27, 2011
Jun 27, 2011
169
{
Oct 8, 2013
Oct 8, 2013
170
171
if(current_mode.connected == FALSE)
return;
Apr 19, 2015
Apr 19, 2015
172
173
174
175
if(android_ignore_next_udev_disconnect_event) {
android_ignore_next_udev_disconnect_event = FALSE;
return;
}
Jun 27, 2011
Jun 27, 2011
176
177
current_mode.connected = FALSE;
set_disconnected(NULL);
Jun 2, 2014
Jun 2, 2014
178
179
180
181
182
183
/* Some android kernels check for an active gadget to enable charging and
* cable detection, meaning USB is completely dead unless we keep the gadget
* active
*/
if(current_mode.android_usb_broken)
set_android_charging_mode();
May 23, 2015
May 23, 2015
184
185
186
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Jun 27, 2011
Jun 27, 2011
187
}
May 17, 2011
May 17, 2011
188
189
190
191
192
}
static gboolean set_disconnected(gpointer data)
{
Nov 7, 2012
Nov 7, 2012
193
194
/* let usb settle */
sleep(1);
Jun 27, 2011
Jun 27, 2011
195
196
197
198
/* only disconnect for real if we are actually still disconnected */
if(!get_usb_connection_state())
{
log_debug("usb disconnected\n");
Jul 21, 2011
Jul 21, 2011
199
200
/* signal usb disconnected */
usb_moded_send_signal(USB_DISCONNECTED);
Oct 8, 2013
Oct 8, 2013
201
/* unload modules and general cleanup if not charging */
Aug 26, 2014
Aug 26, 2014
202
203
if(strcmp(get_usb_mode(), MODE_CHARGING) ||
strcmp(get_usb_mode(), MODE_CHARGING_FALLBACK))
Aug 8, 2012
Aug 8, 2012
204
usb_moded_mode_cleanup(get_usb_module());
Nov 7, 2012
Nov 7, 2012
205
/* Nothing else as we do not need to do anything for cleaning up charging mode */
Jun 27, 2011
Jun 27, 2011
206
usb_moded_module_cleanup(get_usb_module());
Jul 15, 2011
Jul 15, 2011
207
set_usb_mode(MODE_UNDEFINED);
Mar 22, 2011
Mar 22, 2011
208
Jun 27, 2011
Jun 27, 2011
209
210
}
return FALSE;
Mar 22, 2011
Mar 22, 2011
211
212
}
Apr 30, 2014
Apr 30, 2014
213
214
215
216
217
218
219
/* set disconnected without sending signals. */
static gboolean set_disconnected_silent(gpointer data)
{
if(!get_usb_connection_state())
{
log_debug("Resetting connection data after HUP\n");
/* unload modules and general cleanup if not charging */
Aug 26, 2014
Aug 26, 2014
220
221
if(strcmp(get_usb_mode(), MODE_CHARGING) ||
strcmp(get_usb_mode(), MODE_CHARGING_FALLBACK))
Apr 30, 2014
Apr 30, 2014
222
223
224
225
226
227
228
229
230
usb_moded_mode_cleanup(get_usb_module());
/* Nothing else as we do not need to do anything for cleaning up charging mode */
usb_moded_module_cleanup(get_usb_module());
set_usb_mode(MODE_UNDEFINED);
}
return FALSE;
}
May 10, 2013
May 10, 2013
231
232
233
234
235
/** set and track charger state
*
*/
void set_charger_connected(gboolean state)
{
Dec 4, 2014
Dec 4, 2014
236
237
/* check if charger is already connected
to avoid spamming dbus */
Jan 12, 2015
Jan 12, 2015
238
if(current_mode.connected == state)
Dec 4, 2014
Dec 4, 2014
239
240
return;
May 10, 2013
May 10, 2013
241
242
243
244
if(state)
{
usb_moded_send_signal(CHARGER_CONNECTED);
set_usb_mode(MODE_CHARGER);
Dec 4, 2014
Dec 4, 2014
245
current_mode.connected = TRUE;
May 10, 2013
May 10, 2013
246
247
248
}
else
{
Sep 25, 2013
Sep 25, 2013
249
current_mode.connected = FALSE;
May 10, 2013
May 10, 2013
250
251
usb_moded_send_signal(CHARGER_DISCONNECTED);
set_usb_mode(MODE_UNDEFINED);
Dec 4, 2014
Dec 4, 2014
252
current_mode.connected = FALSE;
May 10, 2013
May 10, 2013
253
254
}
}
Feb 14, 2017
Feb 14, 2017
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
/** Check if we can/should leave charging fallback mode
*/
void
rethink_usb_charging_fallback(void)
{
/* Cable must be connected and suitable usb-mode mode
* selected for any of this to apply.
*/
if( !get_usb_connection_state() )
goto EXIT;
const char *usb_mode = get_usb_mode();
if( strcmp(usb_mode, MODE_UNDEFINED) &&
strcmp(usb_mode, MODE_CHARGING_FALLBACK) )
goto EXIT;
/* If device locking is supported, the device must be in
* unlocked state (or rescue mode must be active).
*/
#ifdef MEEGOLOCK
if( !usb_moded_get_export_permission() && !rescue_mode ) {
log_notice("device is locked; stay in %s", usb_mode);
goto EXIT;
}
#endif
/* Device must be in USER state or in rescue mode
*/
Mar 13, 2017
Mar 13, 2017
284
#ifdef MEEGOLOCK
Feb 14, 2017
Feb 14, 2017
285
286
287
288
if( !is_in_user_state() && !rescue_mode ) {
log_notice("device is not in USER mode; stay in %s", usb_mode);
goto EXIT;
}
Mar 13, 2017
Mar 13, 2017
289
#endif
Feb 14, 2017
Feb 14, 2017
290
291
292
293
294
295
296
log_debug("attempt to leave %s", usb_mode);
set_usb_connected_state();
EXIT:
return;
}
May 10, 2013
May 10, 2013
297
Mar 22, 2011
Mar 22, 2011
298
299
300
301
302
/** set the chosen usb state
*
*/
void set_usb_connected_state(void)
{
Nov 11, 2014
Nov 11, 2014
303
char *mode_to_set;
Mar 22, 2011
Mar 22, 2011
304
Feb 15, 2013
Feb 15, 2013
305
306
if(rescue_mode)
{
Feb 15, 2013
Feb 15, 2013
307
log_debug("Entering rescue mode!\n");
Feb 15, 2013
Feb 15, 2013
308
309
310
set_usb_mode(MODE_DEVELOPER);
return;
}
Oct 9, 2013
Oct 9, 2013
311
else if(diag_mode)
Sep 10, 2013
Sep 10, 2013
312
313
314
315
316
317
318
319
320
321
{
log_debug("Entering diagnostic mode!\n");
if(modelist)
{
GList *iter = modelist;
struct mode_list_elem *data = iter->data;
set_usb_mode(data->mode_name);
}
return;
}
Oct 9, 2013
Oct 9, 2013
322
323
324
mode_to_set = get_mode_setting();
Mar 1, 2012
Mar 1, 2012
325
#ifdef MEEGOLOCK
Sep 13, 2013
Sep 13, 2013
326
/* check if we are allowed to export system contents 0 is unlocked */
Feb 14, 2017
Feb 14, 2017
327
gboolean can_export = usb_moded_get_export_permission();
Aug 21, 2013
Aug 21, 2013
328
329
/* We check also if the device is in user state or not.
If not we do not export anything. We presume ACT_DEAD charging */
Feb 14, 2017
Feb 14, 2017
330
if(mode_to_set && can_export && is_in_user_state())
Mar 22, 2011
Mar 22, 2011
331
#else
Mar 1, 2012
Mar 1, 2012
332
if(mode_to_set)
Mar 1, 2012
Mar 1, 2012
333
#endif /* MEEGOLOCK */
Mar 22, 2011
Mar 22, 2011
334
{
Aug 5, 2014
Aug 5, 2014
335
336
337
338
339
340
/* This is safe to do here as the starting condition is
MODE_UNDEFINED, and having a devicelock being activated when
a mode is set will not interrupt it */
if(!strcmp(mode_to_set, current_mode.mode))
goto end;
Mar 22, 2011
Mar 22, 2011
341
342
343
344
345
346
347
if(!strcmp(MODE_ASK, mode_to_set))
{
/* send signal, mode will be set when the dialog service calls
the set_mode method call.
*/
usb_moded_send_signal(USB_CONNECTED_DIALOG_SHOW);
/* fallback to charging mode after 3 seconds */
Jul 7, 2016
Jul 7, 2016
348
349
if( charging_timeout )
g_source_remove(charging_timeout);
Jul 14, 2011
Jul 14, 2011
350
charging_timeout = g_timeout_add_seconds(3, charging_fallback, NULL);
Mar 22, 2011
Mar 22, 2011
351
352
353
354
355
356
357
358
359
/* in case there was nobody listening for the UI, they will know
that the UI is needed by requesting the current mode */
set_usb_mode(MODE_ASK);
}
else
set_usb_mode(mode_to_set);
}
else
{
Aug 14, 2013
Aug 14, 2013
360
/* config is corrupted or we do not have a mode configured, fallback to charging
Mar 22, 2011
Mar 22, 2011
361
362
363
We also fall back here in case the device is locked and we do not
export the system contents. Or if we are in acting dead mode.
*/
Aug 26, 2014
Aug 26, 2014
364
set_usb_mode(MODE_CHARGING_FALLBACK);
Mar 22, 2011
Mar 22, 2011
365
}
Aug 5, 2014
Aug 5, 2014
366
end:
Nov 11, 2014
Nov 11, 2014
367
free(mode_to_set);
Mar 22, 2011
Mar 22, 2011
368
369
370
371
372
373
374
375
376
}
/** set the usb mode
*
* @param mode The requested USB mode
*
*/
void set_usb_mode(const char *mode)
{
Jan 13, 2012
Jan 13, 2012
377
378
/* set return to 1 to be sure to error out if no matching mode is found either */
int ret=1, net=0;
Jun 19, 2013
Jun 19, 2013
379
Dec 10, 2014
Dec 10, 2014
380
381
log_debug("Setting %s\n", mode);
Aug 26, 2014
Aug 26, 2014
382
383
/* CHARGING AND FALLBACK CHARGING are always ok to set, so this can be done
before the optional second device lock check */
Aug 26, 2014
Aug 26, 2014
384
if(!strcmp(mode, MODE_CHARGING) || !strcmp(mode, MODE_CHARGING_FALLBACK))
Mar 22, 2011
Mar 22, 2011
385
386
387
388
389
390
{
check_module_state(MODULE_MASS_STORAGE);
/* for charging we use a fake file_storage (blame USB certification for this insanity */
set_usb_module(MODULE_MASS_STORAGE);
/* MODULE_CHARGING has all the parameters defined, so it will not match the g_file_storage rule in usb_moded_load_module */
ret = usb_moded_load_module(MODULE_CHARGING);
Aug 14, 2013
Aug 14, 2013
391
392
/* if charging mode setting did not succeed we might be dealing with android */
if(ret)
Nov 29, 2013
Nov 29, 2013
393
{
Apr 19, 2015
Apr 19, 2015
394
395
396
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Nov 29, 2013
Nov 29, 2013
397
set_usb_module(MODULE_NONE);
Aug 14, 2013
Aug 14, 2013
398
ret = set_android_charging_mode();
Nov 29, 2013
Nov 29, 2013
399
}
Mar 22, 2011
Mar 22, 2011
400
401
goto end;
}
Aug 26, 2014
Aug 26, 2014
402
Dec 10, 2014
Dec 10, 2014
403
404
405
406
407
408
409
/* Dedicated charger mode needs nothing to be done and no user interaction */
if(!strcmp(mode, MODE_CHARGER))
{
ret = 0;
goto end;
}
Aug 26, 2014
Aug 26, 2014
410
411
412
413
414
#ifdef MEEGOLOCK
/* check if we are allowed to export system contents 0 is unlocked */
/* In ACTDEAD export is always ok */
if(is_in_user_state())
{
Feb 14, 2017
Feb 14, 2017
415
gboolean can_export = usb_moded_get_export_permission();
Aug 26, 2014
Aug 26, 2014
416
Feb 14, 2017
Feb 14, 2017
417
if(!can_export && !rescue_mode)
Aug 26, 2014
Aug 26, 2014
418
419
420
421
422
423
424
{
log_debug("Secondary device lock check failed. Not setting mode!\n");
goto end;
}
}
#endif /* MEEGOLOCK */
Dec 10, 2014
Dec 10, 2014
425
426
427
/* nothing needs to be done for this mode but signalling.
Handled here to avoid issues with ask menu and devicelock */
if(!strcmp(mode, MODE_ASK))
Jul 21, 2012
Jul 21, 2012
428
429
{
ret = 0;
May 27, 2013
May 27, 2013
430
goto end;
Jul 21, 2012
Jul 21, 2012
431
}
Mar 22, 2011
Mar 22, 2011
432
May 10, 2011
May 10, 2011
433
434
435
436
437
438
439
440
441
442
/* go through all the dynamic modes if the modelist exists*/
if(modelist)
{
GList *iter;
for( iter = modelist; iter; iter = g_list_next(iter) )
{
struct mode_list_elem *data = iter->data;
if(!strcmp(mode, data->mode_name))
{
Jun 19, 2013
Jun 19, 2013
443
log_debug("Matching mode %s found.\n", mode);
May 10, 2011
May 10, 2011
444
445
446
check_module_state(data->mode_module);
set_usb_module(data->mode_module);
ret = usb_moded_load_module(data->mode_module);
Jun 19, 2013
Jun 19, 2013
447
448
/* set data before calling any of the dynamic mode functions
as they will use the get_usb_mode_data function */
May 27, 2013
May 27, 2013
449
set_usb_mode_data(data);
Oct 22, 2013
Oct 22, 2013
450
/* check if modules are ok before continuing */
Apr 19, 2015
Apr 19, 2015
451
452
453
454
if(!ret) {
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Oct 22, 2013
Oct 22, 2013
455
ret = set_dynamic_mode();
Apr 19, 2015
Apr 19, 2015
456
}
May 10, 2011
May 10, 2011
457
458
459
460
}
}
}
Mar 22, 2011
Mar 22, 2011
461
end:
May 27, 2013
May 27, 2013
462
463
/* if ret != 0 then usb_module loading failed
no mode matched or MODE_UNDEFINED was requested */
Mar 22, 2011
Mar 22, 2011
464
465
466
467
if(ret)
{
set_usb_module(MODULE_NONE);
mode = MODE_UNDEFINED;
May 27, 2013
May 27, 2013
468
set_usb_mode_data(NULL);
Jan 10, 2014
Jan 10, 2014
469
log_debug("mode setting failed or device disconnected, mode to set was = %s\n", mode);
Mar 22, 2011
Mar 22, 2011
470
}
Aug 15, 2012
Aug 15, 2012
471
472
if(net)
log_debug("Network setting failed!\n");
Oct 29, 2013
Oct 29, 2013
473
474
free(current_mode.mode);
current_mode.mode = strdup(mode);
Aug 26, 2014
Aug 26, 2014
475
476
477
478
479
/* CHARGING_FALLBACK is an internal mode not to be broadcasted outside */
if(!strcmp(mode, MODE_CHARGING_FALLBACK))
usb_moded_send_signal(MODE_CHARGING);
else
usb_moded_send_signal(get_usb_mode());
Mar 22, 2011
Mar 22, 2011
480
}
Mar 4, 2013
Mar 4, 2013
481
May 10, 2011
May 10, 2011
482
483
484
/** check if a given usb_mode exists
*
* @param mode The mode to look for
Oct 31, 2013
Oct 31, 2013
485
* @return 0 if mode exists, 1 if it does not exist
May 10, 2011
May 10, 2011
486
487
488
489
490
*
*/
int valid_mode(const char *mode)
{
Aug 26, 2014
Aug 26, 2014
491
492
493
/* MODE_ASK, MODE_CHARGER and MODE_CHARGING_FALLBACK are not modes that are settable seen their special 'internal' status
so we only check the modes that are announed outside. Only exception is the built in MODE_CHARGING */
if(!strcmp(MODE_CHARGING, mode))
May 10, 2011
May 10, 2011
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
return(0);
else
{
/* check dynamic modes */
if(modelist)
{
GList *iter;
for( iter = modelist; iter; iter = g_list_next(iter) )
{
struct mode_list_elem *data = iter->data;
if(!strcmp(mode, data->mode_name))
return(0);
}
}
}
return(1);
}
Mar 22, 2011
Mar 22, 2011
513
Mar 4, 2013
Mar 4, 2013
514
515
516
517
518
/** make a list of all available usb modes
*
* @return a comma-separated list of modes (MODE_ASK not included as it is not a real mode)
*
*/
May 27, 2013
May 27, 2013
519
gchar *get_mode_list(void)
Mar 4, 2013
Mar 4, 2013
520
521
{
May 27, 2013
May 27, 2013
522
GString *modelist_str;
Dec 15, 2015
Dec 15, 2015
523
char *hidden_modes_list;
Dec 26, 2015
Dec 26, 2015
524
gchar **hidden_mode_split = NULL;
Dec 15, 2015
Dec 15, 2015
525
526
527
528
529
530
531
532
int hiddenmode = 0, i;
hidden_modes_list = get_hidden_modes();
if(hidden_modes_list)
{
hidden_mode_split = g_strsplit(hidden_modes_list, ",", 0);
}
May 27, 2013
May 27, 2013
533
534
modelist_str = g_string_new(NULL);
Mar 4, 2013
Mar 4, 2013
535
Mar 21, 2014
Mar 21, 2014
536
if(!diag_mode)
Mar 4, 2013
Mar 4, 2013
537
538
{
/* check dynamic modes */
Mar 21, 2014
Mar 21, 2014
539
if(modelist)
Mar 4, 2013
Mar 4, 2013
540
541
542
543
544
545
{
GList *iter;
for( iter = modelist; iter; iter = g_list_next(iter) )
{
struct mode_list_elem *data = iter->data;
Mar 9, 2016
Mar 9, 2016
546
if(hidden_modes_list && hidden_mode_split)
Dec 15, 2015
Dec 15, 2015
547
548
549
550
551
552
553
554
555
556
557
for(i = 0; hidden_mode_split[i] != NULL; i++)
{
if(!strcmp(hidden_mode_split[i], data->mode_name))
hiddenmode = 1;
}
if(hiddenmode)
{
hiddenmode = 0;
continue;
}
May 27, 2013
May 27, 2013
558
modelist_str = g_string_append(modelist_str, data->mode_name);
Jun 19, 2013
Jun 19, 2013
559
modelist_str = g_string_append(modelist_str, ", ");
Mar 4, 2013
Mar 4, 2013
560
561
}
}
Mar 21, 2014
Mar 21, 2014
562
Mar 9, 2016
Mar 9, 2016
563
if(hidden_mode_split)
Dec 26, 2015
Dec 26, 2015
564
565
g_strfreev(hidden_mode_split);
Mar 21, 2014
Mar 21, 2014
566
567
568
569
570
571
572
573
574
/* end with charging mode */
g_string_append(modelist_str, MODE_CHARGING);
return(g_string_free(modelist_str, FALSE));
}
else
{
/* diag mode. there is only one active mode */
g_string_append(modelist_str, MODE_DIAG);
return(g_string_free(modelist_str, FALSE));
Mar 4, 2013
Mar 4, 2013
575
576
577
}
}
Mar 22, 2011
Mar 22, 2011
578
579
580
581
582
/** get the usb mode
*
* @return the currently set mode
*
*/
Jan 13, 2012
Jan 13, 2012
583
inline const char * get_usb_mode(void)
Mar 22, 2011
Mar 22, 2011
584
585
586
587
588
589
590
591
592
{
return(current_mode.mode);
}
/** set the loaded module
*
* @param module The module name for the requested mode
*
*/
Mar 30, 2013
Mar 30, 2013
593
void set_usb_module(const char *module)
Mar 22, 2011
Mar 22, 2011
594
{
Oct 29, 2013
Oct 29, 2013
595
596
free(current_mode.module);
current_mode.module = strdup(module);
Mar 22, 2011
Mar 22, 2011
597
598
599
600
601
602
603
}
/** get the supposedly loaded module
*
* @return The name of the loaded module
*
*/
Jan 13, 2012
Jan 13, 2012
604
inline const char * get_usb_module(void)
Mar 22, 2011
Mar 22, 2011
605
606
607
608
609
610
611
612
613
{
return(current_mode.module);
}
/** get if the cable is connected or not
*
* @ return A boolean value for connected (TRUE) or not (FALSE)
*
*/
Jan 13, 2012
Jan 13, 2012
614
inline gboolean get_usb_connection_state(void)
Mar 22, 2011
Mar 22, 2011
615
616
617
618
{
return current_mode.connected;
}
May 17, 2011
May 17, 2011
619
620
/** set connection status for some corner cases
*
Jun 27, 2011
Jun 27, 2011
621
* @param state The connection status that needs to be set. Connected (TRUE)
May 17, 2011
May 17, 2011
622
623
*
*/
Jan 13, 2012
Jan 13, 2012
624
inline void set_usb_connection_state(gboolean state)
May 17, 2011
May 17, 2011
625
626
627
{
current_mode.connected = state;
}
Mar 22, 2011
Mar 22, 2011
628
May 27, 2013
May 27, 2013
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
/** set the mode_list_elem data
*
* @param data mode_list_element pointer
*
*/
void set_usb_mode_data(struct mode_list_elem *data)
{
current_mode.data = data;
}
/** get the usb mode data
*
* @return a pointer to the usb mode data
*
*/
inline struct mode_list_elem * get_usb_mode_data(void)
{
return(current_mode.data);
}
Mar 22, 2011
Mar 22, 2011
649
650
651
652
653
654
655
/*================ Static functions ===================================== */
/* set default values for usb_moded */
static void usb_moded_init(void)
{
current_mode.connected = FALSE;
current_mode.mounted = FALSE;
Oct 29, 2013
Oct 29, 2013
656
657
current_mode.mode = strdup(MODE_UNDEFINED);
current_mode.module = strdup(MODULE_NONE);
Mar 22, 2011
Mar 22, 2011
658
Jun 2, 2014
Jun 2, 2014
659
660
661
if(android_broken_usb)
current_mode.android_usb_broken = TRUE;
Mar 31, 2013
Mar 31, 2013
662
663
664
665
666
667
668
/* check config, merge or create if outdated */
if(conf_file_merge() != 0)
{
log_err("Cannot create or find a valid configuration. Exiting.\n");
exit(1);
}
Mar 22, 2011
Mar 22, 2011
669
#ifdef APP_SYNC
Mar 10, 2014
Mar 10, 2014
670
readlist(diag_mode);
Nov 7, 2016
Nov 7, 2016
671
#endif
Mar 1, 2012
Mar 1, 2012
672
Nov 2, 2016
Nov 2, 2016
673
674
675
/* always read dyn modes even if appsync is not used */
modelist = read_mode_list(diag_mode);
May 16, 2011
May 16, 2011
676
677
if(check_trigger())
trigger_init();
Nov 13, 2012
Nov 13, 2012
678
Jan 21, 2013
Jan 21, 2013
679
/* Set-up mac address before kmod */
Jan 18, 2013
Jan 18, 2013
680
if(access("/etc/modprobe.d/g_ether.conf", F_OK) != 0)
Jan 17, 2013
Jan 17, 2013
681
682
683
{
generate_random_mac();
}
Jan 21, 2013
Jan 21, 2013
684
Oct 22, 2013
Oct 22, 2013
685
/* kmod init */
Aug 5, 2014
Aug 5, 2014
686
usb_moded_module_ctx_init();
Jan 21, 2013
Jan 21, 2013
687
Aug 2, 2013
Aug 2, 2013
688
689
690
/* Android specific stuff */
if(android_settings())
android_init_values();
Mar 22, 2011
Mar 22, 2011
691
692
693
/* TODO: add more start-up clean-up and init here if needed */
}
Nov 7, 2016
Nov 7, 2016
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
/** Release resources allocated by usb_moded_init()
*/
static void usb_moded_cleanup(void)
{
/* Undo usb_moded_module_ctx_init() */
usb_moded_module_ctx_cleanup();
/* Undo trigger_init() */
trigger_stop();
/* Undo read_mode_list() */
free_mode_list(modelist);
#ifdef APP_SYNC
/* Undo readlist() */
free_appsync_list();
#endif
/* Release dynamic memory */
free(current_mode.module),
current_mode.module = 0;
free(current_mode.mode),
current_mode.mode = 0;
}
Mar 22, 2011
Mar 22, 2011
720
721
722
723
724
725
726
727
/* charging fallback handler */
static gboolean charging_fallback(gpointer data)
{
/* if a mode has been set we don't want it changed to charging
* after 5 seconds. We set it to ask, so anything different
* means a mode has been set */
if(strcmp(get_usb_mode(), MODE_ASK) != 0)
return FALSE;
Feb 1, 2013
Feb 1, 2013
728
Aug 26, 2014
Aug 26, 2014
729
set_usb_mode(MODE_CHARGING_FALLBACK);
Mar 22, 2011
Mar 22, 2011
730
731
732
/* since this is the fallback, we keep an indication
for the UI, as we are not really in charging mode.
*/
Oct 29, 2013
Oct 29, 2013
733
734
free(current_mode.mode);
current_mode.mode = strdup(MODE_ASK);
Jun 6, 2013
Jun 6, 2013
735
current_mode.data = NULL;
Jul 14, 2011
Jul 14, 2011
736
charging_timeout = 0;
Mar 22, 2011
Mar 22, 2011
737
738
739
740
741
log_info("Falling back on charging mode.\n");
return(FALSE);
}
Oct 22, 2013
Oct 22, 2013
742
743
static void sigint_handler(int signum)
{
Nov 7, 2016
Nov 7, 2016
744
log_debug("handle signal: %s\n", strsignal(signum));
Feb 18, 2014
Feb 18, 2014
745
Nov 7, 2016
Nov 7, 2016
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
if( signum == SIGTERM )
{
/* Assume: Stopped by init process */
usb_moded_stop(EXIT_SUCCESS);
}
else if( signum == SIGHUP )
{
struct mode_list_elem *data;
/* clean up current mode */
data = get_usb_mode_data();
set_disconnected_silent(data);
/* clear existing data to be sure */
set_usb_mode_data(NULL);
/* free and read in modelist again */
free_mode_list(modelist);
Mar 21, 2014
Mar 21, 2014
762
Nov 7, 2016
Nov 7, 2016
763
modelist = read_mode_list(diag_mode);
Mar 18, 2014
Mar 18, 2014
764
Mar 21, 2014
Mar 21, 2014
765
send_supported_modes_signal();
Nov 7, 2016
Nov 7, 2016
766
767
768
769
770
}
else
{
usb_moded_stop(EXIT_FAILURE);
}
Oct 22, 2013
Oct 22, 2013
771
772
}
Mar 22, 2011
Mar 22, 2011
773
774
775
776
777
778
779
/* Display usage information */
static void usage(void)
{
fprintf(stdout,
"Usage: usb_moded [OPTION]...\n"
"USB mode daemon\n"
"\n"
Jun 2, 2014
Jun 2, 2014
780
" -a, --android_usb_broken \tkeep gadget active on broken android kernels\n"
Apr 19, 2015
Apr 19, 2015
781
" -i, --android_usb_broken_udev_events \tignore incorrect disconnect events after mode setting\n"
Jun 2, 2014
Jun 2, 2014
782
783
784
785
786
787
788
" -f, --fallback \tassume always connected\n"
" -s, --force-syslog \t\tlog to syslog\n"
" -T, --force-stderr \t\tlog to stderr\n"
" -D, --debug \t\tturn on debug printing\n"
" -d, --diag \t\tturn on diag mode\n"
" -h, --help \t\tdisplay this help and exit\n"
" -r, --rescue \t\trescue mode\n"
Jan 20, 2014
Jan 20, 2014
789
#ifdef SYSTEMD
Jun 2, 2014
Jun 2, 2014
790
" -n, --systemd \t\tnotify systemd when started up\n"
Jan 20, 2014
Jan 20, 2014
791
#endif
Jun 2, 2014
Jun 2, 2014
792
" -v, --version \t\toutput version information and exit\n"
Apr 26, 2016
Apr 26, 2016
793
" -m, --max-cable-delay=<ms>\tmaximum delay before accepting cable connection\n"
Mar 22, 2011
Mar 22, 2011
794
795
796
"\n");
}
Dec 15, 2015
Dec 15, 2015
797
void send_supported_modes_signal(void)
Mar 18, 2014
Mar 18, 2014
798
799
800
801
802
803
804
{
/* Send supported modes signal */
gchar *mode_list = get_mode_list();
usb_moded_send_supported_modes_signal(mode_list);
g_free(mode_list);
}
Apr 4, 2016
Apr 4, 2016
805
806
807
808
809
810
811
812
813
814
void send_hidden_modes_signal(void)
{
/* Send hidden modes signal */
gchar *mode_list = get_hidden_modes();
if(mode_list) {
usb_moded_send_hidden_modes_signal(mode_list);
g_free(mode_list);
}
}
Mar 26, 2014
Mar 26, 2014
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
/** Pipe fd for transferring signals to mainloop context */
static int sigpipe_fd = -1;
/** Glib io watch callback for reading signals from signal pipe
*
* @param channel glib io channel
* @param condition wakeup reason
* @param data user data (unused)
*
* @return TRUE to keep the iowatch, or FALSE to disable it
*/
static gboolean sigpipe_read_signal_cb(GIOChannel *channel,
GIOCondition condition,
gpointer data)
{
gboolean keep_watch = FALSE;
int fd, rc, sig;
(void)data;
/* Should never happen, but we must disable the io watch
* if the pipe fd still goes into unexpected state ... */
if( condition & (G_IO_ERR | G_IO_HUP | G_IO_NVAL) )
goto EXIT;
if( (fd = g_io_channel_unix_get_fd(channel)) == -1 )
goto EXIT;
/* If the actual read fails, terminate with core dump */
rc = TEMP_FAILURE_RETRY(read(fd, &sig, sizeof sig));
if( rc != (int)sizeof sig )
abort();
/* handle the signal */
sigint_handler(sig);
keep_watch = TRUE;
EXIT:
if( !keep_watch )
log_crit("disabled signal handler io watch\n");
return keep_watch;
}
/** Async signal handler for writing signals to signal pipe
*
* @param sig the signal number to pass to mainloop via pipe
*/
static void sigpipe_write_signal_cb(int sig)
{
/* NOTE: This function *MUST* be kept async-signal-safe! */
static volatile int exit_tries = 0;
int rc;
/* Restore signal handler */
signal(sig, sigpipe_write_signal_cb);
switch( sig )
{
case SIGINT:
case SIGQUIT:
case SIGTERM:
/* If we receive multiple signals that should have
* caused the process to exit, assume that mainloop
* is stuck and terminate with core dump. */
if( ++exit_tries >= 2 )
abort();
break;
default:
break;
}
/* Transfer the signal to mainloop via pipe ... */
rc = TEMP_FAILURE_RETRY(write(sigpipe_fd, &sig, sizeof sig));
/* ... or terminate with core dump in case of failures */
if( rc != (int)sizeof sig )
abort();
}
/** Create a pipe and io watch for handling signal from glib mainloop
*
* @return TRUE on success, or FALSE in case of errors
*/
static gboolean sigpipe_crate_pipe(void)
{
gboolean res = FALSE;
GIOChannel *chn = 0;
int pfd[2] = { -1, -1 };
if( pipe2(pfd, O_CLOEXEC) == -1 )
goto EXIT;
if( (chn = g_io_channel_unix_new(pfd[0])) == 0 )
goto EXIT;
if( !g_io_add_watch(chn, G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
sigpipe_read_signal_cb, 0) )
goto EXIT;
g_io_channel_set_close_on_unref(chn, TRUE), pfd[0] = -1;
sigpipe_fd = pfd[1], pfd[1] = -1;
res = TRUE;
EXIT:
if( chn ) g_io_channel_unref(chn);
if( pfd[0] != -1 ) close(pfd[0]);
if( pfd[1] != -1 ) close(pfd[1]);
return res;
}
/** Install async signal handlers
*/
static void sigpipe_trap_signals(void)
{
static const int sig[] =
{
SIGINT,
SIGQUIT,
SIGTERM,
SIGHUP,
-1
};
for( size_t i = 0; sig[i] != -1; ++i )
{
signal(sig[i], sigpipe_write_signal_cb);
}
}
/** Initialize signal trapping
*
* @return TRUE on success, or FALSE in case of errors
*/
static gboolean sigpipe_init(void)
{
gboolean success = FALSE;
if( !sigpipe_crate_pipe() )
goto EXIT;
sigpipe_trap_signals();
success = TRUE;
EXIT:
return success;
}
Apr 26, 2016
Apr 26, 2016
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
/** Write string to already existing sysfs file
*
* Note: Attempts to write to nonexisting files are silently ignored.
*
* @param path Where to write
* @param text What to write
*/
static void write_to_sysfs_file(const char *path, const char *text)
{
int fd = -1;
if (!path || !text)
goto EXIT;
if ((fd = open(path, O_WRONLY)) == -1) {
if (errno != ENOENT) {
Jul 7, 2016
Jul 7, 2016
987
log_warning("%s: open for writing failed: %m", path);
Apr 26, 2016
Apr 26, 2016
988
989
990
991
992
}
goto EXIT;
}
if (write(fd, text, strlen(text)) == -1) {
Jul 7, 2016
Jul 7, 2016
993
log_warning("%s: write failed : %m", path);
Apr 26, 2016
Apr 26, 2016
994
995
996
997
998
999
1000
goto EXIT;
}
EXIT:
if (fd != -1)
close(fd);
}