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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
|
/*===========================================================================
FILE:
GobiQMICoreOMA.cpp
DESCRIPTION:
QUALCOMM Gobi QMI Based API Core (OMA-DM Service)
PUBLIC CLASSES AND FUNCTIONS:
cGobiQMICore
Copyright (c) 2011, Code Aurora Forum. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Code Aurora Forum nor
the names of its contributors may be used to endorse or promote
products derived from this software without specific prior written
permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
==========================================================================*/
//---------------------------------------------------------------------------
// Include Files
//---------------------------------------------------------------------------
#include "StdAfx.h"
#include "GobiQMICore.h"
#include "QMIBuffers.h"
//---------------------------------------------------------------------------
// Definitions
//---------------------------------------------------------------------------
/*=========================================================================*/
// cGobiQMICore Methods
/*=========================================================================*/
/*===========================================================================
METHOD:
OMADMStartSession (Public Method)
DESCRIPTION:
This function starts an OMA-DM session
PARAMETERS:
sessionType [ I ] - Type of session to initiate
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMStartSession( ULONG sessionType )
{
WORD msgID = (WORD)eQMI_OMA_START_SESSION;
std::vector <sDB2PackingInput> piv;
std::ostringstream tmp;
tmp << sessionType;
sProtocolEntityKey pek( eDB2_ET_QMI_OMA_REQ, msgID, 16 );
sDB2PackingInput pi( pek, (LPCSTR)tmp.str().c_str() );
piv.push_back( pi );
// Pack up the QMI request
const cCoreDatabase & db = GetDatabase();
sSharedBuffer * pRequest = DB2PackQMIBuffer( db, piv );
if (pRequest == 0)
{
return eGOBI_ERR_MEMORY;
}
// Send the QMI request, check result, and return
return SendAndCheckReturn( eQMI_SVC_OMA, pRequest );
}
/*===========================================================================
METHOD:
OMADMCancelSession (Public Method)
DESCRIPTION:
This function cancels an ongoing OMA-DM session
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMCancelSession()
{
// Generate and send the QMI request
WORD msgID = (WORD)eQMI_OMA_CANCEL_SESSION;
sProtocolBuffer rsp = SendSimple( eQMI_SVC_OMA, msgID );
if (rsp.IsValid() == false)
{
return GetCorrectedLastError();
}
// Did we receive a valid QMI response?
sQMIServiceBuffer qmiRsp( rsp.GetSharedBuffer() );
if (qmiRsp.IsValid() == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
// Check the mandatory QMI result TLV for success
ULONG rc = 0;
ULONG ec = 0;
bool bResult = qmiRsp.GetResult( rc, ec );
if (bResult == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
else if (rc != 0)
{
return GetCorrectedQMIError( ec );
}
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
OMADMGetSessionInfo (Public Method)
DESCRIPTION:
This function returns information related to the current (or previous
if no session is active) OMA-DM session
PARAMETERS:
pSessionState [ O ] - State of session
pSessionType [ O ] - Type of session
pFailureReason [ O ] - Session failure reason (when state indicates failure)
pRetryCount [ O ] - Session retry count (when state indicates retrying)
pSessionPause [ O ] - Session pause timer (when state indicates retrying)
pTimeRemaining [ O ] - Pause time remaining (when state indicates retrying)
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMGetSessionInfo(
ULONG * pSessionState,
ULONG * pSessionType,
ULONG * pFailureReason,
BYTE * pRetryCount,
WORD * pSessionPause,
WORD * pTimeRemaining )
{
// Validate arguments
if ( (pSessionState == 0)
|| (pSessionType == 0)
|| (pFailureReason == 0)
|| (pRetryCount == 0)
|| (pSessionPause == 0)
|| (pTimeRemaining == 0) )
{
return eGOBI_ERR_INVALID_ARG;
}
*pSessionState = ULONG_MAX;
*pSessionType = ULONG_MAX;
*pFailureReason = ULONG_MAX;
*pRetryCount = UCHAR_MAX;
*pSessionPause = USHRT_MAX;
*pTimeRemaining = USHRT_MAX;
// Generate and send the QMI request
WORD msgID = (WORD)eQMI_OMA_GET_SESSION_INFO;
sProtocolBuffer rsp = SendSimple( eQMI_SVC_OMA, msgID );
if (rsp.IsValid() == false)
{
return GetCorrectedLastError();
}
// Did we receive a valid QMI response?
sQMIServiceBuffer qmiRsp( rsp.GetSharedBuffer() );
if (qmiRsp.IsValid() == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
// Check the mandatory QMI result TLV for success
ULONG rc = 0;
ULONG ec = 0;
bool bResult = qmiRsp.GetResult( rc, ec );
if (bResult == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
else if (rc != 0)
{
return GetCorrectedQMIError( ec );
}
// How many parameters did we populate?
ULONG params = 0;
// Prepare TLVs for parsing
std::vector <sDB2NavInput> tlvs = DB2ReduceQMIBuffer( qmiRsp );
const cCoreDatabase & db = GetDatabase();
// Parse the TLVs we want (by DB key)
sProtocolEntityKey tlvKey( eDB2_ET_QMI_OMA_RSP, msgID, 16 );
cDataParser::tParsedFields pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 2)
{
*pSessionState = pf[0].mValue.mU32;
*pSessionType = pf[1].mValue.mU32;
params += 2;
}
tlvKey = sProtocolEntityKey( eDB2_ET_QMI_OMA_RSP, msgID, 17 );
pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 1)
{
*pFailureReason = pf[0].mValue.mU32;
params++;
}
tlvKey = sProtocolEntityKey( eDB2_ET_QMI_OMA_RSP, msgID, 18 );
pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 3)
{
*pRetryCount = pf[0].mValue.mU8;
*pSessionPause = pf[1].mValue.mU16;
*pTimeRemaining = pf[2].mValue.mU16;
params += 3;
}
if (params == 0)
{
return eGOBI_ERR_INVALID_RSP;
}
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
OMADMGetPendingNIA (Public Method)
DESCRIPTION:
This function returns information about the pending network initiated
alert
PARAMETERS:
pSessionType [ O ] - Type of session
pSessionID [ O ] - Unique session ID
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMGetPendingNIA(
ULONG * pSessionType,
USHORT * pSessionID )
{
// Validate arguments
if (pSessionType == 0 || pSessionID == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
*pSessionType = ULONG_MAX;
*pSessionID = USHRT_MAX;
// Generate and send the QMI request
WORD msgID = (WORD)eQMI_OMA_GET_SESSION_INFO;
sProtocolBuffer rsp = SendSimple( eQMI_SVC_OMA, msgID );
if (rsp.IsValid() == false)
{
return GetCorrectedLastError();
}
// Did we receive a valid QMI response?
sQMIServiceBuffer qmiRsp( rsp.GetSharedBuffer() );
if (qmiRsp.IsValid() == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
// Check the mandatory QMI result TLV for success
ULONG rc = 0;
ULONG ec = 0;
bool bResult = qmiRsp.GetResult( rc, ec );
if (bResult == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
else if (rc != 0)
{
return GetCorrectedQMIError( ec );
}
// How many parameters did we populate?
ULONG params = 0;
// Prepare TLVs for parsing
std::vector <sDB2NavInput> tlvs = DB2ReduceQMIBuffer( qmiRsp );
const cCoreDatabase & db = GetDatabase();
// Parse the TLVs we want (by DB key)
sProtocolEntityKey tlvKey( eDB2_ET_QMI_OMA_RSP, msgID, 19 );
cDataParser::tParsedFields pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 2)
{
*pSessionType = pf[0].mValue.mU32;
*pSessionID = pf[1].mValue.mU16;
params += 2;
}
if (params == 0)
{
return eGOBI_ERR_INVALID_RSP;
}
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
OMADMSendSelection (Public Method)
DESCRIPTION:
This function sends the specified OMA-DM selection for the current
network initiated session
PARAMETERS:
selection [ I ] - Selection
sessionID [ I ] - Unique session ID
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMSendSelection(
ULONG selection,
USHORT sessionID )
{
WORD msgID = (WORD)eQMI_OMA_SEND_SELECTION;
std::vector <sDB2PackingInput> piv;
std::ostringstream tmp;
tmp << selection << " " << sessionID;
sProtocolEntityKey pek( eDB2_ET_QMI_OMA_REQ, msgID, 16 );
sDB2PackingInput pi( pek, (LPCSTR)tmp.str().c_str() );
piv.push_back( pi );
// Pack up the QMI request
const cCoreDatabase & db = GetDatabase();
sSharedBuffer * pRequest = DB2PackQMIBuffer( db, piv );
if (pRequest == 0)
{
return eGOBI_ERR_MEMORY;
}
// Send the QMI request, check result, and return
return SendAndCheckReturn( eQMI_SVC_OMA, pRequest );
}
/*===========================================================================
METHOD:
OMADMGetFeatureSettings (Public Method)
DESCRIPTION:
This function returns the OMA-DM feature settings
PARAMETERS:
pbProvisioning [ O ] - Device provisioning service update enabled
pbPRLUpdate [ O ] - PRL service update enabled
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMGetFeatureSettings(
ULONG * pbProvisioning,
ULONG * pbPRLUpdate )
{
// Validate arguments
if (pbProvisioning == 0 || pbPRLUpdate == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
*pbProvisioning = ULONG_MAX;
*pbPRLUpdate = ULONG_MAX;
// Generate and send the QMI request
WORD msgID = (WORD)eQMI_OMA_GET_FEATURES;
sProtocolBuffer rsp = SendSimple( eQMI_SVC_OMA, msgID );
if (rsp.IsValid() == false)
{
return GetCorrectedLastError();
}
// Did we receive a valid QMI response?
sQMIServiceBuffer qmiRsp( rsp.GetSharedBuffer() );
if (qmiRsp.IsValid() == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
// Check the mandatory QMI result TLV for success
ULONG rc = 0;
ULONG ec = 0;
bool bResult = qmiRsp.GetResult( rc, ec );
if (bResult == false)
{
return eGOBI_ERR_MALFORMED_RSP;
}
else if (rc != 0)
{
return GetCorrectedQMIError( ec );
}
// How many parameters did we populate?
ULONG params = 0;
// Prepare TLVs for parsing
std::vector <sDB2NavInput> tlvs = DB2ReduceQMIBuffer( qmiRsp );
const cCoreDatabase & db = GetDatabase();
// Parse the TLVs we want (by DB key)
sProtocolEntityKey tlvKey( eDB2_ET_QMI_OMA_RSP, msgID, 16 );
cDataParser::tParsedFields pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 1)
{
*pbProvisioning = pf[0].mValue.mU32;
params++;
}
tlvKey = sProtocolEntityKey( eDB2_ET_QMI_OMA_RSP, msgID, 17 );
pf = ParseTLV( db, rsp, tlvs, tlvKey );
if (pf.size() >= 1)
{
*pbPRLUpdate = pf[0].mValue.mU32;
params++;
}
if (params == 0)
{
return eGOBI_ERR_INVALID_RSP;
}
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
OMADMSetProvisioningFeature (Public Method)
DESCRIPTION:
This function sets the OMA-DM device provisioning service
update feature setting
PARAMETERS:
bProvisioning [ I ] - Device provisioning service update enabled
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMSetProvisioningFeature(
ULONG bProvisioning )
{
WORD msgID = (WORD)eQMI_OMA_SET_FEATURES;
std::vector <sDB2PackingInput> piv;
std::ostringstream tmp;
tmp << (ULONG)(bProvisioning != 0);
sProtocolEntityKey pek( eDB2_ET_QMI_OMA_REQ, msgID, 16 );
sDB2PackingInput pi( pek, (LPCSTR)tmp.str().c_str() );
piv.push_back( pi );
// Pack up the QMI request
const cCoreDatabase & db = GetDatabase();
sSharedBuffer * pRequest = DB2PackQMIBuffer( db, piv );
if (pRequest == 0)
{
return eGOBI_ERR_MEMORY;
}
// Send the QMI request, check result, and return
return SendAndCheckReturn( eQMI_SVC_OMA, pRequest );
}
/*===========================================================================
METHOD:
OMADMSetPRLUpdateFeature (Public Method)
DESCRIPTION:
This function sets the OMA-DM PRL service update feature setting
PARAMETERS:
bPRLUpdate [ I ] - PRL service update enabled
RETURN VALUE:
eGobiError - Return code
===========================================================================*/
eGobiError cGobiQMICore::OMADMSetPRLUpdateFeature(
ULONG bPRLUpdate )
{
WORD msgID = (WORD)eQMI_OMA_SET_FEATURES;
std::vector <sDB2PackingInput> piv;
std::ostringstream tmp;
tmp << (ULONG)(bPRLUpdate != 0);
sProtocolEntityKey pek( eDB2_ET_QMI_OMA_REQ, msgID, 17 );
sDB2PackingInput pi( pek, (LPCSTR)tmp.str().c_str() );
piv.push_back( pi );
// Pack up the QMI request
const cCoreDatabase & db = GetDatabase();
sSharedBuffer * pRequest = DB2PackQMIBuffer( db, piv );
if (pRequest == 0)
{
return eGOBI_ERR_MEMORY;
}
// Send the QMI request, check result, and return
return SendAndCheckReturn( eQMI_SVC_OMA, pRequest );
}
|