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
|
/*===========================================================================
FILE:
Gobi3000TranslationOMA.cpp
DESCRIPTION:
QUALCOMM Translation for Gobi 3000 (OMADM Service)
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 "Gobi3000Translation.h"
/*===========================================================================
METHOD:
PackOMADMStartSession
DESCRIPTION:
This function starts an OMA-DM session
PARAMETERS:
pOutLen [I/O] - Upon input the maximum number of BYTEs pOut can
contain, upon output the number of BYTEs copied
to pOut
pOut [ O ] - Output buffer
sessionType [ I ] - Type of session to initiate
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG PackOMADMStartSession(
ULONG * pOutLen,
BYTE * pOut,
ULONG sessionType )
{
// Validate arguments
if (pOut == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Add sessionType
// Check size
WORD tlvx10Sz = sizeof( sOMAStartSessionRequest_Type );
if (*pOutLen < sizeof( sQMIRawContentHeader ) + tlvx10Sz)
{
return eGOBI_ERR_BUFFER_SZ;
}
sQMIRawContentHeader * pHeader = (sQMIRawContentHeader*)pOut;
pHeader->mTypeID = 0x10;
pHeader->mLength = tlvx10Sz;
ULONG offset = sizeof( sQMIRawContentHeader );
sOMAStartSessionRequest_Type * pTLVx10;
pTLVx10 = (sOMAStartSessionRequest_Type*)(pOut + offset);
memset( pTLVx10, 0, tlvx10Sz );
// Set the value
pTLVx10->mSessionType = (eQMIOMASessionTypes)sessionType;
offset += tlvx10Sz;
*pOutLen = offset;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
ParseOMADMGetSessionInfo
DESCRIPTION:
This function returns information related to the current (or previous
if no session is active) OMA-DM session
PARAMETERS:
inLen [ I ] - Length of input buffer
pIn [ I ] - Input buffer
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:
ULONG - Return code
===========================================================================*/
ULONG ParseOMADMGetSessionInfo(
ULONG inLen,
const BYTE * pIn,
ULONG * pSessionState,
ULONG * pSessionType,
ULONG * pFailureReason,
BYTE * pRetryCount,
WORD * pSessionPause,
WORD * pTimeRemaining )
{
// Validate arguments
if (pIn == 0 || pSessionState == 0 || pSessionType == 0
|| pFailureReason == 0 || pRetryCount == 0 || pSessionPause == 0
|| pTimeRemaining == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Find the first TLV
const sOMAGetSessionInfoResponse_Info * pTLVx10;
ULONG outLenx10;
ULONG rc = GetTLV( inLen, pIn, 0x10, &outLenx10, (const BYTE **)&pTLVx10 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx10 < sizeof( sOMAGetSessionInfoResponse_Info ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pSessionState = pTLVx10->mSessionState;
*pSessionType = pTLVx10->mSessionType;
// Find the second TLV
const sOMAGetSessionInfoResponse_Failure * pTLVx11;
ULONG outLenx11;
rc = GetTLV( inLen, pIn, 0x11, &outLenx11, (const BYTE **)&pTLVx11 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx11 < sizeof( sOMAGetSessionInfoResponse_Failure ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pFailureReason = pTLVx11->mSessionFailure;
// Find the third TLV
const sOMAGetSessionInfoResponse_Retry * pTLVx12;
ULONG outLenx12;
rc = GetTLV( inLen, pIn, 0x12, &outLenx12, (const BYTE **)&pTLVx12 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx12 < sizeof( sOMAGetSessionInfoResponse_Retry ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pRetryCount = pTLVx12->mRetryCount;
*pSessionPause = pTLVx12->mRetryPauseTimer;
*pTimeRemaining = pTLVx12->mRemainingTime;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
ParseOMADMGetPendingNIA
DESCRIPTION:
This function returns information about the pending network initiated
alert
PARAMETERS:
inLen [ I ] - Length of input buffer
pIn [ I ] - Input buffer
pSessionType [ O ] - Type of session
pSessionID [ O ] - Unique session ID
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG ParseOMADMGetPendingNIA(
ULONG inLen,
const BYTE * pIn,
ULONG * pSessionType,
USHORT * pSessionID )
{
// Validate arguments
if (pIn == 0 || pSessionType == 0 || pSessionID == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Find the TLV
const sOMAGetSessionInfoResponse_NIA * pTLVx13;
ULONG outLenx13;
ULONG rc = GetTLV( inLen, pIn, 0x13, &outLenx13, (const BYTE **)&pTLVx13 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx13 < sizeof( sOMAGetSessionInfoResponse_NIA ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pSessionID = pTLVx13->mSessionID;
*pSessionType = pTLVx13->mSessionType;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
PackOMADMSendSelection
DESCRIPTION:
This function sends the specified OMA-DM selection for the current
network initiated session
PARAMETERS:
pOutLen [I/O] - Upon input the maximum number of BYTEs pOut can
contain, upon output the number of BYTEs copied
to pOut
pOut [ O ] - Output buffer
selection [ I ] - Selection
sessionID [ I ] - Unique session ID
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG PackOMADMSendSelection(
ULONG * pOutLen,
BYTE * pOut,
ULONG selection,
USHORT sessionID )
{
// Validate arguments
if (pOut == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Add selection and session ID
// Check size
WORD tlvx10Sz = sizeof( sOMASendSelectionRequest_Type );
if (*pOutLen < sizeof( sQMIRawContentHeader ) + tlvx10Sz)
{
return eGOBI_ERR_BUFFER_SZ;
}
sQMIRawContentHeader * pHeader = (sQMIRawContentHeader*)pOut;
pHeader->mTypeID = 0x10;
pHeader->mLength = tlvx10Sz;
ULONG offset = sizeof( sQMIRawContentHeader );
sOMASendSelectionRequest_Type * pTLVx10;
pTLVx10 = (sOMASendSelectionRequest_Type*)(pOut + offset);
memset( pTLVx10, 0, tlvx10Sz );
// Set the values
pTLVx10->mSelection = (eQMIOMASelections)selection;
pTLVx10->mSessionID = sessionID;
offset += tlvx10Sz;
*pOutLen = offset;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
ParseOMADMGetFeatureSettings
DESCRIPTION:
This function returns the OMA-DM feature settings
PARAMETERS:
inLen [ I ] - Length of input buffer
pIn [ I ] - Input buffer
pbProvisioning [ O ] - Device provisioning service update enabled
pbPRLUpdate [ O ] - PRL service update enabled
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG ParseOMADMGetFeatureSettings(
ULONG inLen,
const BYTE * pIn,
ULONG * pbProvisioning,
ULONG * pbPRLUpdate )
{
// Validate arguments
if (pIn == 0 || pbProvisioning == 0 || pbPRLUpdate == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Find the first TLV
const sOMAGetFeaturesResponse_Provisioning * pTLVx10;
ULONG outLenx10;
ULONG rc = GetTLV( inLen, pIn, 0x10, &outLenx10, (const BYTE **)&pTLVx10 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx10 < sizeof( sOMAGetFeaturesResponse_Provisioning ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pbProvisioning = pTLVx10->mDeviceProvisioningServiceUpdateEnabled;
// Find the second TLV
const sOMAGetFeaturesResponse_PRLUpdate * pTLVx11;
ULONG outLenx11;
rc = GetTLV( inLen, pIn, 0x11, &outLenx11, (const BYTE **)&pTLVx11 );
if (rc != eGOBI_ERR_NONE)
{
return rc;
}
// Is the TLV large enough?
if (outLenx10 < sizeof( sOMAGetFeaturesResponse_PRLUpdate ))
{
return eGOBI_ERR_MALFORMED_RSP;
}
*pbPRLUpdate = pTLVx11->mPRLServiceUpdateEnabled;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
PackOMADMSetProvisioningFeature
DESCRIPTION:
This function sets the OMA-DM device provisioning service
update feature setting
PARAMETERS:
pOutLen [I/O] - Upon input the maximum number of BYTEs pOut can
contain, upon output the number of BYTEs copied
to pOut
pOut [ O ] - Output buffer
bProvisioning [ I ] - Device provisioning service update enabled
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG PackOMADMSetProvisioningFeature(
ULONG * pOutLen,
BYTE * pOut,
ULONG bProvisioning )
{
// Validate arguments
if (pOut == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Add bProvisioning
// Check size
WORD tlvx10Sz = sizeof( sOMASetFeaturesRequest_Provisioning );
if (*pOutLen < sizeof( sQMIRawContentHeader ) + tlvx10Sz)
{
return eGOBI_ERR_BUFFER_SZ;
}
sQMIRawContentHeader * pHeader = (sQMIRawContentHeader*)pOut;
pHeader->mTypeID = 0x10;
pHeader->mLength = tlvx10Sz;
ULONG offset = sizeof( sQMIRawContentHeader );
sOMASetFeaturesRequest_Provisioning * pTLVx10;
pTLVx10 = (sOMASetFeaturesRequest_Provisioning*)(pOut + offset);
memset( pTLVx10, 0, tlvx10Sz );
// Set the value
pTLVx10->mDeviceProvisioningServiceUpdateEnabled = (INT8)bProvisioning;
offset += tlvx10Sz;
*pOutLen = offset;
return eGOBI_ERR_NONE;
}
/*===========================================================================
METHOD:
PackOMADMSetPRLUpdateFeature
DESCRIPTION:
This function sets the OMA-DM PRL service update feature setting
PARAMETERS:
pOutLen [I/O] - Upon input the maximum number of BYTEs pOut can
contain, upon output the number of BYTEs copied
to pOut
pOut [ O ] - Output buffer
bPRLUpdate [ I ] - PRL service update enabled
RETURN VALUE:
ULONG - Return code
===========================================================================*/
ULONG PackOMADMSetPRLUpdateFeature(
ULONG * pOutLen,
BYTE * pOut,
ULONG bPRLUpdate )
{
// Validate arguments
if (pOut == 0)
{
return eGOBI_ERR_INVALID_ARG;
}
// Add bPRLUpdate
// Check size
WORD tlvx11Sz = sizeof( sOMASetFeaturesRequest_PRLUpdate );
if (*pOutLen < sizeof( sQMIRawContentHeader ) + tlvx11Sz)
{
return eGOBI_ERR_BUFFER_SZ;
}
sQMIRawContentHeader * pHeader = (sQMIRawContentHeader*)pOut;
pHeader->mTypeID = 0x11;
pHeader->mLength = tlvx11Sz;
ULONG offset = sizeof( sQMIRawContentHeader );
sOMASetFeaturesRequest_PRLUpdate * pTLVx11;
pTLVx11 = (sOMASetFeaturesRequest_PRLUpdate*)(pOut + offset);
memset( pTLVx11, 0, tlvx11Sz );
// Set the value
pTLVx11->mPRLServiceUpdateEnabled = (INT8)bPRLUpdate;
offset += tlvx11Sz;
*pOutLen = offset;
return eGOBI_ERR_NONE;
}
|