Skip to content

Latest commit

 

History

History
1219 lines (1052 loc) · 30.3 KB

usb_moded.c

File metadata and controls

1219 lines (1052 loc) · 30.3 KB
 
Mar 22, 2011
Mar 22, 2011
1
2
3
4
/**
@file usb_moded.c
Copyright (C) 2010 Nokia Corporation. All rights reserved.
Dec 6, 2012
Dec 6, 2012
5
Copyright (C) 2012 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>
Mar 22, 2011
Mar 22, 2011
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
27
#include <stdio.h>
Mar 22, 2011
Mar 22, 2011
28
29
30
#include <sys/stat.h>
#include <sys/wait.h>
Oct 22, 2013
Oct 22, 2013
31
#include <signal.h>
Mar 22, 2011
Mar 22, 2011
32
Nov 13, 2012
Nov 13, 2012
33
#include <libkmod.h>
Jan 20, 2014
Jan 20, 2014
34
35
36
#ifdef SYSTEMD
#include <systemd/sd-daemon.h>
#endif
Nov 13, 2012
Nov 13, 2012
37
Mar 22, 2011
Mar 22, 2011
38
39
40
41
42
43
44
#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
45
#include "usb_moded-lock.h"
Mar 22, 2011
Mar 22, 2011
46
47
48
#include "usb_moded-modesetting.h"
#include "usb_moded-modules.h"
#include "usb_moded-appsync.h"
May 16, 2011
May 16, 2011
49
50
#include "usb_moded-trigger.h"
#include "usb_moded-config.h"
Sep 11, 2011
Sep 11, 2011
51
#include "usb_moded-config-private.h"
Jan 13, 2012
Jan 13, 2012
52
#include "usb_moded-network.h"
Jan 17, 2013
Jan 17, 2013
53
#include "usb_moded-mac.h"
Aug 2, 2013
Aug 2, 2013
54
#include "usb_moded-android.h"
Aug 21, 2013
Aug 21, 2013
55
56
57
#ifdef MEEGOLOCK
#include "usb_moded-dsme.h"
#endif
Mar 22, 2011
Mar 22, 2011
58
59
60
/* global definitions */
Oct 22, 2013
Oct 22, 2013
61
GMainLoop *mainloop = NULL;
Mar 22, 2011
Mar 22, 2011
62
63
64
65
extern const char *log_name;
extern int log_level;
extern int log_type;
Sep 10, 2013
Sep 10, 2013
66
67
gboolean rescue_mode = FALSE;
gboolean diag_mode = FALSE;
Oct 2, 2012
Oct 2, 2012
68
gboolean hw_fallback = FALSE;
Jun 2, 2014
Jun 2, 2014
69
gboolean android_broken_usb = FALSE;
Apr 19, 2015
Apr 19, 2015
70
71
gboolean android_ignore_udev_events = FALSE;
gboolean android_ignore_next_udev_disconnect_event = FALSE;
Jan 20, 2014
Jan 20, 2014
72
73
74
#ifdef SYSTEMD
static gboolean systemd_notify = FALSE;
#endif
Sep 10, 2013
Sep 10, 2013
75
Apr 26, 2016
Apr 26, 2016
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
/** 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
116
struct usb_mode current_mode;
Jul 14, 2011
Jul 14, 2011
117
guint charging_timeout = 0;
May 10, 2011
May 10, 2011
118
static GList *modelist;
Mar 22, 2011
Mar 22, 2011
119
120
/* static helper functions */
May 17, 2011
May 17, 2011
121
static gboolean set_disconnected(gpointer data);
Apr 30, 2014
Apr 30, 2014
122
static gboolean set_disconnected_silent(gpointer data);
Mar 22, 2011
Mar 22, 2011
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
static void usb_moded_init(void);
static gboolean charging_fallback(gpointer data);
static void usage(void);
/* ============= 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
142
if(current_mode.connected == connected)
Mar 22, 2011
Mar 22, 2011
143
return;
May 17, 2011
May 17, 2011
144
Jul 14, 2011
Jul 14, 2011
145
146
147
148
149
if(charging_timeout)
{
g_source_remove(charging_timeout);
charging_timeout = 0;
}
Mar 22, 2011
Mar 22, 2011
150
current_mode.connected = TRUE;
Sep 30, 2013
Sep 30, 2013
151
152
153
/* signal usb connected */
log_debug("usb connected\n");
usb_moded_send_signal(USB_CONNECTED);
Mar 22, 2011
Mar 22, 2011
154
155
156
set_usb_connected_state();
}
else
Jun 27, 2011
Jun 27, 2011
157
{
Oct 8, 2013
Oct 8, 2013
158
159
if(current_mode.connected == FALSE)
return;
Apr 19, 2015
Apr 19, 2015
160
161
162
163
if(android_ignore_next_udev_disconnect_event) {
android_ignore_next_udev_disconnect_event = FALSE;
return;
}
Jun 27, 2011
Jun 27, 2011
164
165
current_mode.connected = FALSE;
set_disconnected(NULL);
Jun 2, 2014
Jun 2, 2014
166
167
168
169
170
171
/* 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
172
173
174
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Jun 27, 2011
Jun 27, 2011
175
}
May 17, 2011
May 17, 2011
176
177
178
179
180
}
static gboolean set_disconnected(gpointer data)
{
Nov 7, 2012
Nov 7, 2012
181
182
/* let usb settle */
sleep(1);
Jun 27, 2011
Jun 27, 2011
183
184
185
186
/* 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
187
188
/* signal usb disconnected */
usb_moded_send_signal(USB_DISCONNECTED);
Oct 8, 2013
Oct 8, 2013
189
/* unload modules and general cleanup if not charging */
Aug 26, 2014
Aug 26, 2014
190
191
if(strcmp(get_usb_mode(), MODE_CHARGING) ||
strcmp(get_usb_mode(), MODE_CHARGING_FALLBACK))
Aug 8, 2012
Aug 8, 2012
192
usb_moded_mode_cleanup(get_usb_module());
Nov 7, 2012
Nov 7, 2012
193
/* Nothing else as we do not need to do anything for cleaning up charging mode */
Jun 27, 2011
Jun 27, 2011
194
usb_moded_module_cleanup(get_usb_module());
Jul 15, 2011
Jul 15, 2011
195
set_usb_mode(MODE_UNDEFINED);
Mar 22, 2011
Mar 22, 2011
196
Jun 27, 2011
Jun 27, 2011
197
198
}
return FALSE;
Mar 22, 2011
Mar 22, 2011
199
200
}
Apr 30, 2014
Apr 30, 2014
201
202
203
204
205
206
207
/* 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
208
209
if(strcmp(get_usb_mode(), MODE_CHARGING) ||
strcmp(get_usb_mode(), MODE_CHARGING_FALLBACK))
Apr 30, 2014
Apr 30, 2014
210
211
212
213
214
215
216
217
218
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
219
220
221
222
223
/** set and track charger state
*
*/
void set_charger_connected(gboolean state)
{
Dec 4, 2014
Dec 4, 2014
224
225
/* check if charger is already connected
to avoid spamming dbus */
Jan 12, 2015
Jan 12, 2015
226
if(current_mode.connected == state)
Dec 4, 2014
Dec 4, 2014
227
228
return;
May 10, 2013
May 10, 2013
229
230
231
232
if(state)
{
usb_moded_send_signal(CHARGER_CONNECTED);
set_usb_mode(MODE_CHARGER);
Dec 4, 2014
Dec 4, 2014
233
current_mode.connected = TRUE;
May 10, 2013
May 10, 2013
234
235
236
}
else
{
Sep 25, 2013
Sep 25, 2013
237
current_mode.connected = FALSE;
May 10, 2013
May 10, 2013
238
239
usb_moded_send_signal(CHARGER_DISCONNECTED);
set_usb_mode(MODE_UNDEFINED);
Dec 4, 2014
Dec 4, 2014
240
current_mode.connected = FALSE;
May 10, 2013
May 10, 2013
241
242
243
}
}
Mar 22, 2011
Mar 22, 2011
244
245
246
247
248
/** set the chosen usb state
*
*/
void set_usb_connected_state(void)
{
Nov 11, 2014
Nov 11, 2014
249
char *mode_to_set;
Mar 1, 2012
Mar 1, 2012
250
#ifdef MEEGOLOCK
Feb 15, 2013
Feb 15, 2013
251
int export = 1; /* assume locked */
Mar 1, 2012
Mar 1, 2012
252
#endif /* MEEGOLOCK */
Mar 22, 2011
Mar 22, 2011
253
Feb 15, 2013
Feb 15, 2013
254
255
if(rescue_mode)
{
Feb 15, 2013
Feb 15, 2013
256
log_debug("Entering rescue mode!\n");
Feb 15, 2013
Feb 15, 2013
257
258
259
set_usb_mode(MODE_DEVELOPER);
return;
}
Oct 9, 2013
Oct 9, 2013
260
else if(diag_mode)
Sep 10, 2013
Sep 10, 2013
261
262
263
264
265
266
267
268
269
270
{
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
271
272
273
mode_to_set = get_mode_setting();
Mar 1, 2012
Mar 1, 2012
274
#ifdef MEEGOLOCK
Sep 13, 2013
Sep 13, 2013
275
276
/* check if we are allowed to export system contents 0 is unlocked */
export = usb_moded_get_export_permission();
Aug 21, 2013
Aug 21, 2013
277
278
279
/* We check also if the device is in user state or not.
If not we do not export anything. We presume ACT_DEAD charging */
if(mode_to_set && !export && is_in_user_state())
Mar 22, 2011
Mar 22, 2011
280
#else
Mar 1, 2012
Mar 1, 2012
281
if(mode_to_set)
Mar 1, 2012
Mar 1, 2012
282
#endif /* MEEGOLOCK */
Mar 22, 2011
Mar 22, 2011
283
{
Aug 5, 2014
Aug 5, 2014
284
285
286
287
288
289
/* 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
290
291
292
293
294
295
296
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
297
298
if( charging_timeout )
g_source_remove(charging_timeout);
Jul 14, 2011
Jul 14, 2011
299
charging_timeout = g_timeout_add_seconds(3, charging_fallback, NULL);
Mar 22, 2011
Mar 22, 2011
300
301
302
303
304
305
306
307
308
/* 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
309
/* config is corrupted or we do not have a mode configured, fallback to charging
Mar 22, 2011
Mar 22, 2011
310
311
312
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
313
set_usb_mode(MODE_CHARGING_FALLBACK);
Mar 22, 2011
Mar 22, 2011
314
}
Aug 5, 2014
Aug 5, 2014
315
end:
Nov 11, 2014
Nov 11, 2014
316
free(mode_to_set);
Mar 22, 2011
Mar 22, 2011
317
318
319
320
321
322
323
324
325
}
/** set the usb mode
*
* @param mode The requested USB mode
*
*/
void set_usb_mode(const char *mode)
{
Jan 13, 2012
Jan 13, 2012
326
327
/* 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
328
Jan 14, 2014
Jan 14, 2014
329
330
331
#ifdef MEEGOLOCK
/* Do a second check in case timer suspend causes a race issue */
int export = 1;
Aug 26, 2014
Aug 26, 2014
332
#endif
Jan 14, 2014
Jan 14, 2014
333
Dec 10, 2014
Dec 10, 2014
334
335
log_debug("Setting %s\n", mode);
Aug 26, 2014
Aug 26, 2014
336
337
/* 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
338
if(!strcmp(mode, MODE_CHARGING) || !strcmp(mode, MODE_CHARGING_FALLBACK))
Mar 22, 2011
Mar 22, 2011
339
340
341
342
343
344
{
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
345
346
/* if charging mode setting did not succeed we might be dealing with android */
if(ret)
Nov 29, 2013
Nov 29, 2013
347
{
Apr 19, 2015
Apr 19, 2015
348
349
350
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Nov 29, 2013
Nov 29, 2013
351
set_usb_module(MODULE_NONE);
Aug 14, 2013
Aug 14, 2013
352
ret = set_android_charging_mode();
Nov 29, 2013
Nov 29, 2013
353
}
Mar 22, 2011
Mar 22, 2011
354
355
goto end;
}
Aug 26, 2014
Aug 26, 2014
356
Dec 10, 2014
Dec 10, 2014
357
358
359
360
361
362
363
/* 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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#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())
{
export = usb_moded_get_export_permission();
if(export && !rescue_mode)
{
log_debug("Secondary device lock check failed. Not setting mode!\n");
goto end;
}
}
#endif /* MEEGOLOCK */
Dec 10, 2014
Dec 10, 2014
379
380
381
/* 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
382
383
{
ret = 0;
May 27, 2013
May 27, 2013
384
goto end;
Jul 21, 2012
Jul 21, 2012
385
}
Mar 22, 2011
Mar 22, 2011
386
May 10, 2011
May 10, 2011
387
388
389
390
391
392
393
394
395
396
/* 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
397
log_debug("Matching mode %s found.\n", mode);
May 10, 2011
May 10, 2011
398
399
400
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
401
402
/* 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
403
set_usb_mode_data(data);
Oct 22, 2013
Oct 22, 2013
404
/* check if modules are ok before continuing */
Apr 19, 2015
Apr 19, 2015
405
406
407
408
if(!ret) {
if (android_ignore_udev_events) {
android_ignore_next_udev_disconnect_event = TRUE;
}
Oct 22, 2013
Oct 22, 2013
409
ret = set_dynamic_mode();
Apr 19, 2015
Apr 19, 2015
410
}
May 10, 2011
May 10, 2011
411
412
413
414
}
}
}
Mar 22, 2011
Mar 22, 2011
415
end:
May 27, 2013
May 27, 2013
416
417
/* if ret != 0 then usb_module loading failed
no mode matched or MODE_UNDEFINED was requested */
Mar 22, 2011
Mar 22, 2011
418
419
420
421
if(ret)
{
set_usb_module(MODULE_NONE);
mode = MODE_UNDEFINED;
May 27, 2013
May 27, 2013
422
set_usb_mode_data(NULL);
Jan 10, 2014
Jan 10, 2014
423
log_debug("mode setting failed or device disconnected, mode to set was = %s\n", mode);
Mar 22, 2011
Mar 22, 2011
424
}
Aug 15, 2012
Aug 15, 2012
425
426
if(net)
log_debug("Network setting failed!\n");
Oct 29, 2013
Oct 29, 2013
427
428
free(current_mode.mode);
current_mode.mode = strdup(mode);
Aug 26, 2014
Aug 26, 2014
429
430
431
432
433
/* 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
434
}
Mar 4, 2013
Mar 4, 2013
435
May 10, 2011
May 10, 2011
436
437
438
/** check if a given usb_mode exists
*
* @param mode The mode to look for
Oct 31, 2013
Oct 31, 2013
439
* @return 0 if mode exists, 1 if it does not exist
May 10, 2011
May 10, 2011
440
441
442
443
444
*
*/
int valid_mode(const char *mode)
{
Aug 26, 2014
Aug 26, 2014
445
446
447
/* 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
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
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
467
Mar 4, 2013
Mar 4, 2013
468
469
470
471
472
/** 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
473
gchar *get_mode_list(void)
Mar 4, 2013
Mar 4, 2013
474
475
{
May 27, 2013
May 27, 2013
476
GString *modelist_str;
Dec 15, 2015
Dec 15, 2015
477
char *hidden_modes_list;
Dec 26, 2015
Dec 26, 2015
478
gchar **hidden_mode_split = NULL;
Dec 15, 2015
Dec 15, 2015
479
480
481
482
483
484
485
486
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
487
488
modelist_str = g_string_new(NULL);
Mar 4, 2013
Mar 4, 2013
489
Mar 21, 2014
Mar 21, 2014
490
if(!diag_mode)
Mar 4, 2013
Mar 4, 2013
491
492
{
/* check dynamic modes */
Mar 21, 2014
Mar 21, 2014
493
if(modelist)
Mar 4, 2013
Mar 4, 2013
494
495
496
497
498
499
{
GList *iter;
for( iter = modelist; iter; iter = g_list_next(iter) )
{
struct mode_list_elem *data = iter->data;
Mar 9, 2016
Mar 9, 2016
500
if(hidden_modes_list && hidden_mode_split)
Dec 15, 2015
Dec 15, 2015
501
502
503
504
505
506
507
508
509
510
511
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
512
modelist_str = g_string_append(modelist_str, data->mode_name);
Jun 19, 2013
Jun 19, 2013
513
modelist_str = g_string_append(modelist_str, ", ");
Mar 4, 2013
Mar 4, 2013
514
515
}
}
Mar 21, 2014
Mar 21, 2014
516
Mar 9, 2016
Mar 9, 2016
517
if(hidden_mode_split)
Dec 26, 2015
Dec 26, 2015
518
519
g_strfreev(hidden_mode_split);
Mar 21, 2014
Mar 21, 2014
520
521
522
523
524
525
526
527
528
/* 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
529
530
531
}
}
Mar 22, 2011
Mar 22, 2011
532
533
534
535
536
/** get the usb mode
*
* @return the currently set mode
*
*/
Jan 13, 2012
Jan 13, 2012
537
inline const char * get_usb_mode(void)
Mar 22, 2011
Mar 22, 2011
538
539
540
541
542
543
544
545
546
{
return(current_mode.mode);
}
/** set the loaded module
*
* @param module The module name for the requested mode
*
*/
Mar 30, 2013
Mar 30, 2013
547
void set_usb_module(const char *module)
Mar 22, 2011
Mar 22, 2011
548
{
Oct 29, 2013
Oct 29, 2013
549
550
free(current_mode.module);
current_mode.module = strdup(module);
Mar 22, 2011
Mar 22, 2011
551
552
553
554
555
556
557
}
/** get the supposedly loaded module
*
* @return The name of the loaded module
*
*/
Jan 13, 2012
Jan 13, 2012
558
inline const char * get_usb_module(void)
Mar 22, 2011
Mar 22, 2011
559
560
561
562
563
564
565
566
567
{
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
568
inline gboolean get_usb_connection_state(void)
Mar 22, 2011
Mar 22, 2011
569
570
571
572
{
return current_mode.connected;
}
May 17, 2011
May 17, 2011
573
574
/** set connection status for some corner cases
*
Jun 27, 2011
Jun 27, 2011
575
* @param state The connection status that needs to be set. Connected (TRUE)
May 17, 2011
May 17, 2011
576
577
*
*/
Jan 13, 2012
Jan 13, 2012
578
inline void set_usb_connection_state(gboolean state)
May 17, 2011
May 17, 2011
579
580
581
{
current_mode.connected = state;
}
Mar 22, 2011
Mar 22, 2011
582
May 27, 2013
May 27, 2013
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
/** 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
603
604
605
606
607
608
609
/*================ 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
610
611
current_mode.mode = strdup(MODE_UNDEFINED);
current_mode.module = strdup(MODULE_NONE);
Mar 22, 2011
Mar 22, 2011
612
Jun 2, 2014
Jun 2, 2014
613
614
615
if(android_broken_usb)
current_mode.android_usb_broken = TRUE;
Mar 31, 2013
Mar 31, 2013
616
617
618
619
620
621
622
/* 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
623
#ifdef APP_SYNC
Mar 10, 2014
Mar 10, 2014
624
readlist(diag_mode);
Dec 15, 2013
Dec 15, 2013
625
/* make sure all services are down when starting */
Jul 7, 2016
Jul 7, 2016
626
appsync_stop(1);
Sep 10, 2013
Sep 10, 2013
627
modelist = read_mode_list(diag_mode);
Dec 17, 2013
Dec 17, 2013
628
#endif /* APP_SYNC */
Mar 1, 2012
Mar 1, 2012
629
May 16, 2011
May 16, 2011
630
631
if(check_trigger())
trigger_init();
Nov 13, 2012
Nov 13, 2012
632
Jan 21, 2013
Jan 21, 2013
633
/* Set-up mac address before kmod */
Jan 18, 2013
Jan 18, 2013
634
if(access("/etc/modprobe.d/g_ether.conf", F_OK) != 0)
Jan 17, 2013
Jan 17, 2013
635
636
637
{
generate_random_mac();
}
Jan 21, 2013
Jan 21, 2013
638
Oct 22, 2013
Oct 22, 2013
639
/* kmod init */
Aug 5, 2014
Aug 5, 2014
640
usb_moded_module_ctx_init();
Jan 21, 2013
Jan 21, 2013
641
Aug 2, 2013
Aug 2, 2013
642
643
644
/* Android specific stuff */
if(android_settings())
android_init_values();
Mar 22, 2011
Mar 22, 2011
645
646
647
648
649
650
651
652
653
654
655
/* TODO: add more start-up clean-up and init here if needed */
}
/* 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
656
Aug 26, 2014
Aug 26, 2014
657
set_usb_mode(MODE_CHARGING_FALLBACK);
Mar 22, 2011
Mar 22, 2011
658
659
660
/* 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
661
662
free(current_mode.mode);
current_mode.mode = strdup(MODE_ASK);
Jun 6, 2013
Jun 6, 2013
663
current_mode.data = NULL;
Jul 14, 2011
Jul 14, 2011
664
charging_timeout = 0;
Mar 22, 2011
Mar 22, 2011
665
666
667
668
669
log_info("Falling back on charging mode.\n");
return(FALSE);
}
Oct 22, 2013
Oct 22, 2013
670
671
672
static void handle_exit(void)
{
/* exiting and clean-up when mainloop ended */
Jul 7, 2016
Jul 7, 2016
673
appsync_stop(1);
Oct 22, 2013
Oct 22, 2013
674
675
hwal_cleanup();
usb_moded_dbus_cleanup();
Aug 5, 2014
Aug 5, 2014
676
#ifdef MEEGOLOCK
Oct 22, 2013
Oct 22, 2013
677
stop_devicelock_listener();
Aug 5, 2014
Aug 5, 2014
678
#endif /* MEEGOLOCK */
Oct 22, 2013
Oct 22, 2013
679
680
free_mode_list(modelist);
Aug 5, 2014
Aug 5, 2014
681
usb_moded_module_ctx_cleanup();
Oct 22, 2013
Oct 22, 2013
682
683
684
#ifdef APP_SYNC
free_appsync_list();
Nov 25, 2013
Nov 25, 2013
685
#ifdef APP_SYNC_DBUS
Oct 22, 2013
Oct 22, 2013
686
usb_moded_appsync_cleanup();
Nov 25, 2013
Nov 25, 2013
687
688
#endif /* APP_SYNC_DBUS */
#endif /* APP_SYNC */
Mar 11, 2014
Mar 11, 2014
689
690
/* dbus_shutdown(); This causes exit(1) and don't seem
to behave as documented */
Oct 22, 2013
Oct 22, 2013
691
692
693
694
695
696
697
/* If the mainloop is initialised, unreference it */
if (mainloop != NULL)
{
g_main_loop_quit(mainloop);
g_main_loop_unref(mainloop);
}
Nov 11, 2014
Nov 11, 2014
698
699
free(current_mode.mode);
free(current_mode.module);
Oct 22, 2013
Oct 22, 2013
700
Mar 11, 2014
Mar 11, 2014
701
702
log_debug("All resources freed. Exiting!\n");
Oct 22, 2013
Oct 22, 2013
703
704
705
706
707
exit(0);
}
static void sigint_handler(int signum)
{
Feb 18, 2014
Feb 18, 2014
708
709
struct mode_list_elem *data;
Mar 11, 2014
Mar 11, 2014
710
if(signum == SIGINT || signum == SIGTERM)
Nov 19, 2013
Nov 19, 2013
711
712
713
handle_exit();
if(signum == SIGHUP)
{
Feb 18, 2014
Feb 18, 2014
714
715
/* clean up current mode */
data = get_usb_mode_data();
Apr 30, 2014
Apr 30, 2014
716
set_disconnected_silent(data);
Feb 18, 2014
Feb 18, 2014
717
/* clear existing data to be sure */
Feb 26, 2014
Feb 26, 2014
718
set_usb_mode_data(NULL);
Nov 19, 2013
Nov 19, 2013
719
720
/* free and read in modelist again */
free_mode_list(modelist);
Mar 21, 2014
Mar 21, 2014
721
722
modelist = read_mode_list(diag_mode);
Mar 18, 2014
Mar 18, 2014
723
Mar 21, 2014
Mar 21, 2014
724
send_supported_modes_signal();
Nov 19, 2013
Nov 19, 2013
725
}
Oct 22, 2013
Oct 22, 2013
726
727
}
Mar 22, 2011
Mar 22, 2011
728
729
730
731
732
733
734
/* 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
735
" -a, --android_usb_broken \tkeep gadget active on broken android kernels\n"
Apr 19, 2015
Apr 19, 2015
736
" -i, --android_usb_broken_udev_events \tignore incorrect disconnect events after mode setting\n"
Jun 2, 2014
Jun 2, 2014
737
738
739
740
741
742
743
" -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
744
#ifdef SYSTEMD
Jun 2, 2014
Jun 2, 2014
745
" -n, --systemd \t\tnotify systemd when started up\n"
Jan 20, 2014
Jan 20, 2014
746
#endif
Jun 2, 2014
Jun 2, 2014
747
" -v, --version \t\toutput version information and exit\n"
Apr 26, 2016
Apr 26, 2016
748
" -m, --max-cable-delay=<ms>\tmaximum delay before accepting cable connection\n"
Mar 22, 2011
Mar 22, 2011
749
750
751
"\n");
}
Dec 15, 2015
Dec 15, 2015
752
void send_supported_modes_signal(void)
Mar 18, 2014
Mar 18, 2014
753
754
755
756
757
758
759
{
/* 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
760
761
762
763
764
765
766
767
768
769
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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
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
/** 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 */
log_warning("handle signal: %s\n", strsignal(sig));
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
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
/** 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
943
log_warning("%s: open for writing failed: %m", path);
Apr 26, 2016
Apr 26, 2016
944
945
946
947
948
}
goto EXIT;
}
if (write(fd, text, strlen(text)) == -1) {
Jul 7, 2016
Jul 7, 2016
949
log_warning("%s: write failed : %m", path);
Apr 26, 2016
Apr 26, 2016
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
goto EXIT;
}
EXIT:
if (fd != -1)
close(fd);
}
/** Acquire wakelock via sysfs
*
* Wakelock must be released via release_wakelock().
*
* Automatically terminating wakelock is used, so that we
* do not block suspend indefinately in case usb_moded
* gets stuck or crashes.
*
* Note: The name should be unique within the system.
*
* @param wakelock_name Wake lock to be acquired
*/
void acquire_wakelock(const char *wakelock_name)
{
char buff[256];
snprintf(buff, sizeof buff, "%s %lld",
wakelock_name,
USB_MODED_SUSPEND_DELAY_MAXIMUM_MS * 1000000LL);
write_to_sysfs_file("/sys/power/wake_lock", buff);
log_debug("acquire_wakelock %s", wakelock_name);
}
/** Release wakelock via sysfs
*
* @param wakelock_name Wake lock to be released
*/
void release_wakelock(const char *wakelock_name)
{
log_debug("release_wakelock %s", wakelock_name);
write_to_sysfs_file("/sys/power/wake_unlock", wakelock_name);
}
/** Flag for: USB_MODED_WAKELOCK_STATE_CHANGE has been acquired */
static bool blocking_suspend = false;
/** Timer for releasing USB_MODED_WAKELOCK_STATE_CHANGE */
static guint allow_suspend_id = 0;
/** Release wakelock acquired via delay_suspend()
*
* Meant to be called on usb-moded exit so that wakelocks
* are not left behind.