Skip to content

Latest commit

 

History

History
476 lines (420 loc) · 14.3 KB

usb_moded-util.c

File metadata and controls

476 lines (420 loc) · 14.3 KB
 
Aug 24, 2018
Aug 24, 2018
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
* @file usb_moded-util.c
*
* Copyright (C) 2013-2018 Jolla. All rights reserved.
*
* @author: Philippe De Swert <philippe.deswert@jollamobile.com>
* @author: Philippe De Swert <philippedeswert@gmail.com>
* @author: Martin Jones <martin.jones@jollamobile.com>
* @author: Simo Piiroinen <simo.piiroinen@jollamobile.com>
*
* 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
*/
25
26
27
28
29
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <unistd.h>
Aug 31, 2013
Aug 31, 2013
30
#include <string.h>
31
32
#include <dbus/dbus.h>
Aug 24, 2018
Aug 24, 2018
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "usb_moded-dbus-private.h"
/* ========================================================================= *
* Prototypes
* ========================================================================= */
/* -- util -- */
static int util_query_mode (void);
static int util_get_modelist (void);
static int util_get_mode_configured (void);
static int util_unset_rescue (void);
static int util_set_mode (char *mode);
static int util_set_mode_config (char *mode);
static int util_set_hide_mode_config (char *mode);
static int util_set_unhide_mode_config(char *mode);
static int util_get_hiddenlist (void);
static int util_handle_network (char *network);
/* ========================================================================= *
* Data
* ========================================================================= */
Mar 28, 2018
Mar 28, 2018
56
static DBusConnection *conn = 0;
Aug 24, 2018
Aug 24, 2018
58
59
60
61
62
/* ========================================================================= *
* Functions
* ========================================================================= */
static int util_query_mode (void)
Aug 24, 2018
Aug 24, 2018
64
65
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Aug 24, 2018
Aug 24, 2018
67
68
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_STATE_REQUEST)) != NULL)
{
69
70
71
72
73
74
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
75
}
Aug 24, 2018
Aug 24, 2018
77
78
79
80
81
82
83
84
if(ret)
{
printf("mode = %s\n", ret);
return 0;
}
/* not everything went as planned, return error */
return 1;
Aug 24, 2018
Aug 24, 2018
87
static int util_get_modelist (void)
Aug 24, 2018
Aug 24, 2018
89
90
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Aug 24, 2018
Aug 24, 2018
92
93
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_LIST)) != NULL)
{
94
95
96
97
98
99
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
100
}
Aug 24, 2018
Aug 24, 2018
102
103
104
105
106
107
108
109
if(ret)
{
printf("modes supported are = %s\n", ret);
return 0;
}
/* not everything went as planned, return error */
return 1;
Aug 24, 2018
Aug 24, 2018
112
static int util_get_mode_configured (void)
Aug 24, 2018
Aug 24, 2018
114
115
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Aug 24, 2018
Aug 24, 2018
117
118
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_CONFIG_GET)) != NULL)
{
119
120
121
122
123
124
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
125
}
Aug 24, 2018
Aug 24, 2018
127
128
129
130
131
132
133
134
if(ret)
{
printf("On USB connection usb_moded will set the following mode based on the configuration = %s\n", ret);
return 0;
}
/* not everything went as planned, return error */
return 1;
Aug 24, 2018
Aug 24, 2018
137
static int util_unset_rescue (void)
Oct 10, 2013
Oct 10, 2013
138
{
Aug 24, 2018
Aug 24, 2018
139
140
DBusMessage *req = NULL, *reply = NULL;
int ret = 0;
Oct 10, 2013
Oct 10, 2013
141
Aug 24, 2018
Aug 24, 2018
142
143
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_RESCUE_OFF)) != NULL)
{
Oct 10, 2013
Oct 10, 2013
144
145
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
Aug 24, 2018
Aug 24, 2018
146
147
if(reply)
ret = 1;
Oct 10, 2013
Oct 10, 2013
148
149
150
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
151
152
153
154
155
156
157
158
159
}
if(ret)
{
printf("Rescue mode is off\n");
return 0;
}
else
return 1;
Oct 10, 2013
Oct 10, 2013
160
161
}
Aug 24, 2018
Aug 24, 2018
162
static int util_set_mode (char *mode)
May 16, 2013
May 16, 2013
163
{
Aug 24, 2018
Aug 24, 2018
164
165
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
May 16, 2013
May 16, 2013
166
Aug 24, 2018
Aug 24, 2018
167
168
169
170
printf("Trying to set the following mode %s\n", mode);
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_STATE_SET)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &mode, DBUS_TYPE_INVALID);
May 16, 2013
May 16, 2013
171
172
173
174
175
176
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
177
}
May 16, 2013
May 16, 2013
178
Aug 24, 2018
Aug 24, 2018
179
180
181
182
183
184
185
186
if(ret)
{
printf("mode set = %s\n", ret);
return 0;
}
/* not everything went as planned, return error */
return 1;
May 16, 2013
May 16, 2013
187
188
}
Aug 24, 2018
Aug 24, 2018
189
static int util_set_mode_config (char *mode)
May 16, 2013
May 16, 2013
190
{
Aug 24, 2018
Aug 24, 2018
191
192
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
May 16, 2013
May 16, 2013
193
Aug 24, 2018
Aug 24, 2018
194
195
196
197
printf("Trying to set the following mode %s in the config file\n", mode);
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_CONFIG_SET)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &mode, DBUS_TYPE_INVALID);
May 16, 2013
May 16, 2013
198
199
200
201
202
203
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
204
}
May 16, 2013
May 16, 2013
205
Aug 24, 2018
Aug 24, 2018
206
207
208
209
210
if(ret)
{
printf("mode set in the configuration file = %s\n", ret);
return 0;
}
Dec 15, 2015
Dec 15, 2015
211
Aug 24, 2018
Aug 24, 2018
212
213
/* not everything went as planned, return error */
return 1;
Dec 15, 2015
Dec 15, 2015
214
215
}
Aug 24, 2018
Aug 24, 2018
216
static int util_set_hide_mode_config (char *mode)
Dec 15, 2015
Dec 15, 2015
217
{
Aug 24, 2018
Aug 24, 2018
218
219
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Dec 15, 2015
Dec 15, 2015
220
Aug 24, 2018
Aug 24, 2018
221
222
223
224
printf("Trying to hide the following mode %s in the config file\n", mode);
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_HIDE)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &mode, DBUS_TYPE_INVALID);
Dec 15, 2015
Dec 15, 2015
225
226
227
228
229
230
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
231
}
Dec 15, 2015
Dec 15, 2015
232
Aug 24, 2018
Aug 24, 2018
233
234
235
236
237
if(ret)
{
printf("mode hidden = %s\n", ret);
return 0;
}
Dec 15, 2015
Dec 15, 2015
238
Aug 24, 2018
Aug 24, 2018
239
240
/* not everything went as planned, return error */
return 1;
Dec 15, 2015
Dec 15, 2015
241
242
}
Aug 24, 2018
Aug 24, 2018
243
static int util_set_unhide_mode_config (char *mode)
Dec 15, 2015
Dec 15, 2015
244
{
Aug 24, 2018
Aug 24, 2018
245
246
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Dec 15, 2015
Dec 15, 2015
247
Aug 24, 2018
Aug 24, 2018
248
249
250
251
printf("Trying to unhide the following mode %s in the config file\n", mode);
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_UNHIDE)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &mode, DBUS_TYPE_INVALID);
Dec 15, 2015
Dec 15, 2015
252
253
254
255
256
257
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
258
}
Dec 15, 2015
Dec 15, 2015
259
Aug 24, 2018
Aug 24, 2018
260
261
262
263
264
if(ret)
{
printf("mode unhidden = %s\n", ret);
return 0;
}
Dec 15, 2015
Dec 15, 2015
265
Aug 24, 2018
Aug 24, 2018
266
267
/* not everything went as planned, return error */
return 1;
May 16, 2013
May 16, 2013
268
269
}
Aug 24, 2018
Aug 24, 2018
270
static int util_get_hiddenlist (void)
Apr 4, 2016
Apr 4, 2016
271
{
Aug 24, 2018
Aug 24, 2018
272
273
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
Apr 4, 2016
Apr 4, 2016
274
Aug 24, 2018
Aug 24, 2018
275
276
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_HIDDEN_GET)) != NULL)
{
Apr 4, 2016
Apr 4, 2016
277
278
279
280
281
282
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
Aug 24, 2018
Aug 24, 2018
283
}
Apr 4, 2016
Apr 4, 2016
284
Aug 24, 2018
Aug 24, 2018
285
286
287
288
289
if(ret)
{
printf("hidden modes are = %s\n", ret);
return 0;
}
Apr 4, 2016
Apr 4, 2016
290
Aug 24, 2018
Aug 24, 2018
291
292
/* not everything went as planned, return error */
return 1;
Apr 4, 2016
Apr 4, 2016
293
294
}
Aug 24, 2018
Aug 24, 2018
295
static int util_handle_network(char *network)
Aug 31, 2013
Aug 31, 2013
296
{
Aug 24, 2018
Aug 24, 2018
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
char *operation = 0, *setting = 0, *value = 0;
DBusMessage *req = NULL, *reply = NULL;
char *ret = 0;
operation = strtok(network, ":");
printf("Operation = %s\n", operation);
setting = strtok(NULL, ",");
printf("Setting = %s\n", setting);
value = strtok(NULL, ",");
printf("Value = %s\n", value);
if(operation == NULL || setting == NULL )
{
printf("Argument list is wrong. Please use get:$setting or set:$setting,$value\n");
return 1;
}
if(!strcmp(operation, "set"))
{
if(value == NULL)
{
printf("Argument list is wrong. Please use set:$setting,$value\n");
return 1;
}
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_NETWORK_SET)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &setting, DBUS_TYPE_STRING, &value, DBUS_TYPE_INVALID);
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &setting, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
}
Aug 31, 2013
Aug 31, 2013
329
Aug 24, 2018
Aug 24, 2018
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
if(ret)
{
printf("The following USB network setting %s = %s has been set\n", setting, ret);
return 0;
}
else
return 1;
}
else if(!strcmp(operation, "get"))
{
if ((req = dbus_message_new_method_call(USB_MODE_SERVICE, USB_MODE_OBJECT, USB_MODE_INTERFACE, USB_MODE_NETWORK_GET)) != NULL)
{
dbus_message_append_args (req, DBUS_TYPE_STRING, &setting, DBUS_TYPE_INVALID);
if ((reply = dbus_connection_send_with_reply_and_block(conn, req, -1, NULL)) != NULL)
{
dbus_message_get_args(reply, NULL, DBUS_TYPE_STRING, &setting, DBUS_TYPE_STRING, &ret, DBUS_TYPE_INVALID);
dbus_message_unref(reply);
}
dbus_message_unref(req);
}
if(ret)
{
printf("USB network setting %s = %s\n", setting, ret);
return 0;
}
else
return 1;
}
else
/* unknown operation */
return 1;
}
Aug 31, 2013
Aug 31, 2013
364
365
366
int main (int argc, char *argv[])
{
Aug 24, 2018
Aug 24, 2018
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
408
409
410
411
412
413
414
415
416
417
418
int query = 0, network = 0, setmode = 0, config = 0;
int modelist = 0, mode_configured = 0, hide = 0, unhide = 0, hiddenlist = 0;
int res = 1, opt, rescue = 0;
char *option = 0;
if(argc == 1)
{
fprintf(stderr, "No options given, try -h for more information\n");
exit(1);
}
while ((opt = getopt(argc, argv, "c:dhi:mn:qrs:u:v")) != -1)
{
switch (opt) {
case 'c':
config = 1;
option = optarg;
break;
case 'd':
mode_configured = 1;
break;
case 'i':
hide = 1;
option = optarg;
break;
case 'm':
modelist = 1;
break;
case 'n':
network = 1;
option = optarg;
break;
case 'q':
query = 1;
break;
case 'r':
rescue = 1;
break;
case 's':
setmode = 1;
option = optarg;
break;
case 'u':
unhide = 1;
option = optarg;
break;
case 'v':
hiddenlist = 1;
break;
case 'h':
default:
fprintf(stderr, "\nUsage: %s -<option> <args>\n\n \
419
420
421
422
Options are: \n \
\t-c to set a mode in the config file,\n \
\t-d to get the default mode set in the configuration, \n \
\t-h to get this help, \n \
Aug 24, 2018
Aug 24, 2018
423
\t-i hide a mode,\n \
Sep 9, 2013
Sep 9, 2013
424
\t-n to get/set network configuration. Use get:${config}/set:${config},${value}\n \
425
426
\t-m to get the list of supported modes, \n \
\t-q to query the current mode,\n \
Aug 24, 2018
Aug 24, 2018
427
\t-r turn rescue mode off,\n \
Apr 4, 2016
Apr 4, 2016
428
429
430
\t-s to set/activate a mode,\n \
\t-u unhide a mode,\n \
\t-v to get the list of hidden modes\n",
Aug 24, 2018
Aug 24, 2018
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
argv[0]);
exit(1);
}
}
/* init dbus */
DBusError error = DBUS_ERROR_INIT;
conn = dbus_bus_get_private(DBUS_BUS_SYSTEM, &error);
if (!conn)
{
if (dbus_error_is_set(&error))
return 1;
}
/* check which sub-routine to call */
if(query)
res = util_query_mode();
else if (modelist)
res = util_get_modelist();
else if (mode_configured)
res = util_get_mode_configured();
else if (setmode)
res = util_set_mode(option);
else if (config)
res = util_set_mode_config(option);
else if (network)
res = util_handle_network(option);
else if (rescue)
res = util_unset_rescue();
else if (hide)
res = util_set_hide_mode_config(option);
else if (unhide)
res = util_set_unhide_mode_config(option);
else if (hiddenlist)
res = util_get_hiddenlist();
/* subfunctions will return 1 if an error occured, print message */
if(res)
printf("Sorry an error occured, your request was not processed.\n");
/* clean-up and exit */
dbus_connection_close(conn);
dbus_connection_unref(conn);
return 0;