blob: 37bd2a6fc30d48d623ffb8b75d420edb315abd40 [file] [log] [blame]
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03001/*
2 * Copyright (c) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "RILC"
18
19#include <android/hardware/radio/1.0/IRadio.h>
20#include <android/hardware/radio/deprecated/1.0/IOemHook.h>
21
22#include <hwbinder/IPCThreadState.h>
23#include <hwbinder/ProcessState.h>
24#include <ril_service.h>
25#include <hidl/HidlTransportSupport.h>
26#include <utils/SystemClock.h>
27#include <inttypes.h>
Martin Bouchetf7c75aa2017-09-24 04:51:55 -030028#include <cutils/properties.h>
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -030029
30#define INVALID_HEX_CHAR 16
31
32// Enable verbose logging
33#define VDBG 0
34
35using namespace android::hardware::radio::V1_0;
36using namespace android::hardware::radio::deprecated::V1_0;
37using ::android::hardware::configureRpcThreadpool;
38using ::android::hardware::joinRpcThreadpool;
39using ::android::hardware::Return;
40using ::android::hardware::hidl_string;
41using ::android::hardware::hidl_vec;
42using ::android::hardware::hidl_array;
43using ::android::hardware::Void;
44using android::CommandInfo;
45using android::RequestInfo;
46using android::requestToString;
47using android::sp;
48
49#define BOOL_TO_INT(x) (x ? 1 : 0)
50#define ATOI_NULL_HANDLED(x) (x ? atoi(x) : -1)
51#define ATOI_NULL_HANDLED_DEF(x, defaultVal) (x ? atoi(x) : defaultVal)
52
53#if defined(ANDROID_MULTI_SIM)
54#define CALL_ONREQUEST(a, b, c, d, e) \
55 s_vendorFunctions->onRequest((a), (b), (c), (d), ((RIL_SOCKET_ID)(e)))
56#define CALL_ONSTATEREQUEST(a) s_vendorFunctions->onStateRequest((RIL_SOCKET_ID)(a))
57#else
58#define CALL_ONREQUEST(a, b, c, d, e) s_vendorFunctions->onRequest((a), (b), (c), (d))
59#define CALL_ONSTATEREQUEST(a) s_vendorFunctions->onStateRequest()
60#endif
61
62RIL_RadioFunctions *s_vendorFunctions = NULL;
63static CommandInfo *s_commands;
64
65struct RadioImpl;
66struct OemHookImpl;
67
68#if (SIM_COUNT >= 2)
69sp<RadioImpl> radioService[SIM_COUNT];
70sp<OemHookImpl> oemHookService[SIM_COUNT];
71// counter used for synchronization. It is incremented every time response callbacks are updated.
72volatile int32_t mCounterRadio[SIM_COUNT];
73volatile int32_t mCounterOemHook[SIM_COUNT];
74#else
75sp<RadioImpl> radioService[1];
76sp<OemHookImpl> oemHookService[1];
77// counter used for synchronization. It is incremented every time response callbacks are updated.
78volatile int32_t mCounterRadio[1];
79volatile int32_t mCounterOemHook[1];
80#endif
81
82static pthread_rwlock_t radioServiceRwlock = PTHREAD_RWLOCK_INITIALIZER;
83
84#if (SIM_COUNT >= 2)
85static pthread_rwlock_t radioServiceRwlock2 = PTHREAD_RWLOCK_INITIALIZER;
86#if (SIM_COUNT >= 3)
87static pthread_rwlock_t radioServiceRwlock3 = PTHREAD_RWLOCK_INITIALIZER;
88#if (SIM_COUNT >= 4)
89static pthread_rwlock_t radioServiceRwlock4 = PTHREAD_RWLOCK_INITIALIZER;
90#endif
91#endif
92#endif
93
94void convertRilHardwareConfigListToHal(void *response, size_t responseLen,
95 hidl_vec<HardwareConfig>& records);
96
97void convertRilRadioCapabilityToHal(void *response, size_t responseLen, RadioCapability& rc);
98
99void convertRilLceDataInfoToHal(void *response, size_t responseLen, LceDataInfo& lce);
100
101void convertRilSignalStrengthToHal(void *response, size_t responseLen,
102 SignalStrength& signalStrength);
103
104void convertRilDataCallToHal(RIL_Data_Call_Response_v6 *dcResponse,
105 SetupDataCallResult& dcResult);
106
107void convertRilDataCallToHal(RIL_Data_Call_Response_v9 *dcResponse,
108 SetupDataCallResult& dcResult);
109
110void convertRilDataCallToHal(RIL_Data_Call_Response_v11 *dcResponse,
111 SetupDataCallResult& dcResult);
112
113void convertRilDataCallListToHal(void *response, size_t responseLen,
114 hidl_vec<SetupDataCallResult>& dcResultList);
115
116void convertRilCellInfoListToHal(void *response, size_t responseLen, hidl_vec<CellInfo>& records);
117
118struct RadioImpl : public IRadio {
119 int32_t mSlotId;
120 sp<IRadioResponse> mRadioResponse;
121 sp<IRadioIndication> mRadioIndication;
122
123 Return<void> setResponseFunctions(
124 const ::android::sp<IRadioResponse>& radioResponse,
125 const ::android::sp<IRadioIndication>& radioIndication);
126
127 Return<void> getIccCardStatus(int32_t serial);
128
129 Return<void> supplyIccPinForApp(int32_t serial, const hidl_string& pin,
130 const hidl_string& aid);
131
132 Return<void> supplyIccPukForApp(int32_t serial, const hidl_string& puk,
133 const hidl_string& pin, const hidl_string& aid);
134
135 Return<void> supplyIccPin2ForApp(int32_t serial,
136 const hidl_string& pin2,
137 const hidl_string& aid);
138
139 Return<void> supplyIccPuk2ForApp(int32_t serial, const hidl_string& puk2,
140 const hidl_string& pin2, const hidl_string& aid);
141
142 Return<void> changeIccPinForApp(int32_t serial, const hidl_string& oldPin,
143 const hidl_string& newPin, const hidl_string& aid);
144
145 Return<void> changeIccPin2ForApp(int32_t serial, const hidl_string& oldPin2,
146 const hidl_string& newPin2, const hidl_string& aid);
147
148 Return<void> supplyNetworkDepersonalization(int32_t serial, const hidl_string& netPin);
149
150 Return<void> getCurrentCalls(int32_t serial);
151
152 Return<void> dial(int32_t serial, const Dial& dialInfo);
153
154 Return<void> getImsiForApp(int32_t serial,
155 const ::android::hardware::hidl_string& aid);
156
157 Return<void> hangup(int32_t serial, int32_t gsmIndex);
158
159 Return<void> hangupWaitingOrBackground(int32_t serial);
160
161 Return<void> hangupForegroundResumeBackground(int32_t serial);
162
163 Return<void> switchWaitingOrHoldingAndActive(int32_t serial);
164
165 Return<void> conference(int32_t serial);
166
167 Return<void> rejectCall(int32_t serial);
168
169 Return<void> getLastCallFailCause(int32_t serial);
170
171 Return<void> getSignalStrength(int32_t serial);
172
173 Return<void> getVoiceRegistrationState(int32_t serial);
174
175 Return<void> getDataRegistrationState(int32_t serial);
176
177 Return<void> getOperator(int32_t serial);
178
179 Return<void> setRadioPower(int32_t serial, bool on);
180
181 Return<void> sendDtmf(int32_t serial,
182 const ::android::hardware::hidl_string& s);
183
184 Return<void> sendSms(int32_t serial, const GsmSmsMessage& message);
185
186 Return<void> sendSMSExpectMore(int32_t serial, const GsmSmsMessage& message);
187
188 Return<void> setupDataCall(int32_t serial,
189 RadioTechnology radioTechnology,
190 const DataProfileInfo& profileInfo,
191 bool modemCognitive,
192 bool roamingAllowed,
193 bool isRoaming);
194
195 Return<void> iccIOForApp(int32_t serial,
196 const IccIo& iccIo);
197
198 Return<void> sendUssd(int32_t serial,
199 const ::android::hardware::hidl_string& ussd);
200
201 Return<void> cancelPendingUssd(int32_t serial);
202
203 Return<void> getClir(int32_t serial);
204
205 Return<void> setClir(int32_t serial, int32_t status);
206
207 Return<void> getCallForwardStatus(int32_t serial,
208 const CallForwardInfo& callInfo);
209
210 Return<void> setCallForward(int32_t serial,
211 const CallForwardInfo& callInfo);
212
213 Return<void> getCallWaiting(int32_t serial, int32_t serviceClass);
214
215 Return<void> setCallWaiting(int32_t serial, bool enable, int32_t serviceClass);
216
217 Return<void> acknowledgeLastIncomingGsmSms(int32_t serial,
218 bool success, SmsAcknowledgeFailCause cause);
219
220 Return<void> acceptCall(int32_t serial);
221
222 Return<void> deactivateDataCall(int32_t serial,
223 int32_t cid, bool reasonRadioShutDown);
224
225 Return<void> getFacilityLockForApp(int32_t serial,
226 const ::android::hardware::hidl_string& facility,
227 const ::android::hardware::hidl_string& password,
228 int32_t serviceClass,
229 const ::android::hardware::hidl_string& appId);
230
231 Return<void> setFacilityLockForApp(int32_t serial,
232 const ::android::hardware::hidl_string& facility,
233 bool lockState,
234 const ::android::hardware::hidl_string& password,
235 int32_t serviceClass,
236 const ::android::hardware::hidl_string& appId);
237
238 Return<void> setBarringPassword(int32_t serial,
239 const ::android::hardware::hidl_string& facility,
240 const ::android::hardware::hidl_string& oldPassword,
241 const ::android::hardware::hidl_string& newPassword);
242
243 Return<void> getNetworkSelectionMode(int32_t serial);
244
245 Return<void> setNetworkSelectionModeAutomatic(int32_t serial);
246
247 Return<void> setNetworkSelectionModeManual(int32_t serial,
248 const ::android::hardware::hidl_string& operatorNumeric);
249
250 Return<void> getAvailableNetworks(int32_t serial);
251
252 Return<void> startDtmf(int32_t serial,
253 const ::android::hardware::hidl_string& s);
254
255 Return<void> stopDtmf(int32_t serial);
256
257 Return<void> getBasebandVersion(int32_t serial);
258
259 Return<void> separateConnection(int32_t serial, int32_t gsmIndex);
260
261 Return<void> setMute(int32_t serial, bool enable);
262
263 Return<void> getMute(int32_t serial);
264
265 Return<void> getClip(int32_t serial);
266
267 Return<void> getDataCallList(int32_t serial);
268
269 Return<void> setSuppServiceNotifications(int32_t serial, bool enable);
270
271 Return<void> writeSmsToSim(int32_t serial,
272 const SmsWriteArgs& smsWriteArgs);
273
274 Return<void> deleteSmsOnSim(int32_t serial, int32_t index);
275
276 Return<void> setBandMode(int32_t serial, RadioBandMode mode);
277
278 Return<void> getAvailableBandModes(int32_t serial);
279
280 Return<void> sendEnvelope(int32_t serial,
281 const ::android::hardware::hidl_string& command);
282
283 Return<void> sendTerminalResponseToSim(int32_t serial,
284 const ::android::hardware::hidl_string& commandResponse);
285
286 Return<void> handleStkCallSetupRequestFromSim(int32_t serial, bool accept);
287
288 Return<void> explicitCallTransfer(int32_t serial);
289
290 Return<void> setPreferredNetworkType(int32_t serial, PreferredNetworkType nwType);
291
292 Return<void> getPreferredNetworkType(int32_t serial);
293
294 Return<void> getNeighboringCids(int32_t serial);
295
296 Return<void> setLocationUpdates(int32_t serial, bool enable);
297
298 Return<void> setCdmaSubscriptionSource(int32_t serial,
299 CdmaSubscriptionSource cdmaSub);
300
301 Return<void> setCdmaRoamingPreference(int32_t serial, CdmaRoamingType type);
302
303 Return<void> getCdmaRoamingPreference(int32_t serial);
304
305 Return<void> setTTYMode(int32_t serial, TtyMode mode);
306
307 Return<void> getTTYMode(int32_t serial);
308
309 Return<void> setPreferredVoicePrivacy(int32_t serial, bool enable);
310
311 Return<void> getPreferredVoicePrivacy(int32_t serial);
312
313 Return<void> sendCDMAFeatureCode(int32_t serial,
314 const ::android::hardware::hidl_string& featureCode);
315
316 Return<void> sendBurstDtmf(int32_t serial,
317 const ::android::hardware::hidl_string& dtmf,
318 int32_t on,
319 int32_t off);
320
321 Return<void> sendCdmaSms(int32_t serial, const CdmaSmsMessage& sms);
322
323 Return<void> acknowledgeLastIncomingCdmaSms(int32_t serial,
324 const CdmaSmsAck& smsAck);
325
326 Return<void> getGsmBroadcastConfig(int32_t serial);
327
328 Return<void> setGsmBroadcastConfig(int32_t serial,
329 const hidl_vec<GsmBroadcastSmsConfigInfo>& configInfo);
330
331 Return<void> setGsmBroadcastActivation(int32_t serial, bool activate);
332
333 Return<void> getCdmaBroadcastConfig(int32_t serial);
334
335 Return<void> setCdmaBroadcastConfig(int32_t serial,
336 const hidl_vec<CdmaBroadcastSmsConfigInfo>& configInfo);
337
338 Return<void> setCdmaBroadcastActivation(int32_t serial, bool activate);
339
340 Return<void> getCDMASubscription(int32_t serial);
341
342 Return<void> writeSmsToRuim(int32_t serial, const CdmaSmsWriteArgs& cdmaSms);
343
344 Return<void> deleteSmsOnRuim(int32_t serial, int32_t index);
345
346 Return<void> getDeviceIdentity(int32_t serial);
347
348 Return<void> exitEmergencyCallbackMode(int32_t serial);
349
350 Return<void> getSmscAddress(int32_t serial);
351
352 Return<void> setSmscAddress(int32_t serial,
353 const ::android::hardware::hidl_string& smsc);
354
355 Return<void> reportSmsMemoryStatus(int32_t serial, bool available);
356
357 Return<void> reportStkServiceIsRunning(int32_t serial);
358
359 Return<void> getCdmaSubscriptionSource(int32_t serial);
360
361 Return<void> requestIsimAuthentication(int32_t serial,
362 const ::android::hardware::hidl_string& challenge);
363
364 Return<void> acknowledgeIncomingGsmSmsWithPdu(int32_t serial,
365 bool success,
366 const ::android::hardware::hidl_string& ackPdu);
367
368 Return<void> sendEnvelopeWithStatus(int32_t serial,
369 const ::android::hardware::hidl_string& contents);
370
371 Return<void> getVoiceRadioTechnology(int32_t serial);
372
373 Return<void> getCellInfoList(int32_t serial);
374
375 Return<void> setCellInfoListRate(int32_t serial, int32_t rate);
376
377 Return<void> setInitialAttachApn(int32_t serial, const DataProfileInfo& dataProfileInfo,
378 bool modemCognitive, bool isRoaming);
379
380 Return<void> getImsRegistrationState(int32_t serial);
381
382 Return<void> sendImsSms(int32_t serial, const ImsSmsMessage& message);
383
384 Return<void> iccTransmitApduBasicChannel(int32_t serial, const SimApdu& message);
385
386 Return<void> iccOpenLogicalChannel(int32_t serial,
387 const ::android::hardware::hidl_string& aid, int32_t p2);
388
389 Return<void> iccCloseLogicalChannel(int32_t serial, int32_t channelId);
390
391 Return<void> iccTransmitApduLogicalChannel(int32_t serial, const SimApdu& message);
392
393 Return<void> nvReadItem(int32_t serial, NvItem itemId);
394
395 Return<void> nvWriteItem(int32_t serial, const NvWriteItem& item);
396
397 Return<void> nvWriteCdmaPrl(int32_t serial,
398 const ::android::hardware::hidl_vec<uint8_t>& prl);
399
400 Return<void> nvResetConfig(int32_t serial, ResetNvType resetType);
401
402 Return<void> setUiccSubscription(int32_t serial, const SelectUiccSub& uiccSub);
403
404 Return<void> setDataAllowed(int32_t serial, bool allow);
405
406 Return<void> getHardwareConfig(int32_t serial);
407
408 Return<void> requestIccSimAuthentication(int32_t serial,
409 int32_t authContext,
410 const ::android::hardware::hidl_string& authData,
411 const ::android::hardware::hidl_string& aid);
412
413 Return<void> setDataProfile(int32_t serial,
414 const ::android::hardware::hidl_vec<DataProfileInfo>& profiles, bool isRoaming);
415
416 Return<void> requestShutdown(int32_t serial);
417
418 Return<void> getRadioCapability(int32_t serial);
419
420 Return<void> setRadioCapability(int32_t serial, const RadioCapability& rc);
421
422 Return<void> startLceService(int32_t serial, int32_t reportInterval, bool pullMode);
423
424 Return<void> stopLceService(int32_t serial);
425
426 Return<void> pullLceData(int32_t serial);
427
428 Return<void> getModemActivityInfo(int32_t serial);
429
430 Return<void> setAllowedCarriers(int32_t serial,
431 bool allAllowed,
432 const CarrierRestrictions& carriers);
433
434 Return<void> getAllowedCarriers(int32_t serial);
435
436 Return<void> sendDeviceState(int32_t serial, DeviceStateType deviceStateType, bool state);
437
438 Return<void> setIndicationFilter(int32_t serial, int32_t indicationFilter);
439
440 Return<void> setSimCardPower(int32_t serial, bool powerUp);
441
442 Return<void> responseAcknowledgement();
443
444 void checkReturnStatus(Return<void>& ret);
445};
446
447struct OemHookImpl : public IOemHook {
448 int32_t mSlotId;
449 sp<IOemHookResponse> mOemHookResponse;
450 sp<IOemHookIndication> mOemHookIndication;
451
452 Return<void> setResponseFunctions(
453 const ::android::sp<IOemHookResponse>& oemHookResponse,
454 const ::android::sp<IOemHookIndication>& oemHookIndication);
455
456 Return<void> sendRequestRaw(int32_t serial,
457 const ::android::hardware::hidl_vec<uint8_t>& data);
458
459 Return<void> sendRequestStrings(int32_t serial,
460 const ::android::hardware::hidl_vec<::android::hardware::hidl_string>& data);
461};
462
463void memsetAndFreeStrings(int numPointers, ...) {
464 va_list ap;
465 va_start(ap, numPointers);
466 for (int i = 0; i < numPointers; i++) {
467 char *ptr = va_arg(ap, char *);
468 if (ptr) {
469#ifdef MEMSET_FREED
470 // TODO: Should pass in the maximum length of the string
471 memsetString(ptr);
472#endif
473 free(ptr);
474 }
475 }
476 va_end(ap);
477}
478
479void sendErrorResponse(RequestInfo *pRI, RIL_Errno err) {
480 pRI->pCI->responseFunction((int) pRI->socket_id,
481 (int) RadioResponseType::SOLICITED, pRI->token, err, NULL, 0);
482}
483
484/**
485 * Copies over src to dest. If memory allocation fails, responseFunction() is called for the
486 * request with error RIL_E_NO_MEMORY.
487 * Returns true on success, and false on failure.
488 */
489bool copyHidlStringToRil(char **dest, const hidl_string &src, RequestInfo *pRI) {
490 size_t len = src.size();
491 if (len == 0) {
492 *dest = NULL;
493 return true;
494 }
495 *dest = (char *) calloc(len + 1, sizeof(char));
496 if (*dest == NULL) {
497 RLOGE("Memory allocation failed for request %s", requestToString(pRI->pCI->requestNumber));
498 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
499 return false;
500 }
501 strncpy(*dest, src.c_str(), len + 1);
502 return true;
503}
504
505hidl_string convertCharPtrToHidlString(const char *ptr) {
506 hidl_string ret;
507 if (ptr != NULL) {
508 // TODO: replace this with strnlen
509 ret.setToExternal(ptr, strlen(ptr));
510 }
511 return ret;
512}
513
514bool dispatchVoid(int serial, int slotId, int request) {
515 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
516 if (pRI == NULL) {
517 return false;
518 }
519 CALL_ONREQUEST(request, NULL, 0, pRI, slotId);
520 return true;
521}
522
523bool dispatchString(int serial, int slotId, int request, const char * str) {
524 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
525 if (pRI == NULL) {
526 return false;
527 }
528
529 char *pString;
530 if (!copyHidlStringToRil(&pString, str, pRI)) {
531 return false;
532 }
533
534 CALL_ONREQUEST(request, pString, sizeof(char *), pRI, slotId);
535
536 memsetAndFreeStrings(1, pString);
537 return true;
538}
539
540bool dispatchStrings(int serial, int slotId, int request, int countStrings, ...) {
541 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
542 if (pRI == NULL) {
543 return false;
544 }
545
546 char **pStrings;
547 pStrings = (char **)calloc(countStrings, sizeof(char *));
548 if (pStrings == NULL) {
549 RLOGE("Memory allocation failed for request %s", requestToString(request));
550 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
551 return false;
552 }
553 va_list ap;
554 va_start(ap, countStrings);
555 for (int i = 0; i < countStrings; i++) {
556 const char* str = va_arg(ap, const char *);
557 if (!copyHidlStringToRil(&pStrings[i], hidl_string(str), pRI)) {
558 va_end(ap);
559 for (int j = 0; j < i; j++) {
560 memsetAndFreeStrings(1, pStrings[j]);
561 }
562 free(pStrings);
563 return false;
564 }
565 }
566 va_end(ap);
567
568 CALL_ONREQUEST(request, pStrings, countStrings * sizeof(char *), pRI, slotId);
569
570 if (pStrings != NULL) {
571 for (int i = 0 ; i < countStrings ; i++) {
572 memsetAndFreeStrings(1, pStrings[i]);
573 }
574
575#ifdef MEMSET_FREED
576 memset(pStrings, 0, countStrings * sizeof(char *));
577#endif
578 free(pStrings);
579 }
580 return true;
581}
582
583bool dispatchStrings(int serial, int slotId, int request, const hidl_vec<hidl_string>& data) {
584 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
585 if (pRI == NULL) {
586 return false;
587 }
588
589 int countStrings = data.size();
590 char **pStrings;
591 pStrings = (char **)calloc(countStrings, sizeof(char *));
592 if (pStrings == NULL) {
593 RLOGE("Memory allocation failed for request %s", requestToString(request));
594 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
595 return false;
596 }
597
598 for (int i = 0; i < countStrings; i++) {
599 if (!copyHidlStringToRil(&pStrings[i], data[i], pRI)) {
600 for (int j = 0; j < i; j++) {
601 memsetAndFreeStrings(1, pStrings[j]);
602 }
603 free(pStrings);
604 return false;
605 }
606 }
607
608 CALL_ONREQUEST(request, pStrings, countStrings * sizeof(char *), pRI, slotId);
609
610 if (pStrings != NULL) {
611 for (int i = 0 ; i < countStrings ; i++) {
612 memsetAndFreeStrings(1, pStrings[i]);
613 }
614
615#ifdef MEMSET_FREED
616 memset(pStrings, 0, countStrings * sizeof(char *));
617#endif
618 free(pStrings);
619 }
620 return true;
621}
622
623bool dispatchInts(int serial, int slotId, int request, int countInts, ...) {
624 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
625 if (pRI == NULL) {
626 return false;
627 }
628
629 int *pInts = (int *)calloc(countInts, sizeof(int));
630
631 if (pInts == NULL) {
632 RLOGE("Memory allocation failed for request %s", requestToString(request));
633 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
634 return false;
635 }
636 va_list ap;
637 va_start(ap, countInts);
638 for (int i = 0; i < countInts; i++) {
639 pInts[i] = va_arg(ap, int);
640 }
641 va_end(ap);
642
643 CALL_ONREQUEST(request, pInts, countInts * sizeof(int), pRI, slotId);
644
645 if (pInts != NULL) {
646#ifdef MEMSET_FREED
647 memset(pInts, 0, countInts * sizeof(int));
648#endif
649 free(pInts);
650 }
651 return true;
652}
653
654bool dispatchCallForwardStatus(int serial, int slotId, int request,
655 const CallForwardInfo& callInfo) {
656 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
657 if (pRI == NULL) {
658 return false;
659 }
660
661 RIL_CallForwardInfo cf;
662 cf.status = (int) callInfo.status;
663 cf.reason = callInfo.reason;
664 cf.serviceClass = callInfo.serviceClass;
665 cf.toa = callInfo.toa;
666 cf.timeSeconds = callInfo.timeSeconds;
667
668 if (!copyHidlStringToRil(&cf.number, callInfo.number, pRI)) {
669 return false;
670 }
671
672 CALL_ONREQUEST(request, &cf, sizeof(cf), pRI, slotId);
673
674 memsetAndFreeStrings(1, cf.number);
675
676 return true;
677}
678
679bool dispatchRaw(int serial, int slotId, int request, const hidl_vec<uint8_t>& rawBytes) {
680 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
681 if (pRI == NULL) {
682 return false;
683 }
684
685 const uint8_t *uData = rawBytes.data();
686
687 CALL_ONREQUEST(request, (void *) uData, rawBytes.size(), pRI, slotId);
688
689 return true;
690}
691
692bool dispatchIccApdu(int serial, int slotId, int request, const SimApdu& message) {
693 RequestInfo *pRI = android::addRequestToList(serial, slotId, request);
694 if (pRI == NULL) {
695 return false;
696 }
697
698 RIL_SIM_APDU apdu = {};
699
700 apdu.sessionid = message.sessionId;
701 apdu.cla = message.cla;
702 apdu.instruction = message.instruction;
703 apdu.p1 = message.p1;
704 apdu.p2 = message.p2;
705 apdu.p3 = message.p3;
706
707 if (!copyHidlStringToRil(&apdu.data, message.data, pRI)) {
708 return false;
709 }
710
711 CALL_ONREQUEST(request, &apdu, sizeof(apdu), pRI, slotId);
712
713 memsetAndFreeStrings(1, apdu.data);
714
715 return true;
716}
717
718void checkReturnStatus(int32_t slotId, Return<void>& ret, bool isRadioService) {
719 if (ret.isOk() == false) {
720 RLOGE("checkReturnStatus: unable to call response/indication callback");
721 // Remote process hosting the callbacks must be dead. Reset the callback objects;
722 // there's no other recovery to be done here. When the client process is back up, it will
723 // call setResponseFunctions()
724
725 // Caller should already hold rdlock, release that first
726 // note the current counter to avoid overwriting updates made by another thread before
727 // write lock is acquired.
728 int counter = isRadioService ? mCounterRadio[slotId] : mCounterOemHook[slotId];
729 pthread_rwlock_t *radioServiceRwlockPtr = radio::getRadioServiceRwlock(slotId);
730 int ret = pthread_rwlock_unlock(radioServiceRwlockPtr);
731 assert(ret == 0);
732
733 // acquire wrlock
734 ret = pthread_rwlock_wrlock(radioServiceRwlockPtr);
735 assert(ret == 0);
736
737 // make sure the counter value has not changed
738 if (counter == (isRadioService ? mCounterRadio[slotId] : mCounterOemHook[slotId])) {
739 if (isRadioService) {
740 radioService[slotId]->mRadioResponse = NULL;
741 radioService[slotId]->mRadioIndication = NULL;
742 } else {
743 oemHookService[slotId]->mOemHookResponse = NULL;
744 oemHookService[slotId]->mOemHookIndication = NULL;
745 }
746 isRadioService ? mCounterRadio[slotId]++ : mCounterOemHook[slotId]++;
747 } else {
748 RLOGE("checkReturnStatus: not resetting responseFunctions as they likely "
749 "got updated on another thread");
750 }
751
752 // release wrlock
753 ret = pthread_rwlock_unlock(radioServiceRwlockPtr);
754 assert(ret == 0);
755
756 // Reacquire rdlock
757 ret = pthread_rwlock_rdlock(radioServiceRwlockPtr);
758 assert(ret == 0);
759 }
760}
761
762void RadioImpl::checkReturnStatus(Return<void>& ret) {
763 ::checkReturnStatus(mSlotId, ret, true);
764}
765
766Return<void> RadioImpl::setResponseFunctions(
767 const ::android::sp<IRadioResponse>& radioResponseParam,
768 const ::android::sp<IRadioIndication>& radioIndicationParam) {
769 RLOGD("setResponseFunctions");
770
771 pthread_rwlock_t *radioServiceRwlockPtr = radio::getRadioServiceRwlock(mSlotId);
772 int ret = pthread_rwlock_wrlock(radioServiceRwlockPtr);
773 assert(ret == 0);
774
775 mRadioResponse = radioResponseParam;
776 mRadioIndication = radioIndicationParam;
777 mCounterRadio[mSlotId]++;
778
779 ret = pthread_rwlock_unlock(radioServiceRwlockPtr);
780 assert(ret == 0);
781
782 // client is connected. Send initial indications.
783 android::onNewCommandConnect((RIL_SOCKET_ID) mSlotId);
784
785 return Void();
786}
787
788Return<void> RadioImpl::getIccCardStatus(int32_t serial) {
789#if VDBG
790 RLOGD("getIccCardStatus: serial %d", serial);
791#endif
792 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_SIM_STATUS);
793 return Void();
794}
795
796Return<void> RadioImpl::supplyIccPinForApp(int32_t serial, const hidl_string& pin,
797 const hidl_string& aid) {
798#if VDBG
799 RLOGD("supplyIccPinForApp: serial %d", serial);
800#endif
801 dispatchStrings(serial, mSlotId, RIL_REQUEST_ENTER_SIM_PIN,
802 2, pin.c_str(), aid.c_str());
803 return Void();
804}
805
806Return<void> RadioImpl::supplyIccPukForApp(int32_t serial, const hidl_string& puk,
807 const hidl_string& pin, const hidl_string& aid) {
808#if VDBG
809 RLOGD("supplyIccPukForApp: serial %d", serial);
810#endif
811 dispatchStrings(serial, mSlotId, RIL_REQUEST_ENTER_SIM_PUK,
812 3, puk.c_str(), pin.c_str(), aid.c_str());
813 return Void();
814}
815
816Return<void> RadioImpl::supplyIccPin2ForApp(int32_t serial, const hidl_string& pin2,
817 const hidl_string& aid) {
818#if VDBG
819 RLOGD("supplyIccPin2ForApp: serial %d", serial);
820#endif
821 dispatchStrings(serial, mSlotId, RIL_REQUEST_ENTER_SIM_PIN2,
822 2, pin2.c_str(), aid.c_str());
823 return Void();
824}
825
826Return<void> RadioImpl::supplyIccPuk2ForApp(int32_t serial, const hidl_string& puk2,
827 const hidl_string& pin2, const hidl_string& aid) {
828#if VDBG
829 RLOGD("supplyIccPuk2ForApp: serial %d", serial);
830#endif
831 dispatchStrings(serial, mSlotId, RIL_REQUEST_ENTER_SIM_PUK2,
832 3, puk2.c_str(), pin2.c_str(), aid.c_str());
833 return Void();
834}
835
836Return<void> RadioImpl::changeIccPinForApp(int32_t serial, const hidl_string& oldPin,
837 const hidl_string& newPin, const hidl_string& aid) {
838#if VDBG
839 RLOGD("changeIccPinForApp: serial %d", serial);
840#endif
841 dispatchStrings(serial, mSlotId, RIL_REQUEST_CHANGE_SIM_PIN,
842 3, oldPin.c_str(), newPin.c_str(), aid.c_str());
843 return Void();
844}
845
846Return<void> RadioImpl::changeIccPin2ForApp(int32_t serial, const hidl_string& oldPin2,
847 const hidl_string& newPin2, const hidl_string& aid) {
848#if VDBG
849 RLOGD("changeIccPin2ForApp: serial %d", serial);
850#endif
851 dispatchStrings(serial, mSlotId, RIL_REQUEST_CHANGE_SIM_PIN2,
852 3, oldPin2.c_str(), newPin2.c_str(), aid.c_str());
853 return Void();
854}
855
856Return<void> RadioImpl::supplyNetworkDepersonalization(int32_t serial,
857 const hidl_string& netPin) {
858#if VDBG
859 RLOGD("supplyNetworkDepersonalization: serial %d", serial);
860#endif
861 dispatchStrings(serial, mSlotId, RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION,
862 1, netPin.c_str());
863 return Void();
864}
865
866Return<void> RadioImpl::getCurrentCalls(int32_t serial) {
867#if VDBG
868 RLOGD("getCurrentCalls: serial %d", serial);
869#endif
870 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_CURRENT_CALLS);
871 return Void();
872}
873
874Return<void> RadioImpl::dial(int32_t serial, const Dial& dialInfo) {
875#if VDBG
876 RLOGD("dial: serial %d", serial);
877#endif
878 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_DIAL);
879 if (pRI == NULL) {
880 return Void();
881 }
882 RIL_Dial dial = {};
883 RIL_UUS_Info uusInfo = {};
884 int32_t sizeOfDial = sizeof(dial);
885
886 if (!copyHidlStringToRil(&dial.address, dialInfo.address, pRI)) {
887 return Void();
888 }
889 dial.clir = (int) dialInfo.clir;
890
891 if (dialInfo.uusInfo.size() != 0) {
892 uusInfo.uusType = (RIL_UUS_Type) dialInfo.uusInfo[0].uusType;
893 uusInfo.uusDcs = (RIL_UUS_DCS) dialInfo.uusInfo[0].uusDcs;
894
895 if (dialInfo.uusInfo[0].uusData.size() == 0) {
896 uusInfo.uusData = NULL;
897 uusInfo.uusLength = 0;
898 } else {
899 if (!copyHidlStringToRil(&uusInfo.uusData, dialInfo.uusInfo[0].uusData, pRI)) {
900 memsetAndFreeStrings(1, dial.address);
901 return Void();
902 }
903 uusInfo.uusLength = dialInfo.uusInfo[0].uusData.size();
904 }
905
906 dial.uusInfo = &uusInfo;
907 }
908
909 CALL_ONREQUEST(RIL_REQUEST_DIAL, &dial, sizeOfDial, pRI, mSlotId);
910
911 memsetAndFreeStrings(2, dial.address, uusInfo.uusData);
912
913 return Void();
914}
915
916Return<void> RadioImpl::getImsiForApp(int32_t serial, const hidl_string& aid) {
917#if VDBG
918 RLOGD("getImsiForApp: serial %d", serial);
919#endif
920 dispatchStrings(serial, mSlotId, RIL_REQUEST_GET_IMSI,
921 1, aid.c_str());
922 return Void();
923}
924
925Return<void> RadioImpl::hangup(int32_t serial, int32_t gsmIndex) {
926#if VDBG
927 RLOGD("hangup: serial %d", serial);
928#endif
929 dispatchInts(serial, mSlotId, RIL_REQUEST_HANGUP, 1, gsmIndex);
930 return Void();
931}
932
933Return<void> RadioImpl::hangupWaitingOrBackground(int32_t serial) {
934#if VDBG
935 RLOGD("hangupWaitingOrBackground: serial %d", serial);
936#endif
937 dispatchVoid(serial, mSlotId, RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND);
938 return Void();
939}
940
941Return<void> RadioImpl::hangupForegroundResumeBackground(int32_t serial) {
942#if VDBG
943 RLOGD("hangupForegroundResumeBackground: serial %d", serial);
944#endif
945 dispatchVoid(serial, mSlotId, RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND);
946 return Void();
947}
948
949Return<void> RadioImpl::switchWaitingOrHoldingAndActive(int32_t serial) {
950#if VDBG
951 RLOGD("switchWaitingOrHoldingAndActive: serial %d", serial);
952#endif
953 dispatchVoid(serial, mSlotId, RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE);
954 return Void();
955}
956
957Return<void> RadioImpl::conference(int32_t serial) {
958#if VDBG
959 RLOGD("conference: serial %d", serial);
960#endif
961 dispatchVoid(serial, mSlotId, RIL_REQUEST_CONFERENCE);
962 return Void();
963}
964
965Return<void> RadioImpl::rejectCall(int32_t serial) {
966#if VDBG
967 RLOGD("rejectCall: serial %d", serial);
968#endif
969 dispatchVoid(serial, mSlotId, RIL_REQUEST_UDUB);
970 return Void();
971}
972
973Return<void> RadioImpl::getLastCallFailCause(int32_t serial) {
974#if VDBG
975 RLOGD("getLastCallFailCause: serial %d", serial);
976#endif
977 dispatchVoid(serial, mSlotId, RIL_REQUEST_LAST_CALL_FAIL_CAUSE);
978 return Void();
979}
980
981Return<void> RadioImpl::getSignalStrength(int32_t serial) {
982#if VDBG
983 RLOGD("getSignalStrength: serial %d", serial);
984#endif
985 dispatchVoid(serial, mSlotId, RIL_REQUEST_SIGNAL_STRENGTH);
986 return Void();
987}
988
989Return<void> RadioImpl::getVoiceRegistrationState(int32_t serial) {
990#if VDBG
991 RLOGD("getVoiceRegistrationState: serial %d", serial);
992#endif
993 dispatchVoid(serial, mSlotId, RIL_REQUEST_VOICE_REGISTRATION_STATE);
994 return Void();
995}
996
997Return<void> RadioImpl::getDataRegistrationState(int32_t serial) {
998#if VDBG
999 RLOGD("getDataRegistrationState: serial %d", serial);
1000#endif
1001 dispatchVoid(serial, mSlotId, RIL_REQUEST_DATA_REGISTRATION_STATE);
1002 return Void();
1003}
1004
1005Return<void> RadioImpl::getOperator(int32_t serial) {
1006#if VDBG
1007 RLOGD("getOperator: serial %d", serial);
1008#endif
1009 dispatchVoid(serial, mSlotId, RIL_REQUEST_OPERATOR);
1010 return Void();
1011}
1012
1013Return<void> RadioImpl::setRadioPower(int32_t serial, bool on) {
1014 RLOGD("setRadioPower: serial %d on %d", serial, on);
1015 dispatchInts(serial, mSlotId, RIL_REQUEST_RADIO_POWER, 1, BOOL_TO_INT(on));
1016 return Void();
1017}
1018
1019Return<void> RadioImpl::sendDtmf(int32_t serial, const hidl_string& s) {
1020#if VDBG
1021 RLOGD("sendDtmf: serial %d", serial);
1022#endif
1023 dispatchString(serial, mSlotId, RIL_REQUEST_DTMF, s.c_str());
1024 return Void();
1025}
1026
1027Return<void> RadioImpl::sendSms(int32_t serial, const GsmSmsMessage& message) {
1028#if VDBG
1029 RLOGD("sendSms: serial %d", serial);
1030#endif
1031 dispatchStrings(serial, mSlotId, RIL_REQUEST_SEND_SMS,
1032 2, message.smscPdu.c_str(), message.pdu.c_str());
1033 return Void();
1034}
1035
1036Return<void> RadioImpl::sendSMSExpectMore(int32_t serial, const GsmSmsMessage& message) {
1037#if VDBG
1038 RLOGD("sendSMSExpectMore: serial %d", serial);
1039#endif
1040 dispatchStrings(serial, mSlotId, RIL_REQUEST_SEND_SMS_EXPECT_MORE,
1041 2, message.smscPdu.c_str(), message.pdu.c_str());
1042 return Void();
1043}
1044
1045static bool convertMvnoTypeToString(MvnoType type, char *&str) {
1046 switch (type) {
1047 case MvnoType::IMSI:
1048 str = (char *)"imsi";
1049 return true;
1050 case MvnoType::GID:
1051 str = (char *)"gid";
1052 return true;
1053 case MvnoType::SPN:
1054 str = (char *)"spn";
1055 return true;
1056 case MvnoType::NONE:
1057 str = (char *)"";
1058 return true;
1059 }
1060 return false;
1061}
1062
1063Return<void> RadioImpl::setupDataCall(int32_t serial, RadioTechnology radioTechnology,
1064 const DataProfileInfo& dataProfileInfo, bool modemCognitive,
1065 bool roamingAllowed, bool isRoaming) {
1066
1067#if VDBG
1068 RLOGD("setupDataCall: serial %d", serial);
1069#endif
1070
1071 if (s_vendorFunctions->version >= 4 && s_vendorFunctions->version <= 14) {
1072 const hidl_string &protocol =
1073 (isRoaming ? dataProfileInfo.roamingProtocol : dataProfileInfo.protocol);
1074 dispatchStrings(serial, mSlotId, RIL_REQUEST_SETUP_DATA_CALL, 7,
1075 std::to_string((int) radioTechnology + 2).c_str(),
1076 std::to_string((int) dataProfileInfo.profileId).c_str(),
1077 dataProfileInfo.apn.c_str(),
1078 dataProfileInfo.user.c_str(),
1079 dataProfileInfo.password.c_str(),
1080 std::to_string((int) dataProfileInfo.authType).c_str(),
1081 protocol.c_str());
1082 } else if (s_vendorFunctions->version >= 15) {
1083 char *mvnoTypeStr = NULL;
1084 if (!convertMvnoTypeToString(dataProfileInfo.mvnoType, mvnoTypeStr)) {
1085 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1086 RIL_REQUEST_SETUP_DATA_CALL);
1087 if (pRI != NULL) {
1088 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
1089 }
1090 return Void();
1091 }
1092 dispatchStrings(serial, mSlotId, RIL_REQUEST_SETUP_DATA_CALL, 15,
1093 std::to_string((int) radioTechnology + 2).c_str(),
1094 std::to_string((int) dataProfileInfo.profileId).c_str(),
1095 dataProfileInfo.apn.c_str(),
1096 dataProfileInfo.user.c_str(),
1097 dataProfileInfo.password.c_str(),
1098 std::to_string((int) dataProfileInfo.authType).c_str(),
1099 dataProfileInfo.protocol.c_str(),
1100 dataProfileInfo.roamingProtocol.c_str(),
1101 std::to_string(dataProfileInfo.supportedApnTypesBitmap).c_str(),
1102 std::to_string(dataProfileInfo.bearerBitmap).c_str(),
1103 modemCognitive ? "1" : "0",
1104 std::to_string(dataProfileInfo.mtu).c_str(),
1105 mvnoTypeStr,
1106 dataProfileInfo.mvnoMatchData.c_str(),
1107 roamingAllowed ? "1" : "0");
1108 } else {
1109 RLOGE("Unsupported RIL version %d, min version expected 4", s_vendorFunctions->version);
1110 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1111 RIL_REQUEST_SETUP_DATA_CALL);
1112 if (pRI != NULL) {
1113 sendErrorResponse(pRI, RIL_E_REQUEST_NOT_SUPPORTED);
1114 }
1115 }
1116 return Void();
1117}
1118
1119Return<void> RadioImpl::iccIOForApp(int32_t serial, const IccIo& iccIo) {
1120#if VDBG
1121 RLOGD("iccIOForApp: serial %d", serial);
1122#endif
1123 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_SIM_IO);
1124 if (pRI == NULL) {
1125 return Void();
1126 }
1127
1128 RIL_SIM_IO_v6 rilIccIo = {};
1129 rilIccIo.command = iccIo.command;
1130 rilIccIo.fileid = iccIo.fileId;
1131 if (!copyHidlStringToRil(&rilIccIo.path, iccIo.path, pRI)) {
1132 return Void();
1133 }
1134
1135 rilIccIo.p1 = iccIo.p1;
1136 rilIccIo.p2 = iccIo.p2;
1137 rilIccIo.p3 = iccIo.p3;
1138
1139 if (!copyHidlStringToRil(&rilIccIo.data, iccIo.data, pRI)) {
1140 memsetAndFreeStrings(1, rilIccIo.path);
1141 return Void();
1142 }
1143
1144 if (!copyHidlStringToRil(&rilIccIo.pin2, iccIo.pin2, pRI)) {
1145 memsetAndFreeStrings(2, rilIccIo.path, rilIccIo.data);
1146 return Void();
1147 }
1148
1149 if (!copyHidlStringToRil(&rilIccIo.aidPtr, iccIo.aid, pRI)) {
1150 memsetAndFreeStrings(3, rilIccIo.path, rilIccIo.data, rilIccIo.pin2);
1151 return Void();
1152 }
1153
1154 CALL_ONREQUEST(RIL_REQUEST_SIM_IO, &rilIccIo, sizeof(rilIccIo), pRI, mSlotId);
1155
1156 memsetAndFreeStrings(4, rilIccIo.path, rilIccIo.data, rilIccIo.pin2, rilIccIo.aidPtr);
1157
1158 return Void();
1159}
1160
1161Return<void> RadioImpl::sendUssd(int32_t serial, const hidl_string& ussd) {
1162#if VDBG
1163 RLOGD("sendUssd: serial %d", serial);
1164#endif
1165 dispatchString(serial, mSlotId, RIL_REQUEST_SEND_USSD, ussd.c_str());
1166 return Void();
1167}
1168
1169Return<void> RadioImpl::cancelPendingUssd(int32_t serial) {
1170#if VDBG
1171 RLOGD("cancelPendingUssd: serial %d", serial);
1172#endif
1173 dispatchVoid(serial, mSlotId, RIL_REQUEST_CANCEL_USSD);
1174 return Void();
1175}
1176
1177Return<void> RadioImpl::getClir(int32_t serial) {
1178#if VDBG
1179 RLOGD("getClir: serial %d", serial);
1180#endif
1181 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_CLIR);
1182 return Void();
1183}
1184
1185Return<void> RadioImpl::setClir(int32_t serial, int32_t status) {
1186#if VDBG
1187 RLOGD("setClir: serial %d", serial);
1188#endif
1189 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_CLIR, 1, status);
1190 return Void();
1191}
1192
1193Return<void> RadioImpl::getCallForwardStatus(int32_t serial, const CallForwardInfo& callInfo) {
1194#if VDBG
1195 RLOGD("getCallForwardStatus: serial %d", serial);
1196#endif
1197 dispatchCallForwardStatus(serial, mSlotId, RIL_REQUEST_QUERY_CALL_FORWARD_STATUS,
1198 callInfo);
1199 return Void();
1200}
1201
1202Return<void> RadioImpl::setCallForward(int32_t serial, const CallForwardInfo& callInfo) {
1203#if VDBG
1204 RLOGD("setCallForward: serial %d", serial);
1205#endif
1206 dispatchCallForwardStatus(serial, mSlotId, RIL_REQUEST_SET_CALL_FORWARD,
1207 callInfo);
1208 return Void();
1209}
1210
1211Return<void> RadioImpl::getCallWaiting(int32_t serial, int32_t serviceClass) {
1212#if VDBG
1213 RLOGD("getCallWaiting: serial %d", serial);
1214#endif
1215 dispatchInts(serial, mSlotId, RIL_REQUEST_QUERY_CALL_WAITING, 1, serviceClass);
1216 return Void();
1217}
1218
1219Return<void> RadioImpl::setCallWaiting(int32_t serial, bool enable, int32_t serviceClass) {
1220#if VDBG
1221 RLOGD("setCallWaiting: serial %d", serial);
1222#endif
1223 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_CALL_WAITING, 2, BOOL_TO_INT(enable),
1224 serviceClass);
1225 return Void();
1226}
1227
1228Return<void> RadioImpl::acknowledgeLastIncomingGsmSms(int32_t serial,
1229 bool success, SmsAcknowledgeFailCause cause) {
1230#if VDBG
1231 RLOGD("acknowledgeLastIncomingGsmSms: serial %d", serial);
1232#endif
1233 dispatchInts(serial, mSlotId, RIL_REQUEST_SMS_ACKNOWLEDGE, 2, BOOL_TO_INT(success),
1234 cause);
1235 return Void();
1236}
1237
1238Return<void> RadioImpl::acceptCall(int32_t serial) {
1239#if VDBG
1240 RLOGD("acceptCall: serial %d", serial);
1241#endif
1242 dispatchVoid(serial, mSlotId, RIL_REQUEST_ANSWER);
1243 return Void();
1244}
1245
1246Return<void> RadioImpl::deactivateDataCall(int32_t serial,
1247 int32_t cid, bool reasonRadioShutDown) {
1248#if VDBG
1249 RLOGD("deactivateDataCall: serial %d", serial);
1250#endif
1251 dispatchStrings(serial, mSlotId, RIL_REQUEST_DEACTIVATE_DATA_CALL,
1252 2, (std::to_string(cid)).c_str(), reasonRadioShutDown ? "1" : "0");
1253 return Void();
1254}
1255
1256Return<void> RadioImpl::getFacilityLockForApp(int32_t serial, const hidl_string& facility,
1257 const hidl_string& password, int32_t serviceClass,
1258 const hidl_string& appId) {
1259#if VDBG
1260 RLOGD("getFacilityLockForApp: serial %d", serial);
1261#endif
1262 dispatchStrings(serial, mSlotId, RIL_REQUEST_QUERY_FACILITY_LOCK,
1263 4, facility.c_str(), password.c_str(),
1264 (std::to_string(serviceClass)).c_str(), appId.c_str());
1265 return Void();
1266}
1267
1268Return<void> RadioImpl::setFacilityLockForApp(int32_t serial, const hidl_string& facility,
1269 bool lockState, const hidl_string& password,
1270 int32_t serviceClass, const hidl_string& appId) {
1271#if VDBG
1272 RLOGD("setFacilityLockForApp: serial %d", serial);
1273#endif
1274 dispatchStrings(serial, mSlotId, RIL_REQUEST_SET_FACILITY_LOCK,
1275 5, facility.c_str(), lockState ? "1" : "0", password.c_str(),
1276 (std::to_string(serviceClass)).c_str(), appId.c_str() );
1277 return Void();
1278}
1279
1280Return<void> RadioImpl::setBarringPassword(int32_t serial, const hidl_string& facility,
1281 const hidl_string& oldPassword,
1282 const hidl_string& newPassword) {
1283#if VDBG
1284 RLOGD("setBarringPassword: serial %d", serial);
1285#endif
1286 dispatchStrings(serial, mSlotId, RIL_REQUEST_CHANGE_BARRING_PASSWORD,
1287 3, facility.c_str(), oldPassword.c_str(), newPassword.c_str());
1288 return Void();
1289}
1290
1291Return<void> RadioImpl::getNetworkSelectionMode(int32_t serial) {
1292#if VDBG
1293 RLOGD("getNetworkSelectionMode: serial %d", serial);
1294#endif
1295 dispatchVoid(serial, mSlotId, RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE);
1296 return Void();
1297}
1298
1299Return<void> RadioImpl::setNetworkSelectionModeAutomatic(int32_t serial) {
1300#if VDBG
1301 RLOGD("setNetworkSelectionModeAutomatic: serial %d", serial);
1302#endif
1303 dispatchVoid(serial, mSlotId, RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC);
1304 return Void();
1305}
1306
1307Return<void> RadioImpl::setNetworkSelectionModeManual(int32_t serial,
1308 const hidl_string& operatorNumeric) {
1309#if VDBG
1310 RLOGD("setNetworkSelectionModeManual: serial %d", serial);
1311#endif
1312 dispatchString(serial, mSlotId, RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL,
1313 operatorNumeric.c_str());
1314 return Void();
1315}
1316
1317Return<void> RadioImpl::getAvailableNetworks(int32_t serial) {
1318#if VDBG
1319 RLOGD("getAvailableNetworks: serial %d", serial);
1320#endif
1321 dispatchVoid(serial, mSlotId, RIL_REQUEST_QUERY_AVAILABLE_NETWORKS);
1322 return Void();
1323}
1324
1325Return<void> RadioImpl::startDtmf(int32_t serial, const hidl_string& s) {
1326#if VDBG
1327 RLOGD("startDtmf: serial %d", serial);
1328#endif
1329 dispatchString(serial, mSlotId, RIL_REQUEST_DTMF_START,
1330 s.c_str());
1331 return Void();
1332}
1333
1334Return<void> RadioImpl::stopDtmf(int32_t serial) {
1335#if VDBG
1336 RLOGD("stopDtmf: serial %d", serial);
1337#endif
1338 dispatchVoid(serial, mSlotId, RIL_REQUEST_DTMF_STOP);
1339 return Void();
1340}
1341
1342Return<void> RadioImpl::getBasebandVersion(int32_t serial) {
1343#if VDBG
1344 RLOGD("getBasebandVersion: serial %d", serial);
1345#endif
1346 dispatchVoid(serial, mSlotId, RIL_REQUEST_BASEBAND_VERSION);
1347 return Void();
1348}
1349
1350Return<void> RadioImpl::separateConnection(int32_t serial, int32_t gsmIndex) {
1351#if VDBG
1352 RLOGD("separateConnection: serial %d", serial);
1353#endif
1354 dispatchInts(serial, mSlotId, RIL_REQUEST_SEPARATE_CONNECTION, 1, gsmIndex);
1355 return Void();
1356}
1357
1358Return<void> RadioImpl::setMute(int32_t serial, bool enable) {
1359#if VDBG
1360 RLOGD("setMute: serial %d", serial);
1361#endif
1362 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_MUTE, 1, BOOL_TO_INT(enable));
1363 return Void();
1364}
1365
1366Return<void> RadioImpl::getMute(int32_t serial) {
1367#if VDBG
1368 RLOGD("getMute: serial %d", serial);
1369#endif
1370 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_MUTE);
1371 return Void();
1372}
1373
1374Return<void> RadioImpl::getClip(int32_t serial) {
1375#if VDBG
1376 RLOGD("getClip: serial %d", serial);
1377#endif
1378 dispatchVoid(serial, mSlotId, RIL_REQUEST_QUERY_CLIP);
1379 return Void();
1380}
1381
1382Return<void> RadioImpl::getDataCallList(int32_t serial) {
1383#if VDBG
1384 RLOGD("getDataCallList: serial %d", serial);
1385#endif
1386 dispatchVoid(serial, mSlotId, RIL_REQUEST_DATA_CALL_LIST);
1387 return Void();
1388}
1389
1390Return<void> RadioImpl::setSuppServiceNotifications(int32_t serial, bool enable) {
1391#if VDBG
1392 RLOGD("setSuppServiceNotifications: serial %d", serial);
1393#endif
1394 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION, 1,
1395 BOOL_TO_INT(enable));
1396 return Void();
1397}
1398
1399Return<void> RadioImpl::writeSmsToSim(int32_t serial, const SmsWriteArgs& smsWriteArgs) {
1400#if VDBG
1401 RLOGD("writeSmsToSim: serial %d", serial);
1402#endif
1403 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_WRITE_SMS_TO_SIM);
1404 if (pRI == NULL) {
1405 return Void();
1406 }
1407
1408 RIL_SMS_WriteArgs args;
1409 args.status = (int) smsWriteArgs.status;
1410
1411 int len;
1412 if (!copyHidlStringToRil(&args.pdu, smsWriteArgs.pdu, pRI)) {
1413 return Void();
1414 }
1415
1416 if (!copyHidlStringToRil(&args.smsc, smsWriteArgs.smsc, pRI)) {
1417 memsetAndFreeStrings(1, args.pdu);
1418 return Void();
1419 }
1420
1421 CALL_ONREQUEST(RIL_REQUEST_WRITE_SMS_TO_SIM, &args, sizeof(args), pRI, mSlotId);
1422
1423 memsetAndFreeStrings(2, args.smsc, args.pdu);
1424
1425 return Void();
1426}
1427
1428Return<void> RadioImpl::deleteSmsOnSim(int32_t serial, int32_t index) {
1429#if VDBG
1430 RLOGD("deleteSmsOnSim: serial %d", serial);
1431#endif
1432 dispatchInts(serial, mSlotId, RIL_REQUEST_DELETE_SMS_ON_SIM, 1, index);
1433 return Void();
1434}
1435
1436Return<void> RadioImpl::setBandMode(int32_t serial, RadioBandMode mode) {
1437#if VDBG
1438 RLOGD("setBandMode: serial %d", serial);
1439#endif
1440 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_BAND_MODE, 1, mode);
1441 return Void();
1442}
1443
1444Return<void> RadioImpl::getAvailableBandModes(int32_t serial) {
1445#if VDBG
1446 RLOGD("getAvailableBandModes: serial %d", serial);
1447#endif
1448 dispatchVoid(serial, mSlotId, RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE);
1449 return Void();
1450}
1451
1452Return<void> RadioImpl::sendEnvelope(int32_t serial, const hidl_string& command) {
1453#if VDBG
1454 RLOGD("sendEnvelope: serial %d", serial);
1455#endif
1456 dispatchString(serial, mSlotId, RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND,
1457 command.c_str());
1458 return Void();
1459}
1460
1461Return<void> RadioImpl::sendTerminalResponseToSim(int32_t serial,
1462 const hidl_string& commandResponse) {
1463#if VDBG
1464 RLOGD("sendTerminalResponseToSim: serial %d", serial);
1465#endif
1466 dispatchString(serial, mSlotId, RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE,
1467 commandResponse.c_str());
1468 return Void();
1469}
1470
1471Return<void> RadioImpl::handleStkCallSetupRequestFromSim(int32_t serial, bool accept) {
1472#if VDBG
1473 RLOGD("handleStkCallSetupRequestFromSim: serial %d", serial);
1474#endif
1475 dispatchInts(serial, mSlotId, RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM,
1476 1, BOOL_TO_INT(accept));
1477 return Void();
1478}
1479
1480Return<void> RadioImpl::explicitCallTransfer(int32_t serial) {
1481#if VDBG
1482 RLOGD("explicitCallTransfer: serial %d", serial);
1483#endif
1484 dispatchVoid(serial, mSlotId, RIL_REQUEST_EXPLICIT_CALL_TRANSFER);
1485 return Void();
1486}
1487
1488Return<void> RadioImpl::setPreferredNetworkType(int32_t serial, PreferredNetworkType nwType) {
1489#if VDBG
1490 RLOGD("setPreferredNetworkType: serial %d", serial);
1491#endif
1492 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE, 1, nwType);
1493 return Void();
1494}
1495
1496Return<void> RadioImpl::getPreferredNetworkType(int32_t serial) {
1497#if VDBG
1498 RLOGD("getPreferredNetworkType: serial %d", serial);
1499#endif
1500 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE);
1501 return Void();
1502}
1503
1504Return<void> RadioImpl::getNeighboringCids(int32_t serial) {
1505#if VDBG
1506 RLOGD("getNeighboringCids: serial %d", serial);
1507#endif
1508 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_NEIGHBORING_CELL_IDS);
1509 return Void();
1510}
1511
1512Return<void> RadioImpl::setLocationUpdates(int32_t serial, bool enable) {
1513#if VDBG
1514 RLOGD("setLocationUpdates: serial %d", serial);
1515#endif
1516 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_LOCATION_UPDATES, 1, BOOL_TO_INT(enable));
1517 return Void();
1518}
1519
1520Return<void> RadioImpl::setCdmaSubscriptionSource(int32_t serial, CdmaSubscriptionSource cdmaSub) {
1521#if VDBG
1522 RLOGD("setCdmaSubscriptionSource: serial %d", serial);
1523#endif
1524 dispatchInts(serial, mSlotId, RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE, 1, cdmaSub);
1525 return Void();
1526}
1527
1528Return<void> RadioImpl::setCdmaRoamingPreference(int32_t serial, CdmaRoamingType type) {
1529#if VDBG
1530 RLOGD("setCdmaRoamingPreference: serial %d", serial);
1531#endif
1532 dispatchInts(serial, mSlotId, RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE, 1, type);
1533 return Void();
1534}
1535
1536Return<void> RadioImpl::getCdmaRoamingPreference(int32_t serial) {
1537#if VDBG
1538 RLOGD("getCdmaRoamingPreference: serial %d", serial);
1539#endif
1540 dispatchVoid(serial, mSlotId, RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE);
1541 return Void();
1542}
1543
1544Return<void> RadioImpl::setTTYMode(int32_t serial, TtyMode mode) {
1545#if VDBG
1546 RLOGD("setTTYMode: serial %d", serial);
1547#endif
1548 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_TTY_MODE, 1, mode);
1549 return Void();
1550}
1551
1552Return<void> RadioImpl::getTTYMode(int32_t serial) {
1553#if VDBG
1554 RLOGD("getTTYMode: serial %d", serial);
1555#endif
1556 dispatchVoid(serial, mSlotId, RIL_REQUEST_QUERY_TTY_MODE);
1557 return Void();
1558}
1559
1560Return<void> RadioImpl::setPreferredVoicePrivacy(int32_t serial, bool enable) {
1561#if VDBG
1562 RLOGD("setPreferredVoicePrivacy: serial %d", serial);
1563#endif
1564 dispatchInts(serial, mSlotId, RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE,
1565 1, BOOL_TO_INT(enable));
1566 return Void();
1567}
1568
1569Return<void> RadioImpl::getPreferredVoicePrivacy(int32_t serial) {
1570#if VDBG
1571 RLOGD("getPreferredVoicePrivacy: serial %d", serial);
1572#endif
1573 dispatchVoid(serial, mSlotId, RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE);
1574 return Void();
1575}
1576
1577Return<void> RadioImpl::sendCDMAFeatureCode(int32_t serial, const hidl_string& featureCode) {
1578#if VDBG
1579 RLOGD("sendCDMAFeatureCode: serial %d", serial);
1580#endif
1581 dispatchString(serial, mSlotId, RIL_REQUEST_CDMA_FLASH,
1582 featureCode.c_str());
1583 return Void();
1584}
1585
1586Return<void> RadioImpl::sendBurstDtmf(int32_t serial, const hidl_string& dtmf, int32_t on,
1587 int32_t off) {
1588#if VDBG
1589 RLOGD("sendBurstDtmf: serial %d", serial);
1590#endif
1591 dispatchStrings(serial, mSlotId, RIL_REQUEST_CDMA_BURST_DTMF,
1592 3, dtmf.c_str(), (std::to_string(on)).c_str(),
1593 (std::to_string(off)).c_str());
1594 return Void();
1595}
1596
1597void constructCdmaSms(RIL_CDMA_SMS_Message &rcsm, const CdmaSmsMessage& sms) {
1598 rcsm.uTeleserviceID = sms.teleserviceId;
1599 rcsm.bIsServicePresent = BOOL_TO_INT(sms.isServicePresent);
1600 rcsm.uServicecategory = sms.serviceCategory;
1601 rcsm.sAddress.digit_mode = (RIL_CDMA_SMS_DigitMode) sms.address.digitMode;
1602 rcsm.sAddress.number_mode = (RIL_CDMA_SMS_NumberMode) sms.address.numberMode;
1603 rcsm.sAddress.number_type = (RIL_CDMA_SMS_NumberType) sms.address.numberType;
1604 rcsm.sAddress.number_plan = (RIL_CDMA_SMS_NumberPlan) sms.address.numberPlan;
1605
1606 rcsm.sAddress.number_of_digits = sms.address.digits.size();
1607 int digitLimit= MIN((rcsm.sAddress.number_of_digits), RIL_CDMA_SMS_ADDRESS_MAX);
1608 for (int i = 0; i < digitLimit; i++) {
1609 rcsm.sAddress.digits[i] = sms.address.digits[i];
1610 }
1611
1612 rcsm.sSubAddress.subaddressType = (RIL_CDMA_SMS_SubaddressType) sms.subAddress.subaddressType;
1613 rcsm.sSubAddress.odd = BOOL_TO_INT(sms.subAddress.odd);
1614
1615 rcsm.sSubAddress.number_of_digits = sms.subAddress.digits.size();
1616 digitLimit= MIN((rcsm.sSubAddress.number_of_digits), RIL_CDMA_SMS_SUBADDRESS_MAX);
1617 for (int i = 0; i < digitLimit; i++) {
1618 rcsm.sSubAddress.digits[i] = sms.subAddress.digits[i];
1619 }
1620
1621 rcsm.uBearerDataLen = sms.bearerData.size();
1622 digitLimit= MIN((rcsm.uBearerDataLen), RIL_CDMA_SMS_BEARER_DATA_MAX);
1623 for (int i = 0; i < digitLimit; i++) {
1624 rcsm.aBearerData[i] = sms.bearerData[i];
1625 }
1626}
1627
1628Return<void> RadioImpl::sendCdmaSms(int32_t serial, const CdmaSmsMessage& sms) {
1629#if VDBG
1630 RLOGD("sendCdmaSms: serial %d", serial);
1631#endif
1632 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_CDMA_SEND_SMS);
1633 if (pRI == NULL) {
1634 return Void();
1635 }
1636
1637 RIL_CDMA_SMS_Message rcsm = {};
1638 constructCdmaSms(rcsm, sms);
1639
1640 CALL_ONREQUEST(pRI->pCI->requestNumber, &rcsm, sizeof(rcsm), pRI, mSlotId);
1641 return Void();
1642}
1643
1644Return<void> RadioImpl::acknowledgeLastIncomingCdmaSms(int32_t serial, const CdmaSmsAck& smsAck) {
1645#if VDBG
1646 RLOGD("acknowledgeLastIncomingCdmaSms: serial %d", serial);
1647#endif
1648 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE);
1649 if (pRI == NULL) {
1650 return Void();
1651 }
1652
1653 RIL_CDMA_SMS_Ack rcsa = {};
1654
1655 rcsa.uErrorClass = (RIL_CDMA_SMS_ErrorClass) smsAck.errorClass;
1656 rcsa.uSMSCauseCode = smsAck.smsCauseCode;
1657
1658 CALL_ONREQUEST(pRI->pCI->requestNumber, &rcsa, sizeof(rcsa), pRI, mSlotId);
1659 return Void();
1660}
1661
1662Return<void> RadioImpl::getGsmBroadcastConfig(int32_t serial) {
1663#if VDBG
1664 RLOGD("getGsmBroadcastConfig: serial %d", serial);
1665#endif
1666 dispatchVoid(serial, mSlotId, RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG);
1667 return Void();
1668}
1669
1670Return<void> RadioImpl::setGsmBroadcastConfig(int32_t serial,
1671 const hidl_vec<GsmBroadcastSmsConfigInfo>&
1672 configInfo) {
1673#if VDBG
1674 RLOGD("setGsmBroadcastConfig: serial %d", serial);
1675#endif
1676 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1677 RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG);
1678 if (pRI == NULL) {
1679 return Void();
1680 }
1681
1682 int num = configInfo.size();
1683 RIL_GSM_BroadcastSmsConfigInfo gsmBci[num];
1684 RIL_GSM_BroadcastSmsConfigInfo *gsmBciPtrs[num];
1685
1686 for (int i = 0 ; i < num ; i++ ) {
1687 gsmBciPtrs[i] = &gsmBci[i];
1688 gsmBci[i].fromServiceId = configInfo[i].fromServiceId;
1689 gsmBci[i].toServiceId = configInfo[i].toServiceId;
1690 gsmBci[i].fromCodeScheme = configInfo[i].fromCodeScheme;
1691 gsmBci[i].toCodeScheme = configInfo[i].toCodeScheme;
1692 gsmBci[i].selected = BOOL_TO_INT(configInfo[i].selected);
1693 }
1694
1695 CALL_ONREQUEST(pRI->pCI->requestNumber, gsmBciPtrs,
1696 num * sizeof(RIL_GSM_BroadcastSmsConfigInfo *), pRI, mSlotId);
1697 return Void();
1698}
1699
1700Return<void> RadioImpl::setGsmBroadcastActivation(int32_t serial, bool activate) {
1701#if VDBG
1702 RLOGD("setGsmBroadcastActivation: serial %d", serial);
1703#endif
1704 dispatchInts(serial, mSlotId, RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION,
1705 1, BOOL_TO_INT(!activate));
1706 return Void();
1707}
1708
1709Return<void> RadioImpl::getCdmaBroadcastConfig(int32_t serial) {
1710#if VDBG
1711 RLOGD("getCdmaBroadcastConfig: serial %d", serial);
1712#endif
1713 dispatchVoid(serial, mSlotId, RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG);
1714 return Void();
1715}
1716
1717Return<void> RadioImpl::setCdmaBroadcastConfig(int32_t serial,
1718 const hidl_vec<CdmaBroadcastSmsConfigInfo>&
1719 configInfo) {
1720#if VDBG
1721 RLOGD("setCdmaBroadcastConfig: serial %d", serial);
1722#endif
1723 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1724 RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG);
1725 if (pRI == NULL) {
1726 return Void();
1727 }
1728
1729 int num = configInfo.size();
1730 RIL_CDMA_BroadcastSmsConfigInfo cdmaBci[num];
1731 RIL_CDMA_BroadcastSmsConfigInfo *cdmaBciPtrs[num];
1732
1733 for (int i = 0 ; i < num ; i++ ) {
1734 cdmaBciPtrs[i] = &cdmaBci[i];
1735 cdmaBci[i].service_category = configInfo[i].serviceCategory;
1736 cdmaBci[i].language = configInfo[i].language;
1737 cdmaBci[i].selected = BOOL_TO_INT(configInfo[i].selected);
1738 }
1739
1740 CALL_ONREQUEST(pRI->pCI->requestNumber, cdmaBciPtrs,
1741 num * sizeof(RIL_CDMA_BroadcastSmsConfigInfo *), pRI, mSlotId);
1742 return Void();
1743}
1744
1745Return<void> RadioImpl::setCdmaBroadcastActivation(int32_t serial, bool activate) {
1746#if VDBG
1747 RLOGD("setCdmaBroadcastActivation: serial %d", serial);
1748#endif
1749 dispatchInts(serial, mSlotId, RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION,
1750 1, BOOL_TO_INT(!activate));
1751 return Void();
1752}
1753
1754Return<void> RadioImpl::getCDMASubscription(int32_t serial) {
1755#if VDBG
1756 RLOGD("getCDMASubscription: serial %d", serial);
1757#endif
1758 dispatchVoid(serial, mSlotId, RIL_REQUEST_CDMA_SUBSCRIPTION);
1759 return Void();
1760}
1761
1762Return<void> RadioImpl::writeSmsToRuim(int32_t serial, const CdmaSmsWriteArgs& cdmaSms) {
1763#if VDBG
1764 RLOGD("writeSmsToRuim: serial %d", serial);
1765#endif
1766 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1767 RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM);
1768 if (pRI == NULL) {
1769 return Void();
1770 }
1771
1772 RIL_CDMA_SMS_WriteArgs rcsw = {};
1773 rcsw.status = (int) cdmaSms.status;
1774 constructCdmaSms(rcsw.message, cdmaSms.message);
1775
1776 CALL_ONREQUEST(pRI->pCI->requestNumber, &rcsw, sizeof(rcsw), pRI, mSlotId);
1777 return Void();
1778}
1779
1780Return<void> RadioImpl::deleteSmsOnRuim(int32_t serial, int32_t index) {
1781#if VDBG
1782 RLOGD("deleteSmsOnRuim: serial %d", serial);
1783#endif
1784 dispatchInts(serial, mSlotId, RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM, 1, index);
1785 return Void();
1786}
1787
1788Return<void> RadioImpl::getDeviceIdentity(int32_t serial) {
1789#if VDBG
1790 RLOGD("getDeviceIdentity: serial %d", serial);
1791#endif
1792 dispatchVoid(serial, mSlotId, RIL_REQUEST_DEVICE_IDENTITY);
1793 return Void();
1794}
1795
1796Return<void> RadioImpl::exitEmergencyCallbackMode(int32_t serial) {
1797#if VDBG
1798 RLOGD("exitEmergencyCallbackMode: serial %d", serial);
1799#endif
1800 dispatchVoid(serial, mSlotId, RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE);
1801 return Void();
1802}
1803
1804Return<void> RadioImpl::getSmscAddress(int32_t serial) {
1805#if VDBG
1806 RLOGD("getSmscAddress: serial %d", serial);
1807#endif
1808 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_SMSC_ADDRESS);
1809 return Void();
1810}
1811
1812Return<void> RadioImpl::setSmscAddress(int32_t serial, const hidl_string& smsc) {
1813#if VDBG
1814 RLOGD("setSmscAddress: serial %d", serial);
1815#endif
1816 dispatchString(serial, mSlotId, RIL_REQUEST_SET_SMSC_ADDRESS,
1817 smsc.c_str());
1818 return Void();
1819}
1820
1821Return<void> RadioImpl::reportSmsMemoryStatus(int32_t serial, bool available) {
1822#if VDBG
1823 RLOGD("reportSmsMemoryStatus: serial %d", serial);
1824#endif
1825 dispatchInts(serial, mSlotId, RIL_REQUEST_REPORT_SMS_MEMORY_STATUS, 1,
1826 BOOL_TO_INT(available));
1827 return Void();
1828}
1829
1830Return<void> RadioImpl::reportStkServiceIsRunning(int32_t serial) {
1831#if VDBG
1832 RLOGD("reportStkServiceIsRunning: serial %d", serial);
1833#endif
1834 dispatchVoid(serial, mSlotId, RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING);
1835 return Void();
1836}
1837
1838Return<void> RadioImpl::getCdmaSubscriptionSource(int32_t serial) {
1839#if VDBG
1840 RLOGD("getCdmaSubscriptionSource: serial %d", serial);
1841#endif
1842 dispatchVoid(serial, mSlotId, RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE);
1843 return Void();
1844}
1845
1846Return<void> RadioImpl::requestIsimAuthentication(int32_t serial, const hidl_string& challenge) {
1847#if VDBG
1848 RLOGD("requestIsimAuthentication: serial %d", serial);
1849#endif
1850 dispatchString(serial, mSlotId, RIL_REQUEST_ISIM_AUTHENTICATION,
1851 challenge.c_str());
1852 return Void();
1853}
1854
1855Return<void> RadioImpl::acknowledgeIncomingGsmSmsWithPdu(int32_t serial, bool success,
1856 const hidl_string& ackPdu) {
1857#if VDBG
1858 RLOGD("acknowledgeIncomingGsmSmsWithPdu: serial %d", serial);
1859#endif
1860 dispatchStrings(serial, mSlotId, RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU,
1861 2, success ? "1" : "0", ackPdu.c_str());
1862 return Void();
1863}
1864
1865Return<void> RadioImpl::sendEnvelopeWithStatus(int32_t serial, const hidl_string& contents) {
1866#if VDBG
1867 RLOGD("sendEnvelopeWithStatus: serial %d", serial);
1868#endif
1869 dispatchString(serial, mSlotId, RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS,
1870 contents.c_str());
1871 return Void();
1872}
1873
1874Return<void> RadioImpl::getVoiceRadioTechnology(int32_t serial) {
1875#if VDBG
1876 RLOGD("getVoiceRadioTechnology: serial %d", serial);
1877#endif
1878 dispatchVoid(serial, mSlotId, RIL_REQUEST_VOICE_RADIO_TECH);
1879 return Void();
1880}
1881
1882Return<void> RadioImpl::getCellInfoList(int32_t serial) {
1883#if VDBG
1884 RLOGD("getCellInfoList: serial %d", serial);
1885#endif
1886 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_CELL_INFO_LIST);
1887 return Void();
1888}
1889
1890Return<void> RadioImpl::setCellInfoListRate(int32_t serial, int32_t rate) {
1891#if VDBG
1892 RLOGD("setCellInfoListRate: serial %d", serial);
1893#endif
1894 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE, 1, rate);
1895 return Void();
1896}
1897
1898Return<void> RadioImpl::setInitialAttachApn(int32_t serial, const DataProfileInfo& dataProfileInfo,
1899 bool modemCognitive, bool isRoaming) {
1900#if VDBG
1901 RLOGD("setInitialAttachApn: serial %d", serial);
1902#endif
1903 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
1904 RIL_REQUEST_SET_INITIAL_ATTACH_APN);
1905 if (pRI == NULL) {
1906 return Void();
1907 }
1908
1909 if (s_vendorFunctions->version <= 14) {
1910 RIL_InitialAttachApn iaa = {};
1911
1912 if (dataProfileInfo.apn.size() == 0) {
1913 iaa.apn = (char *) calloc(1, sizeof(char));
1914 if (iaa.apn == NULL) {
1915 RLOGE("Memory allocation failed for request %s",
1916 requestToString(pRI->pCI->requestNumber));
1917 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
1918 return Void();
1919 }
1920 iaa.apn[0] = '\0';
1921 } else {
1922 if (!copyHidlStringToRil(&iaa.apn, dataProfileInfo.apn, pRI)) {
1923 return Void();
1924 }
1925 }
1926
1927 const hidl_string &protocol =
1928 (isRoaming ? dataProfileInfo.roamingProtocol : dataProfileInfo.protocol);
1929
1930 if (!copyHidlStringToRil(&iaa.protocol, protocol, pRI)) {
1931 memsetAndFreeStrings(1, iaa.apn);
1932 return Void();
1933 }
1934 iaa.authtype = (int) dataProfileInfo.authType;
1935 if (!copyHidlStringToRil(&iaa.username, dataProfileInfo.user, pRI)) {
1936 memsetAndFreeStrings(2, iaa.apn, iaa.protocol);
1937 return Void();
1938 }
1939 if (!copyHidlStringToRil(&iaa.password, dataProfileInfo.password, pRI)) {
1940 memsetAndFreeStrings(3, iaa.apn, iaa.protocol, iaa.username);
1941 return Void();
1942 }
1943
Christopher N. Hesseffe632e2018-02-13 23:51:12 +01001944#ifdef NEEDS_ROAMING_PROTOCOL_FIELD
1945 if (!copyHidlStringToRil(&iaa.roamingProtocol, dataProfileInfo.roamingProtocol, pRI)) {
1946 memsetAndFreeStrings(4, iaa.apn, iaa.protocol, iaa.username, iaa.roamingProtocol);
1947 return Void();
1948 }
1949#endif
1950
Christopher N. Hesse7f2c1bf2018-02-16 12:40:06 +01001951#ifdef NEEDS_IMS_TYPE_FIELD
1952 iaa.imsType = 0;
1953#endif
1954
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03001955 CALL_ONREQUEST(RIL_REQUEST_SET_INITIAL_ATTACH_APN, &iaa, sizeof(iaa), pRI, mSlotId);
1956
1957 memsetAndFreeStrings(4, iaa.apn, iaa.protocol, iaa.username, iaa.password);
1958 } else {
1959 RIL_InitialAttachApn_v15 iaa = {};
1960
1961 if (dataProfileInfo.apn.size() == 0) {
1962 iaa.apn = (char *) calloc(1, sizeof(char));
1963 if (iaa.apn == NULL) {
1964 RLOGE("Memory allocation failed for request %s",
1965 requestToString(pRI->pCI->requestNumber));
1966 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
1967 return Void();
1968 }
1969 iaa.apn[0] = '\0';
1970 } else {
1971 if (!copyHidlStringToRil(&iaa.apn, dataProfileInfo.apn, pRI)) {
1972 return Void();
1973 }
1974 }
1975
1976 if (!copyHidlStringToRil(&iaa.protocol, dataProfileInfo.protocol, pRI)) {
1977 memsetAndFreeStrings(1, iaa.apn);
1978 return Void();
1979 }
1980 if (!copyHidlStringToRil(&iaa.roamingProtocol, dataProfileInfo.roamingProtocol, pRI)) {
1981 memsetAndFreeStrings(2, iaa.apn, iaa.protocol);
1982 return Void();
1983 }
1984 iaa.authtype = (int) dataProfileInfo.authType;
1985 if (!copyHidlStringToRil(&iaa.username, dataProfileInfo.user, pRI)) {
1986 memsetAndFreeStrings(3, iaa.apn, iaa.protocol, iaa.roamingProtocol);
1987 return Void();
1988 }
1989 if (!copyHidlStringToRil(&iaa.password, dataProfileInfo.password, pRI)) {
1990 memsetAndFreeStrings(4, iaa.apn, iaa.protocol, iaa.roamingProtocol, iaa.username);
1991 return Void();
1992 }
1993 iaa.supportedTypesBitmask = dataProfileInfo.supportedApnTypesBitmap;
1994 iaa.bearerBitmask = dataProfileInfo.bearerBitmap;
1995 iaa.modemCognitive = BOOL_TO_INT(modemCognitive);
1996 iaa.mtu = dataProfileInfo.mtu;
1997
1998 if (!convertMvnoTypeToString(dataProfileInfo.mvnoType, iaa.mvnoType)) {
1999 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
2000 memsetAndFreeStrings(5, iaa.apn, iaa.protocol, iaa.roamingProtocol, iaa.username,
2001 iaa.password);
2002 return Void();
2003 }
2004
2005 if (!copyHidlStringToRil(&iaa.mvnoMatchData, dataProfileInfo.mvnoMatchData, pRI)) {
2006 memsetAndFreeStrings(5, iaa.apn, iaa.protocol, iaa.roamingProtocol, iaa.username,
2007 iaa.password);
2008 return Void();
2009 }
2010
2011 CALL_ONREQUEST(RIL_REQUEST_SET_INITIAL_ATTACH_APN, &iaa, sizeof(iaa), pRI, mSlotId);
2012
2013 memsetAndFreeStrings(6, iaa.apn, iaa.protocol, iaa.roamingProtocol, iaa.username,
2014 iaa.password, iaa.mvnoMatchData);
2015 }
2016
2017 return Void();
2018}
2019
2020Return<void> RadioImpl::getImsRegistrationState(int32_t serial) {
2021#if VDBG
2022 RLOGD("getImsRegistrationState: serial %d", serial);
2023#endif
2024 dispatchVoid(serial, mSlotId, RIL_REQUEST_IMS_REGISTRATION_STATE);
2025 return Void();
2026}
2027
2028bool dispatchImsGsmSms(const ImsSmsMessage& message, RequestInfo *pRI) {
2029 RIL_IMS_SMS_Message rism = {};
2030 char **pStrings;
2031 int countStrings = 2;
2032 int dataLen = sizeof(char *) * countStrings;
2033
2034 rism.tech = RADIO_TECH_3GPP;
2035 rism.retry = BOOL_TO_INT(message.retry);
2036 rism.messageRef = message.messageRef;
2037
2038 if (message.gsmMessage.size() != 1) {
2039 RLOGE("dispatchImsGsmSms: Invalid len %s", requestToString(pRI->pCI->requestNumber));
2040 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
2041 return false;
2042 }
2043
2044 pStrings = (char **)calloc(countStrings, sizeof(char *));
2045 if (pStrings == NULL) {
2046 RLOGE("dispatchImsGsmSms: Memory allocation failed for request %s",
2047 requestToString(pRI->pCI->requestNumber));
2048 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2049 return false;
2050 }
2051
2052 if (!copyHidlStringToRil(&pStrings[0], message.gsmMessage[0].smscPdu, pRI)) {
2053#ifdef MEMSET_FREED
2054 memset(pStrings, 0, datalen);
2055#endif
2056 free(pStrings);
2057 return false;
2058 }
2059
2060 if (!copyHidlStringToRil(&pStrings[1], message.gsmMessage[0].pdu, pRI)) {
2061 memsetAndFreeStrings(1, pStrings[0]);
2062#ifdef MEMSET_FREED
2063 memset(pStrings, 0, datalen);
2064#endif
2065 free(pStrings);
2066 return false;
2067 }
2068
2069 rism.message.gsmMessage = pStrings;
2070 CALL_ONREQUEST(pRI->pCI->requestNumber, &rism, sizeof(RIL_RadioTechnologyFamily) +
2071 sizeof(uint8_t) + sizeof(int32_t) + dataLen, pRI, pRI->socket_id);
2072
2073 for (int i = 0 ; i < countStrings ; i++) {
2074 memsetAndFreeStrings(1, pStrings[i]);
2075 }
2076
2077#ifdef MEMSET_FREED
2078 memset(pStrings, 0, datalen);
2079#endif
2080 free(pStrings);
2081
2082 return true;
2083}
2084
2085bool dispatchImsCdmaSms(const ImsSmsMessage& message, RequestInfo *pRI) {
2086 RIL_IMS_SMS_Message rism = {};
2087 RIL_CDMA_SMS_Message rcsm = {};
2088
2089 if (message.cdmaMessage.size() != 1) {
2090 RLOGE("dispatchImsCdmaSms: Invalid len %s", requestToString(pRI->pCI->requestNumber));
2091 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
2092 return false;
2093 }
2094
2095 rism.tech = RADIO_TECH_3GPP2;
2096 rism.retry = BOOL_TO_INT(message.retry);
2097 rism.messageRef = message.messageRef;
2098 rism.message.cdmaMessage = &rcsm;
2099
2100 constructCdmaSms(rcsm, message.cdmaMessage[0]);
2101
2102 CALL_ONREQUEST(pRI->pCI->requestNumber, &rism, sizeof(RIL_RadioTechnologyFamily) +
2103 sizeof(uint8_t) + sizeof(int32_t) + sizeof(rcsm), pRI, pRI->socket_id);
2104
2105 return true;
2106}
2107
2108Return<void> RadioImpl::sendImsSms(int32_t serial, const ImsSmsMessage& message) {
2109#if VDBG
2110 RLOGD("sendImsSms: serial %d", serial);
2111#endif
2112 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_IMS_SEND_SMS);
2113 if (pRI == NULL) {
2114 return Void();
2115 }
2116
2117 RIL_RadioTechnologyFamily format = (RIL_RadioTechnologyFamily) message.tech;
2118
2119 if (RADIO_TECH_3GPP == format) {
2120 dispatchImsGsmSms(message, pRI);
2121 } else if (RADIO_TECH_3GPP2 == format) {
2122 dispatchImsCdmaSms(message, pRI);
2123 } else {
2124 RLOGE("sendImsSms: Invalid radio tech %s",
2125 requestToString(pRI->pCI->requestNumber));
2126 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
2127 }
2128 return Void();
2129}
2130
2131Return<void> RadioImpl::iccTransmitApduBasicChannel(int32_t serial, const SimApdu& message) {
2132#if VDBG
2133 RLOGD("iccTransmitApduBasicChannel: serial %d", serial);
2134#endif
2135 dispatchIccApdu(serial, mSlotId, RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC, message);
2136 return Void();
2137}
2138
2139Return<void> RadioImpl::iccOpenLogicalChannel(int32_t serial, const hidl_string& aid, int32_t p2) {
2140#if VDBG
2141 RLOGD("iccOpenLogicalChannel: serial %d", serial);
2142#endif
2143 if (s_vendorFunctions->version < 15) {
2144 dispatchString(serial, mSlotId, RIL_REQUEST_SIM_OPEN_CHANNEL, aid.c_str());
2145 } else {
2146 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_SIM_OPEN_CHANNEL);
2147 if (pRI == NULL) {
2148 return Void();
2149 }
2150
2151 RIL_OpenChannelParams params = {};
2152
2153 params.p2 = p2;
2154
2155 if (!copyHidlStringToRil(&params.aidPtr, aid, pRI)) {
2156 return Void();
2157 }
2158
2159 CALL_ONREQUEST(pRI->pCI->requestNumber, &params, sizeof(params), pRI, mSlotId);
2160
2161 memsetAndFreeStrings(1, params.aidPtr);
2162 }
2163 return Void();
2164}
2165
2166Return<void> RadioImpl::iccCloseLogicalChannel(int32_t serial, int32_t channelId) {
2167#if VDBG
2168 RLOGD("iccCloseLogicalChannel: serial %d", serial);
2169#endif
2170 dispatchInts(serial, mSlotId, RIL_REQUEST_SIM_CLOSE_CHANNEL, 1, channelId);
2171 return Void();
2172}
2173
2174Return<void> RadioImpl::iccTransmitApduLogicalChannel(int32_t serial, const SimApdu& message) {
2175#if VDBG
2176 RLOGD("iccTransmitApduLogicalChannel: serial %d", serial);
2177#endif
2178 dispatchIccApdu(serial, mSlotId, RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL, message);
2179 return Void();
2180}
2181
2182Return<void> RadioImpl::nvReadItem(int32_t serial, NvItem itemId) {
2183#if VDBG
2184 RLOGD("nvReadItem: serial %d", serial);
2185#endif
2186 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_NV_READ_ITEM);
2187 if (pRI == NULL) {
2188 return Void();
2189 }
2190
2191 RIL_NV_ReadItem nvri = {};
2192 nvri.itemID = (RIL_NV_Item) itemId;
2193
2194 CALL_ONREQUEST(pRI->pCI->requestNumber, &nvri, sizeof(nvri), pRI, mSlotId);
2195 return Void();
2196}
2197
2198Return<void> RadioImpl::nvWriteItem(int32_t serial, const NvWriteItem& item) {
2199#if VDBG
2200 RLOGD("nvWriteItem: serial %d", serial);
2201#endif
2202 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_NV_WRITE_ITEM);
2203 if (pRI == NULL) {
2204 return Void();
2205 }
2206
2207 RIL_NV_WriteItem nvwi = {};
2208
2209 nvwi.itemID = (RIL_NV_Item) item.itemId;
2210
2211 if (!copyHidlStringToRil(&nvwi.value, item.value, pRI)) {
2212 return Void();
2213 }
2214
2215 CALL_ONREQUEST(pRI->pCI->requestNumber, &nvwi, sizeof(nvwi), pRI, mSlotId);
2216
2217 memsetAndFreeStrings(1, nvwi.value);
2218 return Void();
2219}
2220
2221Return<void> RadioImpl::nvWriteCdmaPrl(int32_t serial, const hidl_vec<uint8_t>& prl) {
2222#if VDBG
2223 RLOGD("nvWriteCdmaPrl: serial %d", serial);
2224#endif
2225 dispatchRaw(serial, mSlotId, RIL_REQUEST_NV_WRITE_CDMA_PRL, prl);
2226 return Void();
2227}
2228
2229Return<void> RadioImpl::nvResetConfig(int32_t serial, ResetNvType resetType) {
2230 int rilResetType = -1;
2231#if VDBG
2232 RLOGD("nvResetConfig: serial %d", serial);
2233#endif
2234 /* Convert ResetNvType to RIL.h values
2235 * RIL_REQUEST_NV_RESET_CONFIG
2236 * 1 - reload all NV items
2237 * 2 - erase NV reset (SCRTN)
2238 * 3 - factory reset (RTN)
2239 */
2240 switch(resetType) {
2241 case ResetNvType::RELOAD:
2242 rilResetType = 1;
2243 break;
2244 case ResetNvType::ERASE:
2245 rilResetType = 2;
2246 break;
2247 case ResetNvType::FACTORY_RESET:
2248 rilResetType = 3;
2249 break;
2250 }
2251 dispatchInts(serial, mSlotId, RIL_REQUEST_NV_RESET_CONFIG, 1, rilResetType);
2252 return Void();
2253}
2254
2255Return<void> RadioImpl::setUiccSubscription(int32_t serial, const SelectUiccSub& uiccSub) {
2256#if VDBG
2257 RLOGD("setUiccSubscription: serial %d", serial);
2258#endif
2259 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
2260 RIL_REQUEST_SET_UICC_SUBSCRIPTION);
2261 if (pRI == NULL) {
2262 return Void();
2263 }
2264
2265 RIL_SelectUiccSub rilUiccSub = {};
2266
2267 rilUiccSub.slot = uiccSub.slot;
2268 rilUiccSub.app_index = uiccSub.appIndex;
2269 rilUiccSub.sub_type = (RIL_SubscriptionType) uiccSub.subType;
2270 rilUiccSub.act_status = (RIL_UiccSubActStatus) uiccSub.actStatus;
2271
2272 CALL_ONREQUEST(pRI->pCI->requestNumber, &rilUiccSub, sizeof(rilUiccSub), pRI, mSlotId);
2273 return Void();
2274}
2275
2276Return<void> RadioImpl::setDataAllowed(int32_t serial, bool allow) {
2277#if VDBG
2278 RLOGD("setDataAllowed: serial %d", serial);
2279#endif
2280 dispatchInts(serial, mSlotId, RIL_REQUEST_ALLOW_DATA, 1, BOOL_TO_INT(allow));
2281 return Void();
2282}
2283
2284Return<void> RadioImpl::getHardwareConfig(int32_t serial) {
2285#if VDBG
2286 RLOGD("getHardwareConfig: serial %d", serial);
2287#endif
2288 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_HARDWARE_CONFIG);
2289 return Void();
2290}
2291
2292Return<void> RadioImpl::requestIccSimAuthentication(int32_t serial, int32_t authContext,
2293 const hidl_string& authData, const hidl_string& aid) {
2294#if VDBG
2295 RLOGD("requestIccSimAuthentication: serial %d", serial);
2296#endif
2297 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_SIM_AUTHENTICATION);
2298 if (pRI == NULL) {
2299 return Void();
2300 }
2301
2302 RIL_SimAuthentication pf = {};
2303
2304 pf.authContext = authContext;
2305
2306 int len;
2307 if (!copyHidlStringToRil(&pf.authData, authData, pRI)) {
2308 return Void();
2309 }
2310
2311 if (!copyHidlStringToRil(&pf.aid, aid, pRI)) {
2312 memsetAndFreeStrings(1, pf.authData);
2313 return Void();
2314 }
2315
2316 CALL_ONREQUEST(pRI->pCI->requestNumber, &pf, sizeof(pf), pRI, mSlotId);
2317
2318 memsetAndFreeStrings(2, pf.authData, pf.aid);
2319 return Void();
2320}
2321
2322/**
2323 * @param numProfiles number of data profile
2324 * @param dataProfiles the pointer to the actual data profiles. The acceptable type is
2325 RIL_DataProfileInfo or RIL_DataProfileInfo_v15.
2326 * @param dataProfilePtrs the pointer to the pointers that point to each data profile structure
2327 * @param numfields number of string-type member in the data profile structure
2328 * @param ... the variadic parameters are pointers to each string-type member
2329 **/
2330template <typename T>
2331void freeSetDataProfileData(int numProfiles, T *dataProfiles, T **dataProfilePtrs,
2332 int numfields, ...) {
2333 va_list args;
2334 va_start(args, numfields);
2335
2336 // Iterate through each string-type field that need to be free.
2337 for (int i = 0; i < numfields; i++) {
2338 // Iterate through each data profile and free that specific string-type field.
2339 // The type 'char *T::*' is a type of pointer to a 'char *' member inside T structure.
2340 char *T::*ptr = va_arg(args, char *T::*);
2341 for (int j = 0; j < numProfiles; j++) {
2342 memsetAndFreeStrings(1, dataProfiles[j].*ptr);
2343 }
2344 }
2345
2346 va_end(args);
2347
2348#ifdef MEMSET_FREED
2349 memset(dataProfiles, 0, numProfiles * sizeof(T));
2350 memset(dataProfilePtrs, 0, numProfiles * sizeof(T *));
2351#endif
2352 free(dataProfiles);
2353 free(dataProfilePtrs);
2354}
2355
2356Return<void> RadioImpl::setDataProfile(int32_t serial, const hidl_vec<DataProfileInfo>& profiles,
2357 bool isRoaming) {
2358#if VDBG
2359 RLOGD("setDataProfile: serial %d", serial);
2360#endif
2361 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_SET_DATA_PROFILE);
2362 if (pRI == NULL) {
2363 return Void();
2364 }
2365
2366 size_t num = profiles.size();
2367 bool success = false;
2368
2369 if (s_vendorFunctions->version <= 14) {
2370
2371 RIL_DataProfileInfo *dataProfiles =
2372 (RIL_DataProfileInfo *) calloc(num, sizeof(RIL_DataProfileInfo));
2373
2374 if (dataProfiles == NULL) {
2375 RLOGE("Memory allocation failed for request %s",
2376 requestToString(pRI->pCI->requestNumber));
2377 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2378 return Void();
2379 }
2380
2381 RIL_DataProfileInfo **dataProfilePtrs =
2382 (RIL_DataProfileInfo **) calloc(num, sizeof(RIL_DataProfileInfo *));
2383 if (dataProfilePtrs == NULL) {
2384 RLOGE("Memory allocation failed for request %s",
2385 requestToString(pRI->pCI->requestNumber));
2386 free(dataProfiles);
2387 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2388 return Void();
2389 }
2390
2391 for (size_t i = 0; i < num; i++) {
2392 dataProfilePtrs[i] = &dataProfiles[i];
2393
2394 success = copyHidlStringToRil(&dataProfiles[i].apn, profiles[i].apn, pRI);
2395
2396 const hidl_string &protocol =
2397 (isRoaming ? profiles[i].roamingProtocol : profiles[i].protocol);
2398
2399 if (success && !copyHidlStringToRil(&dataProfiles[i].protocol, protocol, pRI)) {
2400 success = false;
2401 }
2402
2403 if (success && !copyHidlStringToRil(&dataProfiles[i].user, profiles[i].user, pRI)) {
2404 success = false;
2405 }
2406 if (success && !copyHidlStringToRil(&dataProfiles[i].password, profiles[i].password,
2407 pRI)) {
2408 success = false;
2409 }
2410
2411 if (!success) {
2412 freeSetDataProfileData(num, dataProfiles, dataProfilePtrs, 4,
2413 &RIL_DataProfileInfo::apn, &RIL_DataProfileInfo::protocol,
2414 &RIL_DataProfileInfo::user, &RIL_DataProfileInfo::password);
2415 return Void();
2416 }
2417
2418 dataProfiles[i].profileId = (RIL_DataProfile) profiles[i].profileId;
2419 dataProfiles[i].authType = (int) profiles[i].authType;
2420 dataProfiles[i].type = (int) profiles[i].type;
2421 dataProfiles[i].maxConnsTime = profiles[i].maxConnsTime;
2422 dataProfiles[i].maxConns = profiles[i].maxConns;
2423 dataProfiles[i].waitTime = profiles[i].waitTime;
2424 dataProfiles[i].enabled = BOOL_TO_INT(profiles[i].enabled);
2425 }
2426
2427 CALL_ONREQUEST(RIL_REQUEST_SET_DATA_PROFILE, dataProfilePtrs,
2428 num * sizeof(RIL_DataProfileInfo *), pRI, mSlotId);
2429
2430 freeSetDataProfileData(num, dataProfiles, dataProfilePtrs, 4,
2431 &RIL_DataProfileInfo::apn, &RIL_DataProfileInfo::protocol,
2432 &RIL_DataProfileInfo::user, &RIL_DataProfileInfo::password);
2433 } else {
2434 RIL_DataProfileInfo_v15 *dataProfiles =
2435 (RIL_DataProfileInfo_v15 *) calloc(num, sizeof(RIL_DataProfileInfo_v15));
2436
2437 if (dataProfiles == NULL) {
2438 RLOGE("Memory allocation failed for request %s",
2439 requestToString(pRI->pCI->requestNumber));
2440 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2441 return Void();
2442 }
2443
2444 RIL_DataProfileInfo_v15 **dataProfilePtrs =
2445 (RIL_DataProfileInfo_v15 **) calloc(num, sizeof(RIL_DataProfileInfo_v15 *));
2446 if (dataProfilePtrs == NULL) {
2447 RLOGE("Memory allocation failed for request %s",
2448 requestToString(pRI->pCI->requestNumber));
2449 free(dataProfiles);
2450 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2451 return Void();
2452 }
2453
2454 for (size_t i = 0; i < num; i++) {
2455 dataProfilePtrs[i] = &dataProfiles[i];
2456
2457 success = copyHidlStringToRil(&dataProfiles[i].apn, profiles[i].apn, pRI);
2458 if (success && !copyHidlStringToRil(&dataProfiles[i].protocol, profiles[i].protocol,
2459 pRI)) {
2460 success = false;
2461 }
2462 if (success && !copyHidlStringToRil(&dataProfiles[i].roamingProtocol,
2463 profiles[i].roamingProtocol, pRI)) {
2464 success = false;
2465 }
2466 if (success && !copyHidlStringToRil(&dataProfiles[i].user, profiles[i].user, pRI)) {
2467 success = false;
2468 }
2469 if (success && !copyHidlStringToRil(&dataProfiles[i].password, profiles[i].password,
2470 pRI)) {
2471 success = false;
2472 }
2473
2474 if (success && !copyHidlStringToRil(&dataProfiles[i].mvnoMatchData,
2475 profiles[i].mvnoMatchData, pRI)) {
2476 success = false;
2477 }
2478
2479 if (success && !convertMvnoTypeToString(profiles[i].mvnoType,
2480 dataProfiles[i].mvnoType)) {
2481 sendErrorResponse(pRI, RIL_E_INVALID_ARGUMENTS);
2482 success = false;
2483 }
2484
2485 if (!success) {
2486 freeSetDataProfileData(num, dataProfiles, dataProfilePtrs, 6,
2487 &RIL_DataProfileInfo_v15::apn, &RIL_DataProfileInfo_v15::protocol,
2488 &RIL_DataProfileInfo_v15::roamingProtocol, &RIL_DataProfileInfo_v15::user,
2489 &RIL_DataProfileInfo_v15::password, &RIL_DataProfileInfo_v15::mvnoMatchData);
2490 return Void();
2491 }
2492
2493 dataProfiles[i].profileId = (RIL_DataProfile) profiles[i].profileId;
2494 dataProfiles[i].authType = (int) profiles[i].authType;
2495 dataProfiles[i].type = (int) profiles[i].type;
2496 dataProfiles[i].maxConnsTime = profiles[i].maxConnsTime;
2497 dataProfiles[i].maxConns = profiles[i].maxConns;
2498 dataProfiles[i].waitTime = profiles[i].waitTime;
2499 dataProfiles[i].enabled = BOOL_TO_INT(profiles[i].enabled);
2500 dataProfiles[i].supportedTypesBitmask = profiles[i].supportedApnTypesBitmap;
2501 dataProfiles[i].bearerBitmask = profiles[i].bearerBitmap;
2502 dataProfiles[i].mtu = profiles[i].mtu;
2503 }
2504
2505 CALL_ONREQUEST(RIL_REQUEST_SET_DATA_PROFILE, dataProfilePtrs,
2506 num * sizeof(RIL_DataProfileInfo_v15 *), pRI, mSlotId);
2507
2508 freeSetDataProfileData(num, dataProfiles, dataProfilePtrs, 6,
2509 &RIL_DataProfileInfo_v15::apn, &RIL_DataProfileInfo_v15::protocol,
2510 &RIL_DataProfileInfo_v15::roamingProtocol, &RIL_DataProfileInfo_v15::user,
2511 &RIL_DataProfileInfo_v15::password, &RIL_DataProfileInfo_v15::mvnoMatchData);
2512 }
2513
2514 return Void();
2515}
2516
2517Return<void> RadioImpl::requestShutdown(int32_t serial) {
2518#if VDBG
2519 RLOGD("requestShutdown: serial %d", serial);
2520#endif
2521 dispatchVoid(serial, mSlotId, RIL_REQUEST_SHUTDOWN);
2522 return Void();
2523}
2524
2525Return<void> RadioImpl::getRadioCapability(int32_t serial) {
2526#if VDBG
2527 RLOGD("getRadioCapability: serial %d", serial);
2528#endif
2529 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_RADIO_CAPABILITY);
2530 return Void();
2531}
2532
2533Return<void> RadioImpl::setRadioCapability(int32_t serial, const RadioCapability& rc) {
2534#if VDBG
2535 RLOGD("setRadioCapability: serial %d", serial);
2536#endif
2537 RequestInfo *pRI = android::addRequestToList(serial, mSlotId, RIL_REQUEST_SET_RADIO_CAPABILITY);
2538 if (pRI == NULL) {
2539 return Void();
2540 }
2541
2542 RIL_RadioCapability rilRc = {};
2543
2544 // TODO : set rilRc.version using HIDL version ?
2545 rilRc.session = rc.session;
2546 rilRc.phase = (int) rc.phase;
2547 rilRc.rat = (int) rc.raf;
2548 rilRc.status = (int) rc.status;
2549 strncpy(rilRc.logicalModemUuid, rc.logicalModemUuid.c_str(), MAX_UUID_LENGTH);
2550
2551 CALL_ONREQUEST(pRI->pCI->requestNumber, &rilRc, sizeof(rilRc), pRI, mSlotId);
2552
2553 return Void();
2554}
2555
2556Return<void> RadioImpl::startLceService(int32_t serial, int32_t reportInterval, bool pullMode) {
2557#if VDBG
2558 RLOGD("startLceService: serial %d", serial);
2559#endif
2560 dispatchInts(serial, mSlotId, RIL_REQUEST_START_LCE, 2, reportInterval,
2561 BOOL_TO_INT(pullMode));
2562 return Void();
2563}
2564
2565Return<void> RadioImpl::stopLceService(int32_t serial) {
2566#if VDBG
2567 RLOGD("stopLceService: serial %d", serial);
2568#endif
2569 dispatchVoid(serial, mSlotId, RIL_REQUEST_STOP_LCE);
2570 return Void();
2571}
2572
2573Return<void> RadioImpl::pullLceData(int32_t serial) {
2574#if VDBG
2575 RLOGD("pullLceData: serial %d", serial);
2576#endif
2577 dispatchVoid(serial, mSlotId, RIL_REQUEST_PULL_LCEDATA);
2578 return Void();
2579}
2580
2581Return<void> RadioImpl::getModemActivityInfo(int32_t serial) {
2582#if VDBG
2583 RLOGD("getModemActivityInfo: serial %d", serial);
2584#endif
2585 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_ACTIVITY_INFO);
2586 return Void();
2587}
2588
2589Return<void> RadioImpl::setAllowedCarriers(int32_t serial, bool allAllowed,
2590 const CarrierRestrictions& carriers) {
2591#if VDBG
2592 RLOGD("setAllowedCarriers: serial %d", serial);
2593#endif
2594 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
2595 RIL_REQUEST_SET_CARRIER_RESTRICTIONS);
2596 if (pRI == NULL) {
2597 return Void();
2598 }
2599
2600 RIL_CarrierRestrictions cr = {};
2601 RIL_Carrier *allowedCarriers = NULL;
2602 RIL_Carrier *excludedCarriers = NULL;
2603
2604 cr.len_allowed_carriers = carriers.allowedCarriers.size();
2605 allowedCarriers = (RIL_Carrier *)calloc(cr.len_allowed_carriers, sizeof(RIL_Carrier));
2606 if (allowedCarriers == NULL) {
2607 RLOGE("setAllowedCarriers: Memory allocation failed for request %s",
2608 requestToString(pRI->pCI->requestNumber));
2609 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2610 return Void();
2611 }
2612 cr.allowed_carriers = allowedCarriers;
2613
2614 cr.len_excluded_carriers = carriers.excludedCarriers.size();
2615 excludedCarriers = (RIL_Carrier *)calloc(cr.len_excluded_carriers, sizeof(RIL_Carrier));
2616 if (excludedCarriers == NULL) {
2617 RLOGE("setAllowedCarriers: Memory allocation failed for request %s",
2618 requestToString(pRI->pCI->requestNumber));
2619 sendErrorResponse(pRI, RIL_E_NO_MEMORY);
2620#ifdef MEMSET_FREED
2621 memset(allowedCarriers, 0, cr.len_allowed_carriers * sizeof(RIL_Carrier));
2622#endif
2623 free(allowedCarriers);
2624 return Void();
2625 }
2626 cr.excluded_carriers = excludedCarriers;
2627
2628 for (int i = 0; i < cr.len_allowed_carriers; i++) {
2629 allowedCarriers[i].mcc = carriers.allowedCarriers[i].mcc.c_str();
2630 allowedCarriers[i].mnc = carriers.allowedCarriers[i].mnc.c_str();
2631 allowedCarriers[i].match_type = (RIL_CarrierMatchType) carriers.allowedCarriers[i].matchType;
2632 allowedCarriers[i].match_data = carriers.allowedCarriers[i].matchData.c_str();
2633 }
2634
2635 for (int i = 0; i < cr.len_excluded_carriers; i++) {
2636 excludedCarriers[i].mcc = carriers.excludedCarriers[i].mcc.c_str();
2637 excludedCarriers[i].mnc = carriers.excludedCarriers[i].mnc.c_str();
2638 excludedCarriers[i].match_type =
2639 (RIL_CarrierMatchType) carriers.excludedCarriers[i].matchType;
2640 excludedCarriers[i].match_data = carriers.excludedCarriers[i].matchData.c_str();
2641 }
2642
2643 CALL_ONREQUEST(pRI->pCI->requestNumber, &cr, sizeof(RIL_CarrierRestrictions), pRI, mSlotId);
2644
2645#ifdef MEMSET_FREED
2646 memset(allowedCarriers, 0, cr.len_allowed_carriers * sizeof(RIL_Carrier));
2647 memset(excludedCarriers, 0, cr.len_excluded_carriers * sizeof(RIL_Carrier));
2648#endif
2649 free(allowedCarriers);
2650 free(excludedCarriers);
2651 return Void();
2652}
2653
2654Return<void> RadioImpl::getAllowedCarriers(int32_t serial) {
2655#if VDBG
2656 RLOGD("getAllowedCarriers: serial %d", serial);
2657#endif
2658 dispatchVoid(serial, mSlotId, RIL_REQUEST_GET_CARRIER_RESTRICTIONS);
2659 return Void();
2660}
2661
2662Return<void> RadioImpl::sendDeviceState(int32_t serial, DeviceStateType deviceStateType,
2663 bool state) {
2664#if VDBG
2665 RLOGD("sendDeviceState: serial %d", serial);
2666#endif
2667 if (s_vendorFunctions->version < 15) {
2668 if (deviceStateType == DeviceStateType::LOW_DATA_EXPECTED) {
2669 RLOGD("sendDeviceState: calling screen state %d", BOOL_TO_INT(!state));
2670 dispatchInts(serial, mSlotId, RIL_REQUEST_SCREEN_STATE, 1, BOOL_TO_INT(!state));
2671 } else {
2672 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
2673 RIL_REQUEST_SEND_DEVICE_STATE);
2674 sendErrorResponse(pRI, RIL_E_REQUEST_NOT_SUPPORTED);
2675 }
2676 return Void();
2677 }
2678 dispatchInts(serial, mSlotId, RIL_REQUEST_SEND_DEVICE_STATE, 2, (int) deviceStateType,
2679 BOOL_TO_INT(state));
2680 return Void();
2681}
2682
2683Return<void> RadioImpl::setIndicationFilter(int32_t serial, int32_t indicationFilter) {
2684#if VDBG
2685 RLOGD("setIndicationFilter: serial %d", serial);
2686#endif
2687 if (s_vendorFunctions->version < 15) {
2688 RequestInfo *pRI = android::addRequestToList(serial, mSlotId,
2689 RIL_REQUEST_SET_UNSOLICITED_RESPONSE_FILTER);
2690 sendErrorResponse(pRI, RIL_E_REQUEST_NOT_SUPPORTED);
2691 return Void();
2692 }
2693 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_UNSOLICITED_RESPONSE_FILTER, 1, indicationFilter);
2694 return Void();
2695}
2696
2697Return<void> RadioImpl::setSimCardPower(int32_t serial, bool powerUp) {
2698#if VDBG
2699 RLOGD("setSimCardPower: serial %d", serial);
2700#endif
2701 dispatchInts(serial, mSlotId, RIL_REQUEST_SET_SIM_CARD_POWER, 1, BOOL_TO_INT(powerUp));
2702 return Void();
2703}
2704
2705Return<void> RadioImpl::responseAcknowledgement() {
2706 android::releaseWakeLock();
2707 return Void();
2708}
2709
2710Return<void> OemHookImpl::setResponseFunctions(
2711 const ::android::sp<IOemHookResponse>& oemHookResponseParam,
2712 const ::android::sp<IOemHookIndication>& oemHookIndicationParam) {
2713#if VDBG
2714 RLOGD("OemHookImpl::setResponseFunctions");
2715#endif
2716
2717 pthread_rwlock_t *radioServiceRwlockPtr = radio::getRadioServiceRwlock(mSlotId);
2718 int ret = pthread_rwlock_wrlock(radioServiceRwlockPtr);
2719 assert(ret == 0);
2720
2721 mOemHookResponse = oemHookResponseParam;
2722 mOemHookIndication = oemHookIndicationParam;
2723 mCounterOemHook[mSlotId]++;
2724
2725 ret = pthread_rwlock_unlock(radioServiceRwlockPtr);
2726 assert(ret == 0);
2727
2728 return Void();
2729}
2730
2731Return<void> OemHookImpl::sendRequestRaw(int32_t serial, const hidl_vec<uint8_t>& data) {
2732#if VDBG
2733 RLOGD("OemHookImpl::sendRequestRaw: serial %d", serial);
2734#endif
2735 dispatchRaw(serial, mSlotId, RIL_REQUEST_OEM_HOOK_RAW, data);
2736 return Void();
2737}
2738
2739Return<void> OemHookImpl::sendRequestStrings(int32_t serial,
2740 const hidl_vec<hidl_string>& data) {
2741#if VDBG
2742 RLOGD("OemHookImpl::sendRequestStrings: serial %d", serial);
2743#endif
2744 dispatchStrings(serial, mSlotId, RIL_REQUEST_OEM_HOOK_STRINGS, data);
2745 return Void();
2746}
2747
2748/***************************************************************************************************
2749 * RESPONSE FUNCTIONS
2750 * Functions above are used for requests going from framework to vendor code. The ones below are
2751 * responses for those requests coming back from the vendor code.
2752 **************************************************************************************************/
2753
2754void radio::acknowledgeRequest(int slotId, int serial) {
2755 if (radioService[slotId]->mRadioResponse != NULL) {
2756 Return<void> retStatus = radioService[slotId]->mRadioResponse->acknowledgeRequest(serial);
2757 radioService[slotId]->checkReturnStatus(retStatus);
2758 } else {
2759 RLOGE("acknowledgeRequest: radioService[%d]->mRadioResponse == NULL", slotId);
2760 }
2761}
2762
2763void populateResponseInfo(RadioResponseInfo& responseInfo, int serial, int responseType,
2764 RIL_Errno e) {
2765 responseInfo.serial = serial;
2766 switch (responseType) {
2767 case RESPONSE_SOLICITED:
2768 responseInfo.type = RadioResponseType::SOLICITED;
2769 break;
2770 case RESPONSE_SOLICITED_ACK_EXP:
2771 responseInfo.type = RadioResponseType::SOLICITED_ACK_EXP;
2772 break;
2773 }
2774 responseInfo.error = (RadioError) e;
2775}
2776
2777int responseIntOrEmpty(RadioResponseInfo& responseInfo, int serial, int responseType, RIL_Errno e,
2778 void *response, size_t responseLen) {
2779 populateResponseInfo(responseInfo, serial, responseType, e);
2780 int ret = -1;
2781
2782 if (response == NULL && responseLen == 0) {
2783 // Earlier RILs did not send a response for some cases although the interface
2784 // expected an integer as response. Do not return error if response is empty. Instead
2785 // Return -1 in those cases to maintain backward compatibility.
Paul Keith96ff3122018-03-06 20:19:57 +01002786 } else if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03002787 RLOGE("responseIntOrEmpty: Invalid response");
2788 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
2789 } else {
2790 int *p_int = (int *) response;
2791 ret = p_int[0];
2792 }
2793 return ret;
2794}
2795
2796int responseInt(RadioResponseInfo& responseInfo, int serial, int responseType, RIL_Errno e,
2797 void *response, size_t responseLen) {
2798 populateResponseInfo(responseInfo, serial, responseType, e);
2799 int ret = -1;
2800
Paul Keith96ff3122018-03-06 20:19:57 +01002801 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03002802 RLOGE("responseInt: Invalid response");
2803 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
2804 } else {
2805 int *p_int = (int *) response;
2806 ret = p_int[0];
2807 }
2808 return ret;
2809}
2810
2811int radio::getIccCardStatusResponse(int slotId,
2812 int responseType, int serial, RIL_Errno e,
2813 void *response, size_t responseLen) {
2814 if (radioService[slotId]->mRadioResponse != NULL) {
2815 RadioResponseInfo responseInfo = {};
2816 populateResponseInfo(responseInfo, serial, responseType, e);
2817 CardStatus cardStatus = {};
2818 if (response == NULL || responseLen != sizeof(RIL_CardStatus_v6)) {
2819 RLOGE("getIccCardStatusResponse: Invalid response");
2820 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
2821 } else {
2822 RIL_CardStatus_v6 *p_cur = ((RIL_CardStatus_v6 *) response);
2823 cardStatus.cardState = (CardState) p_cur->card_state;
2824 cardStatus.universalPinState = (PinState) p_cur->universal_pin_state;
2825 cardStatus.gsmUmtsSubscriptionAppIndex = p_cur->gsm_umts_subscription_app_index;
2826 cardStatus.cdmaSubscriptionAppIndex = p_cur->cdma_subscription_app_index;
2827 cardStatus.imsSubscriptionAppIndex = p_cur->ims_subscription_app_index;
2828
2829 RIL_AppStatus *rilAppStatus = p_cur->applications;
2830 cardStatus.applications.resize(p_cur->num_applications);
2831 AppStatus *appStatus = cardStatus.applications.data();
2832#if VDBG
2833 RLOGD("getIccCardStatusResponse: num_applications %d", p_cur->num_applications);
2834#endif
2835 for (int i = 0; i < p_cur->num_applications; i++) {
2836 appStatus[i].appType = (AppType) rilAppStatus[i].app_type;
2837 appStatus[i].appState = (AppState) rilAppStatus[i].app_state;
2838 appStatus[i].persoSubstate = (PersoSubstate) rilAppStatus[i].perso_substate;
2839 appStatus[i].aidPtr = convertCharPtrToHidlString(rilAppStatus[i].aid_ptr);
2840 appStatus[i].appLabelPtr = convertCharPtrToHidlString(
2841 rilAppStatus[i].app_label_ptr);
2842 appStatus[i].pin1Replaced = rilAppStatus[i].pin1_replaced;
2843 appStatus[i].pin1 = (PinState) rilAppStatus[i].pin1;
2844 appStatus[i].pin2 = (PinState) rilAppStatus[i].pin2;
2845 }
2846 }
2847
2848 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2849 getIccCardStatusResponse(responseInfo, cardStatus);
2850 radioService[slotId]->checkReturnStatus(retStatus);
2851 } else {
2852 RLOGE("getIccCardStatusResponse: radioService[%d]->mRadioResponse == NULL", slotId);
2853 }
2854
2855 return 0;
2856}
2857
2858int radio::supplyIccPinForAppResponse(int slotId,
2859 int responseType, int serial, RIL_Errno e,
2860 void *response, size_t responseLen) {
2861#if VDBG
2862 RLOGD("supplyIccPinForAppResponse: serial %d", serial);
2863#endif
2864
2865 if (radioService[slotId]->mRadioResponse != NULL) {
2866 RadioResponseInfo responseInfo = {};
2867 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2868 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2869 supplyIccPinForAppResponse(responseInfo, ret);
2870 RLOGE("supplyIccPinForAppResponse: amit ret %d", ret);
2871 radioService[slotId]->checkReturnStatus(retStatus);
2872 } else {
2873 RLOGE("supplyIccPinForAppResponse: radioService[%d]->mRadioResponse == NULL",
2874 slotId);
2875 }
2876
2877 return 0;
2878}
2879
2880int radio::supplyIccPukForAppResponse(int slotId,
2881 int responseType, int serial, RIL_Errno e,
2882 void *response, size_t responseLen) {
2883#if VDBG
2884 RLOGD("supplyIccPukForAppResponse: serial %d", serial);
2885#endif
2886
2887 if (radioService[slotId]->mRadioResponse != NULL) {
2888 RadioResponseInfo responseInfo = {};
2889 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2890 Return<void> retStatus = radioService[slotId]->mRadioResponse->supplyIccPukForAppResponse(
2891 responseInfo, ret);
2892 radioService[slotId]->checkReturnStatus(retStatus);
2893 } else {
2894 RLOGE("supplyIccPukForAppResponse: radioService[%d]->mRadioResponse == NULL",
2895 slotId);
2896 }
2897
2898 return 0;
2899}
2900
2901int radio::supplyIccPin2ForAppResponse(int slotId,
2902 int responseType, int serial, RIL_Errno e,
2903 void *response, size_t responseLen) {
2904#if VDBG
2905 RLOGD("supplyIccPin2ForAppResponse: serial %d", serial);
2906#endif
2907
2908 if (radioService[slotId]->mRadioResponse != NULL) {
2909 RadioResponseInfo responseInfo = {};
2910 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2911 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2912 supplyIccPin2ForAppResponse(responseInfo, ret);
2913 radioService[slotId]->checkReturnStatus(retStatus);
2914 } else {
2915 RLOGE("supplyIccPin2ForAppResponse: radioService[%d]->mRadioResponse == NULL",
2916 slotId);
2917 }
2918
2919 return 0;
2920}
2921
2922int radio::supplyIccPuk2ForAppResponse(int slotId,
2923 int responseType, int serial, RIL_Errno e,
2924 void *response, size_t responseLen) {
2925#if VDBG
2926 RLOGD("supplyIccPuk2ForAppResponse: serial %d", serial);
2927#endif
2928
2929 if (radioService[slotId]->mRadioResponse != NULL) {
2930 RadioResponseInfo responseInfo = {};
2931 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2932 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2933 supplyIccPuk2ForAppResponse(responseInfo, ret);
2934 radioService[slotId]->checkReturnStatus(retStatus);
2935 } else {
2936 RLOGE("supplyIccPuk2ForAppResponse: radioService[%d]->mRadioResponse == NULL",
2937 slotId);
2938 }
2939
2940 return 0;
2941}
2942
2943int radio::changeIccPinForAppResponse(int slotId,
2944 int responseType, int serial, RIL_Errno e,
2945 void *response, size_t responseLen) {
2946#if VDBG
2947 RLOGD("changeIccPinForAppResponse: serial %d", serial);
2948#endif
2949
2950 if (radioService[slotId]->mRadioResponse != NULL) {
2951 RadioResponseInfo responseInfo = {};
2952 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2953 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2954 changeIccPinForAppResponse(responseInfo, ret);
2955 radioService[slotId]->checkReturnStatus(retStatus);
2956 } else {
2957 RLOGE("changeIccPinForAppResponse: radioService[%d]->mRadioResponse == NULL",
2958 slotId);
2959 }
2960
2961 return 0;
2962}
2963
2964int radio::changeIccPin2ForAppResponse(int slotId,
2965 int responseType, int serial, RIL_Errno e,
2966 void *response, size_t responseLen) {
2967#if VDBG
2968 RLOGD("changeIccPin2ForAppResponse: serial %d", serial);
2969#endif
2970
2971 if (radioService[slotId]->mRadioResponse != NULL) {
2972 RadioResponseInfo responseInfo = {};
2973 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2974 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2975 changeIccPin2ForAppResponse(responseInfo, ret);
2976 radioService[slotId]->checkReturnStatus(retStatus);
2977 } else {
2978 RLOGE("changeIccPin2ForAppResponse: radioService[%d]->mRadioResponse == NULL",
2979 slotId);
2980 }
2981
2982 return 0;
2983}
2984
2985int radio::supplyNetworkDepersonalizationResponse(int slotId,
2986 int responseType, int serial, RIL_Errno e,
2987 void *response, size_t responseLen) {
2988#if VDBG
2989 RLOGD("supplyNetworkDepersonalizationResponse: serial %d", serial);
2990#endif
2991
2992 if (radioService[slotId]->mRadioResponse != NULL) {
2993 RadioResponseInfo responseInfo = {};
2994 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
2995 Return<void> retStatus = radioService[slotId]->mRadioResponse->
2996 supplyNetworkDepersonalizationResponse(responseInfo, ret);
2997 radioService[slotId]->checkReturnStatus(retStatus);
2998 } else {
2999 RLOGE("supplyNetworkDepersonalizationResponse: radioService[%d]->mRadioResponse == "
3000 "NULL", slotId);
3001 }
3002
3003 return 0;
3004}
3005
3006int radio::getCurrentCallsResponse(int slotId,
3007 int responseType, int serial, RIL_Errno e,
3008 void *response, size_t responseLen) {
3009#if VDBG
3010 RLOGD("getCurrentCallsResponse: serial %d", serial);
3011#endif
3012
3013 if (radioService[slotId]->mRadioResponse != NULL) {
3014 RadioResponseInfo responseInfo = {};
3015 populateResponseInfo(responseInfo, serial, responseType, e);
3016
3017 hidl_vec<Call> calls;
3018 if ((response == NULL && responseLen != 0)
3019 || (responseLen % sizeof(RIL_Call *)) != 0) {
3020 RLOGE("getCurrentCallsResponse: Invalid response");
3021 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3022 } else {
3023 int num = responseLen / sizeof(RIL_Call *);
3024 calls.resize(num);
3025
3026 for (int i = 0 ; i < num ; i++) {
3027 RIL_Call *p_cur = ((RIL_Call **) response)[i];
3028 /* each call info */
3029 calls[i].state = (CallState) p_cur->state;
Martin Bouchetd9123962017-09-24 03:14:57 -03003030 calls[i].index = p_cur->index & 0xff;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003031 calls[i].toa = p_cur->toa;
3032 calls[i].isMpty = p_cur->isMpty;
3033 calls[i].isMT = p_cur->isMT;
3034 calls[i].als = p_cur->als;
3035 calls[i].isVoice = p_cur->isVoice;
3036 calls[i].isVoicePrivacy = p_cur->isVoicePrivacy;
3037 calls[i].number = convertCharPtrToHidlString(p_cur->number);
3038 calls[i].numberPresentation = (CallPresentation) p_cur->numberPresentation;
3039 calls[i].name = convertCharPtrToHidlString(p_cur->name);
3040 calls[i].namePresentation = (CallPresentation) p_cur->namePresentation;
3041 if (p_cur->uusInfo != NULL && p_cur->uusInfo->uusData != NULL) {
3042 RIL_UUS_Info *uusInfo = p_cur->uusInfo;
3043 calls[i].uusInfo[0].uusType = (UusType) uusInfo->uusType;
3044 calls[i].uusInfo[0].uusDcs = (UusDcs) uusInfo->uusDcs;
3045 // convert uusInfo->uusData to a null-terminated string
3046 char *nullTermStr = strndup(uusInfo->uusData, uusInfo->uusLength);
3047 calls[i].uusInfo[0].uusData = nullTermStr;
3048 free(nullTermStr);
3049 }
3050 }
3051 }
3052
3053 Return<void> retStatus = radioService[slotId]->mRadioResponse->
3054 getCurrentCallsResponse(responseInfo, calls);
3055 radioService[slotId]->checkReturnStatus(retStatus);
3056 } else {
3057 RLOGE("getCurrentCallsResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3058 }
3059
3060 return 0;
3061}
3062
3063int radio::dialResponse(int slotId,
3064 int responseType, int serial, RIL_Errno e, void *response,
3065 size_t responseLen) {
3066#if VDBG
3067 RLOGD("dialResponse: serial %d", serial);
3068#endif
3069
3070 if (radioService[slotId]->mRadioResponse != NULL) {
3071 RadioResponseInfo responseInfo = {};
3072 populateResponseInfo(responseInfo, serial, responseType, e);
3073 Return<void> retStatus = radioService[slotId]->mRadioResponse->dialResponse(responseInfo);
3074 radioService[slotId]->checkReturnStatus(retStatus);
3075 } else {
3076 RLOGE("dialResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3077 }
3078
3079 return 0;
3080}
3081
3082int radio::getIMSIForAppResponse(int slotId,
3083 int responseType, int serial, RIL_Errno e, void *response,
3084 size_t responseLen) {
3085#if VDBG
3086 RLOGD("getIMSIForAppResponse: serial %d", serial);
3087#endif
3088
3089 if (radioService[slotId]->mRadioResponse != NULL) {
3090 RadioResponseInfo responseInfo = {};
3091 populateResponseInfo(responseInfo, serial, responseType, e);
3092 Return<void> retStatus = radioService[slotId]->mRadioResponse->getIMSIForAppResponse(
3093 responseInfo, convertCharPtrToHidlString((char *) response));
3094 radioService[slotId]->checkReturnStatus(retStatus);
3095 } else {
3096 RLOGE("getIMSIForAppResponse: radioService[%d]->mRadioResponse == NULL",
3097 slotId);
3098 }
3099
3100 return 0;
3101}
3102
3103int radio::hangupConnectionResponse(int slotId,
3104 int responseType, int serial, RIL_Errno e,
3105 void *response, size_t responseLen) {
3106#if VDBG
3107 RLOGD("hangupConnectionResponse: serial %d", serial);
3108#endif
3109
3110 if (radioService[slotId]->mRadioResponse != NULL) {
3111 RadioResponseInfo responseInfo = {};
3112 populateResponseInfo(responseInfo, serial, responseType, e);
3113 Return<void> retStatus = radioService[slotId]->mRadioResponse->hangupConnectionResponse(
3114 responseInfo);
3115 radioService[slotId]->checkReturnStatus(retStatus);
3116 } else {
3117 RLOGE("hangupConnectionResponse: radioService[%d]->mRadioResponse == NULL",
3118 slotId);
3119 }
3120
3121 return 0;
3122}
3123
3124int radio::hangupWaitingOrBackgroundResponse(int slotId,
3125 int responseType, int serial, RIL_Errno e,
3126 void *response, size_t responseLen) {
3127#if VDBG
3128 RLOGD("hangupWaitingOrBackgroundResponse: serial %d", serial);
3129#endif
3130
3131 if (radioService[slotId]->mRadioResponse != NULL) {
3132 RadioResponseInfo responseInfo = {};
3133 populateResponseInfo(responseInfo, serial, responseType, e);
3134 Return<void> retStatus =
3135 radioService[slotId]->mRadioResponse->hangupWaitingOrBackgroundResponse(
3136 responseInfo);
3137 radioService[slotId]->checkReturnStatus(retStatus);
3138 } else {
3139 RLOGE("hangupWaitingOrBackgroundResponse: radioService[%d]->mRadioResponse == NULL",
3140 slotId);
3141 }
3142
3143 return 0;
3144}
3145
3146int radio::hangupForegroundResumeBackgroundResponse(int slotId, int responseType, int serial,
3147 RIL_Errno e, void *response,
3148 size_t responseLen) {
3149#if VDBG
3150 RLOGD("hangupWaitingOrBackgroundResponse: serial %d", serial);
3151#endif
3152
3153 if (radioService[slotId]->mRadioResponse != NULL) {
3154 RadioResponseInfo responseInfo = {};
3155 populateResponseInfo(responseInfo, serial, responseType, e);
3156 Return<void> retStatus =
3157 radioService[slotId]->mRadioResponse->hangupWaitingOrBackgroundResponse(
3158 responseInfo);
3159 radioService[slotId]->checkReturnStatus(retStatus);
3160 } else {
3161 RLOGE("hangupWaitingOrBackgroundResponse: radioService[%d]->mRadioResponse == NULL",
3162 slotId);
3163 }
3164
3165 return 0;
3166}
3167
3168int radio::switchWaitingOrHoldingAndActiveResponse(int slotId, int responseType, int serial,
3169 RIL_Errno e, void *response,
3170 size_t responseLen) {
3171#if VDBG
3172 RLOGD("switchWaitingOrHoldingAndActiveResponse: serial %d", serial);
3173#endif
3174
3175 if (radioService[slotId]->mRadioResponse != NULL) {
3176 RadioResponseInfo responseInfo = {};
3177 populateResponseInfo(responseInfo, serial, responseType, e);
3178 Return<void> retStatus =
3179 radioService[slotId]->mRadioResponse->switchWaitingOrHoldingAndActiveResponse(
3180 responseInfo);
3181 radioService[slotId]->checkReturnStatus(retStatus);
3182 } else {
3183 RLOGE("switchWaitingOrHoldingAndActiveResponse: radioService[%d]->mRadioResponse "
3184 "== NULL", slotId);
3185 }
3186
3187 return 0;
3188}
3189
3190int radio::conferenceResponse(int slotId, int responseType,
3191 int serial, RIL_Errno e, void *response, size_t responseLen) {
3192#if VDBG
3193 RLOGD("conferenceResponse: serial %d", serial);
3194#endif
3195
3196 if (radioService[slotId]->mRadioResponse != NULL) {
3197 RadioResponseInfo responseInfo = {};
3198 populateResponseInfo(responseInfo, serial, responseType, e);
3199 Return<void> retStatus = radioService[slotId]->mRadioResponse->conferenceResponse(
3200 responseInfo);
3201 radioService[slotId]->checkReturnStatus(retStatus);
3202 } else {
3203 RLOGE("conferenceResponse: radioService[%d]->mRadioResponse == NULL",
3204 slotId);
3205 }
3206
3207 return 0;
3208}
3209
3210int radio::rejectCallResponse(int slotId, int responseType,
3211 int serial, RIL_Errno e, void *response, size_t responseLen) {
3212#if VDBG
3213 RLOGD("rejectCallResponse: serial %d", serial);
3214#endif
3215
3216 if (radioService[slotId]->mRadioResponse != NULL) {
3217 RadioResponseInfo responseInfo = {};
3218 populateResponseInfo(responseInfo, serial, responseType, e);
3219 Return<void> retStatus = radioService[slotId]->mRadioResponse->rejectCallResponse(
3220 responseInfo);
3221 radioService[slotId]->checkReturnStatus(retStatus);
3222 } else {
3223 RLOGE("rejectCallResponse: radioService[%d]->mRadioResponse == NULL",
3224 slotId);
3225 }
3226
3227 return 0;
3228}
3229
3230int radio::getLastCallFailCauseResponse(int slotId,
3231 int responseType, int serial, RIL_Errno e, void *response,
3232 size_t responseLen) {
3233#if VDBG
3234 RLOGD("getLastCallFailCauseResponse: serial %d", serial);
3235#endif
3236
3237 if (radioService[slotId]->mRadioResponse != NULL) {
3238 RadioResponseInfo responseInfo = {};
3239 populateResponseInfo(responseInfo, serial, responseType, e);
3240
3241 LastCallFailCauseInfo info = {};
3242 info.vendorCause = hidl_string();
3243 if (response == NULL) {
3244 RLOGE("getCurrentCallsResponse Invalid response: NULL");
3245 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003246 } else if (responseLen == sizeof(RIL_LastCallFailCauseInfo)) {
3247 RIL_LastCallFailCauseInfo *pFailCauseInfo = (RIL_LastCallFailCauseInfo *) response;
3248 info.causeCode = (LastCallFailCause) pFailCauseInfo->cause_code;
3249 info.vendorCause = convertCharPtrToHidlString(pFailCauseInfo->vendor_cause);
Paul Keith96ff3122018-03-06 20:19:57 +01003250 } else if (responseLen % sizeof(int) != 0) {
3251 int *pInt = (int *) response;
3252 info.causeCode = (LastCallFailCause) pInt[0];
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003253 } else {
3254 RLOGE("getCurrentCallsResponse Invalid response: NULL");
3255 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3256 }
3257
3258 Return<void> retStatus = radioService[slotId]->mRadioResponse->getLastCallFailCauseResponse(
3259 responseInfo, info);
3260 radioService[slotId]->checkReturnStatus(retStatus);
3261 } else {
3262 RLOGE("getLastCallFailCauseResponse: radioService[%d]->mRadioResponse == NULL",
3263 slotId);
3264 }
3265
3266 return 0;
3267}
3268
3269int radio::getSignalStrengthResponse(int slotId,
3270 int responseType, int serial, RIL_Errno e,
3271 void *response, size_t responseLen) {
3272#if VDBG
3273 RLOGD("getSignalStrengthResponse: serial %d", serial);
3274#endif
3275
3276 if (radioService[slotId]->mRadioResponse != NULL) {
3277 RadioResponseInfo responseInfo = {};
3278 populateResponseInfo(responseInfo, serial, responseType, e);
3279 SignalStrength signalStrength = {};
3280 if (response == NULL || (responseLen != sizeof(RIL_SignalStrength_v10)
Martin Bouchet6e9a4972017-09-23 04:55:52 -03003281 && responseLen != sizeof(RIL_SignalStrength_v8)
3282 && responseLen != sizeof(RIL_SignalStrength_v6)
3283 && responseLen != sizeof(RIL_SignalStrength_v5))) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003284 RLOGE("getSignalStrengthResponse: Invalid response");
3285 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3286 } else {
3287 convertRilSignalStrengthToHal(response, responseLen, signalStrength);
3288 }
3289
3290 Return<void> retStatus = radioService[slotId]->mRadioResponse->getSignalStrengthResponse(
3291 responseInfo, signalStrength);
3292 radioService[slotId]->checkReturnStatus(retStatus);
3293 } else {
3294 RLOGE("getSignalStrengthResponse: radioService[%d]->mRadioResponse == NULL",
3295 slotId);
3296 }
3297
3298 return 0;
3299}
3300
3301RIL_CellInfoType getCellInfoTypeRadioTechnology(char *rat) {
3302 if (rat == NULL) {
3303 return RIL_CELL_INFO_TYPE_NONE;
3304 }
3305
3306 int radioTech = atoi(rat);
3307
3308 switch(radioTech) {
3309
3310 case RADIO_TECH_GPRS:
3311 case RADIO_TECH_EDGE:
3312 case RADIO_TECH_GSM: {
3313 return RIL_CELL_INFO_TYPE_GSM;
3314 }
3315
3316 case RADIO_TECH_UMTS:
3317 case RADIO_TECH_HSDPA:
3318 case RADIO_TECH_HSUPA:
3319 case RADIO_TECH_HSPA:
3320 case RADIO_TECH_HSPAP: {
3321 return RIL_CELL_INFO_TYPE_WCDMA;
3322 }
3323
3324 case RADIO_TECH_IS95A:
3325 case RADIO_TECH_IS95B:
3326 case RADIO_TECH_1xRTT:
3327 case RADIO_TECH_EVDO_0:
3328 case RADIO_TECH_EVDO_A:
3329 case RADIO_TECH_EVDO_B:
3330 case RADIO_TECH_EHRPD: {
3331 return RIL_CELL_INFO_TYPE_CDMA;
3332 }
3333
3334 case RADIO_TECH_LTE:
3335 case RADIO_TECH_LTE_CA: {
3336 return RIL_CELL_INFO_TYPE_LTE;
3337 }
3338
3339 case RADIO_TECH_TD_SCDMA: {
3340 return RIL_CELL_INFO_TYPE_TD_SCDMA;
3341 }
3342
3343 default: {
3344 break;
3345 }
3346 }
3347
3348 return RIL_CELL_INFO_TYPE_NONE;
3349
3350}
3351
3352void fillCellIdentityResponse(CellIdentity &cellIdentity, RIL_CellIdentity_v16 &rilCellIdentity) {
3353
3354 cellIdentity.cellIdentityGsm.resize(0);
3355 cellIdentity.cellIdentityWcdma.resize(0);
3356 cellIdentity.cellIdentityCdma.resize(0);
3357 cellIdentity.cellIdentityTdscdma.resize(0);
3358 cellIdentity.cellIdentityLte.resize(0);
3359 cellIdentity.cellInfoType = (CellInfoType)rilCellIdentity.cellInfoType;
3360 switch(rilCellIdentity.cellInfoType) {
3361
3362 case RIL_CELL_INFO_TYPE_GSM: {
3363 cellIdentity.cellIdentityGsm.resize(1);
3364 cellIdentity.cellIdentityGsm[0].mcc =
3365 std::to_string(rilCellIdentity.cellIdentityGsm.mcc);
3366 cellIdentity.cellIdentityGsm[0].mnc =
3367 std::to_string(rilCellIdentity.cellIdentityGsm.mnc);
3368 cellIdentity.cellIdentityGsm[0].lac = rilCellIdentity.cellIdentityGsm.lac;
3369 cellIdentity.cellIdentityGsm[0].cid = rilCellIdentity.cellIdentityGsm.cid;
3370 cellIdentity.cellIdentityGsm[0].arfcn = rilCellIdentity.cellIdentityGsm.arfcn;
3371 cellIdentity.cellIdentityGsm[0].bsic = rilCellIdentity.cellIdentityGsm.bsic;
3372 break;
3373 }
3374
3375 case RIL_CELL_INFO_TYPE_WCDMA: {
3376 cellIdentity.cellIdentityWcdma.resize(1);
3377 cellIdentity.cellIdentityWcdma[0].mcc =
3378 std::to_string(rilCellIdentity.cellIdentityWcdma.mcc);
3379 cellIdentity.cellIdentityWcdma[0].mnc =
3380 std::to_string(rilCellIdentity.cellIdentityWcdma.mnc);
3381 cellIdentity.cellIdentityWcdma[0].lac = rilCellIdentity.cellIdentityWcdma.lac;
3382 cellIdentity.cellIdentityWcdma[0].cid = rilCellIdentity.cellIdentityWcdma.cid;
3383 cellIdentity.cellIdentityWcdma[0].psc = rilCellIdentity.cellIdentityWcdma.psc;
3384 cellIdentity.cellIdentityWcdma[0].uarfcn = rilCellIdentity.cellIdentityWcdma.uarfcn;
3385 break;
3386 }
3387
3388 case RIL_CELL_INFO_TYPE_CDMA: {
3389 cellIdentity.cellIdentityCdma.resize(1);
3390 cellIdentity.cellIdentityCdma[0].networkId = rilCellIdentity.cellIdentityCdma.networkId;
3391 cellIdentity.cellIdentityCdma[0].systemId = rilCellIdentity.cellIdentityCdma.systemId;
3392 cellIdentity.cellIdentityCdma[0].baseStationId =
3393 rilCellIdentity.cellIdentityCdma.basestationId;
3394 cellIdentity.cellIdentityCdma[0].longitude = rilCellIdentity.cellIdentityCdma.longitude;
3395 cellIdentity.cellIdentityCdma[0].latitude = rilCellIdentity.cellIdentityCdma.latitude;
3396 break;
3397 }
3398
3399 case RIL_CELL_INFO_TYPE_LTE: {
3400 cellIdentity.cellIdentityLte.resize(1);
3401 cellIdentity.cellIdentityLte[0].mcc =
3402 std::to_string(rilCellIdentity.cellIdentityLte.mcc);
3403 cellIdentity.cellIdentityLte[0].mnc =
3404 std::to_string(rilCellIdentity.cellIdentityLte.mnc);
3405 cellIdentity.cellIdentityLte[0].ci = rilCellIdentity.cellIdentityLte.ci;
3406 cellIdentity.cellIdentityLte[0].pci = rilCellIdentity.cellIdentityLte.pci;
3407 cellIdentity.cellIdentityLte[0].tac = rilCellIdentity.cellIdentityLte.tac;
3408 cellIdentity.cellIdentityLte[0].earfcn = rilCellIdentity.cellIdentityLte.earfcn;
3409 break;
3410 }
3411
3412 case RIL_CELL_INFO_TYPE_TD_SCDMA: {
3413 cellIdentity.cellIdentityTdscdma.resize(1);
3414 cellIdentity.cellIdentityTdscdma[0].mcc =
3415 std::to_string(rilCellIdentity.cellIdentityTdscdma.mcc);
3416 cellIdentity.cellIdentityTdscdma[0].mnc =
3417 std::to_string(rilCellIdentity.cellIdentityTdscdma.mnc);
3418 cellIdentity.cellIdentityTdscdma[0].lac = rilCellIdentity.cellIdentityTdscdma.lac;
3419 cellIdentity.cellIdentityTdscdma[0].cid = rilCellIdentity.cellIdentityTdscdma.cid;
3420 cellIdentity.cellIdentityTdscdma[0].cpid = rilCellIdentity.cellIdentityTdscdma.cpid;
3421 break;
3422 }
3423
3424 default: {
3425 break;
3426 }
3427 }
3428}
3429
3430int convertResponseStringEntryToInt(char **response, int index, int numStrings) {
3431 if ((response != NULL) && (numStrings > index) && (response[index] != NULL)) {
3432 return atoi(response[index]);
3433 }
3434
3435 return -1;
3436}
3437
3438int convertResponseHexStringEntryToInt(char **response, int index, int numStrings) {
3439 const int hexBase = 16;
3440 if ((response != NULL) && (numStrings > index) && (response[index] != NULL)) {
3441 return strtol(response[index], NULL, hexBase);
3442 }
3443
3444 return -1;
3445}
3446
3447/* Fill Cell Identity info from Voice Registration State Response.
3448 * This fucntion is applicable only for RIL Version < 15.
3449 * Response is a "char **".
3450 * First and Second entries are in hex string format
3451 * and rest are integers represented in ascii format. */
3452void fillCellIdentityFromVoiceRegStateResponseString(CellIdentity &cellIdentity,
3453 int numStrings, char** response) {
3454
3455 RIL_CellIdentity_v16 rilCellIdentity;
3456 memset(&rilCellIdentity, -1, sizeof(RIL_CellIdentity_v16));
3457
3458 rilCellIdentity.cellInfoType = getCellInfoTypeRadioTechnology(response[3]);
3459 switch(rilCellIdentity.cellInfoType) {
3460
3461 case RIL_CELL_INFO_TYPE_GSM: {
3462 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3463 rilCellIdentity.cellIdentityGsm.lac =
3464 convertResponseHexStringEntryToInt(response, 1, numStrings);
3465
3466 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3467 rilCellIdentity.cellIdentityGsm.cid =
3468 convertResponseHexStringEntryToInt(response, 2, numStrings);
3469 break;
3470 }
3471
3472 case RIL_CELL_INFO_TYPE_WCDMA: {
3473 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3474 rilCellIdentity.cellIdentityWcdma.lac =
3475 convertResponseHexStringEntryToInt(response, 1, numStrings);
3476
3477 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3478 rilCellIdentity.cellIdentityWcdma.cid =
3479 convertResponseHexStringEntryToInt(response, 2, numStrings);
3480 rilCellIdentity.cellIdentityWcdma.psc =
3481 convertResponseStringEntryToInt(response, 14, numStrings);
3482 break;
3483 }
3484
3485 case RIL_CELL_INFO_TYPE_TD_SCDMA:{
3486 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3487 rilCellIdentity.cellIdentityTdscdma.lac =
3488 convertResponseHexStringEntryToInt(response, 1, numStrings);
3489
3490 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3491 rilCellIdentity.cellIdentityTdscdma.cid =
3492 convertResponseHexStringEntryToInt(response, 2, numStrings);
3493 break;
3494 }
3495
3496 case RIL_CELL_INFO_TYPE_CDMA:{
3497 rilCellIdentity.cellIdentityCdma.basestationId =
3498 convertResponseStringEntryToInt(response, 4, numStrings);
3499 rilCellIdentity.cellIdentityCdma.longitude =
3500 convertResponseStringEntryToInt(response, 5, numStrings);
3501 rilCellIdentity.cellIdentityCdma.latitude =
3502 convertResponseStringEntryToInt(response, 6, numStrings);
3503 rilCellIdentity.cellIdentityCdma.systemId =
3504 convertResponseStringEntryToInt(response, 8, numStrings);
3505 rilCellIdentity.cellIdentityCdma.networkId =
3506 convertResponseStringEntryToInt(response, 9, numStrings);
3507 break;
3508 }
3509
3510 case RIL_CELL_INFO_TYPE_LTE:{
3511 /* valid TAC are hexstrings in the range 0x0000 - 0xffff */
3512 rilCellIdentity.cellIdentityLte.tac =
3513 convertResponseHexStringEntryToInt(response, 1, numStrings);
3514
3515 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3516 rilCellIdentity.cellIdentityLte.ci =
3517 convertResponseHexStringEntryToInt(response, 2, numStrings);
3518 break;
3519 }
3520
3521 default: {
3522 break;
3523 }
3524 }
3525
3526 fillCellIdentityResponse(cellIdentity, rilCellIdentity);
3527}
3528
3529/* Fill Cell Identity info from Data Registration State Response.
3530 * This fucntion is applicable only for RIL Version < 15.
3531 * Response is a "char **".
3532 * First and Second entries are in hex string format
3533 * and rest are integers represented in ascii format. */
3534void fillCellIdentityFromDataRegStateResponseString(CellIdentity &cellIdentity,
3535 int numStrings, char** response) {
3536
3537 RIL_CellIdentity_v16 rilCellIdentity;
3538 memset(&rilCellIdentity, -1, sizeof(RIL_CellIdentity_v16));
3539
3540 rilCellIdentity.cellInfoType = getCellInfoTypeRadioTechnology(response[3]);
3541 switch(rilCellIdentity.cellInfoType) {
3542 case RIL_CELL_INFO_TYPE_GSM: {
3543 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3544 rilCellIdentity.cellIdentityGsm.lac =
3545 convertResponseHexStringEntryToInt(response, 1, numStrings);
3546
3547 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3548 rilCellIdentity.cellIdentityGsm.cid =
3549 convertResponseHexStringEntryToInt(response, 2, numStrings);
3550 break;
3551 }
3552 case RIL_CELL_INFO_TYPE_WCDMA: {
3553 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3554 rilCellIdentity.cellIdentityWcdma.lac =
3555 convertResponseHexStringEntryToInt(response, 1, numStrings);
3556
3557 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3558 rilCellIdentity.cellIdentityWcdma.cid =
3559 convertResponseHexStringEntryToInt(response, 2, numStrings);
3560 break;
3561 }
3562 case RIL_CELL_INFO_TYPE_TD_SCDMA:{
3563 /* valid LAC are hexstrings in the range 0x0000 - 0xffff */
3564 rilCellIdentity.cellIdentityTdscdma.lac =
3565 convertResponseHexStringEntryToInt(response, 1, numStrings);
3566
3567 /* valid CID are hexstrings in the range 0x00000000 - 0xffffffff */
3568 rilCellIdentity.cellIdentityTdscdma.cid =
3569 convertResponseHexStringEntryToInt(response, 2, numStrings);
3570 break;
3571 }
3572 case RIL_CELL_INFO_TYPE_LTE: {
3573 rilCellIdentity.cellIdentityLte.tac =
3574 convertResponseStringEntryToInt(response, 6, numStrings);
3575 rilCellIdentity.cellIdentityLte.pci =
3576 convertResponseStringEntryToInt(response, 7, numStrings);
3577 rilCellIdentity.cellIdentityLte.ci =
3578 convertResponseStringEntryToInt(response, 8, numStrings);
3579 break;
3580 }
3581 default: {
3582 break;
3583 }
3584 }
3585
3586 fillCellIdentityResponse(cellIdentity, rilCellIdentity);
3587}
3588
3589int radio::getVoiceRegistrationStateResponse(int slotId,
3590 int responseType, int serial, RIL_Errno e,
3591 void *response, size_t responseLen) {
3592#if VDBG
3593 RLOGD("getVoiceRegistrationStateResponse: serial %d", serial);
3594#endif
3595
3596 if (radioService[slotId]->mRadioResponse != NULL) {
3597 RadioResponseInfo responseInfo = {};
3598 populateResponseInfo(responseInfo, serial, responseType, e);
3599
3600 VoiceRegStateResult voiceRegResponse = {};
3601 int numStrings = responseLen / sizeof(char *);
3602 if (response == NULL) {
3603 RLOGE("getVoiceRegistrationStateResponse Invalid response: NULL");
3604 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3605 } else if (s_vendorFunctions->version <= 14) {
Paul Keith96ff3122018-03-06 20:19:57 +01003606 if (numStrings < 15) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003607 RLOGE("getVoiceRegistrationStateResponse Invalid response: NULL");
3608 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3609 } else {
3610 char **resp = (char **) response;
3611 voiceRegResponse.regState = (RegState) ATOI_NULL_HANDLED_DEF(resp[0], 4);
3612 voiceRegResponse.rat = ATOI_NULL_HANDLED(resp[3]);
3613 voiceRegResponse.cssSupported = ATOI_NULL_HANDLED_DEF(resp[7], 0);
3614 voiceRegResponse.roamingIndicator = ATOI_NULL_HANDLED(resp[10]);
3615 voiceRegResponse.systemIsInPrl = ATOI_NULL_HANDLED_DEF(resp[11], 0);
3616 voiceRegResponse.defaultRoamingIndicator = ATOI_NULL_HANDLED_DEF(resp[12], 0);
3617 voiceRegResponse.reasonForDenial = ATOI_NULL_HANDLED_DEF(resp[13], 0);
3618 fillCellIdentityFromVoiceRegStateResponseString(voiceRegResponse.cellIdentity,
Paul Keith96ff3122018-03-06 20:19:57 +01003619 15, resp);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003620 }
3621 } else {
3622 RIL_VoiceRegistrationStateResponse *voiceRegState =
3623 (RIL_VoiceRegistrationStateResponse *)response;
3624
3625 if (responseLen != sizeof(RIL_VoiceRegistrationStateResponse)) {
3626 RLOGE("getVoiceRegistrationStateResponse Invalid response: NULL");
3627 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3628 } else {
3629 voiceRegResponse.regState = (RegState) voiceRegState->regState;
3630 voiceRegResponse.rat = voiceRegState->rat;;
3631 voiceRegResponse.cssSupported = voiceRegState->cssSupported;
3632 voiceRegResponse.roamingIndicator = voiceRegState->roamingIndicator;
3633 voiceRegResponse.systemIsInPrl = voiceRegState->systemIsInPrl;
3634 voiceRegResponse.defaultRoamingIndicator = voiceRegState->defaultRoamingIndicator;
3635 voiceRegResponse.reasonForDenial = voiceRegState->reasonForDenial;
3636 fillCellIdentityResponse(voiceRegResponse.cellIdentity,
3637 voiceRegState->cellIdentity);
3638 }
3639 }
3640
3641 Return<void> retStatus =
3642 radioService[slotId]->mRadioResponse->getVoiceRegistrationStateResponse(
3643 responseInfo, voiceRegResponse);
3644 radioService[slotId]->checkReturnStatus(retStatus);
3645 } else {
3646 RLOGE("getVoiceRegistrationStateResponse: radioService[%d]->mRadioResponse == NULL",
3647 slotId);
3648 }
3649
3650 return 0;
3651}
3652
3653int radio::getDataRegistrationStateResponse(int slotId,
3654 int responseType, int serial, RIL_Errno e,
3655 void *response, size_t responseLen) {
3656#if VDBG
3657 RLOGD("getDataRegistrationStateResponse: serial %d", serial);
3658#endif
3659
3660 if (radioService[slotId]->mRadioResponse != NULL) {
3661 RadioResponseInfo responseInfo = {};
3662 populateResponseInfo(responseInfo, serial, responseType, e);
3663 DataRegStateResult dataRegResponse = {};
3664 if (response == NULL) {
3665 RLOGE("getDataRegistrationStateResponse Invalid response: NULL");
3666 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3667 } else if (s_vendorFunctions->version <= 14) {
3668 int numStrings = responseLen / sizeof(char *);
Paul Keith96ff3122018-03-06 20:19:57 +01003669 if (numStrings < 6) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003670 RLOGE("getDataRegistrationStateResponse Invalid response: NULL");
3671 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3672 } else {
3673 char **resp = (char **) response;
3674 dataRegResponse.regState = (RegState) ATOI_NULL_HANDLED_DEF(resp[0], 4);
3675 dataRegResponse.rat = ATOI_NULL_HANDLED_DEF(resp[3], 0);
3676 dataRegResponse.reasonDataDenied = ATOI_NULL_HANDLED(resp[4]);
3677 dataRegResponse.maxDataCalls = ATOI_NULL_HANDLED_DEF(resp[5], 1);
3678 fillCellIdentityFromDataRegStateResponseString(dataRegResponse.cellIdentity,
Paul Keith96ff3122018-03-06 20:19:57 +01003679 numStrings < 11 ? 6 : 11, resp);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003680 }
3681 } else {
3682 RIL_DataRegistrationStateResponse *dataRegState =
3683 (RIL_DataRegistrationStateResponse *)response;
3684
3685 if (responseLen != sizeof(RIL_DataRegistrationStateResponse)) {
3686 RLOGE("getDataRegistrationStateResponse Invalid response: NULL");
3687 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3688 } else {
3689 dataRegResponse.regState = (RegState) dataRegState->regState;
3690 dataRegResponse.rat = dataRegState->rat;;
3691 dataRegResponse.reasonDataDenied = dataRegState->reasonDataDenied;
3692 dataRegResponse.maxDataCalls = dataRegState->maxDataCalls;
3693 fillCellIdentityResponse(dataRegResponse.cellIdentity, dataRegState->cellIdentity);
3694 }
3695 }
3696
3697 Return<void> retStatus =
3698 radioService[slotId]->mRadioResponse->getDataRegistrationStateResponse(responseInfo,
3699 dataRegResponse);
3700 radioService[slotId]->checkReturnStatus(retStatus);
3701 } else {
3702 RLOGE("getDataRegistrationStateResponse: radioService[%d]->mRadioResponse == NULL",
3703 slotId);
3704 }
3705
3706 return 0;
3707}
3708
3709int radio::getOperatorResponse(int slotId,
3710 int responseType, int serial, RIL_Errno e, void *response,
3711 size_t responseLen) {
3712#if VDBG
3713 RLOGD("getOperatorResponse: serial %d", serial);
3714#endif
3715
3716 if (radioService[slotId]->mRadioResponse != NULL) {
3717 RadioResponseInfo responseInfo = {};
3718 populateResponseInfo(responseInfo, serial, responseType, e);
3719 hidl_string longName;
3720 hidl_string shortName;
3721 hidl_string numeric;
3722 int numStrings = responseLen / sizeof(char *);
Paul Keith96ff3122018-03-06 20:19:57 +01003723 if (response == NULL || numStrings < 3) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003724 RLOGE("getOperatorResponse Invalid response: NULL");
3725 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3726
3727 } else {
3728 char **resp = (char **) response;
3729 longName = convertCharPtrToHidlString(resp[0]);
Christopher N. Hessed26f4c92018-02-23 19:07:27 +01003730 shortName = convertCharPtrToHidlString(resp[1]);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003731 numeric = convertCharPtrToHidlString(resp[2]);
3732 }
3733 Return<void> retStatus = radioService[slotId]->mRadioResponse->getOperatorResponse(
3734 responseInfo, longName, shortName, numeric);
3735 radioService[slotId]->checkReturnStatus(retStatus);
3736 } else {
3737 RLOGE("getOperatorResponse: radioService[%d]->mRadioResponse == NULL",
3738 slotId);
3739 }
3740
3741 return 0;
3742}
3743
3744int radio::setRadioPowerResponse(int slotId,
3745 int responseType, int serial, RIL_Errno e, void *response,
3746 size_t responseLen) {
3747 RLOGD("setRadioPowerResponse: serial %d", serial);
3748
3749 if (radioService[slotId]->mRadioResponse != NULL) {
3750 RadioResponseInfo responseInfo = {};
3751 populateResponseInfo(responseInfo, serial, responseType, e);
3752 Return<void> retStatus = radioService[slotId]->mRadioResponse->setRadioPowerResponse(
3753 responseInfo);
3754 radioService[slotId]->checkReturnStatus(retStatus);
3755 } else {
3756 RLOGE("setRadioPowerResponse: radioService[%d]->mRadioResponse == NULL",
3757 slotId);
3758 }
3759
3760 return 0;
3761}
3762
3763int radio::sendDtmfResponse(int slotId,
3764 int responseType, int serial, RIL_Errno e, void *response,
3765 size_t responseLen) {
3766#if VDBG
3767 RLOGD("sendDtmfResponse: serial %d", serial);
3768#endif
3769
3770 if (radioService[slotId]->mRadioResponse != NULL) {
3771 RadioResponseInfo responseInfo = {};
3772 populateResponseInfo(responseInfo, serial, responseType, e);
3773 Return<void> retStatus = radioService[slotId]->mRadioResponse->sendDtmfResponse(
3774 responseInfo);
3775 radioService[slotId]->checkReturnStatus(retStatus);
3776 } else {
3777 RLOGE("sendDtmfResponse: radioService[%d]->mRadioResponse == NULL",
3778 slotId);
3779 }
3780
3781 return 0;
3782}
3783
3784SendSmsResult makeSendSmsResult(RadioResponseInfo& responseInfo, int serial, int responseType,
3785 RIL_Errno e, void *response, size_t responseLen) {
3786 populateResponseInfo(responseInfo, serial, responseType, e);
3787 SendSmsResult result = {};
3788
3789 if (response == NULL || responseLen != sizeof(RIL_SMS_Response)) {
3790 RLOGE("Invalid response: NULL");
3791 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3792 result.ackPDU = hidl_string();
3793 } else {
3794 RIL_SMS_Response *resp = (RIL_SMS_Response *) response;
3795 result.messageRef = resp->messageRef;
3796 result.ackPDU = convertCharPtrToHidlString(resp->ackPDU);
3797 result.errorCode = resp->errorCode;
3798 }
3799 return result;
3800}
3801
3802int radio::sendSmsResponse(int slotId,
3803 int responseType, int serial, RIL_Errno e, void *response,
3804 size_t responseLen) {
3805#if VDBG
3806 RLOGD("sendSmsResponse: serial %d", serial);
3807#endif
3808
3809 if (radioService[slotId]->mRadioResponse != NULL) {
3810 RadioResponseInfo responseInfo = {};
3811 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response,
3812 responseLen);
3813
3814 Return<void> retStatus = radioService[slotId]->mRadioResponse->sendSmsResponse(responseInfo,
3815 result);
3816 radioService[slotId]->checkReturnStatus(retStatus);
3817 } else {
3818 RLOGE("sendSmsResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3819 }
3820
3821 return 0;
3822}
3823
3824int radio::sendSMSExpectMoreResponse(int slotId,
3825 int responseType, int serial, RIL_Errno e, void *response,
3826 size_t responseLen) {
3827#if VDBG
3828 RLOGD("sendSMSExpectMoreResponse: serial %d", serial);
3829#endif
3830
3831 if (radioService[slotId]->mRadioResponse != NULL) {
3832 RadioResponseInfo responseInfo = {};
3833 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response,
3834 responseLen);
3835
3836 Return<void> retStatus = radioService[slotId]->mRadioResponse->sendSMSExpectMoreResponse(
3837 responseInfo, result);
3838 radioService[slotId]->checkReturnStatus(retStatus);
3839 } else {
3840 RLOGE("sendSMSExpectMoreResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3841 }
3842
3843 return 0;
3844}
3845
3846int radio::setupDataCallResponse(int slotId,
3847 int responseType, int serial, RIL_Errno e, void *response,
3848 size_t responseLen) {
3849#if VDBG
3850 RLOGD("setupDataCallResponse: serial %d", serial);
3851#endif
3852
3853 if (radioService[slotId]->mRadioResponse != NULL) {
3854 RadioResponseInfo responseInfo = {};
3855 populateResponseInfo(responseInfo, serial, responseType, e);
3856
3857 SetupDataCallResult result = {};
3858
3859 if (response == NULL || (responseLen % sizeof(RIL_Data_Call_Response_v11) != 0
3860 && responseLen % sizeof(RIL_Data_Call_Response_v9) != 0
3861 && responseLen % sizeof(RIL_Data_Call_Response_v6) != 0)) {
3862 if (response != NULL) {
3863 RLOGE("setupDataCallResponse: Invalid response");
3864 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3865 }
3866 result.status = DataCallFailCause::ERROR_UNSPECIFIED;
3867 result.type = hidl_string();
3868 result.ifname = hidl_string();
3869 result.addresses = hidl_string();
3870 result.dnses = hidl_string();
3871 result.gateways = hidl_string();
3872 result.pcscf = hidl_string();
3873 } else if ((responseLen % sizeof(RIL_Data_Call_Response_v11)) == 0) {
3874 convertRilDataCallToHal((RIL_Data_Call_Response_v11 *) response, result);
3875 } else if ((responseLen % sizeof(RIL_Data_Call_Response_v9)) == 0) {
3876 convertRilDataCallToHal((RIL_Data_Call_Response_v9 *) response, result);
3877 } else if ((responseLen % sizeof(RIL_Data_Call_Response_v6)) == 0) {
3878 convertRilDataCallToHal((RIL_Data_Call_Response_v6 *) response, result);
3879 }
3880
3881 Return<void> retStatus = radioService[slotId]->mRadioResponse->setupDataCallResponse(
3882 responseInfo, result);
3883 radioService[slotId]->checkReturnStatus(retStatus);
3884 } else {
3885 RLOGE("setupDataCallResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3886 }
3887
3888 return 0;
3889}
3890
3891IccIoResult responseIccIo(RadioResponseInfo& responseInfo, int serial, int responseType,
3892 RIL_Errno e, void *response, size_t responseLen) {
3893 populateResponseInfo(responseInfo, serial, responseType, e);
3894 IccIoResult result = {};
3895
3896 if (response == NULL || responseLen != sizeof(RIL_SIM_IO_Response)) {
3897 RLOGE("Invalid response: NULL");
3898 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3899 result.simResponse = hidl_string();
3900 } else {
3901 RIL_SIM_IO_Response *resp = (RIL_SIM_IO_Response *) response;
3902 result.sw1 = resp->sw1;
3903 result.sw2 = resp->sw2;
3904 result.simResponse = convertCharPtrToHidlString(resp->simResponse);
3905 }
3906 return result;
3907}
3908
3909int radio::iccIOForAppResponse(int slotId,
3910 int responseType, int serial, RIL_Errno e, void *response,
3911 size_t responseLen) {
3912#if VDBG
3913 RLOGD("iccIOForAppResponse: serial %d", serial);
3914#endif
3915
3916 if (radioService[slotId]->mRadioResponse != NULL) {
3917 RadioResponseInfo responseInfo = {};
3918 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response,
3919 responseLen);
3920
3921 Return<void> retStatus = radioService[slotId]->mRadioResponse->iccIOForAppResponse(
3922 responseInfo, result);
3923 radioService[slotId]->checkReturnStatus(retStatus);
3924 } else {
3925 RLOGE("iccIOForAppResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3926 }
3927
3928 return 0;
3929}
3930
3931int radio::sendUssdResponse(int slotId,
3932 int responseType, int serial, RIL_Errno e, void *response,
3933 size_t responseLen) {
3934#if VDBG
3935 RLOGD("sendUssdResponse: serial %d", serial);
3936#endif
3937
3938 if (radioService[slotId]->mRadioResponse != NULL) {
3939 RadioResponseInfo responseInfo = {};
3940 populateResponseInfo(responseInfo, serial, responseType, e);
3941 Return<void> retStatus = radioService[slotId]->mRadioResponse->sendUssdResponse(
3942 responseInfo);
3943 radioService[slotId]->checkReturnStatus(retStatus);
3944 } else {
3945 RLOGE("sendUssdResponse: radioService[%d]->mRadioResponse == NULL",
3946 slotId);
3947 }
3948
3949 return 0;
3950}
3951
3952int radio::cancelPendingUssdResponse(int slotId,
3953 int responseType, int serial, RIL_Errno e, void *response,
3954 size_t responseLen) {
3955#if VDBG
3956 RLOGD("cancelPendingUssdResponse: serial %d", serial);
3957#endif
3958
3959 if (radioService[slotId]->mRadioResponse != NULL) {
3960 RadioResponseInfo responseInfo = {};
3961 populateResponseInfo(responseInfo, serial, responseType, e);
3962 Return<void> retStatus = radioService[slotId]->mRadioResponse->cancelPendingUssdResponse(
3963 responseInfo);
3964 radioService[slotId]->checkReturnStatus(retStatus);
3965 } else {
3966 RLOGE("cancelPendingUssdResponse: radioService[%d]->mRadioResponse == NULL",
3967 slotId);
3968 }
3969
3970 return 0;
3971}
3972
3973int radio::getClirResponse(int slotId,
3974 int responseType, int serial, RIL_Errno e, void *response,
3975 size_t responseLen) {
3976#if VDBG
3977 RLOGD("getClirResponse: serial %d", serial);
3978#endif
3979
3980 if (radioService[slotId]->mRadioResponse != NULL) {
3981 RadioResponseInfo responseInfo = {};
3982 populateResponseInfo(responseInfo, serial, responseType, e);
3983 int n = -1, m = -1;
3984 int numInts = responseLen / sizeof(int);
Paul Keith96ff3122018-03-06 20:19:57 +01003985 if (response == NULL || numInts < 2) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03003986 RLOGE("getClirResponse Invalid response: NULL");
3987 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
3988 } else {
3989 int *pInt = (int *) response;
3990 n = pInt[0];
3991 m = pInt[1];
3992 }
3993 Return<void> retStatus = radioService[slotId]->mRadioResponse->getClirResponse(responseInfo,
3994 n, m);
3995 radioService[slotId]->checkReturnStatus(retStatus);
3996 } else {
3997 RLOGE("getClirResponse: radioService[%d]->mRadioResponse == NULL", slotId);
3998 }
3999
4000 return 0;
4001}
4002
4003int radio::setClirResponse(int slotId,
4004 int responseType, int serial, RIL_Errno e, void *response,
4005 size_t responseLen) {
4006#if VDBG
4007 RLOGD("setClirResponse: serial %d", serial);
4008#endif
4009
4010 if (radioService[slotId]->mRadioResponse != NULL) {
4011 RadioResponseInfo responseInfo = {};
4012 populateResponseInfo(responseInfo, serial, responseType, e);
4013 Return<void> retStatus = radioService[slotId]->mRadioResponse->setClirResponse(
4014 responseInfo);
4015 radioService[slotId]->checkReturnStatus(retStatus);
4016 } else {
4017 RLOGE("setClirResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4018 }
4019
4020 return 0;
4021}
4022
4023int radio::getCallForwardStatusResponse(int slotId,
4024 int responseType, int serial, RIL_Errno e,
4025 void *response, size_t responseLen) {
4026#if VDBG
4027 RLOGD("getCallForwardStatusResponse: serial %d", serial);
4028#endif
4029
4030 if (radioService[slotId]->mRadioResponse != NULL) {
4031 RadioResponseInfo responseInfo = {};
4032 populateResponseInfo(responseInfo, serial, responseType, e);
4033 hidl_vec<CallForwardInfo> callForwardInfos;
4034
4035 if ((response == NULL && responseLen != 0)
4036 || responseLen % sizeof(RIL_CallForwardInfo *) != 0) {
4037 RLOGE("getCallForwardStatusResponse Invalid response: NULL");
4038 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4039 } else {
4040 int num = responseLen / sizeof(RIL_CallForwardInfo *);
4041 callForwardInfos.resize(num);
4042 for (int i = 0 ; i < num; i++) {
4043 RIL_CallForwardInfo *resp = ((RIL_CallForwardInfo **) response)[i];
4044 callForwardInfos[i].status = (CallForwardInfoStatus) resp->status;
4045 callForwardInfos[i].reason = resp->reason;
4046 callForwardInfos[i].serviceClass = resp->serviceClass;
4047 callForwardInfos[i].toa = resp->toa;
4048 callForwardInfos[i].number = convertCharPtrToHidlString(resp->number);
4049 callForwardInfos[i].timeSeconds = resp->timeSeconds;
4050 }
4051 }
4052
4053 Return<void> retStatus = radioService[slotId]->mRadioResponse->getCallForwardStatusResponse(
4054 responseInfo, callForwardInfos);
4055 radioService[slotId]->checkReturnStatus(retStatus);
4056 } else {
4057 RLOGE("getCallForwardStatusResponse: radioService[%d]->mRadioResponse == NULL",
4058 slotId);
4059 }
4060
4061 return 0;
4062}
4063
4064int radio::setCallForwardResponse(int slotId,
4065 int responseType, int serial, RIL_Errno e, void *response,
4066 size_t responseLen) {
4067#if VDBG
4068 RLOGD("setCallForwardResponse: serial %d", serial);
4069#endif
4070
4071 if (radioService[slotId]->mRadioResponse != NULL) {
4072 RadioResponseInfo responseInfo = {};
4073 populateResponseInfo(responseInfo, serial, responseType, e);
4074 Return<void> retStatus = radioService[slotId]->mRadioResponse->setCallForwardResponse(
4075 responseInfo);
4076 radioService[slotId]->checkReturnStatus(retStatus);
4077 } else {
4078 RLOGE("setCallForwardResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4079 }
4080
4081 return 0;
4082}
4083
4084int radio::getCallWaitingResponse(int slotId,
4085 int responseType, int serial, RIL_Errno e, void *response,
4086 size_t responseLen) {
4087#if VDBG
4088 RLOGD("getCallWaitingResponse: serial %d", serial);
4089#endif
4090
4091 if (radioService[slotId]->mRadioResponse != NULL) {
4092 RadioResponseInfo responseInfo = {};
4093 populateResponseInfo(responseInfo, serial, responseType, e);
4094 bool enable = false;
4095 int serviceClass = -1;
4096 int numInts = responseLen / sizeof(int);
Paul Keith96ff3122018-03-06 20:19:57 +01004097 if (response == NULL || numInts < 2) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004098 RLOGE("getCallWaitingResponse Invalid response: NULL");
4099 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4100 } else {
4101 int *pInt = (int *) response;
4102 enable = pInt[0] == 1 ? true : false;
4103 serviceClass = pInt[1];
4104 }
4105 Return<void> retStatus = radioService[slotId]->mRadioResponse->getCallWaitingResponse(
4106 responseInfo, enable, serviceClass);
4107 radioService[slotId]->checkReturnStatus(retStatus);
4108 } else {
4109 RLOGE("getCallWaitingResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4110 }
4111
4112 return 0;
4113}
4114
4115int radio::setCallWaitingResponse(int slotId,
4116 int responseType, int serial, RIL_Errno e, void *response,
4117 size_t responseLen) {
4118#if VDBG
4119 RLOGD("setCallWaitingResponse: serial %d", serial);
4120#endif
4121
4122 if (radioService[slotId]->mRadioResponse != NULL) {
4123 RadioResponseInfo responseInfo = {};
4124 populateResponseInfo(responseInfo, serial, responseType, e);
4125 Return<void> retStatus = radioService[slotId]->mRadioResponse->setCallWaitingResponse(
4126 responseInfo);
4127 radioService[slotId]->checkReturnStatus(retStatus);
4128 } else {
4129 RLOGE("setCallWaitingResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4130 }
4131
4132 return 0;
4133}
4134
4135int radio::acknowledgeLastIncomingGsmSmsResponse(int slotId,
4136 int responseType, int serial, RIL_Errno e,
4137 void *response, size_t responseLen) {
4138#if VDBG
4139 RLOGD("acknowledgeLastIncomingGsmSmsResponse: serial %d", serial);
4140#endif
4141
4142 if (radioService[slotId]->mRadioResponse != NULL) {
4143 RadioResponseInfo responseInfo = {};
4144 populateResponseInfo(responseInfo, serial, responseType, e);
4145 Return<void> retStatus =
4146 radioService[slotId]->mRadioResponse->acknowledgeLastIncomingGsmSmsResponse(
4147 responseInfo);
4148 radioService[slotId]->checkReturnStatus(retStatus);
4149 } else {
4150 RLOGE("acknowledgeLastIncomingGsmSmsResponse: radioService[%d]->mRadioResponse "
4151 "== NULL", slotId);
4152 }
4153
4154 return 0;
4155}
4156
4157int radio::acceptCallResponse(int slotId,
4158 int responseType, int serial, RIL_Errno e,
4159 void *response, size_t responseLen) {
4160#if VDBG
4161 RLOGD("acceptCallResponse: serial %d", serial);
4162#endif
4163
4164 if (radioService[slotId]->mRadioResponse != NULL) {
4165 RadioResponseInfo responseInfo = {};
4166 populateResponseInfo(responseInfo, serial, responseType, e);
4167 Return<void> retStatus = radioService[slotId]->mRadioResponse->acceptCallResponse(
4168 responseInfo);
4169 radioService[slotId]->checkReturnStatus(retStatus);
4170 } else {
4171 RLOGE("acceptCallResponse: radioService[%d]->mRadioResponse == NULL",
4172 slotId);
4173 }
4174
4175 return 0;
4176}
4177
4178int radio::deactivateDataCallResponse(int slotId,
4179 int responseType, int serial, RIL_Errno e,
4180 void *response, size_t responseLen) {
4181#if VDBG
4182 RLOGD("deactivateDataCallResponse: serial %d", serial);
4183#endif
4184
4185 if (radioService[slotId]->mRadioResponse != NULL) {
4186 RadioResponseInfo responseInfo = {};
4187 populateResponseInfo(responseInfo, serial, responseType, e);
4188 Return<void> retStatus = radioService[slotId]->mRadioResponse->deactivateDataCallResponse(
4189 responseInfo);
4190 radioService[slotId]->checkReturnStatus(retStatus);
4191 } else {
4192 RLOGE("deactivateDataCallResponse: radioService[%d]->mRadioResponse == NULL",
4193 slotId);
4194 }
4195
4196 return 0;
4197}
4198
4199int radio::getFacilityLockForAppResponse(int slotId,
4200 int responseType, int serial, RIL_Errno e,
4201 void *response, size_t responseLen) {
4202#if VDBG
4203 RLOGD("getFacilityLockForAppResponse: serial %d", serial);
4204#endif
4205
4206 if (radioService[slotId]->mRadioResponse != NULL) {
4207 RadioResponseInfo responseInfo = {};
4208 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4209 Return<void> retStatus = radioService[slotId]->mRadioResponse->
4210 getFacilityLockForAppResponse(responseInfo, ret);
4211 radioService[slotId]->checkReturnStatus(retStatus);
4212 } else {
4213 RLOGE("getFacilityLockForAppResponse: radioService[%d]->mRadioResponse == NULL",
4214 slotId);
4215 }
4216
4217 return 0;
4218}
4219
4220int radio::setFacilityLockForAppResponse(int slotId,
4221 int responseType, int serial, RIL_Errno e,
4222 void *response, size_t responseLen) {
4223#if VDBG
4224 RLOGD("setFacilityLockForAppResponse: serial %d", serial);
4225#endif
4226
4227 if (radioService[slotId]->mRadioResponse != NULL) {
4228 RadioResponseInfo responseInfo = {};
4229 int ret = responseIntOrEmpty(responseInfo, serial, responseType, e, response, responseLen);
4230 Return<void> retStatus
4231 = radioService[slotId]->mRadioResponse->setFacilityLockForAppResponse(responseInfo,
4232 ret);
4233 radioService[slotId]->checkReturnStatus(retStatus);
4234 } else {
4235 RLOGE("setFacilityLockForAppResponse: radioService[%d]->mRadioResponse == NULL",
4236 slotId);
4237 }
4238
4239 return 0;
4240}
4241
4242int radio::setBarringPasswordResponse(int slotId,
4243 int responseType, int serial, RIL_Errno e,
4244 void *response, size_t responseLen) {
4245#if VDBG
4246 RLOGD("acceptCallResponse: serial %d", serial);
4247#endif
4248
4249 if (radioService[slotId]->mRadioResponse != NULL) {
4250 RadioResponseInfo responseInfo = {};
4251 populateResponseInfo(responseInfo, serial, responseType, e);
4252 Return<void> retStatus
4253 = radioService[slotId]->mRadioResponse->setBarringPasswordResponse(responseInfo);
4254 radioService[slotId]->checkReturnStatus(retStatus);
4255 } else {
4256 RLOGE("setBarringPasswordResponse: radioService[%d]->mRadioResponse == NULL",
4257 slotId);
4258 }
4259
4260 return 0;
4261}
4262
4263int radio::getNetworkSelectionModeResponse(int slotId,
4264 int responseType, int serial, RIL_Errno e, void *response,
4265 size_t responseLen) {
4266#if VDBG
4267 RLOGD("getNetworkSelectionModeResponse: serial %d", serial);
4268#endif
4269
4270 if (radioService[slotId]->mRadioResponse != NULL) {
4271 RadioResponseInfo responseInfo = {};
4272 populateResponseInfo(responseInfo, serial, responseType, e);
4273 bool manual = false;
4274 int serviceClass;
Paul Keith96ff3122018-03-06 20:19:57 +01004275 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004276 RLOGE("getNetworkSelectionModeResponse Invalid response: NULL");
4277 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4278 } else {
4279 int *pInt = (int *) response;
4280 manual = pInt[0] == 1 ? true : false;
4281 }
4282 Return<void> retStatus
4283 = radioService[slotId]->mRadioResponse->getNetworkSelectionModeResponse(
4284 responseInfo,
4285 manual);
4286 radioService[slotId]->checkReturnStatus(retStatus);
4287 } else {
4288 RLOGE("getNetworkSelectionModeResponse: radioService[%d]->mRadioResponse == NULL",
4289 slotId);
4290 }
4291
4292 return 0;
4293}
4294
4295int radio::setNetworkSelectionModeAutomaticResponse(int slotId, int responseType, int serial,
4296 RIL_Errno e, void *response,
4297 size_t responseLen) {
4298#if VDBG
4299 RLOGD("setNetworkSelectionModeAutomaticResponse: serial %d", serial);
4300#endif
4301
4302 if (radioService[slotId]->mRadioResponse != NULL) {
4303 RadioResponseInfo responseInfo = {};
4304 populateResponseInfo(responseInfo, serial, responseType, e);
4305 Return<void> retStatus
4306 = radioService[slotId]->mRadioResponse->setNetworkSelectionModeAutomaticResponse(
4307 responseInfo);
4308 radioService[slotId]->checkReturnStatus(retStatus);
4309 } else {
4310 RLOGE("setNetworkSelectionModeAutomaticResponse: radioService[%d]->mRadioResponse "
4311 "== NULL", slotId);
4312 }
4313
4314 return 0;
4315}
4316
4317int radio::setNetworkSelectionModeManualResponse(int slotId,
4318 int responseType, int serial, RIL_Errno e,
4319 void *response, size_t responseLen) {
4320#if VDBG
4321 RLOGD("setNetworkSelectionModeManualResponse: serial %d", serial);
4322#endif
4323
4324 if (radioService[slotId]->mRadioResponse != NULL) {
4325 RadioResponseInfo responseInfo = {};
4326 populateResponseInfo(responseInfo, serial, responseType, e);
4327 Return<void> retStatus
4328 = radioService[slotId]->mRadioResponse->setNetworkSelectionModeManualResponse(
4329 responseInfo);
4330 radioService[slotId]->checkReturnStatus(retStatus);
4331 } else {
4332 RLOGE("acceptCallResponse: radioService[%d]->setNetworkSelectionModeManualResponse "
4333 "== NULL", slotId);
4334 }
4335
4336 return 0;
4337}
4338
4339int convertOperatorStatusToInt(const char *str) {
4340 if (strncmp("unknown", str, 9) == 0) {
4341 return (int) OperatorStatus::UNKNOWN;
4342 } else if (strncmp("available", str, 9) == 0) {
4343 return (int) OperatorStatus::AVAILABLE;
4344 } else if (strncmp("current", str, 9) == 0) {
4345 return (int) OperatorStatus::CURRENT;
4346 } else if (strncmp("forbidden", str, 9) == 0) {
4347 return (int) OperatorStatus::FORBIDDEN;
4348 } else {
4349 return -1;
4350 }
4351}
4352
4353int radio::getAvailableNetworksResponse(int slotId,
4354 int responseType, int serial, RIL_Errno e, void *response,
4355 size_t responseLen) {
4356#if VDBG
4357 RLOGD("getAvailableNetworksResponse: serial %d", serial);
4358#endif
Martin Bouchetf7c75aa2017-09-24 04:51:55 -03004359 int mqanelements;
4360 char value[PROPERTY_VALUE_MAX];
4361 property_get("ro.ril.telephony.mqanelements", value, "4");
4362 mqanelements = atoi(value);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004363
4364 if (radioService[slotId]->mRadioResponse != NULL) {
4365 RadioResponseInfo responseInfo = {};
4366 populateResponseInfo(responseInfo, serial, responseType, e);
4367 hidl_vec<OperatorInfo> networks;
4368 if ((response == NULL && responseLen != 0)
Paul Keith96ff3122018-03-06 20:19:57 +01004369 || responseLen % (mqanelements * sizeof(char *)) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004370 RLOGE("getAvailableNetworksResponse Invalid response: NULL");
4371 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4372 } else {
4373 char **resp = (char **) response;
4374 int numStrings = responseLen / sizeof(char *);
Martin Bouchetf7c75aa2017-09-24 04:51:55 -03004375 networks.resize(numStrings/mqanelements);
4376 for (int i = 0, j = 0; i < numStrings; i = i + mqanelements, j++) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004377 networks[j].alphaLong = convertCharPtrToHidlString(resp[i]);
Martin Bouchetf7c75aa2017-09-24 04:51:55 -03004378 networks[j].alphaShort = convertCharPtrToHidlString(resp[i]);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004379 networks[j].operatorNumeric = convertCharPtrToHidlString(resp[i + 2]);
4380 int status = convertOperatorStatusToInt(resp[i + 3]);
4381 if (status == -1) {
4382 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4383 } else {
4384 networks[j].status = (OperatorStatus) status;
4385 }
4386 }
4387 }
4388 Return<void> retStatus
4389 = radioService[slotId]->mRadioResponse->getAvailableNetworksResponse(responseInfo,
4390 networks);
4391 radioService[slotId]->checkReturnStatus(retStatus);
4392 } else {
4393 RLOGE("getAvailableNetworksResponse: radioService[%d]->mRadioResponse == NULL",
4394 slotId);
4395 }
4396
4397 return 0;
4398}
4399
4400int radio::startDtmfResponse(int slotId,
4401 int responseType, int serial, RIL_Errno e,
4402 void *response, size_t responseLen) {
4403#if VDBG
4404 RLOGD("startDtmfResponse: serial %d", serial);
4405#endif
4406
4407 if (radioService[slotId]->mRadioResponse != NULL) {
4408 RadioResponseInfo responseInfo = {};
4409 populateResponseInfo(responseInfo, serial, responseType, e);
4410 Return<void> retStatus
4411 = radioService[slotId]->mRadioResponse->startDtmfResponse(responseInfo);
4412 radioService[slotId]->checkReturnStatus(retStatus);
4413 } else {
4414 RLOGE("startDtmfResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4415 }
4416
4417 return 0;
4418}
4419
4420int radio::stopDtmfResponse(int slotId,
4421 int responseType, int serial, RIL_Errno e,
4422 void *response, size_t responseLen) {
4423#if VDBG
4424 RLOGD("stopDtmfResponse: serial %d", serial);
4425#endif
4426
4427 if (radioService[slotId]->mRadioResponse != NULL) {
4428 RadioResponseInfo responseInfo = {};
4429 populateResponseInfo(responseInfo, serial, responseType, e);
4430 Return<void> retStatus
4431 = radioService[slotId]->mRadioResponse->stopDtmfResponse(responseInfo);
4432 radioService[slotId]->checkReturnStatus(retStatus);
4433 } else {
4434 RLOGE("stopDtmfResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4435 }
4436
4437 return 0;
4438}
4439
4440int radio::getBasebandVersionResponse(int slotId,
4441 int responseType, int serial, RIL_Errno e,
4442 void *response, size_t responseLen) {
4443#if VDBG
4444 RLOGD("getBasebandVersionResponse: serial %d", serial);
4445#endif
4446
4447 if (radioService[slotId]->mRadioResponse != NULL) {
4448 RadioResponseInfo responseInfo = {};
4449 populateResponseInfo(responseInfo, serial, responseType, e);
4450 Return<void> retStatus
4451 = radioService[slotId]->mRadioResponse->getBasebandVersionResponse(responseInfo,
4452 convertCharPtrToHidlString((char *) response));
4453 radioService[slotId]->checkReturnStatus(retStatus);
4454 } else {
4455 RLOGE("getBasebandVersionResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4456 }
4457
4458 return 0;
4459}
4460
4461int radio::separateConnectionResponse(int slotId,
4462 int responseType, int serial, RIL_Errno e,
4463 void *response, size_t responseLen) {
4464#if VDBG
4465 RLOGD("separateConnectionResponse: serial %d", serial);
4466#endif
4467
4468 if (radioService[slotId]->mRadioResponse != NULL) {
4469 RadioResponseInfo responseInfo = {};
4470 populateResponseInfo(responseInfo, serial, responseType, e);
4471 Return<void> retStatus
4472 = radioService[slotId]->mRadioResponse->separateConnectionResponse(responseInfo);
4473 radioService[slotId]->checkReturnStatus(retStatus);
4474 } else {
4475 RLOGE("separateConnectionResponse: radioService[%d]->mRadioResponse == NULL",
4476 slotId);
4477 }
4478
4479 return 0;
4480}
4481
4482int radio::setMuteResponse(int slotId,
4483 int responseType, int serial, RIL_Errno e,
4484 void *response, size_t responseLen) {
4485#if VDBG
4486 RLOGD("setMuteResponse: serial %d", serial);
4487#endif
4488
4489 if (radioService[slotId]->mRadioResponse != NULL) {
4490 RadioResponseInfo responseInfo = {};
4491 populateResponseInfo(responseInfo, serial, responseType, e);
4492 Return<void> retStatus
4493 = radioService[slotId]->mRadioResponse->setMuteResponse(responseInfo);
4494 radioService[slotId]->checkReturnStatus(retStatus);
4495 } else {
4496 RLOGE("setMuteResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4497 }
4498
4499 return 0;
4500}
4501
4502int radio::getMuteResponse(int slotId,
4503 int responseType, int serial, RIL_Errno e, void *response,
4504 size_t responseLen) {
4505#if VDBG
4506 RLOGD("getMuteResponse: serial %d", serial);
4507#endif
4508
4509 if (radioService[slotId]->mRadioResponse != NULL) {
4510 RadioResponseInfo responseInfo = {};
4511 populateResponseInfo(responseInfo, serial, responseType, e);
4512 bool enable = false;
4513 int serviceClass;
Paul Keith96ff3122018-03-06 20:19:57 +01004514 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03004515 RLOGE("getMuteResponse Invalid response: NULL");
4516 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4517 } else {
4518 int *pInt = (int *) response;
4519 enable = pInt[0] == 1 ? true : false;
4520 }
4521 Return<void> retStatus = radioService[slotId]->mRadioResponse->getMuteResponse(responseInfo,
4522 enable);
4523 radioService[slotId]->checkReturnStatus(retStatus);
4524 } else {
4525 RLOGE("getMuteResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4526 }
4527
4528 return 0;
4529}
4530
4531int radio::getClipResponse(int slotId,
4532 int responseType, int serial, RIL_Errno e,
4533 void *response, size_t responseLen) {
4534#if VDBG
4535 RLOGD("getClipResponse: serial %d", serial);
4536#endif
4537
4538 if (radioService[slotId]->mRadioResponse != NULL) {
4539 RadioResponseInfo responseInfo = {};
4540 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4541 Return<void> retStatus = radioService[slotId]->mRadioResponse->getClipResponse(responseInfo,
4542 (ClipStatus) ret);
4543 radioService[slotId]->checkReturnStatus(retStatus);
4544 } else {
4545 RLOGE("getClipResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4546 }
4547
4548 return 0;
4549}
4550
4551int radio::getDataCallListResponse(int slotId,
4552 int responseType, int serial, RIL_Errno e,
4553 void *response, size_t responseLen) {
4554#if VDBG
4555 RLOGD("getDataCallListResponse: serial %d", serial);
4556#endif
4557
4558 if (radioService[slotId]->mRadioResponse != NULL) {
4559 RadioResponseInfo responseInfo = {};
4560 populateResponseInfo(responseInfo, serial, responseType, e);
4561
4562 hidl_vec<SetupDataCallResult> ret;
4563 if ((response == NULL && responseLen != 0)
4564 || (responseLen % sizeof(RIL_Data_Call_Response_v11) != 0
4565 && responseLen % sizeof(RIL_Data_Call_Response_v9) != 0
4566 && responseLen % sizeof(RIL_Data_Call_Response_v6) != 0)) {
4567 RLOGE("getDataCallListResponse: invalid response");
4568 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4569 } else {
4570 convertRilDataCallListToHal(response, responseLen, ret);
4571 }
4572
4573 Return<void> retStatus = radioService[slotId]->mRadioResponse->getDataCallListResponse(
4574 responseInfo, ret);
4575 radioService[slotId]->checkReturnStatus(retStatus);
4576 } else {
4577 RLOGE("getDataCallListResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4578 }
4579
4580 return 0;
4581}
4582
4583int radio::setSuppServiceNotificationsResponse(int slotId,
4584 int responseType, int serial, RIL_Errno e,
4585 void *response, size_t responseLen) {
4586#if VDBG
4587 RLOGD("setSuppServiceNotificationsResponse: serial %d", serial);
4588#endif
4589
4590 if (radioService[slotId]->mRadioResponse != NULL) {
4591 RadioResponseInfo responseInfo = {};
4592 populateResponseInfo(responseInfo, serial, responseType, e);
4593 Return<void> retStatus
4594 = radioService[slotId]->mRadioResponse->setSuppServiceNotificationsResponse(
4595 responseInfo);
4596 radioService[slotId]->checkReturnStatus(retStatus);
4597 } else {
4598 RLOGE("setSuppServiceNotificationsResponse: radioService[%d]->mRadioResponse "
4599 "== NULL", slotId);
4600 }
4601
4602 return 0;
4603}
4604
4605int radio::deleteSmsOnSimResponse(int slotId,
4606 int responseType, int serial, RIL_Errno e,
4607 void *response, size_t responseLen) {
4608#if VDBG
4609 RLOGD("deleteSmsOnSimResponse: serial %d", serial);
4610#endif
4611
4612 if (radioService[slotId]->mRadioResponse != NULL) {
4613 RadioResponseInfo responseInfo = {};
4614 populateResponseInfo(responseInfo, serial, responseType, e);
4615 Return<void> retStatus
4616 = radioService[slotId]->mRadioResponse->deleteSmsOnSimResponse(responseInfo);
4617 radioService[slotId]->checkReturnStatus(retStatus);
4618 } else {
4619 RLOGE("deleteSmsOnSimResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4620 }
4621
4622 return 0;
4623}
4624
4625int radio::setBandModeResponse(int slotId,
4626 int responseType, int serial, RIL_Errno e,
4627 void *response, size_t responseLen) {
4628#if VDBG
4629 RLOGD("setBandModeResponse: serial %d", serial);
4630#endif
4631
4632 if (radioService[slotId]->mRadioResponse != NULL) {
4633 RadioResponseInfo responseInfo = {};
4634 populateResponseInfo(responseInfo, serial, responseType, e);
4635 Return<void> retStatus
4636 = radioService[slotId]->mRadioResponse->setBandModeResponse(responseInfo);
4637 radioService[slotId]->checkReturnStatus(retStatus);
4638 } else {
4639 RLOGE("setBandModeResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4640 }
4641
4642 return 0;
4643}
4644
4645int radio::writeSmsToSimResponse(int slotId,
4646 int responseType, int serial, RIL_Errno e,
4647 void *response, size_t responseLen) {
4648#if VDBG
4649 RLOGD("writeSmsToSimResponse: serial %d", serial);
4650#endif
4651
4652 if (radioService[slotId]->mRadioResponse != NULL) {
4653 RadioResponseInfo responseInfo = {};
4654 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4655 Return<void> retStatus
4656 = radioService[slotId]->mRadioResponse->writeSmsToSimResponse(responseInfo, ret);
4657 radioService[slotId]->checkReturnStatus(retStatus);
4658 } else {
4659 RLOGE("writeSmsToSimResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4660 }
4661
4662 return 0;
4663}
4664
4665int radio::getAvailableBandModesResponse(int slotId,
4666 int responseType, int serial, RIL_Errno e, void *response,
4667 size_t responseLen) {
4668#if VDBG
4669 RLOGD("getAvailableBandModesResponse: serial %d", serial);
4670#endif
4671
4672 if (radioService[slotId]->mRadioResponse != NULL) {
4673 RadioResponseInfo responseInfo = {};
4674 populateResponseInfo(responseInfo, serial, responseType, e);
4675 hidl_vec<RadioBandMode> modes;
4676 if ((response == NULL && responseLen != 0)|| responseLen % sizeof(int) != 0) {
4677 RLOGE("getAvailableBandModesResponse Invalid response: NULL");
4678 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4679 } else {
4680 int *pInt = (int *) response;
4681 int numInts = responseLen / sizeof(int);
4682 modes.resize(numInts);
4683 for (int i = 0; i < numInts; i++) {
4684 modes[i] = (RadioBandMode) pInt[i];
4685 }
4686 }
4687 Return<void> retStatus
4688 = radioService[slotId]->mRadioResponse->getAvailableBandModesResponse(responseInfo,
4689 modes);
4690 radioService[slotId]->checkReturnStatus(retStatus);
4691 } else {
4692 RLOGE("getAvailableBandModesResponse: radioService[%d]->mRadioResponse == NULL",
4693 slotId);
4694 }
4695
4696 return 0;
4697}
4698
4699int radio::sendEnvelopeResponse(int slotId,
4700 int responseType, int serial, RIL_Errno e,
4701 void *response, size_t responseLen) {
4702#if VDBG
4703 RLOGD("sendEnvelopeResponse: serial %d", serial);
4704#endif
4705
4706 if (radioService[slotId]->mRadioResponse != NULL) {
4707 RadioResponseInfo responseInfo = {};
4708 populateResponseInfo(responseInfo, serial, responseType, e);
4709 Return<void> retStatus
4710 = radioService[slotId]->mRadioResponse->sendEnvelopeResponse(responseInfo,
4711 convertCharPtrToHidlString((char *) response));
4712 radioService[slotId]->checkReturnStatus(retStatus);
4713 } else {
4714 RLOGE("sendEnvelopeResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4715 }
4716
4717 return 0;
4718}
4719
4720int radio::sendTerminalResponseToSimResponse(int slotId,
4721 int responseType, int serial, RIL_Errno e,
4722 void *response, size_t responseLen) {
4723#if VDBG
4724 RLOGD("sendTerminalResponseToSimResponse: serial %d", serial);
4725#endif
4726
4727 if (radioService[slotId]->mRadioResponse != NULL) {
4728 RadioResponseInfo responseInfo = {};
4729 populateResponseInfo(responseInfo, serial, responseType, e);
4730 Return<void> retStatus
4731 = radioService[slotId]->mRadioResponse->sendTerminalResponseToSimResponse(
4732 responseInfo);
4733 radioService[slotId]->checkReturnStatus(retStatus);
4734 } else {
4735 RLOGE("sendTerminalResponseToSimResponse: radioService[%d]->mRadioResponse == NULL",
4736 slotId);
4737 }
4738
4739 return 0;
4740}
4741
4742int radio::handleStkCallSetupRequestFromSimResponse(int slotId,
4743 int responseType, int serial,
4744 RIL_Errno e, void *response,
4745 size_t responseLen) {
4746#if VDBG
4747 RLOGD("handleStkCallSetupRequestFromSimResponse: serial %d", serial);
4748#endif
4749
4750 if (radioService[slotId]->mRadioResponse != NULL) {
4751 RadioResponseInfo responseInfo = {};
4752 populateResponseInfo(responseInfo, serial, responseType, e);
4753 Return<void> retStatus
4754 = radioService[slotId]->mRadioResponse->handleStkCallSetupRequestFromSimResponse(
4755 responseInfo);
4756 radioService[slotId]->checkReturnStatus(retStatus);
4757 } else {
4758 RLOGE("handleStkCallSetupRequestFromSimResponse: radioService[%d]->mRadioResponse "
4759 "== NULL", slotId);
4760 }
4761
4762 return 0;
4763}
4764
4765int radio::explicitCallTransferResponse(int slotId,
4766 int responseType, int serial, RIL_Errno e,
4767 void *response, size_t responseLen) {
4768#if VDBG
4769 RLOGD("explicitCallTransferResponse: serial %d", serial);
4770#endif
4771
4772 if (radioService[slotId]->mRadioResponse != NULL) {
4773 RadioResponseInfo responseInfo = {};
4774 populateResponseInfo(responseInfo, serial, responseType, e);
4775 Return<void> retStatus
4776 = radioService[slotId]->mRadioResponse->explicitCallTransferResponse(responseInfo);
4777 radioService[slotId]->checkReturnStatus(retStatus);
4778 } else {
4779 RLOGE("explicitCallTransferResponse: radioService[%d]->mRadioResponse == NULL",
4780 slotId);
4781 }
4782
4783 return 0;
4784}
4785
4786int radio::setPreferredNetworkTypeResponse(int slotId,
4787 int responseType, int serial, RIL_Errno e,
4788 void *response, size_t responseLen) {
4789#if VDBG
4790 RLOGD("setPreferredNetworkTypeResponse: serial %d", serial);
4791#endif
4792
4793 if (radioService[slotId]->mRadioResponse != NULL) {
4794 RadioResponseInfo responseInfo = {};
4795 populateResponseInfo(responseInfo, serial, responseType, e);
4796 Return<void> retStatus
4797 = radioService[slotId]->mRadioResponse->setPreferredNetworkTypeResponse(
4798 responseInfo);
4799 radioService[slotId]->checkReturnStatus(retStatus);
4800 } else {
4801 RLOGE("setPreferredNetworkTypeResponse: radioService[%d]->mRadioResponse == NULL",
4802 slotId);
4803 }
4804
4805 return 0;
4806}
4807
4808
4809int radio::getPreferredNetworkTypeResponse(int slotId,
4810 int responseType, int serial, RIL_Errno e,
4811 void *response, size_t responseLen) {
4812#if VDBG
4813 RLOGD("getPreferredNetworkTypeResponse: serial %d", serial);
4814#endif
4815
4816 if (radioService[slotId]->mRadioResponse != NULL) {
4817 RadioResponseInfo responseInfo = {};
4818 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4819 Return<void> retStatus
4820 = radioService[slotId]->mRadioResponse->getPreferredNetworkTypeResponse(
4821 responseInfo, (PreferredNetworkType) ret);
4822 radioService[slotId]->checkReturnStatus(retStatus);
4823 } else {
4824 RLOGE("getPreferredNetworkTypeResponse: radioService[%d]->mRadioResponse == NULL",
4825 slotId);
4826 }
4827
4828 return 0;
4829}
4830
4831int radio::getNeighboringCidsResponse(int slotId,
4832 int responseType, int serial, RIL_Errno e,
4833 void *response, size_t responseLen) {
4834#if VDBG
4835 RLOGD("getNeighboringCidsResponse: serial %d", serial);
4836#endif
4837
4838 if (radioService[slotId]->mRadioResponse != NULL) {
4839 RadioResponseInfo responseInfo = {};
4840 populateResponseInfo(responseInfo, serial, responseType, e);
4841 hidl_vec<NeighboringCell> cells;
4842
4843 if ((response == NULL && responseLen != 0)
4844 || responseLen % sizeof(RIL_NeighboringCell *) != 0) {
4845 RLOGE("getNeighboringCidsResponse Invalid response: NULL");
4846 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
4847 } else {
4848 int num = responseLen / sizeof(RIL_NeighboringCell *);
4849 cells.resize(num);
4850 for (int i = 0 ; i < num; i++) {
4851 RIL_NeighboringCell *resp = ((RIL_NeighboringCell **) response)[i];
4852 cells[i].cid = convertCharPtrToHidlString(resp->cid);
4853 cells[i].rssi = resp->rssi;
4854 }
4855 }
4856
4857 Return<void> retStatus
4858 = radioService[slotId]->mRadioResponse->getNeighboringCidsResponse(responseInfo,
4859 cells);
4860 radioService[slotId]->checkReturnStatus(retStatus);
4861 } else {
4862 RLOGE("getNeighboringCidsResponse: radioService[%d]->mRadioResponse == NULL",
4863 slotId);
4864 }
4865
4866 return 0;
4867}
4868
4869int radio::setLocationUpdatesResponse(int slotId,
4870 int responseType, int serial, RIL_Errno e,
4871 void *response, size_t responseLen) {
4872#if VDBG
4873 RLOGD("setLocationUpdatesResponse: serial %d", serial);
4874#endif
4875
4876 if (radioService[slotId]->mRadioResponse != NULL) {
4877 RadioResponseInfo responseInfo = {};
4878 populateResponseInfo(responseInfo, serial, responseType, e);
4879 Return<void> retStatus
4880 = radioService[slotId]->mRadioResponse->setLocationUpdatesResponse(responseInfo);
4881 radioService[slotId]->checkReturnStatus(retStatus);
4882 } else {
4883 RLOGE("setLocationUpdatesResponse: radioService[%d]->mRadioResponse == NULL",
4884 slotId);
4885 }
4886
4887 return 0;
4888}
4889
4890int radio::setCdmaSubscriptionSourceResponse(int slotId,
4891 int responseType, int serial, RIL_Errno e,
4892 void *response, size_t responseLen) {
4893#if VDBG
4894 RLOGD("setCdmaSubscriptionSourceResponse: serial %d", serial);
4895#endif
4896
4897 if (radioService[slotId]->mRadioResponse != NULL) {
4898 RadioResponseInfo responseInfo = {};
4899 populateResponseInfo(responseInfo, serial, responseType, e);
4900 Return<void> retStatus
4901 = radioService[slotId]->mRadioResponse->setCdmaSubscriptionSourceResponse(
4902 responseInfo);
4903 radioService[slotId]->checkReturnStatus(retStatus);
4904 } else {
4905 RLOGE("setCdmaSubscriptionSourceResponse: radioService[%d]->mRadioResponse == NULL",
4906 slotId);
4907 }
4908
4909 return 0;
4910}
4911
4912int radio::setCdmaRoamingPreferenceResponse(int slotId,
4913 int responseType, int serial, RIL_Errno e,
4914 void *response, size_t responseLen) {
4915#if VDBG
4916 RLOGD("setCdmaRoamingPreferenceResponse: serial %d", serial);
4917#endif
4918
4919 if (radioService[slotId]->mRadioResponse != NULL) {
4920 RadioResponseInfo responseInfo = {};
4921 populateResponseInfo(responseInfo, serial, responseType, e);
4922 Return<void> retStatus
4923 = radioService[slotId]->mRadioResponse->setCdmaRoamingPreferenceResponse(
4924 responseInfo);
4925 radioService[slotId]->checkReturnStatus(retStatus);
4926 } else {
4927 RLOGE("setCdmaRoamingPreferenceResponse: radioService[%d]->mRadioResponse == NULL",
4928 slotId);
4929 }
4930
4931 return 0;
4932}
4933
4934int radio::getCdmaRoamingPreferenceResponse(int slotId,
4935 int responseType, int serial, RIL_Errno e,
4936 void *response, size_t responseLen) {
4937#if VDBG
4938 RLOGD("getCdmaRoamingPreferenceResponse: serial %d", serial);
4939#endif
4940
4941 if (radioService[slotId]->mRadioResponse != NULL) {
4942 RadioResponseInfo responseInfo = {};
4943 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4944 Return<void> retStatus
4945 = radioService[slotId]->mRadioResponse->getCdmaRoamingPreferenceResponse(
4946 responseInfo, (CdmaRoamingType) ret);
4947 radioService[slotId]->checkReturnStatus(retStatus);
4948 } else {
4949 RLOGE("getCdmaRoamingPreferenceResponse: radioService[%d]->mRadioResponse == NULL",
4950 slotId);
4951 }
4952
4953 return 0;
4954}
4955
4956int radio::setTTYModeResponse(int slotId,
4957 int responseType, int serial, RIL_Errno e,
4958 void *response, size_t responseLen) {
4959#if VDBG
4960 RLOGD("setTTYModeResponse: serial %d", serial);
4961#endif
4962
4963 if (radioService[slotId]->mRadioResponse != NULL) {
4964 RadioResponseInfo responseInfo = {};
4965 populateResponseInfo(responseInfo, serial, responseType, e);
4966 Return<void> retStatus
4967 = radioService[slotId]->mRadioResponse->setTTYModeResponse(responseInfo);
4968 radioService[slotId]->checkReturnStatus(retStatus);
4969 } else {
4970 RLOGE("setTTYModeResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4971 }
4972
4973 return 0;
4974}
4975
4976int radio::getTTYModeResponse(int slotId,
4977 int responseType, int serial, RIL_Errno e,
4978 void *response, size_t responseLen) {
4979#if VDBG
4980 RLOGD("getTTYModeResponse: serial %d", serial);
4981#endif
4982
4983 if (radioService[slotId]->mRadioResponse != NULL) {
4984 RadioResponseInfo responseInfo = {};
4985 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
4986 Return<void> retStatus
4987 = radioService[slotId]->mRadioResponse->getTTYModeResponse(responseInfo,
4988 (TtyMode) ret);
4989 radioService[slotId]->checkReturnStatus(retStatus);
4990 } else {
4991 RLOGE("getTTYModeResponse: radioService[%d]->mRadioResponse == NULL", slotId);
4992 }
4993
4994 return 0;
4995}
4996
4997int radio::setPreferredVoicePrivacyResponse(int slotId,
4998 int responseType, int serial, RIL_Errno e,
4999 void *response, size_t responseLen) {
5000#if VDBG
5001 RLOGD("setPreferredVoicePrivacyResponse: serial %d", serial);
5002#endif
5003
5004 if (radioService[slotId]->mRadioResponse != NULL) {
5005 RadioResponseInfo responseInfo = {};
5006 populateResponseInfo(responseInfo, serial, responseType, e);
5007 Return<void> retStatus
5008 = radioService[slotId]->mRadioResponse->setPreferredVoicePrivacyResponse(
5009 responseInfo);
5010 radioService[slotId]->checkReturnStatus(retStatus);
5011 } else {
5012 RLOGE("setPreferredVoicePrivacyResponse: radioService[%d]->mRadioResponse == NULL",
5013 slotId);
5014 }
5015
5016 return 0;
5017}
5018
5019int radio::getPreferredVoicePrivacyResponse(int slotId,
5020 int responseType, int serial, RIL_Errno e,
5021 void *response, size_t responseLen) {
5022#if VDBG
5023 RLOGD("getPreferredVoicePrivacyResponse: serial %d", serial);
5024#endif
5025
5026 if (radioService[slotId]->mRadioResponse != NULL) {
5027 RadioResponseInfo responseInfo = {};
5028 populateResponseInfo(responseInfo, serial, responseType, e);
5029 bool enable = false;
5030 int numInts = responseLen / sizeof(int);
Paul Keith96ff3122018-03-06 20:19:57 +01005031 if (response == NULL || numInts < 1) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03005032 RLOGE("getPreferredVoicePrivacyResponse Invalid response: NULL");
5033 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5034 } else {
5035 int *pInt = (int *) response;
5036 enable = pInt[0] == 1 ? true : false;
5037 }
5038 Return<void> retStatus
5039 = radioService[slotId]->mRadioResponse->getPreferredVoicePrivacyResponse(
5040 responseInfo, enable);
5041 radioService[slotId]->checkReturnStatus(retStatus);
5042 } else {
5043 RLOGE("getPreferredVoicePrivacyResponse: radioService[%d]->mRadioResponse == NULL",
5044 slotId);
5045 }
5046
5047 return 0;
5048}
5049
5050int radio::sendCDMAFeatureCodeResponse(int slotId,
5051 int responseType, int serial, RIL_Errno e,
5052 void *response, size_t responseLen) {
5053#if VDBG
5054 RLOGD("sendCDMAFeatureCodeResponse: serial %d", serial);
5055#endif
5056
5057 if (radioService[slotId]->mRadioResponse != NULL) {
5058 RadioResponseInfo responseInfo = {};
5059 populateResponseInfo(responseInfo, serial, responseType, e);
5060 Return<void> retStatus
5061 = radioService[slotId]->mRadioResponse->sendCDMAFeatureCodeResponse(responseInfo);
5062 radioService[slotId]->checkReturnStatus(retStatus);
5063 } else {
5064 RLOGE("sendCDMAFeatureCodeResponse: radioService[%d]->mRadioResponse == NULL",
5065 slotId);
5066 }
5067
5068 return 0;
5069}
5070
5071int radio::sendBurstDtmfResponse(int slotId,
5072 int responseType, int serial, RIL_Errno e,
5073 void *response, size_t responseLen) {
5074#if VDBG
5075 RLOGD("sendBurstDtmfResponse: serial %d", serial);
5076#endif
5077
5078 if (radioService[slotId]->mRadioResponse != NULL) {
5079 RadioResponseInfo responseInfo = {};
5080 populateResponseInfo(responseInfo, serial, responseType, e);
5081 Return<void> retStatus
5082 = radioService[slotId]->mRadioResponse->sendBurstDtmfResponse(responseInfo);
5083 radioService[slotId]->checkReturnStatus(retStatus);
5084 } else {
5085 RLOGE("sendBurstDtmfResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5086 }
5087
5088 return 0;
5089}
5090
5091int radio::sendCdmaSmsResponse(int slotId,
5092 int responseType, int serial, RIL_Errno e, void *response,
5093 size_t responseLen) {
5094#if VDBG
5095 RLOGD("sendCdmaSmsResponse: serial %d", serial);
5096#endif
5097
5098 if (radioService[slotId]->mRadioResponse != NULL) {
5099 RadioResponseInfo responseInfo = {};
5100 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response,
5101 responseLen);
5102
5103 Return<void> retStatus
5104 = radioService[slotId]->mRadioResponse->sendCdmaSmsResponse(responseInfo, result);
5105 radioService[slotId]->checkReturnStatus(retStatus);
5106 } else {
5107 RLOGE("sendCdmaSmsResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5108 }
5109
5110 return 0;
5111}
5112
5113int radio::acknowledgeLastIncomingCdmaSmsResponse(int slotId,
5114 int responseType, int serial, RIL_Errno e,
5115 void *response, size_t responseLen) {
5116#if VDBG
5117 RLOGD("acknowledgeLastIncomingCdmaSmsResponse: serial %d", serial);
5118#endif
5119
5120 if (radioService[slotId]->mRadioResponse != NULL) {
5121 RadioResponseInfo responseInfo = {};
5122 populateResponseInfo(responseInfo, serial, responseType, e);
5123 Return<void> retStatus
5124 = radioService[slotId]->mRadioResponse->acknowledgeLastIncomingCdmaSmsResponse(
5125 responseInfo);
5126 radioService[slotId]->checkReturnStatus(retStatus);
5127 } else {
5128 RLOGE("acknowledgeLastIncomingCdmaSmsResponse: radioService[%d]->mRadioResponse "
5129 "== NULL", slotId);
5130 }
5131
5132 return 0;
5133}
5134
5135int radio::getGsmBroadcastConfigResponse(int slotId,
5136 int responseType, int serial, RIL_Errno e,
5137 void *response, size_t responseLen) {
5138#if VDBG
5139 RLOGD("getGsmBroadcastConfigResponse: serial %d", serial);
5140#endif
5141
5142 if (radioService[slotId]->mRadioResponse != NULL) {
5143 RadioResponseInfo responseInfo = {};
5144 populateResponseInfo(responseInfo, serial, responseType, e);
5145 hidl_vec<GsmBroadcastSmsConfigInfo> configs;
5146
5147 if ((response == NULL && responseLen != 0)
5148 || responseLen % sizeof(RIL_GSM_BroadcastSmsConfigInfo *) != 0) {
5149 RLOGE("getGsmBroadcastConfigResponse Invalid response: NULL");
5150 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5151 } else {
5152 int num = responseLen / sizeof(RIL_GSM_BroadcastSmsConfigInfo *);
5153 configs.resize(num);
5154 for (int i = 0 ; i < num; i++) {
5155 RIL_GSM_BroadcastSmsConfigInfo *resp =
5156 ((RIL_GSM_BroadcastSmsConfigInfo **) response)[i];
5157 configs[i].fromServiceId = resp->fromServiceId;
5158 configs[i].toServiceId = resp->toServiceId;
5159 configs[i].fromCodeScheme = resp->fromCodeScheme;
5160 configs[i].toCodeScheme = resp->toCodeScheme;
5161 configs[i].selected = resp->selected == 1 ? true : false;
5162 }
5163 }
5164
5165 Return<void> retStatus
5166 = radioService[slotId]->mRadioResponse->getGsmBroadcastConfigResponse(responseInfo,
5167 configs);
5168 radioService[slotId]->checkReturnStatus(retStatus);
5169 } else {
5170 RLOGE("getGsmBroadcastConfigResponse: radioService[%d]->mRadioResponse == NULL",
5171 slotId);
5172 }
5173
5174 return 0;
5175}
5176
5177int radio::setGsmBroadcastConfigResponse(int slotId,
5178 int responseType, int serial, RIL_Errno e,
5179 void *response, size_t responseLen) {
5180#if VDBG
5181 RLOGD("setGsmBroadcastConfigResponse: serial %d", serial);
5182#endif
5183
5184 if (radioService[slotId]->mRadioResponse != NULL) {
5185 RadioResponseInfo responseInfo = {};
5186 populateResponseInfo(responseInfo, serial, responseType, e);
5187 Return<void> retStatus
5188 = radioService[slotId]->mRadioResponse->setGsmBroadcastConfigResponse(responseInfo);
5189 radioService[slotId]->checkReturnStatus(retStatus);
5190 } else {
5191 RLOGE("setGsmBroadcastConfigResponse: radioService[%d]->mRadioResponse == NULL",
5192 slotId);
5193 }
5194
5195 return 0;
5196}
5197
5198int radio::setGsmBroadcastActivationResponse(int slotId,
5199 int responseType, int serial, RIL_Errno e,
5200 void *response, size_t responseLen) {
5201#if VDBG
5202 RLOGD("setGsmBroadcastActivationResponse: serial %d", serial);
5203#endif
5204
5205 if (radioService[slotId]->mRadioResponse != NULL) {
5206 RadioResponseInfo responseInfo = {};
5207 populateResponseInfo(responseInfo, serial, responseType, e);
5208 Return<void> retStatus
5209 = radioService[slotId]->mRadioResponse->setGsmBroadcastActivationResponse(
5210 responseInfo);
5211 radioService[slotId]->checkReturnStatus(retStatus);
5212 } else {
5213 RLOGE("setGsmBroadcastActivationResponse: radioService[%d]->mRadioResponse == NULL",
5214 slotId);
5215 }
5216
5217 return 0;
5218}
5219
5220int radio::getCdmaBroadcastConfigResponse(int slotId,
5221 int responseType, int serial, RIL_Errno e,
5222 void *response, size_t responseLen) {
5223#if VDBG
5224 RLOGD("getCdmaBroadcastConfigResponse: serial %d", serial);
5225#endif
5226
5227 if (radioService[slotId]->mRadioResponse != NULL) {
5228 RadioResponseInfo responseInfo = {};
5229 populateResponseInfo(responseInfo, serial, responseType, e);
5230 hidl_vec<CdmaBroadcastSmsConfigInfo> configs;
5231
5232 if ((response == NULL && responseLen != 0)
5233 || responseLen % sizeof(RIL_CDMA_BroadcastSmsConfigInfo *) != 0) {
5234 RLOGE("getCdmaBroadcastConfigResponse Invalid response: NULL");
5235 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5236 } else {
5237 int num = responseLen / sizeof(RIL_CDMA_BroadcastSmsConfigInfo *);
5238 configs.resize(num);
5239 for (int i = 0 ; i < num; i++) {
5240 RIL_CDMA_BroadcastSmsConfigInfo *resp =
5241 ((RIL_CDMA_BroadcastSmsConfigInfo **) response)[i];
5242 configs[i].serviceCategory = resp->service_category;
5243 configs[i].language = resp->language;
5244 configs[i].selected = resp->selected == 1 ? true : false;
5245 }
5246 }
5247
5248 Return<void> retStatus
5249 = radioService[slotId]->mRadioResponse->getCdmaBroadcastConfigResponse(responseInfo,
5250 configs);
5251 radioService[slotId]->checkReturnStatus(retStatus);
5252 } else {
5253 RLOGE("getCdmaBroadcastConfigResponse: radioService[%d]->mRadioResponse == NULL",
5254 slotId);
5255 }
5256
5257 return 0;
5258}
5259
5260int radio::setCdmaBroadcastConfigResponse(int slotId,
5261 int responseType, int serial, RIL_Errno e,
5262 void *response, size_t responseLen) {
5263#if VDBG
5264 RLOGD("setCdmaBroadcastConfigResponse: serial %d", serial);
5265#endif
5266
5267 if (radioService[slotId]->mRadioResponse != NULL) {
5268 RadioResponseInfo responseInfo = {};
5269 populateResponseInfo(responseInfo, serial, responseType, e);
5270 Return<void> retStatus
5271 = radioService[slotId]->mRadioResponse->setCdmaBroadcastConfigResponse(
5272 responseInfo);
5273 radioService[slotId]->checkReturnStatus(retStatus);
5274 } else {
5275 RLOGE("setCdmaBroadcastConfigResponse: radioService[%d]->mRadioResponse == NULL",
5276 slotId);
5277 }
5278
5279 return 0;
5280}
5281
5282int radio::setCdmaBroadcastActivationResponse(int slotId,
5283 int responseType, int serial, RIL_Errno e,
5284 void *response, size_t responseLen) {
5285#if VDBG
5286 RLOGD("setCdmaBroadcastActivationResponse: serial %d", serial);
5287#endif
5288
5289 if (radioService[slotId]->mRadioResponse != NULL) {
5290 RadioResponseInfo responseInfo = {};
5291 populateResponseInfo(responseInfo, serial, responseType, e);
5292 Return<void> retStatus
5293 = radioService[slotId]->mRadioResponse->setCdmaBroadcastActivationResponse(
5294 responseInfo);
5295 radioService[slotId]->checkReturnStatus(retStatus);
5296 } else {
5297 RLOGE("setCdmaBroadcastActivationResponse: radioService[%d]->mRadioResponse == NULL",
5298 slotId);
5299 }
5300
5301 return 0;
5302}
5303
5304int radio::getCDMASubscriptionResponse(int slotId,
5305 int responseType, int serial, RIL_Errno e, void *response,
5306 size_t responseLen) {
5307#if VDBG
5308 RLOGD("getCDMASubscriptionResponse: serial %d", serial);
5309#endif
5310
5311 if (radioService[slotId]->mRadioResponse != NULL) {
5312 RadioResponseInfo responseInfo = {};
5313 populateResponseInfo(responseInfo, serial, responseType, e);
5314
5315 int numStrings = responseLen / sizeof(char *);
5316 hidl_string emptyString;
Paul Keith96ff3122018-03-06 20:19:57 +01005317 if (response == NULL || numStrings < 5) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03005318 RLOGE("getOperatorResponse Invalid response: NULL");
5319 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5320 Return<void> retStatus
5321 = radioService[slotId]->mRadioResponse->getCDMASubscriptionResponse(
5322 responseInfo, emptyString, emptyString, emptyString, emptyString, emptyString);
5323 radioService[slotId]->checkReturnStatus(retStatus);
5324 } else {
5325 char **resp = (char **) response;
5326 Return<void> retStatus
5327 = radioService[slotId]->mRadioResponse->getCDMASubscriptionResponse(
5328 responseInfo,
5329 convertCharPtrToHidlString(resp[0]),
5330 convertCharPtrToHidlString(resp[1]),
5331 convertCharPtrToHidlString(resp[2]),
5332 convertCharPtrToHidlString(resp[3]),
5333 convertCharPtrToHidlString(resp[4]));
5334 radioService[slotId]->checkReturnStatus(retStatus);
5335 }
5336 } else {
5337 RLOGE("getCDMASubscriptionResponse: radioService[%d]->mRadioResponse == NULL",
5338 slotId);
5339 }
5340
5341 return 0;
5342}
5343
5344int radio::writeSmsToRuimResponse(int slotId,
5345 int responseType, int serial, RIL_Errno e,
5346 void *response, size_t responseLen) {
5347#if VDBG
5348 RLOGD("writeSmsToRuimResponse: serial %d", serial);
5349#endif
5350
5351 if (radioService[slotId]->mRadioResponse != NULL) {
5352 RadioResponseInfo responseInfo = {};
5353 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
5354 Return<void> retStatus
5355 = radioService[slotId]->mRadioResponse->writeSmsToRuimResponse(responseInfo, ret);
5356 radioService[slotId]->checkReturnStatus(retStatus);
5357 } else {
5358 RLOGE("writeSmsToRuimResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5359 }
5360
5361 return 0;
5362}
5363
5364int radio::deleteSmsOnRuimResponse(int slotId,
5365 int responseType, int serial, RIL_Errno e,
5366 void *response, size_t responseLen) {
5367#if VDBG
5368 RLOGD("deleteSmsOnRuimResponse: serial %d", serial);
5369#endif
5370
5371 if (radioService[slotId]->mRadioResponse != NULL) {
5372 RadioResponseInfo responseInfo = {};
5373 populateResponseInfo(responseInfo, serial, responseType, e);
5374 Return<void> retStatus
5375 = radioService[slotId]->mRadioResponse->deleteSmsOnRuimResponse(responseInfo);
5376 radioService[slotId]->checkReturnStatus(retStatus);
5377 } else {
5378 RLOGE("deleteSmsOnRuimResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5379 }
5380
5381 return 0;
5382}
5383
5384int radio::getDeviceIdentityResponse(int slotId,
5385 int responseType, int serial, RIL_Errno e, void *response,
5386 size_t responseLen) {
5387#if VDBG
5388 RLOGD("getDeviceIdentityResponse: serial %d", serial);
5389#endif
5390
5391 if (radioService[slotId]->mRadioResponse != NULL) {
5392 RadioResponseInfo responseInfo = {};
5393 populateResponseInfo(responseInfo, serial, responseType, e);
5394
5395 int numStrings = responseLen / sizeof(char *);
5396 hidl_string emptyString;
Paul Keith96ff3122018-03-06 20:19:57 +01005397 if (response == NULL || numStrings < 4) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03005398 RLOGE("getDeviceIdentityResponse Invalid response: NULL");
5399 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5400 Return<void> retStatus
5401 = radioService[slotId]->mRadioResponse->getDeviceIdentityResponse(responseInfo,
5402 emptyString, emptyString, emptyString, emptyString);
5403 radioService[slotId]->checkReturnStatus(retStatus);
5404 } else {
5405 char **resp = (char **) response;
5406 Return<void> retStatus
5407 = radioService[slotId]->mRadioResponse->getDeviceIdentityResponse(responseInfo,
5408 convertCharPtrToHidlString(resp[0]),
5409 convertCharPtrToHidlString(resp[1]),
5410 convertCharPtrToHidlString(resp[2]),
5411 convertCharPtrToHidlString(resp[3]));
5412 radioService[slotId]->checkReturnStatus(retStatus);
5413 }
5414 } else {
5415 RLOGE("getDeviceIdentityResponse: radioService[%d]->mRadioResponse == NULL",
5416 slotId);
5417 }
5418
5419 return 0;
5420}
5421
5422int radio::exitEmergencyCallbackModeResponse(int slotId,
5423 int responseType, int serial, RIL_Errno e,
5424 void *response, size_t responseLen) {
5425#if VDBG
5426 RLOGD("exitEmergencyCallbackModeResponse: serial %d", serial);
5427#endif
5428
5429 if (radioService[slotId]->mRadioResponse != NULL) {
5430 RadioResponseInfo responseInfo = {};
5431 populateResponseInfo(responseInfo, serial, responseType, e);
5432 Return<void> retStatus
5433 = radioService[slotId]->mRadioResponse->exitEmergencyCallbackModeResponse(
5434 responseInfo);
5435 radioService[slotId]->checkReturnStatus(retStatus);
5436 } else {
5437 RLOGE("exitEmergencyCallbackModeResponse: radioService[%d]->mRadioResponse == NULL",
5438 slotId);
5439 }
5440
5441 return 0;
5442}
5443
5444int radio::getSmscAddressResponse(int slotId,
5445 int responseType, int serial, RIL_Errno e,
5446 void *response, size_t responseLen) {
5447#if VDBG
5448 RLOGD("getSmscAddressResponse: serial %d", serial);
5449#endif
5450
5451 if (radioService[slotId]->mRadioResponse != NULL) {
5452 RadioResponseInfo responseInfo = {};
5453 populateResponseInfo(responseInfo, serial, responseType, e);
5454 Return<void> retStatus
5455 = radioService[slotId]->mRadioResponse->getSmscAddressResponse(responseInfo,
5456 convertCharPtrToHidlString((char *) response));
5457 radioService[slotId]->checkReturnStatus(retStatus);
5458 } else {
5459 RLOGE("getSmscAddressResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5460 }
5461
5462 return 0;
5463}
5464
5465int radio::setSmscAddressResponse(int slotId,
5466 int responseType, int serial, RIL_Errno e,
5467 void *response, size_t responseLen) {
5468#if VDBG
5469 RLOGD("setSmscAddressResponse: serial %d", serial);
5470#endif
5471
5472 if (radioService[slotId]->mRadioResponse != NULL) {
5473 RadioResponseInfo responseInfo = {};
5474 populateResponseInfo(responseInfo, serial, responseType, e);
5475 Return<void> retStatus
5476 = radioService[slotId]->mRadioResponse->setSmscAddressResponse(responseInfo);
5477 radioService[slotId]->checkReturnStatus(retStatus);
5478 } else {
5479 RLOGE("setSmscAddressResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5480 }
5481
5482 return 0;
5483}
5484
5485int radio::reportSmsMemoryStatusResponse(int slotId,
5486 int responseType, int serial, RIL_Errno e,
5487 void *response, size_t responseLen) {
5488#if VDBG
5489 RLOGD("reportSmsMemoryStatusResponse: serial %d", serial);
5490#endif
5491
5492 if (radioService[slotId]->mRadioResponse != NULL) {
5493 RadioResponseInfo responseInfo = {};
5494 populateResponseInfo(responseInfo, serial, responseType, e);
5495 Return<void> retStatus
5496 = radioService[slotId]->mRadioResponse->reportSmsMemoryStatusResponse(responseInfo);
5497 radioService[slotId]->checkReturnStatus(retStatus);
5498 } else {
5499 RLOGE("reportSmsMemoryStatusResponse: radioService[%d]->mRadioResponse == NULL",
5500 slotId);
5501 }
5502
5503 return 0;
5504}
5505
5506int radio::reportStkServiceIsRunningResponse(int slotId,
5507 int responseType, int serial, RIL_Errno e,
5508 void *response, size_t responseLen) {
5509#if VDBG
5510 RLOGD("reportStkServiceIsRunningResponse: serial %d", serial);
5511#endif
5512
5513 if (radioService[slotId]->mRadioResponse != NULL) {
5514 RadioResponseInfo responseInfo = {};
5515 populateResponseInfo(responseInfo, serial, responseType, e);
5516 Return<void> retStatus = radioService[slotId]->mRadioResponse->
5517 reportStkServiceIsRunningResponse(responseInfo);
5518 radioService[slotId]->checkReturnStatus(retStatus);
5519 } else {
5520 RLOGE("reportStkServiceIsRunningResponse: radioService[%d]->mRadioResponse == NULL",
5521 slotId);
5522 }
5523
5524 return 0;
5525}
5526
5527int radio::getCdmaSubscriptionSourceResponse(int slotId,
5528 int responseType, int serial, RIL_Errno e,
5529 void *response, size_t responseLen) {
5530#if VDBG
5531 RLOGD("getCdmaSubscriptionSourceResponse: serial %d", serial);
5532#endif
5533
5534 if (radioService[slotId]->mRadioResponse != NULL) {
5535 RadioResponseInfo responseInfo = {};
5536 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
5537 Return<void> retStatus
5538 = radioService[slotId]->mRadioResponse->getCdmaSubscriptionSourceResponse(
5539 responseInfo, (CdmaSubscriptionSource) ret);
5540 radioService[slotId]->checkReturnStatus(retStatus);
5541 } else {
5542 RLOGE("getCdmaSubscriptionSourceResponse: radioService[%d]->mRadioResponse == NULL",
5543 slotId);
5544 }
5545
5546 return 0;
5547}
5548
5549int radio::requestIsimAuthenticationResponse(int slotId,
5550 int responseType, int serial, RIL_Errno e,
5551 void *response, size_t responseLen) {
5552#if VDBG
5553 RLOGD("requestIsimAuthenticationResponse: serial %d", serial);
5554#endif
5555
5556 if (radioService[slotId]->mRadioResponse != NULL) {
5557 RadioResponseInfo responseInfo = {};
5558 populateResponseInfo(responseInfo, serial, responseType, e);
5559 Return<void> retStatus
5560 = radioService[slotId]->mRadioResponse->requestIsimAuthenticationResponse(
5561 responseInfo,
5562 convertCharPtrToHidlString((char *) response));
5563 radioService[slotId]->checkReturnStatus(retStatus);
5564 } else {
5565 RLOGE("requestIsimAuthenticationResponse: radioService[%d]->mRadioResponse == NULL",
5566 slotId);
5567 }
5568
5569 return 0;
5570}
5571
5572int radio::acknowledgeIncomingGsmSmsWithPduResponse(int slotId,
5573 int responseType,
5574 int serial, RIL_Errno e, void *response,
5575 size_t responseLen) {
5576#if VDBG
5577 RLOGD("acknowledgeIncomingGsmSmsWithPduResponse: serial %d", serial);
5578#endif
5579
5580 if (radioService[slotId]->mRadioResponse != NULL) {
5581 RadioResponseInfo responseInfo = {};
5582 populateResponseInfo(responseInfo, serial, responseType, e);
5583 Return<void> retStatus
5584 = radioService[slotId]->mRadioResponse->acknowledgeIncomingGsmSmsWithPduResponse(
5585 responseInfo);
5586 radioService[slotId]->checkReturnStatus(retStatus);
5587 } else {
5588 RLOGE("acknowledgeIncomingGsmSmsWithPduResponse: radioService[%d]->mRadioResponse "
5589 "== NULL", slotId);
5590 }
5591
5592 return 0;
5593}
5594
5595int radio::sendEnvelopeWithStatusResponse(int slotId,
5596 int responseType, int serial, RIL_Errno e, void *response,
5597 size_t responseLen) {
5598#if VDBG
5599 RLOGD("sendEnvelopeWithStatusResponse: serial %d", serial);
5600#endif
5601
5602 if (radioService[slotId]->mRadioResponse != NULL) {
5603 RadioResponseInfo responseInfo = {};
5604 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e,
5605 response, responseLen);
5606
5607 Return<void> retStatus
5608 = radioService[slotId]->mRadioResponse->sendEnvelopeWithStatusResponse(responseInfo,
5609 result);
5610 radioService[slotId]->checkReturnStatus(retStatus);
5611 } else {
5612 RLOGE("sendEnvelopeWithStatusResponse: radioService[%d]->mRadioResponse == NULL",
5613 slotId);
5614 }
5615
5616 return 0;
5617}
5618
5619int radio::getVoiceRadioTechnologyResponse(int slotId,
5620 int responseType, int serial, RIL_Errno e,
5621 void *response, size_t responseLen) {
5622#if VDBG
5623 RLOGD("getVoiceRadioTechnologyResponse: serial %d", serial);
5624#endif
5625
5626 if (radioService[slotId]->mRadioResponse != NULL) {
5627 RadioResponseInfo responseInfo = {};
5628 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
5629 Return<void> retStatus
5630 = radioService[slotId]->mRadioResponse->getVoiceRadioTechnologyResponse(
5631 responseInfo, (RadioTechnology) ret);
5632 radioService[slotId]->checkReturnStatus(retStatus);
5633 } else {
5634 RLOGE("getVoiceRadioTechnologyResponse: radioService[%d]->mRadioResponse == NULL",
5635 slotId);
5636 }
5637
5638 return 0;
5639}
5640
5641int radio::getCellInfoListResponse(int slotId,
5642 int responseType,
5643 int serial, RIL_Errno e, void *response,
5644 size_t responseLen) {
5645#if VDBG
5646 RLOGD("getCellInfoListResponse: serial %d", serial);
5647#endif
5648
5649 if (radioService[slotId]->mRadioResponse != NULL) {
5650 RadioResponseInfo responseInfo = {};
5651 populateResponseInfo(responseInfo, serial, responseType, e);
5652
5653 hidl_vec<CellInfo> ret;
5654 if ((response == NULL && responseLen != 0)
5655 || responseLen % sizeof(RIL_CellInfo_v12) != 0) {
5656 RLOGE("getCellInfoListResponse: Invalid response");
5657 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5658 } else {
5659 convertRilCellInfoListToHal(response, responseLen, ret);
5660 }
5661
5662 Return<void> retStatus = radioService[slotId]->mRadioResponse->getCellInfoListResponse(
5663 responseInfo, ret);
5664 radioService[slotId]->checkReturnStatus(retStatus);
5665 } else {
5666 RLOGE("getCellInfoListResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5667 }
5668
5669 return 0;
5670}
5671
5672int radio::setCellInfoListRateResponse(int slotId,
5673 int responseType,
5674 int serial, RIL_Errno e, void *response,
5675 size_t responseLen) {
5676#if VDBG
5677 RLOGD("setCellInfoListRateResponse: serial %d", serial);
5678#endif
5679
5680 if (radioService[slotId]->mRadioResponse != NULL) {
5681 RadioResponseInfo responseInfo = {};
5682 populateResponseInfo(responseInfo, serial, responseType, e);
5683 Return<void> retStatus
5684 = radioService[slotId]->mRadioResponse->setCellInfoListRateResponse(responseInfo);
5685 radioService[slotId]->checkReturnStatus(retStatus);
5686 } else {
5687 RLOGE("setCellInfoListRateResponse: radioService[%d]->mRadioResponse == NULL",
5688 slotId);
5689 }
5690
5691 return 0;
5692}
5693
5694int radio::setInitialAttachApnResponse(int slotId,
5695 int responseType, int serial, RIL_Errno e,
5696 void *response, size_t responseLen) {
5697#if VDBG
5698 RLOGD("setInitialAttachApnResponse: serial %d", serial);
5699#endif
5700
5701 if (radioService[slotId]->mRadioResponse != NULL) {
5702 RadioResponseInfo responseInfo = {};
5703 populateResponseInfo(responseInfo, serial, responseType, e);
5704 Return<void> retStatus
5705 = radioService[slotId]->mRadioResponse->setInitialAttachApnResponse(responseInfo);
5706 radioService[slotId]->checkReturnStatus(retStatus);
5707 } else {
5708 RLOGE("setInitialAttachApnResponse: radioService[%d]->mRadioResponse == NULL",
5709 slotId);
5710 }
5711
5712 return 0;
5713}
5714
5715int radio::getImsRegistrationStateResponse(int slotId,
5716 int responseType, int serial, RIL_Errno e,
5717 void *response, size_t responseLen) {
5718#if VDBG
5719 RLOGD("getImsRegistrationStateResponse: serial %d", serial);
5720#endif
5721
5722 if (radioService[slotId]->mRadioResponse != NULL) {
5723 RadioResponseInfo responseInfo = {};
5724 populateResponseInfo(responseInfo, serial, responseType, e);
5725 bool isRegistered = false;
5726 int ratFamily = 0;
5727 int numInts = responseLen / sizeof(int);
Paul Keith96ff3122018-03-06 20:19:57 +01005728 if (response == NULL || numInts < 2) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03005729 RLOGE("getImsRegistrationStateResponse Invalid response: NULL");
5730 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5731 } else {
5732 int *pInt = (int *) response;
5733 isRegistered = pInt[0] == 1 ? true : false;
5734 ratFamily = pInt[1];
5735 }
5736 Return<void> retStatus
5737 = radioService[slotId]->mRadioResponse->getImsRegistrationStateResponse(
5738 responseInfo, isRegistered, (RadioTechnologyFamily) ratFamily);
5739 radioService[slotId]->checkReturnStatus(retStatus);
5740 } else {
5741 RLOGE("getImsRegistrationStateResponse: radioService[%d]->mRadioResponse == NULL",
5742 slotId);
5743 }
5744
5745 return 0;
5746}
5747
5748int radio::sendImsSmsResponse(int slotId,
5749 int responseType, int serial, RIL_Errno e, void *response,
5750 size_t responseLen) {
5751#if VDBG
5752 RLOGD("sendImsSmsResponse: serial %d", serial);
5753#endif
5754
5755 if (radioService[slotId]->mRadioResponse != NULL) {
5756 RadioResponseInfo responseInfo = {};
5757 SendSmsResult result = makeSendSmsResult(responseInfo, serial, responseType, e, response,
5758 responseLen);
5759
5760 Return<void> retStatus
5761 = radioService[slotId]->mRadioResponse->sendImsSmsResponse(responseInfo, result);
5762 radioService[slotId]->checkReturnStatus(retStatus);
5763 } else {
5764 RLOGE("sendSmsResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5765 }
5766
5767 return 0;
5768}
5769
5770int radio::iccTransmitApduBasicChannelResponse(int slotId,
5771 int responseType, int serial, RIL_Errno e,
5772 void *response, size_t responseLen) {
5773#if VDBG
5774 RLOGD("iccTransmitApduBasicChannelResponse: serial %d", serial);
5775#endif
5776
5777 if (radioService[slotId]->mRadioResponse != NULL) {
5778 RadioResponseInfo responseInfo = {};
5779 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response,
5780 responseLen);
5781
5782 Return<void> retStatus
5783 = radioService[slotId]->mRadioResponse->iccTransmitApduBasicChannelResponse(
5784 responseInfo, result);
5785 radioService[slotId]->checkReturnStatus(retStatus);
5786 } else {
5787 RLOGE("iccTransmitApduBasicChannelResponse: radioService[%d]->mRadioResponse "
5788 "== NULL", slotId);
5789 }
5790
5791 return 0;
5792}
5793
5794int radio::iccOpenLogicalChannelResponse(int slotId,
5795 int responseType, int serial, RIL_Errno e, void *response,
5796 size_t responseLen) {
5797#if VDBG
5798 RLOGD("iccOpenLogicalChannelResponse: serial %d", serial);
5799#endif
5800
5801 if (radioService[slotId]->mRadioResponse != NULL) {
5802 RadioResponseInfo responseInfo = {};
5803 populateResponseInfo(responseInfo, serial, responseType, e);
5804 int channelId = -1;
5805 hidl_vec<int8_t> selectResponse;
5806 int numInts = responseLen / sizeof(int);
5807 if (response == NULL || responseLen % sizeof(int) != 0) {
5808 RLOGE("iccOpenLogicalChannelResponse Invalid response: NULL");
5809 if (response != NULL) {
5810 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
5811 }
5812 } else {
5813 int *pInt = (int *) response;
5814 channelId = pInt[0];
5815 selectResponse.resize(numInts - 1);
5816 for (int i = 1; i < numInts; i++) {
5817 selectResponse[i - 1] = (int8_t) pInt[i];
5818 }
5819 }
5820 Return<void> retStatus
5821 = radioService[slotId]->mRadioResponse->iccOpenLogicalChannelResponse(responseInfo,
5822 channelId, selectResponse);
5823 radioService[slotId]->checkReturnStatus(retStatus);
5824 } else {
5825 RLOGE("iccOpenLogicalChannelResponse: radioService[%d]->mRadioResponse == NULL",
5826 slotId);
5827 }
5828
5829 return 0;
5830}
5831
5832int radio::iccCloseLogicalChannelResponse(int slotId,
5833 int responseType, int serial, RIL_Errno e,
5834 void *response, size_t responseLen) {
5835#if VDBG
5836 RLOGD("iccCloseLogicalChannelResponse: serial %d", serial);
5837#endif
5838
5839 if (radioService[slotId]->mRadioResponse != NULL) {
5840 RadioResponseInfo responseInfo = {};
5841 populateResponseInfo(responseInfo, serial, responseType, e);
5842 Return<void> retStatus
5843 = radioService[slotId]->mRadioResponse->iccCloseLogicalChannelResponse(
5844 responseInfo);
5845 radioService[slotId]->checkReturnStatus(retStatus);
5846 } else {
5847 RLOGE("iccCloseLogicalChannelResponse: radioService[%d]->mRadioResponse == NULL",
5848 slotId);
5849 }
5850
5851 return 0;
5852}
5853
5854int radio::iccTransmitApduLogicalChannelResponse(int slotId,
5855 int responseType, int serial, RIL_Errno e,
5856 void *response, size_t responseLen) {
5857#if VDBG
5858 RLOGD("iccTransmitApduLogicalChannelResponse: serial %d", serial);
5859#endif
5860
5861 if (radioService[slotId]->mRadioResponse != NULL) {
5862 RadioResponseInfo responseInfo = {};
5863 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response,
5864 responseLen);
5865
5866 Return<void> retStatus
5867 = radioService[slotId]->mRadioResponse->iccTransmitApduLogicalChannelResponse(
5868 responseInfo, result);
5869 radioService[slotId]->checkReturnStatus(retStatus);
5870 } else {
5871 RLOGE("iccTransmitApduLogicalChannelResponse: radioService[%d]->mRadioResponse "
5872 "== NULL", slotId);
5873 }
5874
5875 return 0;
5876}
5877
5878int radio::nvReadItemResponse(int slotId,
5879 int responseType, int serial, RIL_Errno e,
5880 void *response, size_t responseLen) {
5881#if VDBG
5882 RLOGD("nvReadItemResponse: serial %d", serial);
5883#endif
5884
5885 if (radioService[slotId]->mRadioResponse != NULL) {
5886 RadioResponseInfo responseInfo = {};
5887 populateResponseInfo(responseInfo, serial, responseType, e);
5888 Return<void> retStatus = radioService[slotId]->mRadioResponse->nvReadItemResponse(
5889 responseInfo,
5890 convertCharPtrToHidlString((char *) response));
5891 radioService[slotId]->checkReturnStatus(retStatus);
5892 } else {
5893 RLOGE("nvReadItemResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5894 }
5895
5896 return 0;
5897}
5898
5899int radio::nvWriteItemResponse(int slotId,
5900 int responseType, int serial, RIL_Errno e,
5901 void *response, size_t responseLen) {
5902#if VDBG
5903 RLOGD("nvWriteItemResponse: serial %d", serial);
5904#endif
5905
5906 if (radioService[slotId]->mRadioResponse != NULL) {
5907 RadioResponseInfo responseInfo = {};
5908 populateResponseInfo(responseInfo, serial, responseType, e);
5909 Return<void> retStatus
5910 = radioService[slotId]->mRadioResponse->nvWriteItemResponse(responseInfo);
5911 radioService[slotId]->checkReturnStatus(retStatus);
5912 } else {
5913 RLOGE("nvWriteItemResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5914 }
5915
5916 return 0;
5917}
5918
5919int radio::nvWriteCdmaPrlResponse(int slotId,
5920 int responseType, int serial, RIL_Errno e,
5921 void *response, size_t responseLen) {
5922#if VDBG
5923 RLOGD("nvWriteCdmaPrlResponse: serial %d", serial);
5924#endif
5925
5926 if (radioService[slotId]->mRadioResponse != NULL) {
5927 RadioResponseInfo responseInfo = {};
5928 populateResponseInfo(responseInfo, serial, responseType, e);
5929 Return<void> retStatus
5930 = radioService[slotId]->mRadioResponse->nvWriteCdmaPrlResponse(responseInfo);
5931 radioService[slotId]->checkReturnStatus(retStatus);
5932 } else {
5933 RLOGE("nvWriteCdmaPrlResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5934 }
5935
5936 return 0;
5937}
5938
5939int radio::nvResetConfigResponse(int slotId,
5940 int responseType, int serial, RIL_Errno e,
5941 void *response, size_t responseLen) {
5942#if VDBG
5943 RLOGD("nvResetConfigResponse: serial %d", serial);
5944#endif
5945
5946 if (radioService[slotId]->mRadioResponse != NULL) {
5947 RadioResponseInfo responseInfo = {};
5948 populateResponseInfo(responseInfo, serial, responseType, e);
5949 Return<void> retStatus
5950 = radioService[slotId]->mRadioResponse->nvResetConfigResponse(responseInfo);
5951 radioService[slotId]->checkReturnStatus(retStatus);
5952 } else {
5953 RLOGE("nvResetConfigResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5954 }
5955
5956 return 0;
5957}
5958
5959int radio::setUiccSubscriptionResponse(int slotId,
5960 int responseType, int serial, RIL_Errno e,
5961 void *response, size_t responseLen) {
5962#if VDBG
5963 RLOGD("setUiccSubscriptionResponse: serial %d", serial);
5964#endif
5965
5966 if (radioService[slotId]->mRadioResponse != NULL) {
5967 RadioResponseInfo responseInfo = {};
5968 populateResponseInfo(responseInfo, serial, responseType, e);
5969 Return<void> retStatus
5970 = radioService[slotId]->mRadioResponse->setUiccSubscriptionResponse(responseInfo);
5971 radioService[slotId]->checkReturnStatus(retStatus);
5972 } else {
5973 RLOGE("setUiccSubscriptionResponse: radioService[%d]->mRadioResponse == NULL",
5974 slotId);
5975 }
5976
5977 return 0;
5978}
5979
5980int radio::setDataAllowedResponse(int slotId,
5981 int responseType, int serial, RIL_Errno e,
5982 void *response, size_t responseLen) {
5983#if VDBG
5984 RLOGD("setDataAllowedResponse: serial %d", serial);
5985#endif
5986
5987 if (radioService[slotId]->mRadioResponse != NULL) {
5988 RadioResponseInfo responseInfo = {};
5989 populateResponseInfo(responseInfo, serial, responseType, e);
5990 Return<void> retStatus
5991 = radioService[slotId]->mRadioResponse->setDataAllowedResponse(responseInfo);
5992 radioService[slotId]->checkReturnStatus(retStatus);
5993 } else {
5994 RLOGE("setDataAllowedResponse: radioService[%d]->mRadioResponse == NULL", slotId);
5995 }
5996
5997 return 0;
5998}
5999
6000int radio::getHardwareConfigResponse(int slotId,
6001 int responseType, int serial, RIL_Errno e,
6002 void *response, size_t responseLen) {
6003#if VDBG
6004 RLOGD("getHardwareConfigResponse: serial %d", serial);
6005#endif
6006
6007 if (radioService[slotId]->mRadioResponse != NULL) {
6008 RadioResponseInfo responseInfo = {};
6009 populateResponseInfo(responseInfo, serial, responseType, e);
6010
6011 hidl_vec<HardwareConfig> result;
6012 if ((response == NULL && responseLen != 0)
6013 || responseLen % sizeof(RIL_HardwareConfig) != 0) {
6014 RLOGE("hardwareConfigChangedInd: invalid response");
6015 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6016 } else {
6017 convertRilHardwareConfigListToHal(response, responseLen, result);
6018 }
6019
6020 Return<void> retStatus = radioService[slotId]->mRadioResponse->getHardwareConfigResponse(
6021 responseInfo, result);
6022 radioService[slotId]->checkReturnStatus(retStatus);
6023 } else {
6024 RLOGE("getHardwareConfigResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6025 }
6026
6027 return 0;
6028}
6029
6030int radio::requestIccSimAuthenticationResponse(int slotId,
6031 int responseType, int serial, RIL_Errno e,
6032 void *response, size_t responseLen) {
6033#if VDBG
6034 RLOGD("requestIccSimAuthenticationResponse: serial %d", serial);
6035#endif
6036
6037 if (radioService[slotId]->mRadioResponse != NULL) {
6038 RadioResponseInfo responseInfo = {};
6039 IccIoResult result = responseIccIo(responseInfo, serial, responseType, e, response,
6040 responseLen);
6041
6042 Return<void> retStatus
6043 = radioService[slotId]->mRadioResponse->requestIccSimAuthenticationResponse(
6044 responseInfo, result);
6045 radioService[slotId]->checkReturnStatus(retStatus);
6046 } else {
6047 RLOGE("requestIccSimAuthenticationResponse: radioService[%d]->mRadioResponse "
6048 "== NULL", slotId);
6049 }
6050
6051 return 0;
6052}
6053
6054int radio::setDataProfileResponse(int slotId,
6055 int responseType, int serial, RIL_Errno e,
6056 void *response, size_t responseLen) {
6057#if VDBG
6058 RLOGD("setDataProfileResponse: serial %d", serial);
6059#endif
6060
6061 if (radioService[slotId]->mRadioResponse != NULL) {
6062 RadioResponseInfo responseInfo = {};
6063 populateResponseInfo(responseInfo, serial, responseType, e);
6064 Return<void> retStatus
6065 = radioService[slotId]->mRadioResponse->setDataProfileResponse(responseInfo);
6066 radioService[slotId]->checkReturnStatus(retStatus);
6067 } else {
6068 RLOGE("setDataProfileResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6069 }
6070
6071 return 0;
6072}
6073
6074int radio::requestShutdownResponse(int slotId,
6075 int responseType, int serial, RIL_Errno e,
6076 void *response, size_t responseLen) {
6077#if VDBG
6078 RLOGD("requestShutdownResponse: serial %d", serial);
6079#endif
6080
6081 if (radioService[slotId]->mRadioResponse != NULL) {
6082 RadioResponseInfo responseInfo = {};
6083 populateResponseInfo(responseInfo, serial, responseType, e);
6084 Return<void> retStatus
6085 = radioService[slotId]->mRadioResponse->requestShutdownResponse(responseInfo);
6086 radioService[slotId]->checkReturnStatus(retStatus);
6087 } else {
6088 RLOGE("requestShutdownResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6089 }
6090
6091 return 0;
6092}
6093
6094void responseRadioCapability(RadioResponseInfo& responseInfo, int serial,
6095 int responseType, RIL_Errno e, void *response, size_t responseLen, RadioCapability& rc) {
6096 populateResponseInfo(responseInfo, serial, responseType, e);
6097
6098 if (response == NULL || responseLen != sizeof(RIL_RadioCapability)) {
6099 RLOGE("responseRadioCapability: Invalid response");
6100 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6101 rc.logicalModemUuid = hidl_string();
6102 } else {
6103 convertRilRadioCapabilityToHal(response, responseLen, rc);
6104 }
6105}
6106
6107int radio::getRadioCapabilityResponse(int slotId,
6108 int responseType, int serial, RIL_Errno e,
6109 void *response, size_t responseLen) {
6110#if VDBG
6111 RLOGD("getRadioCapabilityResponse: serial %d", serial);
6112#endif
6113
6114 if (radioService[slotId]->mRadioResponse != NULL) {
6115 RadioResponseInfo responseInfo = {};
6116 RadioCapability result = {};
6117 responseRadioCapability(responseInfo, serial, responseType, e, response, responseLen,
6118 result);
6119 Return<void> retStatus = radioService[slotId]->mRadioResponse->getRadioCapabilityResponse(
6120 responseInfo, result);
6121 radioService[slotId]->checkReturnStatus(retStatus);
6122 } else {
6123 RLOGE("getRadioCapabilityResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6124 }
6125
6126 return 0;
6127}
6128
6129int radio::setRadioCapabilityResponse(int slotId,
6130 int responseType, int serial, RIL_Errno e,
6131 void *response, size_t responseLen) {
6132#if VDBG
6133 RLOGD("setRadioCapabilityResponse: serial %d", serial);
6134#endif
6135
6136 if (radioService[slotId]->mRadioResponse != NULL) {
6137 RadioResponseInfo responseInfo = {};
6138 RadioCapability result = {};
6139 responseRadioCapability(responseInfo, serial, responseType, e, response, responseLen,
6140 result);
6141 Return<void> retStatus = radioService[slotId]->mRadioResponse->setRadioCapabilityResponse(
6142 responseInfo, result);
6143 radioService[slotId]->checkReturnStatus(retStatus);
6144 } else {
6145 RLOGE("setRadioCapabilityResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6146 }
6147
6148 return 0;
6149}
6150
6151LceStatusInfo responseLceStatusInfo(RadioResponseInfo& responseInfo, int serial, int responseType,
6152 RIL_Errno e, void *response, size_t responseLen) {
6153 populateResponseInfo(responseInfo, serial, responseType, e);
6154 LceStatusInfo result = {};
6155
6156 if (response == NULL || responseLen != sizeof(RIL_LceStatusInfo)) {
6157 RLOGE("Invalid response: NULL");
6158 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6159 } else {
6160 RIL_LceStatusInfo *resp = (RIL_LceStatusInfo *) response;
6161 result.lceStatus = (LceStatus) resp->lce_status;
6162 result.actualIntervalMs = (uint8_t) resp->actual_interval_ms;
6163 }
6164 return result;
6165}
6166
6167int radio::startLceServiceResponse(int slotId,
6168 int responseType, int serial, RIL_Errno e,
6169 void *response, size_t responseLen) {
6170#if VDBG
6171 RLOGD("startLceServiceResponse: serial %d", serial);
6172#endif
6173
6174 if (radioService[slotId]->mRadioResponse != NULL) {
6175 RadioResponseInfo responseInfo = {};
6176 LceStatusInfo result = responseLceStatusInfo(responseInfo, serial, responseType, e,
6177 response, responseLen);
6178
6179 Return<void> retStatus
6180 = radioService[slotId]->mRadioResponse->startLceServiceResponse(responseInfo,
6181 result);
6182 radioService[slotId]->checkReturnStatus(retStatus);
6183 } else {
6184 RLOGE("startLceServiceResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6185 }
6186
6187 return 0;
6188}
6189
6190int radio::stopLceServiceResponse(int slotId,
6191 int responseType, int serial, RIL_Errno e,
6192 void *response, size_t responseLen) {
6193#if VDBG
6194 RLOGD("stopLceServiceResponse: serial %d", serial);
6195#endif
6196
6197 if (radioService[slotId]->mRadioResponse != NULL) {
6198 RadioResponseInfo responseInfo = {};
6199 LceStatusInfo result = responseLceStatusInfo(responseInfo, serial, responseType, e,
6200 response, responseLen);
6201
6202 Return<void> retStatus
6203 = radioService[slotId]->mRadioResponse->stopLceServiceResponse(responseInfo,
6204 result);
6205 radioService[slotId]->checkReturnStatus(retStatus);
6206 } else {
6207 RLOGE("stopLceServiceResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6208 }
6209
6210 return 0;
6211}
6212
6213int radio::pullLceDataResponse(int slotId,
6214 int responseType, int serial, RIL_Errno e,
6215 void *response, size_t responseLen) {
6216#if VDBG
6217 RLOGD("pullLceDataResponse: serial %d", serial);
6218#endif
6219
6220 if (radioService[slotId]->mRadioResponse != NULL) {
6221 RadioResponseInfo responseInfo = {};
6222 populateResponseInfo(responseInfo, serial, responseType, e);
6223
6224 LceDataInfo result = {};
6225 if (response == NULL || responseLen != sizeof(RIL_LceDataInfo)) {
6226 RLOGE("pullLceDataResponse: Invalid response");
6227 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6228 } else {
6229 convertRilLceDataInfoToHal(response, responseLen, result);
6230 }
6231
6232 Return<void> retStatus = radioService[slotId]->mRadioResponse->pullLceDataResponse(
6233 responseInfo, result);
6234 radioService[slotId]->checkReturnStatus(retStatus);
6235 } else {
6236 RLOGE("pullLceDataResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6237 }
6238
6239 return 0;
6240}
6241
6242int radio::getModemActivityInfoResponse(int slotId,
6243 int responseType, int serial, RIL_Errno e,
6244 void *response, size_t responseLen) {
6245#if VDBG
6246 RLOGD("getModemActivityInfoResponse: serial %d", serial);
6247#endif
6248
6249 if (radioService[slotId]->mRadioResponse != NULL) {
6250 RadioResponseInfo responseInfo = {};
6251 populateResponseInfo(responseInfo, serial, responseType, e);
6252 ActivityStatsInfo info;
6253 if (response == NULL || responseLen != sizeof(RIL_ActivityStatsInfo)) {
6254 RLOGE("getModemActivityInfoResponse Invalid response: NULL");
6255 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6256 } else {
6257 RIL_ActivityStatsInfo *resp = (RIL_ActivityStatsInfo *)response;
6258 info.sleepModeTimeMs = resp->sleep_mode_time_ms;
6259 info.idleModeTimeMs = resp->idle_mode_time_ms;
6260 for(int i = 0; i < RIL_NUM_TX_POWER_LEVELS; i++) {
6261 info.txmModetimeMs[i] = resp->tx_mode_time_ms[i];
6262 }
6263 info.rxModeTimeMs = resp->rx_mode_time_ms;
6264 }
6265
6266 Return<void> retStatus
6267 = radioService[slotId]->mRadioResponse->getModemActivityInfoResponse(responseInfo,
6268 info);
6269 radioService[slotId]->checkReturnStatus(retStatus);
6270 } else {
6271 RLOGE("getModemActivityInfoResponse: radioService[%d]->mRadioResponse == NULL",
6272 slotId);
6273 }
6274
6275 return 0;
6276}
6277
6278int radio::setAllowedCarriersResponse(int slotId,
6279 int responseType, int serial, RIL_Errno e,
6280 void *response, size_t responseLen) {
6281#if VDBG
6282 RLOGD("setAllowedCarriersResponse: serial %d", serial);
6283#endif
6284
6285 if (radioService[slotId]->mRadioResponse != NULL) {
6286 RadioResponseInfo responseInfo = {};
6287 int ret = responseInt(responseInfo, serial, responseType, e, response, responseLen);
6288 Return<void> retStatus
6289 = radioService[slotId]->mRadioResponse->setAllowedCarriersResponse(responseInfo,
6290 ret);
6291 radioService[slotId]->checkReturnStatus(retStatus);
6292 } else {
6293 RLOGE("setAllowedCarriersResponse: radioService[%d]->mRadioResponse == NULL",
6294 slotId);
6295 }
6296
6297 return 0;
6298}
6299
6300int radio::getAllowedCarriersResponse(int slotId,
6301 int responseType, int serial, RIL_Errno e,
6302 void *response, size_t responseLen) {
6303#if VDBG
6304 RLOGD("getAllowedCarriersResponse: serial %d", serial);
6305#endif
6306
6307 if (radioService[slotId]->mRadioResponse != NULL) {
6308 RadioResponseInfo responseInfo = {};
6309 populateResponseInfo(responseInfo, serial, responseType, e);
6310 CarrierRestrictions carrierInfo = {};
6311 bool allAllowed = true;
6312 if (response == NULL) {
6313#if VDBG
6314 RLOGD("getAllowedCarriersResponse response is NULL: all allowed");
6315#endif
6316 carrierInfo.allowedCarriers.resize(0);
6317 carrierInfo.excludedCarriers.resize(0);
6318 } else if (responseLen != sizeof(RIL_CarrierRestrictions)) {
6319 RLOGE("getAllowedCarriersResponse Invalid response");
6320 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6321 } else {
6322 RIL_CarrierRestrictions *pCr = (RIL_CarrierRestrictions *)response;
6323 if (pCr->len_allowed_carriers > 0 || pCr->len_excluded_carriers > 0) {
6324 allAllowed = false;
6325 }
6326
6327 carrierInfo.allowedCarriers.resize(pCr->len_allowed_carriers);
6328 for(int i = 0; i < pCr->len_allowed_carriers; i++) {
6329 RIL_Carrier *carrier = pCr->allowed_carriers + i;
6330 carrierInfo.allowedCarriers[i].mcc = convertCharPtrToHidlString(carrier->mcc);
6331 carrierInfo.allowedCarriers[i].mnc = convertCharPtrToHidlString(carrier->mnc);
6332 carrierInfo.allowedCarriers[i].matchType = (CarrierMatchType) carrier->match_type;
6333 carrierInfo.allowedCarriers[i].matchData =
6334 convertCharPtrToHidlString(carrier->match_data);
6335 }
6336
6337 carrierInfo.excludedCarriers.resize(pCr->len_excluded_carriers);
6338 for(int i = 0; i < pCr->len_excluded_carriers; i++) {
6339 RIL_Carrier *carrier = pCr->excluded_carriers + i;
6340 carrierInfo.excludedCarriers[i].mcc = convertCharPtrToHidlString(carrier->mcc);
6341 carrierInfo.excludedCarriers[i].mnc = convertCharPtrToHidlString(carrier->mnc);
6342 carrierInfo.excludedCarriers[i].matchType = (CarrierMatchType) carrier->match_type;
6343 carrierInfo.excludedCarriers[i].matchData =
6344 convertCharPtrToHidlString(carrier->match_data);
6345 }
6346 }
6347
6348 Return<void> retStatus
6349 = radioService[slotId]->mRadioResponse->getAllowedCarriersResponse(responseInfo,
6350 allAllowed, carrierInfo);
6351 radioService[slotId]->checkReturnStatus(retStatus);
6352 } else {
6353 RLOGE("getAllowedCarriersResponse: radioService[%d]->mRadioResponse == NULL",
6354 slotId);
6355 }
6356
6357 return 0;
6358}
6359
6360int radio::sendDeviceStateResponse(int slotId,
6361 int responseType, int serial, RIL_Errno e,
6362 void *response, size_t responselen) {
6363#if VDBG
6364 RLOGD("sendDeviceStateResponse: serial %d", serial);
6365#endif
6366
6367 if (radioService[slotId]->mRadioResponse != NULL) {
6368 RadioResponseInfo responseInfo = {};
6369 populateResponseInfo(responseInfo, serial, responseType, e);
6370 Return<void> retStatus
6371 = radioService[slotId]->mRadioResponse->sendDeviceStateResponse(responseInfo);
6372 radioService[slotId]->checkReturnStatus(retStatus);
6373 } else {
6374 RLOGE("sendDeviceStateResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6375 }
6376
6377 return 0;
6378}
6379
6380int radio::setIndicationFilterResponse(int slotId,
6381 int responseType, int serial, RIL_Errno e,
6382 void *response, size_t responselen) {
6383#if VDBG
6384 RLOGD("setIndicationFilterResponse: serial %d", serial);
6385#endif
6386
6387 if (radioService[slotId]->mRadioResponse != NULL) {
6388 RadioResponseInfo responseInfo = {};
6389 populateResponseInfo(responseInfo, serial, responseType, e);
6390 Return<void> retStatus
6391 = radioService[slotId]->mRadioResponse->setIndicationFilterResponse(responseInfo);
6392 radioService[slotId]->checkReturnStatus(retStatus);
6393 } else {
6394 RLOGE("setIndicationFilterResponse: radioService[%d]->mRadioResponse == NULL",
6395 slotId);
6396 }
6397
6398 return 0;
6399}
6400
6401
6402int radio::setSimCardPowerResponse(int slotId,
6403 int responseType, int serial, RIL_Errno e,
6404 void *response, size_t responseLen) {
6405#if VDBG
6406 RLOGD("setSimCardPowerResponse: serial %d", serial);
6407#endif
6408
6409 if (radioService[slotId]->mRadioResponse != NULL) {
6410 RadioResponseInfo responseInfo = {};
6411 populateResponseInfo(responseInfo, serial, responseType, e);
6412 Return<void> retStatus
6413 = radioService[slotId]->mRadioResponse->setSimCardPowerResponse(responseInfo);
6414 radioService[slotId]->checkReturnStatus(retStatus);
6415 } else {
6416 RLOGE("setSimCardPowerResponse: radioService[%d]->mRadioResponse == NULL", slotId);
6417 }
6418
6419 return 0;
6420}
6421
6422int radio::sendRequestRawResponse(int slotId,
6423 int responseType, int serial, RIL_Errno e,
6424 void *response, size_t responseLen) {
6425#if VDBG
6426 RLOGD("sendRequestRawResponse: serial %d", serial);
6427#endif
6428
6429 if (oemHookService[slotId]->mOemHookResponse != NULL) {
6430 RadioResponseInfo responseInfo = {};
6431 populateResponseInfo(responseInfo, serial, responseType, e);
6432 hidl_vec<uint8_t> data;
6433
6434 if (response == NULL) {
6435 RLOGE("sendRequestRawResponse: Invalid response");
6436 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6437 } else {
6438 data.setToExternal((uint8_t *) response, responseLen);
6439 }
6440 Return<void> retStatus = oemHookService[slotId]->mOemHookResponse->
6441 sendRequestRawResponse(responseInfo, data);
6442 checkReturnStatus(slotId, retStatus, false);
6443 } else {
6444 RLOGE("sendRequestRawResponse: oemHookService[%d]->mOemHookResponse == NULL",
6445 slotId);
6446 }
6447
6448 return 0;
6449}
6450
6451int radio::sendRequestStringsResponse(int slotId,
6452 int responseType, int serial, RIL_Errno e,
6453 void *response, size_t responseLen) {
6454#if VDBG
6455 RLOGD("sendRequestStringsResponse: serial %d", serial);
6456#endif
6457
6458 if (oemHookService[slotId]->mOemHookResponse != NULL) {
6459 RadioResponseInfo responseInfo = {};
6460 populateResponseInfo(responseInfo, serial, responseType, e);
6461 hidl_vec<hidl_string> data;
6462
6463 if ((response == NULL && responseLen != 0) || responseLen % sizeof(char *) != 0) {
6464 RLOGE("sendRequestStringsResponse Invalid response: NULL");
6465 if (e == RIL_E_SUCCESS) responseInfo.error = RadioError::INVALID_RESPONSE;
6466 } else {
6467 char **resp = (char **) response;
6468 int numStrings = responseLen / sizeof(char *);
6469 data.resize(numStrings);
6470 for (int i = 0; i < numStrings; i++) {
6471 data[i] = convertCharPtrToHidlString(resp[i]);
6472 }
6473 }
6474 Return<void> retStatus
6475 = oemHookService[slotId]->mOemHookResponse->sendRequestStringsResponse(
6476 responseInfo, data);
6477 checkReturnStatus(slotId, retStatus, false);
6478 } else {
6479 RLOGE("sendRequestStringsResponse: oemHookService[%d]->mOemHookResponse == "
6480 "NULL", slotId);
6481 }
6482
6483 return 0;
6484}
6485
6486// Radio Indication functions
6487
6488RadioIndicationType convertIntToRadioIndicationType(int indicationType) {
6489 return indicationType == RESPONSE_UNSOLICITED ? (RadioIndicationType::UNSOLICITED) :
6490 (RadioIndicationType::UNSOLICITED_ACK_EXP);
6491}
6492
6493int radio::radioStateChangedInd(int slotId,
6494 int indicationType, int token, RIL_Errno e, void *response,
6495 size_t responseLen) {
6496 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6497 RadioState radioState =
6498 (RadioState) CALL_ONSTATEREQUEST(slotId);
6499 RLOGD("radioStateChangedInd: radioState %d", radioState);
6500 Return<void> retStatus = radioService[slotId]->mRadioIndication->radioStateChanged(
6501 convertIntToRadioIndicationType(indicationType), radioState);
6502 radioService[slotId]->checkReturnStatus(retStatus);
6503 } else {
6504 RLOGE("radioStateChangedInd: radioService[%d]->mRadioIndication == NULL", slotId);
6505 }
6506
6507 return 0;
6508}
6509
6510int radio::callStateChangedInd(int slotId,
6511 int indicationType, int token, RIL_Errno e, void *response,
6512 size_t responseLen) {
6513 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6514#if VDBG
6515 RLOGD("callStateChangedInd");
6516#endif
6517 Return<void> retStatus = radioService[slotId]->mRadioIndication->callStateChanged(
6518 convertIntToRadioIndicationType(indicationType));
6519 radioService[slotId]->checkReturnStatus(retStatus);
6520 } else {
6521 RLOGE("callStateChangedInd: radioService[%d]->mRadioIndication == NULL", slotId);
6522 }
6523
6524 return 0;
6525}
6526
6527int radio::networkStateChangedInd(int slotId,
6528 int indicationType, int token, RIL_Errno e, void *response,
6529 size_t responseLen) {
6530 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6531#if VDBG
6532 RLOGD("networkStateChangedInd");
6533#endif
6534 Return<void> retStatus = radioService[slotId]->mRadioIndication->networkStateChanged(
6535 convertIntToRadioIndicationType(indicationType));
6536 radioService[slotId]->checkReturnStatus(retStatus);
6537 } else {
6538 RLOGE("networkStateChangedInd: radioService[%d]->mRadioIndication == NULL",
6539 slotId);
6540 }
6541
6542 return 0;
6543}
6544
6545uint8_t hexCharToInt(uint8_t c) {
6546 if (c >= '0' && c <= '9') return (c - '0');
6547 if (c >= 'A' && c <= 'F') return (c - 'A' + 10);
6548 if (c >= 'a' && c <= 'f') return (c - 'a' + 10);
6549
6550 return INVALID_HEX_CHAR;
6551}
6552
6553uint8_t * convertHexStringToBytes(void *response, size_t responseLen) {
6554 if (responseLen % 2 != 0) {
6555 return NULL;
6556 }
6557
6558 uint8_t *bytes = (uint8_t *)calloc(responseLen/2, sizeof(uint8_t));
6559 if (bytes == NULL) {
6560 RLOGE("convertHexStringToBytes: cannot allocate memory for bytes string");
6561 return NULL;
6562 }
6563 uint8_t *hexString = (uint8_t *)response;
6564
6565 for (size_t i = 0; i < responseLen; i += 2) {
6566 uint8_t hexChar1 = hexCharToInt(hexString[i]);
6567 uint8_t hexChar2 = hexCharToInt(hexString[i + 1]);
6568
6569 if (hexChar1 == INVALID_HEX_CHAR || hexChar2 == INVALID_HEX_CHAR) {
6570 RLOGE("convertHexStringToBytes: invalid hex char %d %d",
6571 hexString[i], hexString[i + 1]);
6572 free(bytes);
6573 return NULL;
6574 }
6575 bytes[i/2] = ((hexChar1 << 4) | hexChar2);
6576 }
6577
6578 return bytes;
6579}
6580
6581int radio::newSmsInd(int slotId, int indicationType,
6582 int token, RIL_Errno e, void *response, size_t responseLen) {
6583 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6584 if (response == NULL || responseLen == 0) {
6585 RLOGE("newSmsInd: invalid response");
6586 return 0;
6587 }
6588
6589 uint8_t *bytes = convertHexStringToBytes(response, responseLen);
6590 if (bytes == NULL) {
6591 RLOGE("newSmsInd: convertHexStringToBytes failed");
6592 return 0;
6593 }
6594
6595 hidl_vec<uint8_t> pdu;
6596 pdu.setToExternal(bytes, responseLen/2);
6597#if VDBG
6598 RLOGD("newSmsInd");
6599#endif
6600 Return<void> retStatus = radioService[slotId]->mRadioIndication->newSms(
6601 convertIntToRadioIndicationType(indicationType), pdu);
6602 radioService[slotId]->checkReturnStatus(retStatus);
6603 free(bytes);
6604 } else {
6605 RLOGE("newSmsInd: radioService[%d]->mRadioIndication == NULL", slotId);
6606 }
6607
6608 return 0;
6609}
6610
6611int radio::newSmsStatusReportInd(int slotId,
6612 int indicationType, int token, RIL_Errno e, void *response,
6613 size_t responseLen) {
6614 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6615 if (response == NULL || responseLen == 0) {
6616 RLOGE("newSmsStatusReportInd: invalid response");
6617 return 0;
6618 }
6619
6620 uint8_t *bytes = convertHexStringToBytes(response, responseLen);
6621 if (bytes == NULL) {
6622 RLOGE("newSmsStatusReportInd: convertHexStringToBytes failed");
6623 return 0;
6624 }
6625
6626 hidl_vec<uint8_t> pdu;
6627 pdu.setToExternal(bytes, responseLen/2);
6628#if VDBG
6629 RLOGD("newSmsStatusReportInd");
6630#endif
6631 Return<void> retStatus = radioService[slotId]->mRadioIndication->newSmsStatusReport(
6632 convertIntToRadioIndicationType(indicationType), pdu);
6633 radioService[slotId]->checkReturnStatus(retStatus);
6634 free(bytes);
6635 } else {
6636 RLOGE("newSmsStatusReportInd: radioService[%d]->mRadioIndication == NULL", slotId);
6637 }
6638
6639 return 0;
6640}
6641
6642int radio::newSmsOnSimInd(int slotId, int indicationType,
6643 int token, RIL_Errno e, void *response, size_t responseLen) {
6644 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01006645 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006646 RLOGE("newSmsOnSimInd: invalid response");
6647 return 0;
6648 }
6649 int32_t recordNumber = ((int32_t *) response)[0];
6650#if VDBG
6651 RLOGD("newSmsOnSimInd: slotIndex %d", recordNumber);
6652#endif
6653 Return<void> retStatus = radioService[slotId]->mRadioIndication->newSmsOnSim(
6654 convertIntToRadioIndicationType(indicationType), recordNumber);
6655 radioService[slotId]->checkReturnStatus(retStatus);
6656 } else {
6657 RLOGE("newSmsOnSimInd: radioService[%d]->mRadioIndication == NULL", slotId);
6658 }
6659
6660 return 0;
6661}
6662
6663int radio::onUssdInd(int slotId, int indicationType,
6664 int token, RIL_Errno e, void *response, size_t responseLen) {
6665 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01006666 if (response == NULL || responseLen < 2 * sizeof(char *)) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006667 RLOGE("onUssdInd: invalid response");
6668 return 0;
6669 }
6670 char **strings = (char **) response;
6671 char *mode = strings[0];
6672 hidl_string msg = convertCharPtrToHidlString(strings[1]);
6673 UssdModeType modeType = (UssdModeType) atoi(mode);
6674#if VDBG
6675 RLOGD("onUssdInd: mode %s", mode);
6676#endif
6677 Return<void> retStatus = radioService[slotId]->mRadioIndication->onUssd(
6678 convertIntToRadioIndicationType(indicationType), modeType, msg);
6679 radioService[slotId]->checkReturnStatus(retStatus);
6680 } else {
6681 RLOGE("onUssdInd: radioService[%d]->mRadioIndication == NULL", slotId);
6682 }
6683
6684 return 0;
6685}
6686
6687int radio::nitzTimeReceivedInd(int slotId,
6688 int indicationType, int token, RIL_Errno e, void *response,
6689 size_t responseLen) {
6690 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
6691 if (response == NULL || responseLen == 0) {
6692 RLOGE("nitzTimeReceivedInd: invalid response");
6693 return 0;
6694 }
Paul Keith63d0da82017-10-22 05:25:25 +02006695 hidl_string nitzTime;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006696 int64_t timeReceived = android::elapsedRealtime();
Paul Keith63d0da82017-10-22 05:25:25 +02006697 char *resp = strndup((char *) response, responseLen);
6698 char *tmp = resp;
6699
6700 /* Find the 3rd comma */
6701 for (int i = 0; i < 3; i++) {
6702 if (tmp != NULL) {
6703 tmp = strchr(tmp + 1, ',');
6704 }
6705 }
6706
6707 /* Make the 3rd comma the end of the string */
6708 if (tmp != NULL) {
6709 *tmp = '\0';
6710 }
6711
6712 nitzTime = convertCharPtrToHidlString(resp);
6713 free(resp);
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006714#if VDBG
6715 RLOGD("nitzTimeReceivedInd: nitzTime %s receivedTime %" PRId64, nitzTime.c_str(),
6716 timeReceived);
6717#endif
6718 Return<void> retStatus = radioService[slotId]->mRadioIndication->nitzTimeReceived(
6719 convertIntToRadioIndicationType(indicationType), nitzTime, timeReceived);
6720 radioService[slotId]->checkReturnStatus(retStatus);
6721 } else {
6722 RLOGE("nitzTimeReceivedInd: radioService[%d]->mRadioIndication == NULL", slotId);
6723 return -1;
6724 }
6725
6726 return 0;
6727}
6728
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006729void convertRilSignalStrengthToHalV5(void *response, size_t responseLen,
6730 SignalStrength& signalStrength) {
6731 RIL_SignalStrength_v5 *rilSignalStrength = (RIL_SignalStrength_v5 *) response;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006732 int gsmSignalStrength;
6733 int cdmaDbm;
6734 int evdoDbm;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006735
Martin Bouchetdb968d42017-09-23 05:23:52 -03006736 gsmSignalStrength = rilSignalStrength->GW_SignalStrength.signalStrength & 0xFF;
6737
6738#ifdef MODEM_TYPE_XMM6260
6739 if (gsmSignalStrength < 0 ||
6740 (gsmSignalStrength > 31 && rilSignalStrength->GW_SignalStrength.signalStrength != 99)) {
6741 gsmSignalStrength = rilSignalStrength->CDMA_SignalStrength.dbm;
6742 }
6743#else
6744 if (gsmSignalStrength < 0) {
6745 gsmSignalStrength = 99;
6746 } else if (gsmSignalStrength > 31 && gsmSignalStrength != 99) {
6747 gsmSignalStrength = 31;
6748 }
6749#endif
6750
6751#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6752 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm & 0xFF;
6753 if (cdmaDbm < 0) {
6754 cdmaDbm = 99;
6755 } else if (cdmaDbm > 31 && cdmaDbm != 99) {
6756 cdmaDbm = 31;
6757 }
6758#else
6759 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm;
6760#endif
6761
6762#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6763 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm & 0xFF;
6764 if (evdoDbm < 0) {
6765 evdoDbm = 99;
6766 } else if (evdoDbm > 31 && evdoDbm != 99) {
6767 evdoDbm = 31;
6768 }
6769#else
6770 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm;
6771#endif
6772
6773 signalStrength.gw.signalStrength = gsmSignalStrength;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006774 signalStrength.gw.bitErrorRate = rilSignalStrength->GW_SignalStrength.bitErrorRate;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006775 signalStrength.cdma.dbm = cdmaDbm;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006776 signalStrength.cdma.ecio = rilSignalStrength->CDMA_SignalStrength.ecio;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006777 signalStrength.evdo.dbm = evdoDbm;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006778 signalStrength.evdo.ecio = rilSignalStrength->EVDO_SignalStrength.ecio;
6779 signalStrength.evdo.signalNoiseRatio =
6780 rilSignalStrength->EVDO_SignalStrength.signalNoiseRatio;
6781 signalStrength.lte.signalStrength = 99;
6782 signalStrength.lte.rsrp = INT_MAX;
6783 signalStrength.lte.rsrq = INT_MAX;
6784 signalStrength.lte.rssnr = INT_MAX;
6785 signalStrength.lte.cqi = INT_MAX;
6786 signalStrength.lte.timingAdvance = INT_MAX;
6787 signalStrength.tdScdma.rscp = INT_MAX;
6788}
6789
6790void convertRilSignalStrengthToHalV6(void *response, size_t responseLen,
6791 SignalStrength& signalStrength) {
6792 RIL_SignalStrength_v6 *rilSignalStrength = (RIL_SignalStrength_v6 *) response;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006793 int gsmSignalStrength;
6794 int cdmaDbm;
6795 int evdoDbm;
6796
6797 gsmSignalStrength = rilSignalStrength->GW_SignalStrength.signalStrength & 0xFF;
6798
6799#ifdef MODEM_TYPE_XMM6260
6800 if (gsmSignalStrength < 0 ||
6801 (gsmSignalStrength > 31 && rilSignalStrength->GW_SignalStrength.signalStrength != 99)) {
6802 gsmSignalStrength = rilSignalStrength->CDMA_SignalStrength.dbm;
6803 }
6804#else
6805 if (gsmSignalStrength < 0) {
6806 gsmSignalStrength = 99;
6807 } else if (gsmSignalStrength > 31 && gsmSignalStrength != 99) {
6808 gsmSignalStrength = 31;
6809 }
6810#endif
6811
6812#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6813 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm & 0xFF;
6814 if (cdmaDbm < 0) {
6815 cdmaDbm = 99;
6816 } else if (cdmaDbm > 31 && cdmaDbm != 99) {
6817 cdmaDbm = 31;
6818 }
6819#else
6820 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm;
6821#endif
6822
6823#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6824 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm & 0xFF;
6825 if (evdoDbm < 0) {
6826 evdoDbm = 99;
6827 } else if (evdoDbm > 31 && evdoDbm != 99) {
6828 evdoDbm = 31;
6829 }
6830#else
6831 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm;
6832#endif
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006833
6834 // Fixup LTE for backwards compatibility
6835 // signalStrength: -1 -> 99
6836 if (rilSignalStrength->LTE_SignalStrength.signalStrength == -1) {
6837 rilSignalStrength->LTE_SignalStrength.signalStrength = 99;
6838 }
6839 // rsrp: -1 -> INT_MAX all other negative value to positive.
6840 // So remap here
6841 if (rilSignalStrength->LTE_SignalStrength.rsrp == -1) {
6842 rilSignalStrength->LTE_SignalStrength.rsrp = INT_MAX;
6843 } else if (rilSignalStrength->LTE_SignalStrength.rsrp < -1) {
6844 rilSignalStrength->LTE_SignalStrength.rsrp = -rilSignalStrength->LTE_SignalStrength.rsrp;
6845 }
6846 // rsrq: -1 -> INT_MAX
6847 if (rilSignalStrength->LTE_SignalStrength.rsrq == -1) {
6848 rilSignalStrength->LTE_SignalStrength.rsrq = INT_MAX;
6849 }
6850 // Not remapping rssnr is already using INT_MAX
6851 // cqi: -1 -> INT_MAX
6852 if (rilSignalStrength->LTE_SignalStrength.cqi == -1) {
6853 rilSignalStrength->LTE_SignalStrength.cqi = INT_MAX;
6854 }
6855
Martin Bouchetdb968d42017-09-23 05:23:52 -03006856 signalStrength.gw.signalStrength = gsmSignalStrength;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006857 signalStrength.gw.bitErrorRate = rilSignalStrength->GW_SignalStrength.bitErrorRate;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006858 signalStrength.cdma.dbm = cdmaDbm;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006859 signalStrength.cdma.ecio = rilSignalStrength->CDMA_SignalStrength.ecio;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006860 signalStrength.evdo.dbm = evdoDbm;
Martin Bouchet6e9a4972017-09-23 04:55:52 -03006861 signalStrength.evdo.ecio = rilSignalStrength->EVDO_SignalStrength.ecio;
6862 signalStrength.evdo.signalNoiseRatio =
6863 rilSignalStrength->EVDO_SignalStrength.signalNoiseRatio;
6864 signalStrength.lte.signalStrength = rilSignalStrength->LTE_SignalStrength.signalStrength;
6865 signalStrength.lte.rsrp = rilSignalStrength->LTE_SignalStrength.rsrp;
6866 signalStrength.lte.rsrq = rilSignalStrength->LTE_SignalStrength.rsrq;
6867 signalStrength.lte.rssnr = rilSignalStrength->LTE_SignalStrength.rssnr;
6868 signalStrength.lte.cqi = rilSignalStrength->LTE_SignalStrength.cqi;
6869 signalStrength.lte.timingAdvance = INT_MAX;
6870 signalStrength.tdScdma.rscp = INT_MAX;
6871}
6872
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006873void convertRilSignalStrengthToHalV8(void *response, size_t responseLen,
6874 SignalStrength& signalStrength) {
6875 RIL_SignalStrength_v8 *rilSignalStrength = (RIL_SignalStrength_v8 *) response;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006876 int gsmSignalStrength;
6877 int cdmaDbm;
6878 int evdoDbm;
6879
6880 gsmSignalStrength = rilSignalStrength->GW_SignalStrength.signalStrength & 0xFF;
6881
6882#ifdef MODEM_TYPE_XMM6260
6883 if (gsmSignalStrength < 0 ||
6884 (gsmSignalStrength > 31 && rilSignalStrength->GW_SignalStrength.signalStrength != 99)) {
6885 gsmSignalStrength = rilSignalStrength->CDMA_SignalStrength.dbm;
6886 }
6887#else
6888 if (gsmSignalStrength < 0) {
6889 gsmSignalStrength = 99;
6890 } else if (gsmSignalStrength > 31 && gsmSignalStrength != 99) {
6891 gsmSignalStrength = 31;
6892 }
6893#endif
6894
6895#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6896 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm & 0xFF;
6897 if (cdmaDbm < 0) {
6898 cdmaDbm = 99;
6899 } else if (cdmaDbm > 31 && cdmaDbm != 99) {
6900 cdmaDbm = 31;
6901 }
6902#else
6903 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm;
6904#endif
6905
6906#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6907 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm & 0xFF;
6908 if (evdoDbm < 0) {
6909 evdoDbm = 99;
6910 } else if (evdoDbm > 31 && evdoDbm != 99) {
6911 evdoDbm = 31;
6912 }
6913#else
6914 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm;
6915#endif
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006916
6917 // Fixup LTE for backwards compatibility
6918 // signalStrength: -1 -> 99
6919 if (rilSignalStrength->LTE_SignalStrength.signalStrength == -1) {
6920 rilSignalStrength->LTE_SignalStrength.signalStrength = 99;
6921 }
6922 // rsrp: -1 -> INT_MAX all other negative value to positive.
6923 // So remap here
6924 if (rilSignalStrength->LTE_SignalStrength.rsrp == -1) {
6925 rilSignalStrength->LTE_SignalStrength.rsrp = INT_MAX;
6926 } else if (rilSignalStrength->LTE_SignalStrength.rsrp < -1) {
6927 rilSignalStrength->LTE_SignalStrength.rsrp = -rilSignalStrength->LTE_SignalStrength.rsrp;
6928 }
6929 // rsrq: -1 -> INT_MAX
6930 if (rilSignalStrength->LTE_SignalStrength.rsrq == -1) {
6931 rilSignalStrength->LTE_SignalStrength.rsrq = INT_MAX;
6932 }
6933 // Not remapping rssnr is already using INT_MAX
6934 // cqi: -1 -> INT_MAX
6935 if (rilSignalStrength->LTE_SignalStrength.cqi == -1) {
6936 rilSignalStrength->LTE_SignalStrength.cqi = INT_MAX;
6937 }
6938
Martin Bouchetdb968d42017-09-23 05:23:52 -03006939 signalStrength.gw.signalStrength = gsmSignalStrength;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006940 signalStrength.gw.bitErrorRate = rilSignalStrength->GW_SignalStrength.bitErrorRate;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006941 signalStrength.cdma.dbm = cdmaDbm;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006942 signalStrength.cdma.ecio = rilSignalStrength->CDMA_SignalStrength.ecio;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006943 signalStrength.evdo.dbm = evdoDbm;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006944 signalStrength.evdo.ecio = rilSignalStrength->EVDO_SignalStrength.ecio;
6945 signalStrength.evdo.signalNoiseRatio =
6946 rilSignalStrength->EVDO_SignalStrength.signalNoiseRatio;
6947 signalStrength.lte.signalStrength = rilSignalStrength->LTE_SignalStrength.signalStrength;
6948 signalStrength.lte.rsrp = rilSignalStrength->LTE_SignalStrength.rsrp;
6949 signalStrength.lte.rsrq = rilSignalStrength->LTE_SignalStrength.rsrq;
6950 signalStrength.lte.rssnr = rilSignalStrength->LTE_SignalStrength.rssnr;
6951 signalStrength.lte.cqi = rilSignalStrength->LTE_SignalStrength.cqi;
6952 signalStrength.lte.timingAdvance = rilSignalStrength->LTE_SignalStrength.timingAdvance;
6953 signalStrength.tdScdma.rscp = INT_MAX;
6954}
6955
6956void convertRilSignalStrengthToHalV10(void *response, size_t responseLen,
6957 SignalStrength& signalStrength) {
6958 RIL_SignalStrength_v10 *rilSignalStrength = (RIL_SignalStrength_v10 *) response;
Martin Bouchetdb968d42017-09-23 05:23:52 -03006959 int gsmSignalStrength;
6960 int cdmaDbm;
6961 int evdoDbm;
6962
6963 gsmSignalStrength = rilSignalStrength->GW_SignalStrength.signalStrength & 0xFF;
6964
6965#ifdef MODEM_TYPE_XMM6260
6966 if (gsmSignalStrength < 0 ||
6967 (gsmSignalStrength > 31 && rilSignalStrength->GW_SignalStrength.signalStrength != 99)) {
6968 gsmSignalStrength = rilSignalStrength->CDMA_SignalStrength.dbm;
6969 }
6970#else
6971 if (gsmSignalStrength < 0) {
6972 gsmSignalStrength = 99;
6973 } else if (gsmSignalStrength > 31 && gsmSignalStrength != 99) {
6974 gsmSignalStrength = 31;
6975 }
6976#endif
6977
6978#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6979 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm & 0xFF;
6980 if (cdmaDbm < 0) {
6981 cdmaDbm = 99;
6982 } else if (cdmaDbm > 31 && cdmaDbm != 99) {
6983 cdmaDbm = 31;
6984 }
6985#else
6986 cdmaDbm = rilSignalStrength->CDMA_SignalStrength.dbm;
6987#endif
6988
6989#if defined(MODEM_TYPE_XMM6262) || defined(SAMSUNG_NEXT_GEN_MODEM)
6990 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm & 0xFF;
6991 if (evdoDbm < 0) {
6992 evdoDbm = 99;
6993 } else if (evdoDbm > 31 && evdoDbm != 99) {
6994 evdoDbm = 31;
6995 }
6996#else
6997 evdoDbm = rilSignalStrength->EVDO_SignalStrength.dbm;
6998#endif
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03006999
7000 // Fixup LTE for backwards compatibility
7001 // signalStrength: -1 -> 99
7002 if (rilSignalStrength->LTE_SignalStrength.signalStrength == -1) {
7003 rilSignalStrength->LTE_SignalStrength.signalStrength = 99;
7004 }
7005 // rsrp: -1 -> INT_MAX all other negative value to positive.
7006 // So remap here
7007 if (rilSignalStrength->LTE_SignalStrength.rsrp == -1) {
7008 rilSignalStrength->LTE_SignalStrength.rsrp = INT_MAX;
7009 } else if (rilSignalStrength->LTE_SignalStrength.rsrp < -1) {
7010 rilSignalStrength->LTE_SignalStrength.rsrp = -rilSignalStrength->LTE_SignalStrength.rsrp;
7011 }
7012 // rsrq: -1 -> INT_MAX
7013 if (rilSignalStrength->LTE_SignalStrength.rsrq == -1) {
7014 rilSignalStrength->LTE_SignalStrength.rsrq = INT_MAX;
7015 }
7016 // Not remapping rssnr is already using INT_MAX
7017 // cqi: -1 -> INT_MAX
7018 if (rilSignalStrength->LTE_SignalStrength.cqi == -1) {
7019 rilSignalStrength->LTE_SignalStrength.cqi = INT_MAX;
7020 }
7021
Martin Bouchetdb968d42017-09-23 05:23:52 -03007022 signalStrength.gw.signalStrength = gsmSignalStrength;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007023 signalStrength.gw.bitErrorRate = rilSignalStrength->GW_SignalStrength.bitErrorRate;
Martin Bouchetdb968d42017-09-23 05:23:52 -03007024 signalStrength.cdma.dbm = cdmaDbm;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007025 signalStrength.cdma.ecio = rilSignalStrength->CDMA_SignalStrength.ecio;
Martin Bouchetdb968d42017-09-23 05:23:52 -03007026 signalStrength.evdo.dbm = evdoDbm;
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007027 signalStrength.evdo.ecio = rilSignalStrength->EVDO_SignalStrength.ecio;
7028 signalStrength.evdo.signalNoiseRatio =
7029 rilSignalStrength->EVDO_SignalStrength.signalNoiseRatio;
7030 signalStrength.lte.signalStrength = rilSignalStrength->LTE_SignalStrength.signalStrength;
7031 signalStrength.lte.rsrp = rilSignalStrength->LTE_SignalStrength.rsrp;
7032 signalStrength.lte.rsrq = rilSignalStrength->LTE_SignalStrength.rsrq;
7033 signalStrength.lte.rssnr = rilSignalStrength->LTE_SignalStrength.rssnr;
7034 signalStrength.lte.cqi = rilSignalStrength->LTE_SignalStrength.cqi;
7035 signalStrength.lte.timingAdvance = rilSignalStrength->LTE_SignalStrength.timingAdvance;
7036 signalStrength.tdScdma.rscp = rilSignalStrength->TD_SCDMA_SignalStrength.rscp;
7037}
7038
7039void convertRilSignalStrengthToHal(void *response, size_t responseLen,
7040 SignalStrength& signalStrength) {
Martin Bouchet6e9a4972017-09-23 04:55:52 -03007041 if (responseLen == sizeof(RIL_SignalStrength_v5)) {
7042 convertRilSignalStrengthToHalV5(response, responseLen, signalStrength);
7043 } else if (responseLen == sizeof(RIL_SignalStrength_v6)) {
7044 convertRilSignalStrengthToHalV6(response, responseLen, signalStrength);
7045 } else if (responseLen == sizeof(RIL_SignalStrength_v8)) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007046 convertRilSignalStrengthToHalV8(response, responseLen, signalStrength);
7047 } else {
7048 convertRilSignalStrengthToHalV10(response, responseLen, signalStrength);
7049 }
7050}
7051
7052int radio::currentSignalStrengthInd(int slotId,
7053 int indicationType, int token, RIL_Errno e,
7054 void *response, size_t responseLen) {
7055 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7056 if (response == NULL || (responseLen != sizeof(RIL_SignalStrength_v10)
7057 && responseLen != sizeof(RIL_SignalStrength_v8))) {
7058 RLOGE("currentSignalStrengthInd: invalid response");
7059 return 0;
7060 }
7061
7062 SignalStrength signalStrength = {};
7063 convertRilSignalStrengthToHal(response, responseLen, signalStrength);
7064
7065#if VDBG
7066 RLOGD("currentSignalStrengthInd");
7067#endif
7068 Return<void> retStatus = radioService[slotId]->mRadioIndication->currentSignalStrength(
7069 convertIntToRadioIndicationType(indicationType), signalStrength);
7070 radioService[slotId]->checkReturnStatus(retStatus);
7071 } else {
7072 RLOGE("currentSignalStrengthInd: radioService[%d]->mRadioIndication == NULL",
7073 slotId);
7074 }
7075
7076 return 0;
7077}
7078
7079void convertRilDataCallToHal(RIL_Data_Call_Response_v6 *dcResponse,
7080 SetupDataCallResult& dcResult) {
7081 dcResult.status = (DataCallFailCause) dcResponse->status;
7082 dcResult.suggestedRetryTime = dcResponse->suggestedRetryTime;
7083 dcResult.cid = dcResponse->cid;
7084 dcResult.active = dcResponse->active;
7085 dcResult.type = convertCharPtrToHidlString(dcResponse->type);
7086 dcResult.ifname = convertCharPtrToHidlString(dcResponse->ifname);
7087 dcResult.addresses = convertCharPtrToHidlString(dcResponse->addresses);
7088 dcResult.dnses = convertCharPtrToHidlString(dcResponse->dnses);
Martin Bouchet00634442017-09-23 05:43:12 -03007089#if defined(MODEM_TYPE_XMM6262) || defined(MODEM_TYPE_XMM6260)
7090 dcResult.gateways = convertCharPtrToHidlString(dcResponse->addresses);
7091#else
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007092 dcResult.gateways = convertCharPtrToHidlString(dcResponse->gateways);
Martin Bouchet00634442017-09-23 05:43:12 -03007093#endif
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007094 dcResult.pcscf = hidl_string();
7095 dcResult.mtu = 0;
7096}
7097
7098void convertRilDataCallToHal(RIL_Data_Call_Response_v9 *dcResponse,
7099 SetupDataCallResult& dcResult) {
7100 dcResult.status = (DataCallFailCause) dcResponse->status;
7101 dcResult.suggestedRetryTime = dcResponse->suggestedRetryTime;
7102 dcResult.cid = dcResponse->cid;
7103 dcResult.active = dcResponse->active;
7104 dcResult.type = convertCharPtrToHidlString(dcResponse->type);
7105 dcResult.ifname = convertCharPtrToHidlString(dcResponse->ifname);
7106 dcResult.addresses = convertCharPtrToHidlString(dcResponse->addresses);
7107 dcResult.dnses = convertCharPtrToHidlString(dcResponse->dnses);
7108 dcResult.gateways = convertCharPtrToHidlString(dcResponse->gateways);
7109 dcResult.pcscf = convertCharPtrToHidlString(dcResponse->pcscf);
7110 dcResult.mtu = 0;
7111}
7112
7113void convertRilDataCallToHal(RIL_Data_Call_Response_v11 *dcResponse,
7114 SetupDataCallResult& dcResult) {
7115 dcResult.status = (DataCallFailCause) dcResponse->status;
7116 dcResult.suggestedRetryTime = dcResponse->suggestedRetryTime;
7117 dcResult.cid = dcResponse->cid;
7118 dcResult.active = dcResponse->active;
7119 dcResult.type = convertCharPtrToHidlString(dcResponse->type);
7120 dcResult.ifname = convertCharPtrToHidlString(dcResponse->ifname);
7121 dcResult.addresses = convertCharPtrToHidlString(dcResponse->addresses);
7122 dcResult.dnses = convertCharPtrToHidlString(dcResponse->dnses);
7123 dcResult.gateways = convertCharPtrToHidlString(dcResponse->gateways);
7124 dcResult.pcscf = convertCharPtrToHidlString(dcResponse->pcscf);
7125 dcResult.mtu = dcResponse->mtu;
7126}
7127
7128void convertRilDataCallListToHal(void *response, size_t responseLen,
7129 hidl_vec<SetupDataCallResult>& dcResultList) {
7130 int num;
7131
7132 if ((responseLen % sizeof(RIL_Data_Call_Response_v11)) == 0) {
7133 num = responseLen / sizeof(RIL_Data_Call_Response_v11);
7134 RIL_Data_Call_Response_v11 *dcResponse = (RIL_Data_Call_Response_v11 *) response;
7135 dcResultList.resize(num);
7136 for (int i = 0; i < num; i++) {
7137 convertRilDataCallToHal(&dcResponse[i], dcResultList[i]);
7138 }
7139 } else if ((responseLen % sizeof(RIL_Data_Call_Response_v9)) == 0) {
7140 num = responseLen / sizeof(RIL_Data_Call_Response_v9);
7141 RIL_Data_Call_Response_v9 *dcResponse = (RIL_Data_Call_Response_v9 *) response;
7142 dcResultList.resize(num);
7143 for (int i = 0; i < num; i++) {
7144 convertRilDataCallToHal(&dcResponse[i], dcResultList[i]);
7145 }
7146 } else if ((responseLen % sizeof(RIL_Data_Call_Response_v6)) == 0) {
7147 num = responseLen / sizeof(RIL_Data_Call_Response_v6);
7148 RIL_Data_Call_Response_v6 *dcResponse = (RIL_Data_Call_Response_v6 *) response;
7149 dcResultList.resize(num);
7150 for (int i = 0; i < num; i++) {
7151 convertRilDataCallToHal(&dcResponse[i], dcResultList[i]);
7152 }
7153 }
7154}
7155
7156int radio::dataCallListChangedInd(int slotId,
7157 int indicationType, int token, RIL_Errno e, void *response,
7158 size_t responseLen) {
7159 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7160 if ((response == NULL && responseLen != 0)
7161 || (responseLen % sizeof(RIL_Data_Call_Response_v11) != 0
7162 && responseLen % sizeof(RIL_Data_Call_Response_v9) != 0
7163 && responseLen % sizeof(RIL_Data_Call_Response_v6) != 0)) {
7164 RLOGE("dataCallListChangedInd: invalid response");
7165 return 0;
7166 }
7167 hidl_vec<SetupDataCallResult> dcList;
7168 convertRilDataCallListToHal(response, responseLen, dcList);
7169#if VDBG
7170 RLOGD("dataCallListChangedInd");
7171#endif
7172 Return<void> retStatus = radioService[slotId]->mRadioIndication->dataCallListChanged(
7173 convertIntToRadioIndicationType(indicationType), dcList);
7174 radioService[slotId]->checkReturnStatus(retStatus);
7175 } else {
7176 RLOGE("dataCallListChangedInd: radioService[%d]->mRadioIndication == NULL", slotId);
7177 }
7178
7179 return 0;
7180}
7181
7182int radio::suppSvcNotifyInd(int slotId, int indicationType,
7183 int token, RIL_Errno e, void *response, size_t responseLen) {
7184 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7185 if (response == NULL || responseLen != sizeof(RIL_SuppSvcNotification)) {
7186 RLOGE("suppSvcNotifyInd: invalid response");
7187 return 0;
7188 }
7189
7190 SuppSvcNotification suppSvc = {};
7191 RIL_SuppSvcNotification *ssn = (RIL_SuppSvcNotification *) response;
7192 suppSvc.isMT = ssn->notificationType;
7193 suppSvc.code = ssn->code;
7194 suppSvc.index = ssn->index;
7195 suppSvc.type = ssn->type;
7196 suppSvc.number = convertCharPtrToHidlString(ssn->number);
7197
7198#if VDBG
7199 RLOGD("suppSvcNotifyInd: isMT %d code %d index %d type %d",
7200 suppSvc.isMT, suppSvc.code, suppSvc.index, suppSvc.type);
7201#endif
7202 Return<void> retStatus = radioService[slotId]->mRadioIndication->suppSvcNotify(
7203 convertIntToRadioIndicationType(indicationType), suppSvc);
7204 radioService[slotId]->checkReturnStatus(retStatus);
7205 } else {
7206 RLOGE("suppSvcNotifyInd: radioService[%d]->mRadioIndication == NULL", slotId);
7207 }
7208
7209 return 0;
7210}
7211
7212int radio::stkSessionEndInd(int slotId, int indicationType,
7213 int token, RIL_Errno e, void *response, size_t responseLen) {
7214 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7215#if VDBG
7216 RLOGD("stkSessionEndInd");
7217#endif
7218 Return<void> retStatus = radioService[slotId]->mRadioIndication->stkSessionEnd(
7219 convertIntToRadioIndicationType(indicationType));
7220 radioService[slotId]->checkReturnStatus(retStatus);
7221 } else {
7222 RLOGE("stkSessionEndInd: radioService[%d]->mRadioIndication == NULL", slotId);
7223 }
7224
7225 return 0;
7226}
7227
7228int radio::stkProactiveCommandInd(int slotId,
7229 int indicationType, int token, RIL_Errno e, void *response,
7230 size_t responseLen) {
7231 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7232 if (response == NULL || responseLen == 0) {
7233 RLOGE("stkProactiveCommandInd: invalid response");
7234 return 0;
7235 }
7236#if VDBG
7237 RLOGD("stkProactiveCommandInd");
7238#endif
7239 Return<void> retStatus = radioService[slotId]->mRadioIndication->stkProactiveCommand(
7240 convertIntToRadioIndicationType(indicationType),
7241 convertCharPtrToHidlString((char *) response));
7242 radioService[slotId]->checkReturnStatus(retStatus);
7243 } else {
7244 RLOGE("stkProactiveCommandInd: radioService[%d]->mRadioIndication == NULL", slotId);
7245 }
7246
7247 return 0;
7248}
7249
7250int radio::stkEventNotifyInd(int slotId, int indicationType,
7251 int token, RIL_Errno e, void *response, size_t responseLen) {
7252 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7253 if (response == NULL || responseLen == 0) {
7254 RLOGE("stkEventNotifyInd: invalid response");
7255 return 0;
7256 }
7257#if VDBG
7258 RLOGD("stkEventNotifyInd");
7259#endif
7260 Return<void> retStatus = radioService[slotId]->mRadioIndication->stkEventNotify(
7261 convertIntToRadioIndicationType(indicationType),
7262 convertCharPtrToHidlString((char *) response));
7263 radioService[slotId]->checkReturnStatus(retStatus);
7264 } else {
7265 RLOGE("stkEventNotifyInd: radioService[%d]->mRadioIndication == NULL", slotId);
7266 }
7267
7268 return 0;
7269}
7270
7271int radio::stkCallSetupInd(int slotId, int indicationType,
7272 int token, RIL_Errno e, void *response, size_t responseLen) {
7273 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007274 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007275 RLOGE("stkCallSetupInd: invalid response");
7276 return 0;
7277 }
7278 int32_t timeout = ((int32_t *) response)[0];
7279#if VDBG
7280 RLOGD("stkCallSetupInd: timeout %d", timeout);
7281#endif
7282 Return<void> retStatus = radioService[slotId]->mRadioIndication->stkCallSetup(
7283 convertIntToRadioIndicationType(indicationType), timeout);
7284 radioService[slotId]->checkReturnStatus(retStatus);
7285 } else {
7286 RLOGE("stkCallSetupInd: radioService[%d]->mRadioIndication == NULL", slotId);
7287 }
7288
7289 return 0;
7290}
7291
7292int radio::simSmsStorageFullInd(int slotId,
7293 int indicationType, int token, RIL_Errno e, void *response,
7294 size_t responseLen) {
7295 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7296#if VDBG
7297 RLOGD("simSmsStorageFullInd");
7298#endif
7299 Return<void> retStatus = radioService[slotId]->mRadioIndication->simSmsStorageFull(
7300 convertIntToRadioIndicationType(indicationType));
7301 radioService[slotId]->checkReturnStatus(retStatus);
7302 } else {
7303 RLOGE("simSmsStorageFullInd: radioService[%d]->mRadioIndication == NULL", slotId);
7304 }
7305
7306 return 0;
7307}
7308
7309int radio::simRefreshInd(int slotId, int indicationType,
7310 int token, RIL_Errno e, void *response, size_t responseLen) {
7311 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7312 if (response == NULL || responseLen != sizeof(RIL_SimRefreshResponse_v7)) {
7313 RLOGE("simRefreshInd: invalid response");
7314 return 0;
7315 }
7316
7317 SimRefreshResult refreshResult = {};
7318 RIL_SimRefreshResponse_v7 *simRefreshResponse = ((RIL_SimRefreshResponse_v7 *) response);
7319 refreshResult.type =
7320 (android::hardware::radio::V1_0::SimRefreshType) simRefreshResponse->result;
7321 refreshResult.efId = simRefreshResponse->ef_id;
7322 refreshResult.aid = convertCharPtrToHidlString(simRefreshResponse->aid);
7323
7324#if VDBG
7325 RLOGD("simRefreshInd: type %d efId %d", refreshResult.type, refreshResult.efId);
7326#endif
7327 Return<void> retStatus = radioService[slotId]->mRadioIndication->simRefresh(
7328 convertIntToRadioIndicationType(indicationType), refreshResult);
7329 radioService[slotId]->checkReturnStatus(retStatus);
7330 } else {
7331 RLOGE("simRefreshInd: radioService[%d]->mRadioIndication == NULL", slotId);
7332 }
7333
7334 return 0;
7335}
7336
7337void convertRilCdmaSignalInfoRecordToHal(RIL_CDMA_SignalInfoRecord *signalInfoRecord,
7338 CdmaSignalInfoRecord& record) {
7339 record.isPresent = signalInfoRecord->isPresent;
7340 record.signalType = signalInfoRecord->signalType;
7341 record.alertPitch = signalInfoRecord->alertPitch;
7342 record.signal = signalInfoRecord->signal;
7343}
7344
7345int radio::callRingInd(int slotId, int indicationType,
7346 int token, RIL_Errno e, void *response, size_t responseLen) {
7347 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7348 bool isGsm;
7349 CdmaSignalInfoRecord record = {};
7350 if (response == NULL || responseLen == 0) {
7351 isGsm = true;
7352 } else {
7353 isGsm = false;
7354 if (responseLen != sizeof (RIL_CDMA_SignalInfoRecord)) {
7355 RLOGE("callRingInd: invalid response");
7356 return 0;
7357 }
7358 convertRilCdmaSignalInfoRecordToHal((RIL_CDMA_SignalInfoRecord *) response, record);
7359 }
7360
7361#if VDBG
7362 RLOGD("callRingInd: isGsm %d", isGsm);
7363#endif
7364 Return<void> retStatus = radioService[slotId]->mRadioIndication->callRing(
7365 convertIntToRadioIndicationType(indicationType), isGsm, record);
7366 radioService[slotId]->checkReturnStatus(retStatus);
7367 } else {
7368 RLOGE("callRingInd: radioService[%d]->mRadioIndication == NULL", slotId);
7369 }
7370
7371 return 0;
7372}
7373
7374int radio::simStatusChangedInd(int slotId,
7375 int indicationType, int token, RIL_Errno e, void *response,
7376 size_t responseLen) {
7377 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7378#if VDBG
7379 RLOGD("simStatusChangedInd");
7380#endif
7381 Return<void> retStatus = radioService[slotId]->mRadioIndication->simStatusChanged(
7382 convertIntToRadioIndicationType(indicationType));
7383 radioService[slotId]->checkReturnStatus(retStatus);
7384 } else {
7385 RLOGE("simStatusChangedInd: radioService[%d]->mRadioIndication == NULL", slotId);
7386 }
7387
7388 return 0;
7389}
7390
7391int radio::cdmaNewSmsInd(int slotId, int indicationType,
7392 int token, RIL_Errno e, void *response, size_t responseLen) {
7393 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7394 if (response == NULL || responseLen != sizeof(RIL_CDMA_SMS_Message)) {
7395 RLOGE("cdmaNewSmsInd: invalid response");
7396 return 0;
7397 }
7398
7399 CdmaSmsMessage msg = {};
7400 RIL_CDMA_SMS_Message *rilMsg = (RIL_CDMA_SMS_Message *) response;
7401 msg.teleserviceId = rilMsg->uTeleserviceID;
7402 msg.isServicePresent = rilMsg->bIsServicePresent;
7403 msg.serviceCategory = rilMsg->uServicecategory;
7404 msg.address.digitMode =
7405 (android::hardware::radio::V1_0::CdmaSmsDigitMode) rilMsg->sAddress.digit_mode;
7406 msg.address.numberMode =
7407 (android::hardware::radio::V1_0::CdmaSmsNumberMode) rilMsg->sAddress.number_mode;
7408 msg.address.numberType =
7409 (android::hardware::radio::V1_0::CdmaSmsNumberType) rilMsg->sAddress.number_type;
7410 msg.address.numberPlan =
7411 (android::hardware::radio::V1_0::CdmaSmsNumberPlan) rilMsg->sAddress.number_plan;
7412
7413 int digitLimit = MIN((rilMsg->sAddress.number_of_digits), RIL_CDMA_SMS_ADDRESS_MAX);
7414 msg.address.digits.setToExternal(rilMsg->sAddress.digits, digitLimit);
7415
7416 msg.subAddress.subaddressType = (android::hardware::radio::V1_0::CdmaSmsSubaddressType)
7417 rilMsg->sSubAddress.subaddressType;
7418 msg.subAddress.odd = rilMsg->sSubAddress.odd;
7419
7420 digitLimit= MIN((rilMsg->sSubAddress.number_of_digits), RIL_CDMA_SMS_SUBADDRESS_MAX);
7421 msg.subAddress.digits.setToExternal(rilMsg->sSubAddress.digits, digitLimit);
7422
7423 digitLimit = MIN((rilMsg->uBearerDataLen), RIL_CDMA_SMS_BEARER_DATA_MAX);
7424 msg.bearerData.setToExternal(rilMsg->aBearerData, digitLimit);
7425
7426#if VDBG
7427 RLOGD("cdmaNewSmsInd");
7428#endif
7429 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaNewSms(
7430 convertIntToRadioIndicationType(indicationType), msg);
7431 radioService[slotId]->checkReturnStatus(retStatus);
7432 } else {
7433 RLOGE("cdmaNewSmsInd: radioService[%d]->mRadioIndication == NULL", slotId);
7434 }
7435
7436 return 0;
7437}
7438
7439int radio::newBroadcastSmsInd(int slotId,
7440 int indicationType, int token, RIL_Errno e, void *response,
7441 size_t responseLen) {
7442 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7443 if (response == NULL || responseLen == 0) {
7444 RLOGE("newBroadcastSmsInd: invalid response");
7445 return 0;
7446 }
7447
7448 hidl_vec<uint8_t> data;
7449 data.setToExternal((uint8_t *) response, responseLen);
7450#if VDBG
7451 RLOGD("newBroadcastSmsInd");
7452#endif
7453 Return<void> retStatus = radioService[slotId]->mRadioIndication->newBroadcastSms(
7454 convertIntToRadioIndicationType(indicationType), data);
7455 radioService[slotId]->checkReturnStatus(retStatus);
7456 } else {
7457 RLOGE("newBroadcastSmsInd: radioService[%d]->mRadioIndication == NULL", slotId);
7458 }
7459
7460 return 0;
7461}
7462
7463int radio::cdmaRuimSmsStorageFullInd(int slotId,
7464 int indicationType, int token, RIL_Errno e, void *response,
7465 size_t responseLen) {
7466 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7467#if VDBG
7468 RLOGD("cdmaRuimSmsStorageFullInd");
7469#endif
7470 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaRuimSmsStorageFull(
7471 convertIntToRadioIndicationType(indicationType));
7472 radioService[slotId]->checkReturnStatus(retStatus);
7473 } else {
7474 RLOGE("cdmaRuimSmsStorageFullInd: radioService[%d]->mRadioIndication == NULL",
7475 slotId);
7476 }
7477
7478 return 0;
7479}
7480
7481int radio::restrictedStateChangedInd(int slotId,
7482 int indicationType, int token, RIL_Errno e, void *response,
7483 size_t responseLen) {
7484 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007485 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007486 RLOGE("restrictedStateChangedInd: invalid response");
7487 return 0;
7488 }
7489 int32_t state = ((int32_t *) response)[0];
7490#if VDBG
7491 RLOGD("restrictedStateChangedInd: state %d", state);
7492#endif
7493 Return<void> retStatus = radioService[slotId]->mRadioIndication->restrictedStateChanged(
7494 convertIntToRadioIndicationType(indicationType), (PhoneRestrictedState) state);
7495 radioService[slotId]->checkReturnStatus(retStatus);
7496 } else {
7497 RLOGE("restrictedStateChangedInd: radioService[%d]->mRadioIndication == NULL",
7498 slotId);
7499 }
7500
7501 return 0;
7502}
7503
7504int radio::enterEmergencyCallbackModeInd(int slotId,
7505 int indicationType, int token, RIL_Errno e, void *response,
7506 size_t responseLen) {
7507 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7508#if VDBG
7509 RLOGD("enterEmergencyCallbackModeInd");
7510#endif
7511 Return<void> retStatus = radioService[slotId]->mRadioIndication->enterEmergencyCallbackMode(
7512 convertIntToRadioIndicationType(indicationType));
7513 radioService[slotId]->checkReturnStatus(retStatus);
7514 } else {
7515 RLOGE("enterEmergencyCallbackModeInd: radioService[%d]->mRadioIndication == NULL",
7516 slotId);
7517 }
7518
7519 return 0;
7520}
7521
7522int radio::cdmaCallWaitingInd(int slotId,
7523 int indicationType, int token, RIL_Errno e, void *response,
7524 size_t responseLen) {
7525 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7526 if (response == NULL || responseLen != sizeof(RIL_CDMA_CallWaiting_v6)) {
7527 RLOGE("cdmaCallWaitingInd: invalid response");
7528 return 0;
7529 }
7530
7531 CdmaCallWaiting callWaitingRecord = {};
7532 RIL_CDMA_CallWaiting_v6 *callWaitingRil = ((RIL_CDMA_CallWaiting_v6 *) response);
7533 callWaitingRecord.number = convertCharPtrToHidlString(callWaitingRil->number);
7534 callWaitingRecord.numberPresentation =
7535 (CdmaCallWaitingNumberPresentation) callWaitingRil->numberPresentation;
7536 callWaitingRecord.name = convertCharPtrToHidlString(callWaitingRil->name);
7537 convertRilCdmaSignalInfoRecordToHal(&callWaitingRil->signalInfoRecord,
7538 callWaitingRecord.signalInfoRecord);
7539 callWaitingRecord.numberType = (CdmaCallWaitingNumberType) callWaitingRil->number_type;
7540 callWaitingRecord.numberPlan = (CdmaCallWaitingNumberPlan) callWaitingRil->number_plan;
7541
7542#if VDBG
7543 RLOGD("cdmaCallWaitingInd");
7544#endif
7545 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaCallWaiting(
7546 convertIntToRadioIndicationType(indicationType), callWaitingRecord);
7547 radioService[slotId]->checkReturnStatus(retStatus);
7548 } else {
7549 RLOGE("cdmaCallWaitingInd: radioService[%d]->mRadioIndication == NULL", slotId);
7550 }
7551
7552 return 0;
7553}
7554
7555int radio::cdmaOtaProvisionStatusInd(int slotId,
7556 int indicationType, int token, RIL_Errno e, void *response,
7557 size_t responseLen) {
7558 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007559 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007560 RLOGE("cdmaOtaProvisionStatusInd: invalid response");
7561 return 0;
7562 }
7563 int32_t status = ((int32_t *) response)[0];
7564#if VDBG
7565 RLOGD("cdmaOtaProvisionStatusInd: status %d", status);
7566#endif
7567 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaOtaProvisionStatus(
7568 convertIntToRadioIndicationType(indicationType), (CdmaOtaProvisionStatus) status);
7569 radioService[slotId]->checkReturnStatus(retStatus);
7570 } else {
7571 RLOGE("cdmaOtaProvisionStatusInd: radioService[%d]->mRadioIndication == NULL",
7572 slotId);
7573 }
7574
7575 return 0;
7576}
7577
7578int radio::cdmaInfoRecInd(int slotId,
7579 int indicationType, int token, RIL_Errno e, void *response,
7580 size_t responseLen) {
7581 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7582 if (response == NULL || responseLen != sizeof(RIL_CDMA_InformationRecords)) {
7583 RLOGE("cdmaInfoRecInd: invalid response");
7584 return 0;
7585 }
7586
7587 CdmaInformationRecords records = {};
7588 RIL_CDMA_InformationRecords *recordsRil = (RIL_CDMA_InformationRecords *) response;
7589
7590 char* string8 = NULL;
7591 int num = MIN(recordsRil->numberOfInfoRecs, RIL_CDMA_MAX_NUMBER_OF_INFO_RECS);
7592 if (recordsRil->numberOfInfoRecs > RIL_CDMA_MAX_NUMBER_OF_INFO_RECS) {
7593 RLOGE("cdmaInfoRecInd: received %d recs which is more than %d, dropping "
7594 "additional ones", recordsRil->numberOfInfoRecs,
7595 RIL_CDMA_MAX_NUMBER_OF_INFO_RECS);
7596 }
7597 records.infoRec.resize(num);
7598 for (int i = 0 ; i < num ; i++) {
7599 CdmaInformationRecord *record = &records.infoRec[i];
7600 RIL_CDMA_InformationRecord *infoRec = &recordsRil->infoRec[i];
7601 record->name = (CdmaInfoRecName) infoRec->name;
7602 // All vectors should be size 0 except one which will be size 1. Set everything to
7603 // size 0 initially.
7604 record->display.resize(0);
7605 record->number.resize(0);
7606 record->signal.resize(0);
7607 record->redir.resize(0);
7608 record->lineCtrl.resize(0);
7609 record->clir.resize(0);
7610 record->audioCtrl.resize(0);
7611 switch (infoRec->name) {
7612 case RIL_CDMA_DISPLAY_INFO_REC:
7613 case RIL_CDMA_EXTENDED_DISPLAY_INFO_REC: {
7614 if (infoRec->rec.display.alpha_len > CDMA_ALPHA_INFO_BUFFER_LENGTH) {
7615 RLOGE("cdmaInfoRecInd: invalid display info response length %d "
7616 "expected not more than %d", (int) infoRec->rec.display.alpha_len,
7617 CDMA_ALPHA_INFO_BUFFER_LENGTH);
7618 return 0;
7619 }
7620 string8 = (char*) malloc((infoRec->rec.display.alpha_len + 1) * sizeof(char));
7621 if (string8 == NULL) {
7622 RLOGE("cdmaInfoRecInd: Memory allocation failed for "
7623 "responseCdmaInformationRecords");
7624 return 0;
7625 }
7626 memcpy(string8, infoRec->rec.display.alpha_buf, infoRec->rec.display.alpha_len);
7627 string8[(int)infoRec->rec.display.alpha_len] = '\0';
7628
7629 record->display.resize(1);
7630 record->display[0].alphaBuf = string8;
7631 free(string8);
7632 string8 = NULL;
7633 break;
7634 }
7635
7636 case RIL_CDMA_CALLED_PARTY_NUMBER_INFO_REC:
7637 case RIL_CDMA_CALLING_PARTY_NUMBER_INFO_REC:
7638 case RIL_CDMA_CONNECTED_NUMBER_INFO_REC: {
7639 if (infoRec->rec.number.len > CDMA_NUMBER_INFO_BUFFER_LENGTH) {
7640 RLOGE("cdmaInfoRecInd: invalid display info response length %d "
7641 "expected not more than %d", (int) infoRec->rec.number.len,
7642 CDMA_NUMBER_INFO_BUFFER_LENGTH);
7643 return 0;
7644 }
7645 string8 = (char*) malloc((infoRec->rec.number.len + 1) * sizeof(char));
7646 if (string8 == NULL) {
7647 RLOGE("cdmaInfoRecInd: Memory allocation failed for "
7648 "responseCdmaInformationRecords");
7649 return 0;
7650 }
7651 memcpy(string8, infoRec->rec.number.buf, infoRec->rec.number.len);
7652 string8[(int)infoRec->rec.number.len] = '\0';
7653
7654 record->number.resize(1);
7655 record->number[0].number = string8;
7656 free(string8);
7657 string8 = NULL;
7658 record->number[0].numberType = infoRec->rec.number.number_type;
7659 record->number[0].numberPlan = infoRec->rec.number.number_plan;
7660 record->number[0].pi = infoRec->rec.number.pi;
7661 record->number[0].si = infoRec->rec.number.si;
7662 break;
7663 }
7664
7665 case RIL_CDMA_SIGNAL_INFO_REC: {
7666 record->signal.resize(1);
7667 record->signal[0].isPresent = infoRec->rec.signal.isPresent;
7668 record->signal[0].signalType = infoRec->rec.signal.signalType;
7669 record->signal[0].alertPitch = infoRec->rec.signal.alertPitch;
7670 record->signal[0].signal = infoRec->rec.signal.signal;
Paul Keith8cc04172017-10-24 02:27:29 +02007671
7672 /* Drop the response to workaround the "ring of death" bug */
7673 if (infoRec->rec.signal.isPresent
7674 /* IS95_CONST_IR_SIGNAL_IS54B */
7675 && infoRec->rec.signal.signalType == 2
7676 /* IS95_CONST_IR_ALERT_MED */
7677 && infoRec->rec.signal.alertPitch == 0
7678 /* IS95_CONST_IR_SIG_IS54B_L */
7679 && infoRec->rec.signal.signal == 1) {
7680 return 0;
7681 }
7682
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007683 break;
7684 }
7685
7686 case RIL_CDMA_REDIRECTING_NUMBER_INFO_REC: {
7687 if (infoRec->rec.redir.redirectingNumber.len >
7688 CDMA_NUMBER_INFO_BUFFER_LENGTH) {
7689 RLOGE("cdmaInfoRecInd: invalid display info response length %d "
7690 "expected not more than %d\n",
7691 (int)infoRec->rec.redir.redirectingNumber.len,
7692 CDMA_NUMBER_INFO_BUFFER_LENGTH);
7693 return 0;
7694 }
7695 string8 = (char*) malloc((infoRec->rec.redir.redirectingNumber.len + 1) *
7696 sizeof(char));
7697 if (string8 == NULL) {
7698 RLOGE("cdmaInfoRecInd: Memory allocation failed for "
7699 "responseCdmaInformationRecords");
7700 return 0;
7701 }
7702 memcpy(string8, infoRec->rec.redir.redirectingNumber.buf,
7703 infoRec->rec.redir.redirectingNumber.len);
7704 string8[(int)infoRec->rec.redir.redirectingNumber.len] = '\0';
7705
7706 record->redir.resize(1);
7707 record->redir[0].redirectingNumber.number = string8;
7708 free(string8);
7709 string8 = NULL;
7710 record->redir[0].redirectingNumber.numberType =
7711 infoRec->rec.redir.redirectingNumber.number_type;
7712 record->redir[0].redirectingNumber.numberPlan =
7713 infoRec->rec.redir.redirectingNumber.number_plan;
7714 record->redir[0].redirectingNumber.pi = infoRec->rec.redir.redirectingNumber.pi;
7715 record->redir[0].redirectingNumber.si = infoRec->rec.redir.redirectingNumber.si;
7716 record->redir[0].redirectingReason =
7717 (CdmaRedirectingReason) infoRec->rec.redir.redirectingReason;
7718 break;
7719 }
7720
7721 case RIL_CDMA_LINE_CONTROL_INFO_REC: {
7722 record->lineCtrl.resize(1);
7723 record->lineCtrl[0].lineCtrlPolarityIncluded =
7724 infoRec->rec.lineCtrl.lineCtrlPolarityIncluded;
7725 record->lineCtrl[0].lineCtrlToggle = infoRec->rec.lineCtrl.lineCtrlToggle;
7726 record->lineCtrl[0].lineCtrlReverse = infoRec->rec.lineCtrl.lineCtrlReverse;
7727 record->lineCtrl[0].lineCtrlPowerDenial =
7728 infoRec->rec.lineCtrl.lineCtrlPowerDenial;
7729 break;
7730 }
7731
7732 case RIL_CDMA_T53_CLIR_INFO_REC: {
7733 record->clir.resize(1);
7734 record->clir[0].cause = infoRec->rec.clir.cause;
7735 break;
7736 }
7737
7738 case RIL_CDMA_T53_AUDIO_CONTROL_INFO_REC: {
7739 record->audioCtrl.resize(1);
7740 record->audioCtrl[0].upLink = infoRec->rec.audioCtrl.upLink;
7741 record->audioCtrl[0].downLink = infoRec->rec.audioCtrl.downLink;
7742 break;
7743 }
7744
7745 case RIL_CDMA_T53_RELEASE_INFO_REC:
7746 RLOGE("cdmaInfoRecInd: RIL_CDMA_T53_RELEASE_INFO_REC: INVALID");
7747 return 0;
7748
7749 default:
7750 RLOGE("cdmaInfoRecInd: Incorrect name value");
7751 return 0;
7752 }
7753 }
7754
7755#if VDBG
7756 RLOGD("cdmaInfoRecInd");
7757#endif
7758 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaInfoRec(
7759 convertIntToRadioIndicationType(indicationType), records);
7760 radioService[slotId]->checkReturnStatus(retStatus);
7761 } else {
7762 RLOGE("cdmaInfoRecInd: radioService[%d]->mRadioIndication == NULL", slotId);
7763 }
7764
7765 return 0;
7766}
7767
7768int radio::indicateRingbackToneInd(int slotId,
7769 int indicationType, int token, RIL_Errno e, void *response,
7770 size_t responseLen) {
7771 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007772 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007773 RLOGE("indicateRingbackToneInd: invalid response");
7774 return 0;
7775 }
7776 bool start = ((int32_t *) response)[0];
7777#if VDBG
7778 RLOGD("indicateRingbackToneInd: start %d", start);
7779#endif
7780 Return<void> retStatus = radioService[slotId]->mRadioIndication->indicateRingbackTone(
7781 convertIntToRadioIndicationType(indicationType), start);
7782 radioService[slotId]->checkReturnStatus(retStatus);
7783 } else {
7784 RLOGE("indicateRingbackToneInd: radioService[%d]->mRadioIndication == NULL", slotId);
7785 }
7786
7787 return 0;
7788}
7789
7790int radio::resendIncallMuteInd(int slotId,
7791 int indicationType, int token, RIL_Errno e, void *response,
7792 size_t responseLen) {
7793 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7794#if VDBG
7795 RLOGD("resendIncallMuteInd");
7796#endif
7797 Return<void> retStatus = radioService[slotId]->mRadioIndication->resendIncallMute(
7798 convertIntToRadioIndicationType(indicationType));
7799 radioService[slotId]->checkReturnStatus(retStatus);
7800 } else {
7801 RLOGE("resendIncallMuteInd: radioService[%d]->mRadioIndication == NULL", slotId);
7802 }
7803
7804 return 0;
7805}
7806
7807int radio::cdmaSubscriptionSourceChangedInd(int slotId,
7808 int indicationType, int token, RIL_Errno e,
7809 void *response, size_t responseLen) {
7810 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007811 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007812 RLOGE("cdmaSubscriptionSourceChangedInd: invalid response");
7813 return 0;
7814 }
7815 int32_t cdmaSource = ((int32_t *) response)[0];
7816#if VDBG
7817 RLOGD("cdmaSubscriptionSourceChangedInd: cdmaSource %d", cdmaSource);
7818#endif
7819 Return<void> retStatus = radioService[slotId]->mRadioIndication->
7820 cdmaSubscriptionSourceChanged(convertIntToRadioIndicationType(indicationType),
7821 (CdmaSubscriptionSource) cdmaSource);
7822 radioService[slotId]->checkReturnStatus(retStatus);
7823 } else {
7824 RLOGE("cdmaSubscriptionSourceChangedInd: radioService[%d]->mRadioIndication == NULL",
7825 slotId);
7826 }
7827
7828 return 0;
7829}
7830
7831int radio::cdmaPrlChangedInd(int slotId,
7832 int indicationType, int token, RIL_Errno e, void *response,
7833 size_t responseLen) {
7834 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007835 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007836 RLOGE("cdmaPrlChangedInd: invalid response");
7837 return 0;
7838 }
7839 int32_t version = ((int32_t *) response)[0];
7840#if VDBG
7841 RLOGD("cdmaPrlChangedInd: version %d", version);
7842#endif
7843 Return<void> retStatus = radioService[slotId]->mRadioIndication->cdmaPrlChanged(
7844 convertIntToRadioIndicationType(indicationType), version);
7845 radioService[slotId]->checkReturnStatus(retStatus);
7846 } else {
7847 RLOGE("cdmaPrlChangedInd: radioService[%d]->mRadioIndication == NULL", slotId);
7848 }
7849
7850 return 0;
7851}
7852
7853int radio::exitEmergencyCallbackModeInd(int slotId,
7854 int indicationType, int token, RIL_Errno e, void *response,
7855 size_t responseLen) {
7856 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7857#if VDBG
7858 RLOGD("exitEmergencyCallbackModeInd");
7859#endif
7860 Return<void> retStatus = radioService[slotId]->mRadioIndication->exitEmergencyCallbackMode(
7861 convertIntToRadioIndicationType(indicationType));
7862 radioService[slotId]->checkReturnStatus(retStatus);
7863 } else {
7864 RLOGE("exitEmergencyCallbackModeInd: radioService[%d]->mRadioIndication == NULL",
7865 slotId);
7866 }
7867
7868 return 0;
7869}
7870
7871int radio::rilConnectedInd(int slotId,
7872 int indicationType, int token, RIL_Errno e, void *response,
7873 size_t responseLen) {
7874 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
7875 RLOGD("rilConnectedInd");
7876 Return<void> retStatus = radioService[slotId]->mRadioIndication->rilConnected(
7877 convertIntToRadioIndicationType(indicationType));
7878 radioService[slotId]->checkReturnStatus(retStatus);
7879 } else {
7880 RLOGE("rilConnectedInd: radioService[%d]->mRadioIndication == NULL", slotId);
7881 }
7882
7883 return 0;
7884}
7885
7886int radio::voiceRadioTechChangedInd(int slotId,
7887 int indicationType, int token, RIL_Errno e, void *response,
7888 size_t responseLen) {
7889 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01007890 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03007891 RLOGE("voiceRadioTechChangedInd: invalid response");
7892 return 0;
7893 }
7894 int32_t rat = ((int32_t *) response)[0];
7895#if VDBG
7896 RLOGD("voiceRadioTechChangedInd: rat %d", rat);
7897#endif
7898 Return<void> retStatus = radioService[slotId]->mRadioIndication->voiceRadioTechChanged(
7899 convertIntToRadioIndicationType(indicationType), (RadioTechnology) rat);
7900 radioService[slotId]->checkReturnStatus(retStatus);
7901 } else {
7902 RLOGE("voiceRadioTechChangedInd: radioService[%d]->mRadioIndication == NULL",
7903 slotId);
7904 }
7905
7906 return 0;
7907}
7908
7909void convertRilCellInfoListToHal(void *response, size_t responseLen, hidl_vec<CellInfo>& records) {
7910 int num = responseLen / sizeof(RIL_CellInfo_v12);
7911 records.resize(num);
7912
7913 RIL_CellInfo_v12 *rillCellInfo = (RIL_CellInfo_v12 *) response;
7914 for (int i = 0; i < num; i++) {
7915 records[i].cellInfoType = (CellInfoType) rillCellInfo->cellInfoType;
7916 records[i].registered = rillCellInfo->registered;
7917 records[i].timeStampType = (TimeStampType) rillCellInfo->timeStampType;
7918 records[i].timeStamp = rillCellInfo->timeStamp;
7919 // All vectors should be size 0 except one which will be size 1. Set everything to
7920 // size 0 initially.
7921 records[i].gsm.resize(0);
7922 records[i].wcdma.resize(0);
7923 records[i].cdma.resize(0);
7924 records[i].lte.resize(0);
7925 records[i].tdscdma.resize(0);
7926 switch(rillCellInfo->cellInfoType) {
7927 case RIL_CELL_INFO_TYPE_GSM: {
7928 records[i].gsm.resize(1);
7929 CellInfoGsm *cellInfoGsm = &records[i].gsm[0];
7930 cellInfoGsm->cellIdentityGsm.mcc =
7931 std::to_string(rillCellInfo->CellInfo.gsm.cellIdentityGsm.mcc);
7932 cellInfoGsm->cellIdentityGsm.mnc =
7933 std::to_string(rillCellInfo->CellInfo.gsm.cellIdentityGsm.mnc);
7934 cellInfoGsm->cellIdentityGsm.lac =
7935 rillCellInfo->CellInfo.gsm.cellIdentityGsm.lac;
7936 cellInfoGsm->cellIdentityGsm.cid =
7937 rillCellInfo->CellInfo.gsm.cellIdentityGsm.cid;
7938 cellInfoGsm->cellIdentityGsm.arfcn =
7939 rillCellInfo->CellInfo.gsm.cellIdentityGsm.arfcn;
7940 cellInfoGsm->cellIdentityGsm.bsic =
7941 rillCellInfo->CellInfo.gsm.cellIdentityGsm.bsic;
7942 cellInfoGsm->signalStrengthGsm.signalStrength =
7943 rillCellInfo->CellInfo.gsm.signalStrengthGsm.signalStrength;
7944 cellInfoGsm->signalStrengthGsm.bitErrorRate =
7945 rillCellInfo->CellInfo.gsm.signalStrengthGsm.bitErrorRate;
7946 cellInfoGsm->signalStrengthGsm.timingAdvance =
7947 rillCellInfo->CellInfo.gsm.signalStrengthGsm.timingAdvance;
7948 break;
7949 }
7950
7951 case RIL_CELL_INFO_TYPE_WCDMA: {
7952 records[i].wcdma.resize(1);
7953 CellInfoWcdma *cellInfoWcdma = &records[i].wcdma[0];
7954 cellInfoWcdma->cellIdentityWcdma.mcc =
7955 std::to_string(rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.mcc);
7956 cellInfoWcdma->cellIdentityWcdma.mnc =
7957 std::to_string(rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.mnc);
7958 cellInfoWcdma->cellIdentityWcdma.lac =
7959 rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.lac;
7960 cellInfoWcdma->cellIdentityWcdma.cid =
7961 rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.cid;
7962 cellInfoWcdma->cellIdentityWcdma.psc =
7963 rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.psc;
7964 cellInfoWcdma->cellIdentityWcdma.uarfcn =
7965 rillCellInfo->CellInfo.wcdma.cellIdentityWcdma.uarfcn;
7966 cellInfoWcdma->signalStrengthWcdma.signalStrength =
7967 rillCellInfo->CellInfo.wcdma.signalStrengthWcdma.signalStrength;
7968 cellInfoWcdma->signalStrengthWcdma.bitErrorRate =
7969 rillCellInfo->CellInfo.wcdma.signalStrengthWcdma.bitErrorRate;
7970 break;
7971 }
7972
7973 case RIL_CELL_INFO_TYPE_CDMA: {
7974 records[i].cdma.resize(1);
7975 CellInfoCdma *cellInfoCdma = &records[i].cdma[0];
7976 cellInfoCdma->cellIdentityCdma.networkId =
7977 rillCellInfo->CellInfo.cdma.cellIdentityCdma.networkId;
7978 cellInfoCdma->cellIdentityCdma.systemId =
7979 rillCellInfo->CellInfo.cdma.cellIdentityCdma.systemId;
7980 cellInfoCdma->cellIdentityCdma.baseStationId =
7981 rillCellInfo->CellInfo.cdma.cellIdentityCdma.basestationId;
7982 cellInfoCdma->cellIdentityCdma.longitude =
7983 rillCellInfo->CellInfo.cdma.cellIdentityCdma.longitude;
7984 cellInfoCdma->cellIdentityCdma.latitude =
7985 rillCellInfo->CellInfo.cdma.cellIdentityCdma.latitude;
7986 cellInfoCdma->signalStrengthCdma.dbm =
7987 rillCellInfo->CellInfo.cdma.signalStrengthCdma.dbm;
7988 cellInfoCdma->signalStrengthCdma.ecio =
7989 rillCellInfo->CellInfo.cdma.signalStrengthCdma.ecio;
7990 cellInfoCdma->signalStrengthEvdo.dbm =
7991 rillCellInfo->CellInfo.cdma.signalStrengthEvdo.dbm;
7992 cellInfoCdma->signalStrengthEvdo.ecio =
7993 rillCellInfo->CellInfo.cdma.signalStrengthEvdo.ecio;
7994 cellInfoCdma->signalStrengthEvdo.signalNoiseRatio =
7995 rillCellInfo->CellInfo.cdma.signalStrengthEvdo.signalNoiseRatio;
7996 break;
7997 }
7998
7999 case RIL_CELL_INFO_TYPE_LTE: {
8000 records[i].lte.resize(1);
8001 CellInfoLte *cellInfoLte = &records[i].lte[0];
8002 cellInfoLte->cellIdentityLte.mcc =
8003 std::to_string(rillCellInfo->CellInfo.lte.cellIdentityLte.mcc);
8004 cellInfoLte->cellIdentityLte.mnc =
8005 std::to_string(rillCellInfo->CellInfo.lte.cellIdentityLte.mnc);
8006 cellInfoLte->cellIdentityLte.ci =
8007 rillCellInfo->CellInfo.lte.cellIdentityLte.ci;
8008 cellInfoLte->cellIdentityLte.pci =
8009 rillCellInfo->CellInfo.lte.cellIdentityLte.pci;
8010 cellInfoLte->cellIdentityLte.tac =
8011 rillCellInfo->CellInfo.lte.cellIdentityLte.tac;
8012 cellInfoLte->cellIdentityLte.earfcn =
8013 rillCellInfo->CellInfo.lte.cellIdentityLte.earfcn;
8014 cellInfoLte->signalStrengthLte.signalStrength =
8015 rillCellInfo->CellInfo.lte.signalStrengthLte.signalStrength;
8016 cellInfoLte->signalStrengthLte.rsrp =
8017 rillCellInfo->CellInfo.lte.signalStrengthLte.rsrp;
8018 cellInfoLte->signalStrengthLte.rsrq =
8019 rillCellInfo->CellInfo.lte.signalStrengthLte.rsrq;
8020 cellInfoLte->signalStrengthLte.rssnr =
8021 rillCellInfo->CellInfo.lte.signalStrengthLte.rssnr;
8022 cellInfoLte->signalStrengthLte.cqi =
8023 rillCellInfo->CellInfo.lte.signalStrengthLte.cqi;
8024 cellInfoLte->signalStrengthLte.timingAdvance =
8025 rillCellInfo->CellInfo.lte.signalStrengthLte.timingAdvance;
8026 break;
8027 }
8028
8029 case RIL_CELL_INFO_TYPE_TD_SCDMA: {
8030 records[i].tdscdma.resize(1);
8031 CellInfoTdscdma *cellInfoTdscdma = &records[i].tdscdma[0];
8032 cellInfoTdscdma->cellIdentityTdscdma.mcc =
8033 std::to_string(rillCellInfo->CellInfo.tdscdma.cellIdentityTdscdma.mcc);
8034 cellInfoTdscdma->cellIdentityTdscdma.mnc =
8035 std::to_string(rillCellInfo->CellInfo.tdscdma.cellIdentityTdscdma.mnc);
8036 cellInfoTdscdma->cellIdentityTdscdma.lac =
8037 rillCellInfo->CellInfo.tdscdma.cellIdentityTdscdma.lac;
8038 cellInfoTdscdma->cellIdentityTdscdma.cid =
8039 rillCellInfo->CellInfo.tdscdma.cellIdentityTdscdma.cid;
8040 cellInfoTdscdma->cellIdentityTdscdma.cpid =
8041 rillCellInfo->CellInfo.tdscdma.cellIdentityTdscdma.cpid;
8042 cellInfoTdscdma->signalStrengthTdscdma.rscp =
8043 rillCellInfo->CellInfo.tdscdma.signalStrengthTdscdma.rscp;
8044 break;
8045 }
8046 default: {
8047 break;
8048 }
8049 }
8050 rillCellInfo += 1;
8051 }
8052}
8053
8054int radio::cellInfoListInd(int slotId,
8055 int indicationType, int token, RIL_Errno e, void *response,
8056 size_t responseLen) {
8057 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8058 if ((response == NULL && responseLen != 0) || responseLen % sizeof(RIL_CellInfo_v12) != 0) {
8059 RLOGE("cellInfoListInd: invalid response");
8060 return 0;
8061 }
8062
8063 hidl_vec<CellInfo> records;
8064 convertRilCellInfoListToHal(response, responseLen, records);
8065
8066#if VDBG
8067 RLOGD("cellInfoListInd");
8068#endif
8069 Return<void> retStatus = radioService[slotId]->mRadioIndication->cellInfoList(
8070 convertIntToRadioIndicationType(indicationType), records);
8071 radioService[slotId]->checkReturnStatus(retStatus);
8072 } else {
8073 RLOGE("cellInfoListInd: radioService[%d]->mRadioIndication == NULL", slotId);
8074 }
8075
8076 return 0;
8077}
8078
8079int radio::imsNetworkStateChangedInd(int slotId,
8080 int indicationType, int token, RIL_Errno e, void *response,
8081 size_t responseLen) {
8082 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8083#if VDBG
8084 RLOGD("imsNetworkStateChangedInd");
8085#endif
8086 Return<void> retStatus = radioService[slotId]->mRadioIndication->imsNetworkStateChanged(
8087 convertIntToRadioIndicationType(indicationType));
8088 radioService[slotId]->checkReturnStatus(retStatus);
8089 } else {
8090 RLOGE("imsNetworkStateChangedInd: radioService[%d]->mRadioIndication == NULL",
8091 slotId);
8092 }
8093
8094 return 0;
8095}
8096
8097int radio::subscriptionStatusChangedInd(int slotId,
8098 int indicationType, int token, RIL_Errno e, void *response,
8099 size_t responseLen) {
8100 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01008101 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03008102 RLOGE("subscriptionStatusChangedInd: invalid response");
8103 return 0;
8104 }
8105 bool activate = ((int32_t *) response)[0];
8106#if VDBG
8107 RLOGD("subscriptionStatusChangedInd: activate %d", activate);
8108#endif
8109 Return<void> retStatus = radioService[slotId]->mRadioIndication->subscriptionStatusChanged(
8110 convertIntToRadioIndicationType(indicationType), activate);
8111 radioService[slotId]->checkReturnStatus(retStatus);
8112 } else {
8113 RLOGE("subscriptionStatusChangedInd: radioService[%d]->mRadioIndication == NULL",
8114 slotId);
8115 }
8116
8117 return 0;
8118}
8119
8120int radio::srvccStateNotifyInd(int slotId,
8121 int indicationType, int token, RIL_Errno e, void *response,
8122 size_t responseLen) {
8123 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
Paul Keith96ff3122018-03-06 20:19:57 +01008124 if (response == NULL || responseLen % sizeof(int) != 0) {
Martin Bouchet0d4bbaf2017-09-23 04:54:37 -03008125 RLOGE("srvccStateNotifyInd: invalid response");
8126 return 0;
8127 }
8128 int32_t state = ((int32_t *) response)[0];
8129#if VDBG
8130 RLOGD("srvccStateNotifyInd: rat %d", state);
8131#endif
8132 Return<void> retStatus = radioService[slotId]->mRadioIndication->srvccStateNotify(
8133 convertIntToRadioIndicationType(indicationType), (SrvccState) state);
8134 radioService[slotId]->checkReturnStatus(retStatus);
8135 } else {
8136 RLOGE("srvccStateNotifyInd: radioService[%d]->mRadioIndication == NULL", slotId);
8137 }
8138
8139 return 0;
8140}
8141
8142void convertRilHardwareConfigListToHal(void *response, size_t responseLen,
8143 hidl_vec<HardwareConfig>& records) {
8144 int num = responseLen / sizeof(RIL_HardwareConfig);
8145 records.resize(num);
8146
8147 RIL_HardwareConfig *rilHardwareConfig = (RIL_HardwareConfig *) response;
8148 for (int i = 0; i < num; i++) {
8149 records[i].type = (HardwareConfigType) rilHardwareConfig[i].type;
8150 records[i].uuid = convertCharPtrToHidlString(rilHardwareConfig[i].uuid);
8151 records[i].state = (HardwareConfigState) rilHardwareConfig[i].state;
8152 switch (rilHardwareConfig[i].type) {
8153 case RIL_HARDWARE_CONFIG_MODEM: {
8154 records[i].modem.resize(1);
8155 records[i].sim.resize(0);
8156 HardwareConfigModem *hwConfigModem = &records[i].modem[0];
8157 hwConfigModem->rat = rilHardwareConfig[i].cfg.modem.rat;
8158 hwConfigModem->maxVoice = rilHardwareConfig[i].cfg.modem.maxVoice;
8159 hwConfigModem->maxData = rilHardwareConfig[i].cfg.modem.maxData;
8160 hwConfigModem->maxStandby = rilHardwareConfig[i].cfg.modem.maxStandby;
8161 break;
8162 }
8163
8164 case RIL_HARDWARE_CONFIG_SIM: {
8165 records[i].sim.resize(1);
8166 records[i].modem.resize(0);
8167 records[i].sim[0].modemUuid =
8168 convertCharPtrToHidlString(rilHardwareConfig[i].cfg.sim.modemUuid);
8169 break;
8170 }
8171 }
8172 }
8173}
8174
8175int radio::hardwareConfigChangedInd(int slotId,
8176 int indicationType, int token, RIL_Errno e, void *response,
8177 size_t responseLen) {
8178 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8179 if ((response == NULL && responseLen != 0)
8180 || responseLen % sizeof(RIL_HardwareConfig) != 0) {
8181 RLOGE("hardwareConfigChangedInd: invalid response");
8182 return 0;
8183 }
8184
8185 hidl_vec<HardwareConfig> configs;
8186 convertRilHardwareConfigListToHal(response, responseLen, configs);
8187
8188#if VDBG
8189 RLOGD("hardwareConfigChangedInd");
8190#endif
8191 Return<void> retStatus = radioService[slotId]->mRadioIndication->hardwareConfigChanged(
8192 convertIntToRadioIndicationType(indicationType), configs);
8193 radioService[slotId]->checkReturnStatus(retStatus);
8194 } else {
8195 RLOGE("hardwareConfigChangedInd: radioService[%d]->mRadioIndication == NULL",
8196 slotId);
8197 }
8198
8199 return 0;
8200}
8201
8202void convertRilRadioCapabilityToHal(void *response, size_t responseLen, RadioCapability& rc) {
8203 RIL_RadioCapability *rilRadioCapability = (RIL_RadioCapability *) response;
8204 rc.session = rilRadioCapability->session;
8205 rc.phase = (android::hardware::radio::V1_0::RadioCapabilityPhase) rilRadioCapability->phase;
8206 rc.raf = rilRadioCapability->rat;
8207 rc.logicalModemUuid = convertCharPtrToHidlString(rilRadioCapability->logicalModemUuid);
8208 rc.status = (android::hardware::radio::V1_0::RadioCapabilityStatus) rilRadioCapability->status;
8209}
8210
8211int radio::radioCapabilityIndicationInd(int slotId,
8212 int indicationType, int token, RIL_Errno e, void *response,
8213 size_t responseLen) {
8214 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8215 if (response == NULL || responseLen != sizeof(RIL_RadioCapability)) {
8216 RLOGE("radioCapabilityIndicationInd: invalid response");
8217 return 0;
8218 }
8219
8220 RadioCapability rc = {};
8221 convertRilRadioCapabilityToHal(response, responseLen, rc);
8222
8223#if VDBG
8224 RLOGD("radioCapabilityIndicationInd");
8225#endif
8226 Return<void> retStatus = radioService[slotId]->mRadioIndication->radioCapabilityIndication(
8227 convertIntToRadioIndicationType(indicationType), rc);
8228 radioService[slotId]->checkReturnStatus(retStatus);
8229 } else {
8230 RLOGE("radioCapabilityIndicationInd: radioService[%d]->mRadioIndication == NULL",
8231 slotId);
8232 }
8233
8234 return 0;
8235}
8236
8237bool isServiceTypeCfQuery(RIL_SsServiceType serType, RIL_SsRequestType reqType) {
8238 if ((reqType == SS_INTERROGATION) &&
8239 (serType == SS_CFU ||
8240 serType == SS_CF_BUSY ||
8241 serType == SS_CF_NO_REPLY ||
8242 serType == SS_CF_NOT_REACHABLE ||
8243 serType == SS_CF_ALL ||
8244 serType == SS_CF_ALL_CONDITIONAL)) {
8245 return true;
8246 }
8247 return false;
8248}
8249
8250int radio::onSupplementaryServiceIndicationInd(int slotId,
8251 int indicationType, int token, RIL_Errno e,
8252 void *response, size_t responseLen) {
8253 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8254 if (response == NULL || responseLen != sizeof(RIL_StkCcUnsolSsResponse)) {
8255 RLOGE("onSupplementaryServiceIndicationInd: invalid response");
8256 return 0;
8257 }
8258
8259 RIL_StkCcUnsolSsResponse *rilSsResponse = (RIL_StkCcUnsolSsResponse *) response;
8260 StkCcUnsolSsResult ss = {};
8261 ss.serviceType = (SsServiceType) rilSsResponse->serviceType;
8262 ss.requestType = (SsRequestType) rilSsResponse->requestType;
8263 ss.teleserviceType = (SsTeleserviceType) rilSsResponse->teleserviceType;
8264 ss.serviceClass = rilSsResponse->serviceClass;
8265 ss.result = (RadioError) rilSsResponse->result;
8266
8267 if (isServiceTypeCfQuery(rilSsResponse->serviceType, rilSsResponse->requestType)) {
8268#if VDBG
8269 RLOGD("onSupplementaryServiceIndicationInd CF type, num of Cf elements %d",
8270 rilSsResponse->cfData.numValidIndexes);
8271#endif
8272 if (rilSsResponse->cfData.numValidIndexes > NUM_SERVICE_CLASSES) {
8273 RLOGE("onSupplementaryServiceIndicationInd numValidIndexes is greater than "
8274 "max value %d, truncating it to max value", NUM_SERVICE_CLASSES);
8275 rilSsResponse->cfData.numValidIndexes = NUM_SERVICE_CLASSES;
8276 }
8277
8278 ss.cfData.resize(1);
8279 ss.ssInfo.resize(0);
8280
8281 /* number of call info's */
8282 ss.cfData[0].cfInfo.resize(rilSsResponse->cfData.numValidIndexes);
8283
8284 for (int i = 0; i < rilSsResponse->cfData.numValidIndexes; i++) {
8285 RIL_CallForwardInfo cf = rilSsResponse->cfData.cfInfo[i];
8286 CallForwardInfo *cfInfo = &ss.cfData[0].cfInfo[i];
8287
8288 cfInfo->status = (CallForwardInfoStatus) cf.status;
8289 cfInfo->reason = cf.reason;
8290 cfInfo->serviceClass = cf.serviceClass;
8291 cfInfo->toa = cf.toa;
8292 cfInfo->number = convertCharPtrToHidlString(cf.number);
8293 cfInfo->timeSeconds = cf.timeSeconds;
8294#if VDBG
8295 RLOGD("onSupplementaryServiceIndicationInd: "
8296 "Data: %d,reason=%d,cls=%d,toa=%d,num=%s,tout=%d],", cf.status,
8297 cf.reason, cf.serviceClass, cf.toa, (char*)cf.number, cf.timeSeconds);
8298#endif
8299 }
8300 } else {
8301 ss.ssInfo.resize(1);
8302 ss.cfData.resize(0);
8303
8304 /* each int */
8305 ss.ssInfo[0].ssInfo.resize(SS_INFO_MAX);
8306 for (int i = 0; i < SS_INFO_MAX; i++) {
8307#if VDBG
8308 RLOGD("onSupplementaryServiceIndicationInd: Data: %d",
8309 rilSsResponse->ssInfo[i]);
8310#endif
8311 ss.ssInfo[0].ssInfo[i] = rilSsResponse->ssInfo[i];
8312 }
8313 }
8314
8315#if VDBG
8316 RLOGD("onSupplementaryServiceIndicationInd");
8317#endif
8318 Return<void> retStatus = radioService[slotId]->mRadioIndication->
8319 onSupplementaryServiceIndication(convertIntToRadioIndicationType(indicationType),
8320 ss);
8321 radioService[slotId]->checkReturnStatus(retStatus);
8322 } else {
8323 RLOGE("onSupplementaryServiceIndicationInd: "
8324 "radioService[%d]->mRadioIndication == NULL", slotId);
8325 }
8326
8327 return 0;
8328}
8329
8330int radio::stkCallControlAlphaNotifyInd(int slotId,
8331 int indicationType, int token, RIL_Errno e, void *response,
8332 size_t responseLen) {
8333 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8334 if (response == NULL || responseLen == 0) {
8335 RLOGE("stkCallControlAlphaNotifyInd: invalid response");
8336 return 0;
8337 }
8338#if VDBG
8339 RLOGD("stkCallControlAlphaNotifyInd");
8340#endif
8341 Return<void> retStatus = radioService[slotId]->mRadioIndication->stkCallControlAlphaNotify(
8342 convertIntToRadioIndicationType(indicationType),
8343 convertCharPtrToHidlString((char *) response));
8344 radioService[slotId]->checkReturnStatus(retStatus);
8345 } else {
8346 RLOGE("stkCallControlAlphaNotifyInd: radioService[%d]->mRadioIndication == NULL",
8347 slotId);
8348 }
8349
8350 return 0;
8351}
8352
8353void convertRilLceDataInfoToHal(void *response, size_t responseLen, LceDataInfo& lce) {
8354 RIL_LceDataInfo *rilLceDataInfo = (RIL_LceDataInfo *)response;
8355 lce.lastHopCapacityKbps = rilLceDataInfo->last_hop_capacity_kbps;
8356 lce.confidenceLevel = rilLceDataInfo->confidence_level;
8357 lce.lceSuspended = rilLceDataInfo->lce_suspended;
8358}
8359
8360int radio::lceDataInd(int slotId,
8361 int indicationType, int token, RIL_Errno e, void *response,
8362 size_t responseLen) {
8363 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8364 if (response == NULL || responseLen != sizeof(RIL_LceDataInfo)) {
8365 RLOGE("lceDataInd: invalid response");
8366 return 0;
8367 }
8368
8369 LceDataInfo lce = {};
8370 convertRilLceDataInfoToHal(response, responseLen, lce);
8371#if VDBG
8372 RLOGD("lceDataInd");
8373#endif
8374 Return<void> retStatus = radioService[slotId]->mRadioIndication->lceData(
8375 convertIntToRadioIndicationType(indicationType), lce);
8376 radioService[slotId]->checkReturnStatus(retStatus);
8377 } else {
8378 RLOGE("lceDataInd: radioService[%d]->mRadioIndication == NULL", slotId);
8379 }
8380
8381 return 0;
8382}
8383
8384int radio::pcoDataInd(int slotId,
8385 int indicationType, int token, RIL_Errno e, void *response,
8386 size_t responseLen) {
8387 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8388 if (response == NULL || responseLen != sizeof(RIL_PCO_Data)) {
8389 RLOGE("pcoDataInd: invalid response");
8390 return 0;
8391 }
8392
8393 PcoDataInfo pco = {};
8394 RIL_PCO_Data *rilPcoData = (RIL_PCO_Data *)response;
8395 pco.cid = rilPcoData->cid;
8396 pco.bearerProto = convertCharPtrToHidlString(rilPcoData->bearer_proto);
8397 pco.pcoId = rilPcoData->pco_id;
8398 pco.contents.setToExternal((uint8_t *) rilPcoData->contents, rilPcoData->contents_length);
8399
8400#if VDBG
8401 RLOGD("pcoDataInd");
8402#endif
8403 Return<void> retStatus = radioService[slotId]->mRadioIndication->pcoData(
8404 convertIntToRadioIndicationType(indicationType), pco);
8405 radioService[slotId]->checkReturnStatus(retStatus);
8406 } else {
8407 RLOGE("pcoDataInd: radioService[%d]->mRadioIndication == NULL", slotId);
8408 }
8409
8410 return 0;
8411}
8412
8413int radio::modemResetInd(int slotId,
8414 int indicationType, int token, RIL_Errno e, void *response,
8415 size_t responseLen) {
8416 if (radioService[slotId] != NULL && radioService[slotId]->mRadioIndication != NULL) {
8417 if (response == NULL || responseLen == 0) {
8418 RLOGE("modemResetInd: invalid response");
8419 return 0;
8420 }
8421#if VDBG
8422 RLOGD("modemResetInd");
8423#endif
8424 Return<void> retStatus = radioService[slotId]->mRadioIndication->modemReset(
8425 convertIntToRadioIndicationType(indicationType),
8426 convertCharPtrToHidlString((char *) response));
8427 radioService[slotId]->checkReturnStatus(retStatus);
8428 } else {
8429 RLOGE("modemResetInd: radioService[%d]->mRadioIndication == NULL", slotId);
8430 }
8431
8432 return 0;
8433}
8434
8435int radio::oemHookRawInd(int slotId,
8436 int indicationType, int token, RIL_Errno e, void *response,
8437 size_t responseLen) {
8438 if (oemHookService[slotId] != NULL && oemHookService[slotId]->mOemHookIndication != NULL) {
8439 if (response == NULL || responseLen == 0) {
8440 RLOGE("oemHookRawInd: invalid response");
8441 return 0;
8442 }
8443
8444 hidl_vec<uint8_t> data;
8445 data.setToExternal((uint8_t *) response, responseLen);
8446#if VDBG
8447 RLOGD("oemHookRawInd");
8448#endif
8449 Return<void> retStatus = oemHookService[slotId]->mOemHookIndication->oemHookRaw(
8450 convertIntToRadioIndicationType(indicationType), data);
8451 checkReturnStatus(slotId, retStatus, false);
8452 } else {
8453 RLOGE("oemHookRawInd: oemHookService[%d]->mOemHookIndication == NULL", slotId);
8454 }
8455
8456 return 0;
8457}
8458
8459void radio::registerService(RIL_RadioFunctions *callbacks, CommandInfo *commands) {
8460 using namespace android::hardware;
8461 int simCount = 1;
8462 const char *serviceNames[] = {
8463 android::RIL_getServiceName()
8464 #if (SIM_COUNT >= 2)
8465 , RIL2_SERVICE_NAME
8466 #if (SIM_COUNT >= 3)
8467 , RIL3_SERVICE_NAME
8468 #if (SIM_COUNT >= 4)
8469 , RIL4_SERVICE_NAME
8470 #endif
8471 #endif
8472 #endif
8473 };
8474
8475 #if (SIM_COUNT >= 2)
8476 simCount = SIM_COUNT;
8477 #endif
8478
8479 configureRpcThreadpool(1, true /* callerWillJoin */);
8480 for (int i = 0; i < simCount; i++) {
8481 pthread_rwlock_t *radioServiceRwlockPtr = getRadioServiceRwlock(i);
8482 int ret = pthread_rwlock_wrlock(radioServiceRwlockPtr);
8483 assert(ret == 0);
8484
8485 radioService[i] = new RadioImpl;
8486 radioService[i]->mSlotId = i;
8487 oemHookService[i] = new OemHookImpl;
8488 oemHookService[i]->mSlotId = i;
8489 RLOGD("registerService: starting IRadio %s", serviceNames[i]);
8490 android::status_t status = radioService[i]->registerAsService(serviceNames[i]);
8491 status = oemHookService[i]->registerAsService(serviceNames[i]);
8492
8493 ret = pthread_rwlock_unlock(radioServiceRwlockPtr);
8494 assert(ret == 0);
8495 }
8496
8497 s_vendorFunctions = callbacks;
8498 s_commands = commands;
8499}
8500
8501void rilc_thread_pool() {
8502 joinRpcThreadpool();
8503}
8504
8505pthread_rwlock_t * radio::getRadioServiceRwlock(int slotId) {
8506 pthread_rwlock_t *radioServiceRwlockPtr = &radioServiceRwlock;
8507
8508 #if (SIM_COUNT >= 2)
8509 if (slotId == 2) radioServiceRwlockPtr = &radioServiceRwlock2;
8510 #if (SIM_COUNT >= 3)
8511 if (slotId == 3) radioServiceRwlockPtr = &radioServiceRwlock3;
8512 #if (SIM_COUNT >= 4)
8513 if (slotId == 4) radioServiceRwlockPtr = &radioServiceRwlock4;
8514 #endif
8515 #endif
8516 #endif
8517
8518 return radioServiceRwlockPtr;
8519}