blob: e3f7e41a238d5b93e1fa2ab4d177d6999e05bd99 [file] [log] [blame]
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001/* //device/libs/telephony/ril.cpp
2**
3** Copyright 2006, The Android Open Source Project
4**
Wink Saville7f856802009-06-09 10:23:37 -07005** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08008**
Wink Saville7f856802009-06-09 10:23:37 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080010**
Wink Saville7f856802009-06-09 10:23:37 -070011** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080015** limitations under the License.
16*/
17
18#define LOG_TAG "RILC"
19
20#include <hardware_legacy/power.h>
21
22#include <telephony/ril.h>
Wink Savillef4c4d362009-04-02 01:37:03 -070023#include <telephony/ril_cdma_sms.h>
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080024#include <cutils/sockets.h>
25#include <cutils/jstring.h>
26#include <cutils/record_stream.h>
27#include <utils/Log.h>
28#include <utils/SystemClock.h>
29#include <pthread.h>
Mathias Agopian8a3c48c2009-05-19 19:11:50 -070030#include <binder/Parcel.h>
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080031#include <cutils/jstring.h>
32
33#include <sys/types.h>
34#include <pwd.h>
35
36#include <stdio.h>
37#include <stdlib.h>
38#include <stdarg.h>
39#include <string.h>
40#include <unistd.h>
41#include <fcntl.h>
42#include <time.h>
43#include <errno.h>
44#include <assert.h>
45#include <ctype.h>
46#include <alloca.h>
47#include <sys/un.h>
48#include <assert.h>
49#include <netinet/in.h>
50#include <cutils/properties.h>
51
52#include <ril_event.h>
53
54namespace android {
55
56#define PHONE_PROCESS "radio"
57
58#define SOCKET_NAME_RIL "rild"
59#define SOCKET_NAME_RIL_DEBUG "rild-debug"
60
61#define ANDROID_WAKE_LOCK_NAME "radio-interface"
62
63
64#define PROPERTY_RIL_IMPL "gsm.version.ril-impl"
65
66// match with constant in RIL.java
67#define MAX_COMMAND_BYTES (8 * 1024)
68
69// Basically: memset buffers that the client library
70// shouldn't be using anymore in an attempt to find
71// memory usage issues sooner.
72#define MEMSET_FREED 1
73
74#define NUM_ELEMS(a) (sizeof (a) / sizeof (a)[0])
75
Wink Savillef4c4d362009-04-02 01:37:03 -070076#define MIN(a,b) ((a)<(b) ? (a) : (b))
77
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080078/* Constants for response types */
79#define RESPONSE_SOLICITED 0
80#define RESPONSE_UNSOLICITED 1
81
82/* Negative values for private RIL errno's */
83#define RIL_ERRNO_INVALID_RESPONSE -1
84
85// request, response, and unsolicited msg print macro
86#define PRINTBUF_SIZE 8096
87
88// Enable RILC log
89#define RILC_LOG 0
90
91#if RILC_LOG
92 #define startRequest sprintf(printBuf, "(")
93 #define closeRequest sprintf(printBuf, "%s)", printBuf)
94 #define printRequest(token, req) \
Steve Block64640682011-12-20 20:47:51 +000095 ALOGD("[%04d]> %s %s", token, requestToString(req), printBuf)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080096
97 #define startResponse sprintf(printBuf, "%s {", printBuf)
98 #define closeResponse sprintf(printBuf, "%s}", printBuf)
Steve Block64640682011-12-20 20:47:51 +000099 #define printResponse ALOGD("%s", printBuf)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800100
101 #define clearPrintBuf printBuf[0] = 0
102 #define removeLastChar printBuf[strlen(printBuf)-1] = 0
103 #define appendPrintBuf(x...) sprintf(printBuf, x)
104#else
105 #define startRequest
106 #define closeRequest
107 #define printRequest(token, req)
108 #define startResponse
109 #define closeResponse
110 #define printResponse
111 #define clearPrintBuf
112 #define removeLastChar
113 #define appendPrintBuf(x...)
114#endif
115
116enum WakeType {DONT_WAKE, WAKE_PARTIAL};
117
118typedef struct {
119 int requestNumber;
120 void (*dispatchFunction) (Parcel &p, struct RequestInfo *pRI);
121 int(*responseFunction) (Parcel &p, void *response, size_t responselen);
122} CommandInfo;
123
124typedef struct {
125 int requestNumber;
126 int (*responseFunction) (Parcel &p, void *response, size_t responselen);
127 WakeType wakeType;
128} UnsolResponseInfo;
129
130typedef struct RequestInfo {
Wink Saville7f856802009-06-09 10:23:37 -0700131 int32_t token; //this is not RIL_Token
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800132 CommandInfo *pCI;
133 struct RequestInfo *p_next;
134 char cancelled;
135 char local; // responses to local commands do not go back to command process
136} RequestInfo;
137
Wink Saville3d54e742009-05-18 18:00:44 -0700138typedef struct UserCallbackInfo {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800139 RIL_TimedCallback p_callback;
140 void *userParam;
141 struct ril_event event;
142 struct UserCallbackInfo *p_next;
143} UserCallbackInfo;
144
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -0700145
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800146/*******************************************************************/
147
148RIL_RadioFunctions s_callbacks = {0, NULL, NULL, NULL, NULL, NULL};
149static int s_registerCalled = 0;
150
151static pthread_t s_tid_dispatch;
152static pthread_t s_tid_reader;
153static int s_started = 0;
154
155static int s_fdListen = -1;
156static int s_fdCommand = -1;
157static int s_fdDebug = -1;
158
159static int s_fdWakeupRead;
160static int s_fdWakeupWrite;
161
162static struct ril_event s_commands_event;
163static struct ril_event s_wakeupfd_event;
164static struct ril_event s_listen_event;
165static struct ril_event s_wake_timeout_event;
166static struct ril_event s_debug_event;
167
168
169static const struct timeval TIMEVAL_WAKE_TIMEOUT = {1,0};
170
171static pthread_mutex_t s_pendingRequestsMutex = PTHREAD_MUTEX_INITIALIZER;
172static pthread_mutex_t s_writeMutex = PTHREAD_MUTEX_INITIALIZER;
173static pthread_mutex_t s_startupMutex = PTHREAD_MUTEX_INITIALIZER;
174static pthread_cond_t s_startupCond = PTHREAD_COND_INITIALIZER;
175
176static pthread_mutex_t s_dispatchMutex = PTHREAD_MUTEX_INITIALIZER;
177static pthread_cond_t s_dispatchCond = PTHREAD_COND_INITIALIZER;
178
179static RequestInfo *s_pendingRequests = NULL;
180
181static RequestInfo *s_toDispatchHead = NULL;
182static RequestInfo *s_toDispatchTail = NULL;
183
184static UserCallbackInfo *s_last_wake_timeout_info = NULL;
185
186static void *s_lastNITZTimeData = NULL;
187static size_t s_lastNITZTimeDataSize;
188
189#if RILC_LOG
190 static char printBuf[PRINTBUF_SIZE];
191#endif
192
193/*******************************************************************/
194
195static void dispatchVoid (Parcel& p, RequestInfo *pRI);
196static void dispatchString (Parcel& p, RequestInfo *pRI);
197static void dispatchStrings (Parcel& p, RequestInfo *pRI);
198static void dispatchInts (Parcel& p, RequestInfo *pRI);
199static void dispatchDial (Parcel& p, RequestInfo *pRI);
200static void dispatchSIM_IO (Parcel& p, RequestInfo *pRI);
201static void dispatchCallForward(Parcel& p, RequestInfo *pRI);
202static void dispatchRaw(Parcel& p, RequestInfo *pRI);
203static void dispatchSmsWrite (Parcel &p, RequestInfo *pRI);
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -0700204static void dispatchDataCall (Parcel& p, RequestInfo *pRI);
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800205static void dispatchVoiceRadioTech (Parcel& p, RequestInfo *pRI);
206static void dispatchCdmaSubscriptionSource (Parcel& p, RequestInfo *pRI);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800207
Wink Savillef4c4d362009-04-02 01:37:03 -0700208static void dispatchCdmaSms(Parcel &p, RequestInfo *pRI);
209static void dispatchCdmaSmsAck(Parcel &p, RequestInfo *pRI);
Wink Savillea592eeb2009-05-22 13:26:36 -0700210static void dispatchGsmBrSmsCnf(Parcel &p, RequestInfo *pRI);
Wink Savillef4c4d362009-04-02 01:37:03 -0700211static void dispatchCdmaBrSmsCnf(Parcel &p, RequestInfo *pRI);
212static void dispatchRilCdmaSmsWriteArgs(Parcel &p, RequestInfo *pRI);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800213static int responseInts(Parcel &p, void *response, size_t responselen);
214static int responseStrings(Parcel &p, void *response, size_t responselen);
215static int responseString(Parcel &p, void *response, size_t responselen);
216static int responseVoid(Parcel &p, void *response, size_t responselen);
217static int responseCallList(Parcel &p, void *response, size_t responselen);
218static int responseSMS(Parcel &p, void *response, size_t responselen);
219static int responseSIM_IO(Parcel &p, void *response, size_t responselen);
220static int responseCallForwards(Parcel &p, void *response, size_t responselen);
Wink Savillef4c4d362009-04-02 01:37:03 -0700221static int responseDataCallList(Parcel &p, void *response, size_t responselen);
Wink Saville43808972011-01-13 17:39:51 -0800222static int responseSetupDataCall(Parcel &p, void *response, size_t responselen);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800223static int responseRaw(Parcel &p, void *response, size_t responselen);
224static int responseSsn(Parcel &p, void *response, size_t responselen);
Wink Savillef4c4d362009-04-02 01:37:03 -0700225static int responseSimStatus(Parcel &p, void *response, size_t responselen);
Wink Savillea592eeb2009-05-22 13:26:36 -0700226static int responseGsmBrSmsCnf(Parcel &p, void *response, size_t responselen);
227static int responseCdmaBrSmsCnf(Parcel &p, void *response, size_t responselen);
Wink Savillef4c4d362009-04-02 01:37:03 -0700228static int responseCdmaSms(Parcel &p, void *response, size_t responselen);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800229static int responseCellList(Parcel &p, void *response, size_t responselen);
Wink Saville3d54e742009-05-18 18:00:44 -0700230static int responseCdmaInformationRecords(Parcel &p,void *response, size_t responselen);
231static int responseRilSignalStrength(Parcel &p,void *response, size_t responselen);
232static int responseCallRing(Parcel &p, void *response, size_t responselen);
233static int responseCdmaSignalInfoRecord(Parcel &p,void *response, size_t responselen);
234static int responseCdmaCallWaiting(Parcel &p,void *response, size_t responselen);
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800235static int responseSimRefresh(Parcel &p, void *response, size_t responselen);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800236
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800237static int decodeVoiceRadioTechnology (RIL_RadioState radioState);
238static int decodeCdmaSubscriptionSource (RIL_RadioState radioState);
239static RIL_RadioState processRadioState(RIL_RadioState newRadioState);
240
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800241extern "C" const char * requestToString(int request);
242extern "C" const char * failCauseToString(RIL_Errno);
243extern "C" const char * callStateToString(RIL_CallState);
244extern "C" const char * radioStateToString(RIL_RadioState);
245
246#ifdef RIL_SHLIB
Wink Saville7f856802009-06-09 10:23:37 -0700247extern "C" void RIL_onUnsolicitedResponse(int unsolResponse, void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800248 size_t datalen);
249#endif
250
Wink Saville7f856802009-06-09 10:23:37 -0700251static UserCallbackInfo * internalRequestTimedCallback
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -0700252 (RIL_TimedCallback callback, void *param,
253 const struct timeval *relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800254
255/** Index == requestNumber */
256static CommandInfo s_commands[] = {
257#include "ril_commands.h"
258};
259
260static UnsolResponseInfo s_unsolResponses[] = {
261#include "ril_unsol_commands.h"
262};
263
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800264/* For older RILs that do not support new commands RIL_REQUEST_VOICE_RADIO_TECH and
265 RIL_UNSOL_VOICE_RADIO_TECH_CHANGED messages, decode the voice radio tech from
266 radio state message and store it. Every time there is a change in Radio State
267 check to see if voice radio tech changes and notify telephony
268 */
269int voiceRadioTech = -1;
270
271/* For older RILs that do not support new commands RIL_REQUEST_GET_CDMA_SUBSCRIPTION_SOURCE
272 and RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED messages, decode the subscription
273 source from radio state and store it. Every time there is a change in Radio State
274 check to see if subscription source changed and notify telephony
275 */
276int cdmaSubscriptionSource = -1;
277
278/* For older RILs that do not send RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED, decode the
279 SIM/RUIM state from radio state and store it. Every time there is a change in Radio State,
280 check to see if SIM/RUIM status changed and notify telephony
281 */
282int simRuimStatus = -1;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800283
284static char *
Wink Savillef4c4d362009-04-02 01:37:03 -0700285strdupReadString(Parcel &p) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800286 size_t stringlen;
287 const char16_t *s16;
Wink Saville7f856802009-06-09 10:23:37 -0700288
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800289 s16 = p.readString16Inplace(&stringlen);
Wink Saville7f856802009-06-09 10:23:37 -0700290
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800291 return strndup16to8(s16, stringlen);
292}
293
Wink Savillef4c4d362009-04-02 01:37:03 -0700294static void writeStringToParcel(Parcel &p, const char *s) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800295 char16_t *s16;
296 size_t s16_len;
297 s16 = strdup8to16(s, &s16_len);
298 p.writeString16(s16, s16_len);
299 free(s16);
300}
301
302
303static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700304memsetString (char *s) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800305 if (s != NULL) {
306 memset (s, 0, strlen(s));
307 }
308}
309
310void nullParcelReleaseFunction (const uint8_t* data, size_t dataSize,
311 const size_t* objects, size_t objectsSize,
Wink Savillef4c4d362009-04-02 01:37:03 -0700312 void* cookie) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800313 // do nothing -- the data reference lives longer than the Parcel object
314}
315
Wink Saville7f856802009-06-09 10:23:37 -0700316/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800317 * To be called from dispatch thread
318 * Issue a single local request, ensuring that the response
Wink Saville7f856802009-06-09 10:23:37 -0700319 * is not sent back up to the command process
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800320 */
321static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700322issueLocalRequest(int request, void *data, int len) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800323 RequestInfo *pRI;
324 int ret;
325
326 pRI = (RequestInfo *)calloc(1, sizeof(RequestInfo));
327
328 pRI->local = 1;
329 pRI->token = 0xffffffff; // token is not used in this context
330 pRI->pCI = &(s_commands[request]);
331
332 ret = pthread_mutex_lock(&s_pendingRequestsMutex);
333 assert (ret == 0);
334
335 pRI->p_next = s_pendingRequests;
336 s_pendingRequests = pRI;
337
338 ret = pthread_mutex_unlock(&s_pendingRequestsMutex);
339 assert (ret == 0);
340
Steve Block64640682011-12-20 20:47:51 +0000341 ALOGD("C[locl]> %s", requestToString(request));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800342
343 s_callbacks.onRequest(request, data, len, pRI);
344}
345
346
347
348static int
Wink Savillef4c4d362009-04-02 01:37:03 -0700349processCommandBuffer(void *buffer, size_t buflen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800350 Parcel p;
351 status_t status;
352 int32_t request;
353 int32_t token;
354 RequestInfo *pRI;
355 int ret;
356
357 p.setData((uint8_t *) buffer, buflen);
358
359 // status checked at end
360 status = p.readInt32(&request);
361 status = p.readInt32 (&token);
362
363 if (status != NO_ERROR) {
Steve Blockf423cde2012-01-08 13:48:26 +0000364 ALOGE("invalid request block");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800365 return 0;
366 }
367
368 if (request < 1 || request >= (int32_t)NUM_ELEMS(s_commands)) {
Steve Blockf423cde2012-01-08 13:48:26 +0000369 ALOGE("unsupported request code %d token %d", request, token);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800370 // FIXME this should perhaps return a response
371 return 0;
372 }
373
374
375 pRI = (RequestInfo *)calloc(1, sizeof(RequestInfo));
376
377 pRI->token = token;
378 pRI->pCI = &(s_commands[request]);
379
380 ret = pthread_mutex_lock(&s_pendingRequestsMutex);
381 assert (ret == 0);
382
383 pRI->p_next = s_pendingRequests;
384 s_pendingRequests = pRI;
385
386 ret = pthread_mutex_unlock(&s_pendingRequestsMutex);
387 assert (ret == 0);
388
389/* sLastDispatchedToken = token; */
390
Wink Saville7f856802009-06-09 10:23:37 -0700391 pRI->pCI->dispatchFunction(p, pRI);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800392
393 return 0;
394}
395
396static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700397invalidCommandBlock (RequestInfo *pRI) {
Steve Blockf423cde2012-01-08 13:48:26 +0000398 ALOGE("invalid command block for token %d request %s",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800399 pRI->token, requestToString(pRI->pCI->requestNumber));
400}
401
402/** Callee expects NULL */
Wink Saville7f856802009-06-09 10:23:37 -0700403static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700404dispatchVoid (Parcel& p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800405 clearPrintBuf;
406 printRequest(pRI->token, pRI->pCI->requestNumber);
407 s_callbacks.onRequest(pRI->pCI->requestNumber, NULL, 0, pRI);
408}
409
410/** Callee expects const char * */
411static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700412dispatchString (Parcel& p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800413 status_t status;
414 size_t datalen;
415 size_t stringlen;
416 char *string8 = NULL;
417
418 string8 = strdupReadString(p);
419
420 startRequest;
421 appendPrintBuf("%s%s", printBuf, string8);
422 closeRequest;
423 printRequest(pRI->token, pRI->pCI->requestNumber);
424
425 s_callbacks.onRequest(pRI->pCI->requestNumber, string8,
426 sizeof(char *), pRI);
427
428#ifdef MEMSET_FREED
429 memsetString(string8);
430#endif
431
432 free(string8);
433 return;
434invalid:
435 invalidCommandBlock(pRI);
436 return;
437}
438
439/** Callee expects const char ** */
440static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700441dispatchStrings (Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800442 int32_t countStrings;
443 status_t status;
444 size_t datalen;
445 char **pStrings;
446
447 status = p.readInt32 (&countStrings);
448
449 if (status != NO_ERROR) {
450 goto invalid;
451 }
452
453 startRequest;
454 if (countStrings == 0) {
455 // just some non-null pointer
456 pStrings = (char **)alloca(sizeof(char *));
457 datalen = 0;
458 } else if (((int)countStrings) == -1) {
459 pStrings = NULL;
460 datalen = 0;
461 } else {
462 datalen = sizeof(char *) * countStrings;
Wink Saville7f856802009-06-09 10:23:37 -0700463
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800464 pStrings = (char **)alloca(datalen);
465
466 for (int i = 0 ; i < countStrings ; i++) {
467 pStrings[i] = strdupReadString(p);
468 appendPrintBuf("%s%s,", printBuf, pStrings[i]);
469 }
470 }
471 removeLastChar;
472 closeRequest;
473 printRequest(pRI->token, pRI->pCI->requestNumber);
474
475 s_callbacks.onRequest(pRI->pCI->requestNumber, pStrings, datalen, pRI);
476
477 if (pStrings != NULL) {
478 for (int i = 0 ; i < countStrings ; i++) {
479#ifdef MEMSET_FREED
480 memsetString (pStrings[i]);
481#endif
482 free(pStrings[i]);
483 }
484
485#ifdef MEMSET_FREED
486 memset(pStrings, 0, datalen);
487#endif
488 }
Wink Saville7f856802009-06-09 10:23:37 -0700489
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800490 return;
491invalid:
492 invalidCommandBlock(pRI);
493 return;
494}
495
496/** Callee expects const int * */
497static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700498dispatchInts (Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800499 int32_t count;
500 status_t status;
501 size_t datalen;
502 int *pInts;
503
504 status = p.readInt32 (&count);
505
506 if (status != NO_ERROR || count == 0) {
507 goto invalid;
508 }
509
510 datalen = sizeof(int) * count;
511 pInts = (int *)alloca(datalen);
512
513 startRequest;
514 for (int i = 0 ; i < count ; i++) {
515 int32_t t;
516
517 status = p.readInt32(&t);
518 pInts[i] = (int)t;
519 appendPrintBuf("%s%d,", printBuf, t);
520
521 if (status != NO_ERROR) {
522 goto invalid;
523 }
524 }
525 removeLastChar;
526 closeRequest;
527 printRequest(pRI->token, pRI->pCI->requestNumber);
528
Wink Saville7f856802009-06-09 10:23:37 -0700529 s_callbacks.onRequest(pRI->pCI->requestNumber, const_cast<int *>(pInts),
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800530 datalen, pRI);
531
532#ifdef MEMSET_FREED
533 memset(pInts, 0, datalen);
534#endif
535
536 return;
537invalid:
538 invalidCommandBlock(pRI);
539 return;
540}
541
542
Wink Saville7f856802009-06-09 10:23:37 -0700543/**
544 * Callee expects const RIL_SMS_WriteArgs *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800545 * Payload is:
546 * int32_t status
547 * String pdu
548 */
549static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700550dispatchSmsWrite (Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800551 RIL_SMS_WriteArgs args;
552 int32_t t;
553 status_t status;
554
555 memset (&args, 0, sizeof(args));
556
557 status = p.readInt32(&t);
558 args.status = (int)t;
559
560 args.pdu = strdupReadString(p);
561
562 if (status != NO_ERROR || args.pdu == NULL) {
563 goto invalid;
564 }
565
566 args.smsc = strdupReadString(p);
567
568 startRequest;
569 appendPrintBuf("%s%d,%s,smsc=%s", printBuf, args.status,
570 (char*)args.pdu, (char*)args.smsc);
571 closeRequest;
572 printRequest(pRI->token, pRI->pCI->requestNumber);
Wink Saville7f856802009-06-09 10:23:37 -0700573
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800574 s_callbacks.onRequest(pRI->pCI->requestNumber, &args, sizeof(args), pRI);
575
576#ifdef MEMSET_FREED
577 memsetString (args.pdu);
578#endif
579
580 free (args.pdu);
Wink Saville7f856802009-06-09 10:23:37 -0700581
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800582#ifdef MEMSET_FREED
583 memset(&args, 0, sizeof(args));
584#endif
585
586 return;
587invalid:
588 invalidCommandBlock(pRI);
589 return;
590}
591
Wink Saville7f856802009-06-09 10:23:37 -0700592/**
593 * Callee expects const RIL_Dial *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800594 * Payload is:
595 * String address
596 * int32_t clir
597 */
598static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700599dispatchDial (Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800600 RIL_Dial dial;
Wink Saville74fa3882009-12-22 15:35:41 -0800601 RIL_UUS_Info uusInfo;
Wink Saville7bce0822010-01-08 15:20:12 -0800602 int32_t sizeOfDial;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800603 int32_t t;
Wink Saville74fa3882009-12-22 15:35:41 -0800604 int32_t uusPresent;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800605 status_t status;
606
607 memset (&dial, 0, sizeof(dial));
608
609 dial.address = strdupReadString(p);
610
611 status = p.readInt32(&t);
612 dial.clir = (int)t;
613
614 if (status != NO_ERROR || dial.address == NULL) {
615 goto invalid;
616 }
617
Wink Saville3a4840b2010-04-07 13:29:58 -0700618 if (s_callbacks.version < 3) { // Remove when partners upgrade to version 3
Wink Saville74fa3882009-12-22 15:35:41 -0800619 uusPresent = 0;
Wink Saville7bce0822010-01-08 15:20:12 -0800620 sizeOfDial = sizeof(dial) - sizeof(RIL_UUS_Info *);
Wink Saville74fa3882009-12-22 15:35:41 -0800621 } else {
622 status = p.readInt32(&uusPresent);
623
624 if (status != NO_ERROR) {
625 goto invalid;
626 }
627
628 if (uusPresent == 0) {
629 dial.uusInfo = NULL;
630 } else {
631 int32_t len;
632
633 memset(&uusInfo, 0, sizeof(RIL_UUS_Info));
634
635 status = p.readInt32(&t);
636 uusInfo.uusType = (RIL_UUS_Type) t;
637
638 status = p.readInt32(&t);
639 uusInfo.uusDcs = (RIL_UUS_DCS) t;
640
641 status = p.readInt32(&len);
642 if (status != NO_ERROR) {
643 goto invalid;
644 }
645
646 // The java code writes -1 for null arrays
647 if (((int) len) == -1) {
648 uusInfo.uusData = NULL;
649 len = 0;
650 } else {
651 uusInfo.uusData = (char*) p.readInplace(len);
652 }
653
654 uusInfo.uusLength = len;
655 dial.uusInfo = &uusInfo;
656 }
Wink Saville7bce0822010-01-08 15:20:12 -0800657 sizeOfDial = sizeof(dial);
Wink Saville74fa3882009-12-22 15:35:41 -0800658 }
659
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800660 startRequest;
661 appendPrintBuf("%snum=%s,clir=%d", printBuf, dial.address, dial.clir);
Wink Saville74fa3882009-12-22 15:35:41 -0800662 if (uusPresent) {
663 appendPrintBuf("%s,uusType=%d,uusDcs=%d,uusLen=%d", printBuf,
664 dial.uusInfo->uusType, dial.uusInfo->uusDcs,
665 dial.uusInfo->uusLength);
666 }
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800667 closeRequest;
668 printRequest(pRI->token, pRI->pCI->requestNumber);
669
Wink Saville7bce0822010-01-08 15:20:12 -0800670 s_callbacks.onRequest(pRI->pCI->requestNumber, &dial, sizeOfDial, pRI);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800671
672#ifdef MEMSET_FREED
673 memsetString (dial.address);
674#endif
675
676 free (dial.address);
Wink Saville7f856802009-06-09 10:23:37 -0700677
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800678#ifdef MEMSET_FREED
Wink Saville74fa3882009-12-22 15:35:41 -0800679 memset(&uusInfo, 0, sizeof(RIL_UUS_Info));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800680 memset(&dial, 0, sizeof(dial));
681#endif
682
683 return;
684invalid:
685 invalidCommandBlock(pRI);
686 return;
687}
688
Wink Saville7f856802009-06-09 10:23:37 -0700689/**
690 * Callee expects const RIL_SIM_IO *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800691 * Payload is:
692 * int32_t command
693 * int32_t fileid
694 * String path
695 * int32_t p1, p2, p3
Wink Saville7f856802009-06-09 10:23:37 -0700696 * String data
697 * String pin2
Wink Savillec0114b32011-02-18 10:14:07 -0800698 * String aidPtr
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800699 */
700static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700701dispatchSIM_IO (Parcel &p, RequestInfo *pRI) {
Wink Savillec0114b32011-02-18 10:14:07 -0800702 union RIL_SIM_IO {
703 RIL_SIM_IO_v6 v6;
704 RIL_SIM_IO_v5 v5;
705 } simIO;
706
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800707 int32_t t;
Wink Savillec0114b32011-02-18 10:14:07 -0800708 int size;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800709 status_t status;
710
711 memset (&simIO, 0, sizeof(simIO));
712
Wink Saville7f856802009-06-09 10:23:37 -0700713 // note we only check status at the end
714
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800715 status = p.readInt32(&t);
Wink Savillec0114b32011-02-18 10:14:07 -0800716 simIO.v6.command = (int)t;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800717
718 status = p.readInt32(&t);
Wink Savillec0114b32011-02-18 10:14:07 -0800719 simIO.v6.fileid = (int)t;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800720
Wink Savillec0114b32011-02-18 10:14:07 -0800721 simIO.v6.path = strdupReadString(p);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800722
723 status = p.readInt32(&t);
Wink Savillec0114b32011-02-18 10:14:07 -0800724 simIO.v6.p1 = (int)t;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800725
726 status = p.readInt32(&t);
Wink Savillec0114b32011-02-18 10:14:07 -0800727 simIO.v6.p2 = (int)t;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800728
729 status = p.readInt32(&t);
Wink Savillec0114b32011-02-18 10:14:07 -0800730 simIO.v6.p3 = (int)t;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800731
Wink Savillec0114b32011-02-18 10:14:07 -0800732 simIO.v6.data = strdupReadString(p);
733 simIO.v6.pin2 = strdupReadString(p);
734 simIO.v6.aidPtr = strdupReadString(p);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800735
736 startRequest;
Wink Savillec0114b32011-02-18 10:14:07 -0800737 appendPrintBuf("%scmd=0x%X,efid=0x%X,path=%s,%d,%d,%d,%s,pin2=%s,aid=%s", printBuf,
738 simIO.v6.command, simIO.v6.fileid, (char*)simIO.v6.path,
739 simIO.v6.p1, simIO.v6.p2, simIO.v6.p3,
740 (char*)simIO.v6.data, (char*)simIO.v6.pin2, simIO.v6.aidPtr);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800741 closeRequest;
742 printRequest(pRI->token, pRI->pCI->requestNumber);
Wink Saville7f856802009-06-09 10:23:37 -0700743
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800744 if (status != NO_ERROR) {
745 goto invalid;
746 }
747
Wink Savillec0114b32011-02-18 10:14:07 -0800748 size = (s_callbacks.version < 6) ? sizeof(simIO.v5) : sizeof(simIO.v6);
749 s_callbacks.onRequest(pRI->pCI->requestNumber, &simIO, size, pRI);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800750
751#ifdef MEMSET_FREED
Wink Savillec0114b32011-02-18 10:14:07 -0800752 memsetString (simIO.v6.path);
753 memsetString (simIO.v6.data);
754 memsetString (simIO.v6.pin2);
755 memsetString (simIO.v6.aidPtr);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800756#endif
757
Wink Savillec0114b32011-02-18 10:14:07 -0800758 free (simIO.v6.path);
759 free (simIO.v6.data);
760 free (simIO.v6.pin2);
761 free (simIO.v6.aidPtr);
Wink Saville7f856802009-06-09 10:23:37 -0700762
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800763#ifdef MEMSET_FREED
764 memset(&simIO, 0, sizeof(simIO));
765#endif
766
767 return;
768invalid:
769 invalidCommandBlock(pRI);
770 return;
771}
772
773/**
774 * Callee expects const RIL_CallForwardInfo *
775 * Payload is:
776 * int32_t status/action
777 * int32_t reason
778 * int32_t serviceCode
779 * int32_t toa
780 * String number (0 length -> null)
781 * int32_t timeSeconds
782 */
Wink Saville7f856802009-06-09 10:23:37 -0700783static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700784dispatchCallForward(Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800785 RIL_CallForwardInfo cff;
786 int32_t t;
787 status_t status;
788
789 memset (&cff, 0, sizeof(cff));
790
Wink Saville7f856802009-06-09 10:23:37 -0700791 // note we only check status at the end
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800792
793 status = p.readInt32(&t);
794 cff.status = (int)t;
Wink Saville7f856802009-06-09 10:23:37 -0700795
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800796 status = p.readInt32(&t);
797 cff.reason = (int)t;
798
799 status = p.readInt32(&t);
800 cff.serviceClass = (int)t;
801
802 status = p.readInt32(&t);
803 cff.toa = (int)t;
804
805 cff.number = strdupReadString(p);
806
807 status = p.readInt32(&t);
808 cff.timeSeconds = (int)t;
809
810 if (status != NO_ERROR) {
811 goto invalid;
812 }
813
814 // special case: number 0-length fields is null
815
816 if (cff.number != NULL && strlen (cff.number) == 0) {
817 cff.number = NULL;
818 }
819
820 startRequest;
821 appendPrintBuf("%sstat=%d,reason=%d,serv=%d,toa=%d,%s,tout=%d", printBuf,
822 cff.status, cff.reason, cff.serviceClass, cff.toa,
823 (char*)cff.number, cff.timeSeconds);
824 closeRequest;
825 printRequest(pRI->token, pRI->pCI->requestNumber);
826
827 s_callbacks.onRequest(pRI->pCI->requestNumber, &cff, sizeof(cff), pRI);
828
829#ifdef MEMSET_FREED
830 memsetString(cff.number);
831#endif
832
833 free (cff.number);
834
835#ifdef MEMSET_FREED
836 memset(&cff, 0, sizeof(cff));
837#endif
838
839 return;
840invalid:
841 invalidCommandBlock(pRI);
842 return;
843}
844
845
Wink Saville7f856802009-06-09 10:23:37 -0700846static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700847dispatchRaw(Parcel &p, RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800848 int32_t len;
849 status_t status;
850 const void *data;
851
852 status = p.readInt32(&len);
853
854 if (status != NO_ERROR) {
855 goto invalid;
856 }
857
858 // The java code writes -1 for null arrays
859 if (((int)len) == -1) {
860 data = NULL;
861 len = 0;
Wink Saville7f856802009-06-09 10:23:37 -0700862 }
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800863
864 data = p.readInplace(len);
865
866 startRequest;
867 appendPrintBuf("%sraw_size=%d", printBuf, len);
868 closeRequest;
869 printRequest(pRI->token, pRI->pCI->requestNumber);
870
871 s_callbacks.onRequest(pRI->pCI->requestNumber, const_cast<void *>(data), len, pRI);
872
873 return;
874invalid:
875 invalidCommandBlock(pRI);
876 return;
877}
878
Wink Saville7f856802009-06-09 10:23:37 -0700879static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700880dispatchCdmaSms(Parcel &p, RequestInfo *pRI) {
881 RIL_CDMA_SMS_Message rcsm;
882 int32_t t;
883 uint8_t ut;
884 status_t status;
885 int32_t digitCount;
886 int digitLimit;
Wink Saville7f856802009-06-09 10:23:37 -0700887
Wink Savillef4c4d362009-04-02 01:37:03 -0700888 memset(&rcsm, 0, sizeof(rcsm));
889
890 status = p.readInt32(&t);
891 rcsm.uTeleserviceID = (int) t;
892
893 status = p.read(&ut,sizeof(ut));
894 rcsm.bIsServicePresent = (uint8_t) ut;
895
896 status = p.readInt32(&t);
897 rcsm.uServicecategory = (int) t;
898
899 status = p.readInt32(&t);
900 rcsm.sAddress.digit_mode = (RIL_CDMA_SMS_DigitMode) t;
901
902 status = p.readInt32(&t);
903 rcsm.sAddress.number_mode = (RIL_CDMA_SMS_NumberMode) t;
904
905 status = p.readInt32(&t);
906 rcsm.sAddress.number_type = (RIL_CDMA_SMS_NumberType) t;
907
908 status = p.readInt32(&t);
909 rcsm.sAddress.number_plan = (RIL_CDMA_SMS_NumberPlan) t;
910
911 status = p.read(&ut,sizeof(ut));
912 rcsm.sAddress.number_of_digits= (uint8_t) ut;
913
914 digitLimit= MIN((rcsm.sAddress.number_of_digits), RIL_CDMA_SMS_ADDRESS_MAX);
915 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
916 status = p.read(&ut,sizeof(ut));
917 rcsm.sAddress.digits[digitCount] = (uint8_t) ut;
918 }
919
Wink Saville7f856802009-06-09 10:23:37 -0700920 status = p.readInt32(&t);
Wink Savillef4c4d362009-04-02 01:37:03 -0700921 rcsm.sSubAddress.subaddressType = (RIL_CDMA_SMS_SubaddressType) t;
922
Wink Saville7f856802009-06-09 10:23:37 -0700923 status = p.read(&ut,sizeof(ut));
Wink Savillef4c4d362009-04-02 01:37:03 -0700924 rcsm.sSubAddress.odd = (uint8_t) ut;
925
926 status = p.read(&ut,sizeof(ut));
927 rcsm.sSubAddress.number_of_digits = (uint8_t) ut;
928
929 digitLimit= MIN((rcsm.sSubAddress.number_of_digits), RIL_CDMA_SMS_SUBADDRESS_MAX);
Wink Saville7f856802009-06-09 10:23:37 -0700930 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
931 status = p.read(&ut,sizeof(ut));
Wink Savillef4c4d362009-04-02 01:37:03 -0700932 rcsm.sSubAddress.digits[digitCount] = (uint8_t) ut;
933 }
934
Wink Saville7f856802009-06-09 10:23:37 -0700935 status = p.readInt32(&t);
Wink Savillef4c4d362009-04-02 01:37:03 -0700936 rcsm.uBearerDataLen = (int) t;
937
938 digitLimit= MIN((rcsm.uBearerDataLen), RIL_CDMA_SMS_BEARER_DATA_MAX);
Wink Saville7f856802009-06-09 10:23:37 -0700939 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
940 status = p.read(&ut, sizeof(ut));
Wink Savillef4c4d362009-04-02 01:37:03 -0700941 rcsm.aBearerData[digitCount] = (uint8_t) ut;
942 }
943
944 if (status != NO_ERROR) {
945 goto invalid;
946 }
947
948 startRequest;
949 appendPrintBuf("%suTeleserviceID=%d, bIsServicePresent=%d, uServicecategory=%d, \
Wink Saville1b5fd232009-04-22 14:50:00 -0700950 sAddress.digit_mode=%d, sAddress.Number_mode=%d, sAddress.number_type=%d, ",
Wink Savillef4c4d362009-04-02 01:37:03 -0700951 printBuf, rcsm.uTeleserviceID,rcsm.bIsServicePresent,rcsm.uServicecategory,
Wink Saville1b5fd232009-04-22 14:50:00 -0700952 rcsm.sAddress.digit_mode, rcsm.sAddress.number_mode,rcsm.sAddress.number_type);
Wink Savillef4c4d362009-04-02 01:37:03 -0700953 closeRequest;
Wink Saville7f856802009-06-09 10:23:37 -0700954
Wink Savillef4c4d362009-04-02 01:37:03 -0700955 printRequest(pRI->token, pRI->pCI->requestNumber);
956
957 s_callbacks.onRequest(pRI->pCI->requestNumber, &rcsm, sizeof(rcsm),pRI);
958
959#ifdef MEMSET_FREED
960 memset(&rcsm, 0, sizeof(rcsm));
961#endif
962
963 return;
964
965invalid:
966 invalidCommandBlock(pRI);
967 return;
968}
969
Wink Saville7f856802009-06-09 10:23:37 -0700970static void
Wink Savillef4c4d362009-04-02 01:37:03 -0700971dispatchCdmaSmsAck(Parcel &p, RequestInfo *pRI) {
972 RIL_CDMA_SMS_Ack rcsa;
973 int32_t t;
974 status_t status;
975 int32_t digitCount;
976
977 memset(&rcsa, 0, sizeof(rcsa));
978
979 status = p.readInt32(&t);
980 rcsa.uErrorClass = (RIL_CDMA_SMS_ErrorClass) t;
981
982 status = p.readInt32(&t);
983 rcsa.uSMSCauseCode = (int) t;
984
985 if (status != NO_ERROR) {
986 goto invalid;
987 }
988
989 startRequest;
Wink Saville1b5fd232009-04-22 14:50:00 -0700990 appendPrintBuf("%suErrorClass=%d, uTLStatus=%d, ",
991 printBuf, rcsa.uErrorClass, rcsa.uSMSCauseCode);
Wink Savillef4c4d362009-04-02 01:37:03 -0700992 closeRequest;
993
994 printRequest(pRI->token, pRI->pCI->requestNumber);
995
996 s_callbacks.onRequest(pRI->pCI->requestNumber, &rcsa, sizeof(rcsa),pRI);
997
998#ifdef MEMSET_FREED
999 memset(&rcsa, 0, sizeof(rcsa));
1000#endif
1001
1002 return;
1003
1004invalid:
1005 invalidCommandBlock(pRI);
1006 return;
1007}
1008
Wink Savillea592eeb2009-05-22 13:26:36 -07001009static void
1010dispatchGsmBrSmsCnf(Parcel &p, RequestInfo *pRI) {
1011 int32_t t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001012 status_t status;
Wink Savillea592eeb2009-05-22 13:26:36 -07001013 int32_t num;
Wink Savillef4c4d362009-04-02 01:37:03 -07001014
Wink Savillea592eeb2009-05-22 13:26:36 -07001015 status = p.readInt32(&num);
Wink Savillef4c4d362009-04-02 01:37:03 -07001016 if (status != NO_ERROR) {
1017 goto invalid;
1018 }
1019
Wink Savillea592eeb2009-05-22 13:26:36 -07001020 RIL_GSM_BroadcastSmsConfigInfo gsmBci[num];
1021 RIL_GSM_BroadcastSmsConfigInfo *gsmBciPtrs[num];
1022
Wink Savillef4c4d362009-04-02 01:37:03 -07001023 startRequest;
Wink Savillea592eeb2009-05-22 13:26:36 -07001024 for (int i = 0 ; i < num ; i++ ) {
1025 gsmBciPtrs[i] = &gsmBci[i];
Wink Savillef4c4d362009-04-02 01:37:03 -07001026
Wink Savillea592eeb2009-05-22 13:26:36 -07001027 status = p.readInt32(&t);
1028 gsmBci[i].fromServiceId = (int) t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001029
Wink Savillea592eeb2009-05-22 13:26:36 -07001030 status = p.readInt32(&t);
1031 gsmBci[i].toServiceId = (int) t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001032
Wink Savillea592eeb2009-05-22 13:26:36 -07001033 status = p.readInt32(&t);
1034 gsmBci[i].fromCodeScheme = (int) t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001035
Wink Savillea592eeb2009-05-22 13:26:36 -07001036 status = p.readInt32(&t);
1037 gsmBci[i].toCodeScheme = (int) t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001038
Wink Savillea592eeb2009-05-22 13:26:36 -07001039 status = p.readInt32(&t);
1040 gsmBci[i].selected = (uint8_t) t;
Wink Savillef4c4d362009-04-02 01:37:03 -07001041
Wink Savillea592eeb2009-05-22 13:26:36 -07001042 appendPrintBuf("%s [%d: fromServiceId=%d, toServiceId =%d, \
1043 fromCodeScheme=%d, toCodeScheme=%d, selected =%d]", printBuf, i,
1044 gsmBci[i].fromServiceId, gsmBci[i].toServiceId,
1045 gsmBci[i].fromCodeScheme, gsmBci[i].toCodeScheme,
1046 gsmBci[i].selected);
Wink Savillef5903df2009-04-24 11:54:14 -07001047 }
Wink Savillea592eeb2009-05-22 13:26:36 -07001048 closeRequest;
Wink Savillef4c4d362009-04-02 01:37:03 -07001049
1050 if (status != NO_ERROR) {
1051 goto invalid;
1052 }
1053
Wink Savillef5903df2009-04-24 11:54:14 -07001054 s_callbacks.onRequest(pRI->pCI->requestNumber,
Wink Savillea592eeb2009-05-22 13:26:36 -07001055 gsmBciPtrs,
1056 num * sizeof(RIL_GSM_BroadcastSmsConfigInfo *),
Wink Savillef5903df2009-04-24 11:54:14 -07001057 pRI);
Wink Savillef4c4d362009-04-02 01:37:03 -07001058
1059#ifdef MEMSET_FREED
Wink Savillea592eeb2009-05-22 13:26:36 -07001060 memset(gsmBci, 0, num * sizeof(RIL_GSM_BroadcastSmsConfigInfo));
1061 memset(gsmBciPtrs, 0, num * sizeof(RIL_GSM_BroadcastSmsConfigInfo *));
Wink Savillef4c4d362009-04-02 01:37:03 -07001062#endif
1063
1064 return;
1065
1066invalid:
1067 invalidCommandBlock(pRI);
1068 return;
Wink Savillea592eeb2009-05-22 13:26:36 -07001069}
Wink Savillef4c4d362009-04-02 01:37:03 -07001070
Wink Savillea592eeb2009-05-22 13:26:36 -07001071static void
1072dispatchCdmaBrSmsCnf(Parcel &p, RequestInfo *pRI) {
1073 int32_t t;
1074 status_t status;
1075 int32_t num;
1076
1077 status = p.readInt32(&num);
1078 if (status != NO_ERROR) {
1079 goto invalid;
1080 }
1081
1082 RIL_CDMA_BroadcastSmsConfigInfo cdmaBci[num];
1083 RIL_CDMA_BroadcastSmsConfigInfo *cdmaBciPtrs[num];
1084
1085 startRequest;
1086 for (int i = 0 ; i < num ; i++ ) {
1087 cdmaBciPtrs[i] = &cdmaBci[i];
1088
1089 status = p.readInt32(&t);
1090 cdmaBci[i].service_category = (int) t;
1091
1092 status = p.readInt32(&t);
1093 cdmaBci[i].language = (int) t;
1094
1095 status = p.readInt32(&t);
1096 cdmaBci[i].selected = (uint8_t) t;
1097
1098 appendPrintBuf("%s [%d: service_category=%d, language =%d, \
1099 entries.bSelected =%d]", printBuf, i, cdmaBci[i].service_category,
1100 cdmaBci[i].language, cdmaBci[i].selected);
1101 }
1102 closeRequest;
1103
1104 if (status != NO_ERROR) {
1105 goto invalid;
1106 }
1107
1108 s_callbacks.onRequest(pRI->pCI->requestNumber,
1109 cdmaBciPtrs,
1110 num * sizeof(RIL_CDMA_BroadcastSmsConfigInfo *),
1111 pRI);
1112
1113#ifdef MEMSET_FREED
1114 memset(cdmaBci, 0, num * sizeof(RIL_CDMA_BroadcastSmsConfigInfo));
1115 memset(cdmaBciPtrs, 0, num * sizeof(RIL_CDMA_BroadcastSmsConfigInfo *));
1116#endif
1117
1118 return;
1119
1120invalid:
1121 invalidCommandBlock(pRI);
1122 return;
Wink Savillef4c4d362009-04-02 01:37:03 -07001123}
1124
1125static void dispatchRilCdmaSmsWriteArgs(Parcel &p, RequestInfo *pRI) {
1126 RIL_CDMA_SMS_WriteArgs rcsw;
1127 int32_t t;
1128 uint32_t ut;
1129 uint8_t uct;
1130 status_t status;
1131 int32_t digitCount;
1132
1133 memset(&rcsw, 0, sizeof(rcsw));
1134
1135 status = p.readInt32(&t);
1136 rcsw.status = t;
Wink Savillea592eeb2009-05-22 13:26:36 -07001137
Wink Savillef4c4d362009-04-02 01:37:03 -07001138 status = p.readInt32(&t);
1139 rcsw.message.uTeleserviceID = (int) t;
1140
1141 status = p.read(&uct,sizeof(uct));
1142 rcsw.message.bIsServicePresent = (uint8_t) uct;
1143
1144 status = p.readInt32(&t);
1145 rcsw.message.uServicecategory = (int) t;
1146
1147 status = p.readInt32(&t);
1148 rcsw.message.sAddress.digit_mode = (RIL_CDMA_SMS_DigitMode) t;
1149
1150 status = p.readInt32(&t);
1151 rcsw.message.sAddress.number_mode = (RIL_CDMA_SMS_NumberMode) t;
1152
1153 status = p.readInt32(&t);
1154 rcsw.message.sAddress.number_type = (RIL_CDMA_SMS_NumberType) t;
1155
1156 status = p.readInt32(&t);
1157 rcsw.message.sAddress.number_plan = (RIL_CDMA_SMS_NumberPlan) t;
1158
1159 status = p.read(&uct,sizeof(uct));
1160 rcsw.message.sAddress.number_of_digits = (uint8_t) uct;
1161
1162 for(digitCount = 0 ; digitCount < RIL_CDMA_SMS_ADDRESS_MAX; digitCount ++) {
1163 status = p.read(&uct,sizeof(uct));
1164 rcsw.message.sAddress.digits[digitCount] = (uint8_t) uct;
1165 }
1166
Wink Savillea592eeb2009-05-22 13:26:36 -07001167 status = p.readInt32(&t);
Wink Savillef4c4d362009-04-02 01:37:03 -07001168 rcsw.message.sSubAddress.subaddressType = (RIL_CDMA_SMS_SubaddressType) t;
1169
Wink Savillea592eeb2009-05-22 13:26:36 -07001170 status = p.read(&uct,sizeof(uct));
Wink Savillef4c4d362009-04-02 01:37:03 -07001171 rcsw.message.sSubAddress.odd = (uint8_t) uct;
1172
1173 status = p.read(&uct,sizeof(uct));
1174 rcsw.message.sSubAddress.number_of_digits = (uint8_t) uct;
1175
1176 for(digitCount = 0 ; digitCount < RIL_CDMA_SMS_SUBADDRESS_MAX; digitCount ++) {
Wink Savillea592eeb2009-05-22 13:26:36 -07001177 status = p.read(&uct,sizeof(uct));
Wink Savillef4c4d362009-04-02 01:37:03 -07001178 rcsw.message.sSubAddress.digits[digitCount] = (uint8_t) uct;
1179 }
1180
Wink Savillea592eeb2009-05-22 13:26:36 -07001181 status = p.readInt32(&t);
Wink Savillef4c4d362009-04-02 01:37:03 -07001182 rcsw.message.uBearerDataLen = (int) t;
1183
1184 for(digitCount = 0 ; digitCount < RIL_CDMA_SMS_BEARER_DATA_MAX; digitCount ++) {
Wink Savillea592eeb2009-05-22 13:26:36 -07001185 status = p.read(&uct, sizeof(uct));
Wink Savillef4c4d362009-04-02 01:37:03 -07001186 rcsw.message.aBearerData[digitCount] = (uint8_t) uct;
1187 }
1188
1189 if (status != NO_ERROR) {
1190 goto invalid;
1191 }
1192
1193 startRequest;
Wink Saville1b5fd232009-04-22 14:50:00 -07001194 appendPrintBuf("%sstatus=%d, message.uTeleserviceID=%d, message.bIsServicePresent=%d, \
1195 message.uServicecategory=%d, message.sAddress.digit_mode=%d, \
1196 message.sAddress.number_mode=%d, \
1197 message.sAddress.number_type=%d, ",
Wink Savillef4c4d362009-04-02 01:37:03 -07001198 printBuf, rcsw.status, rcsw.message.uTeleserviceID, rcsw.message.bIsServicePresent,
Wink Saville1b5fd232009-04-22 14:50:00 -07001199 rcsw.message.uServicecategory, rcsw.message.sAddress.digit_mode,
1200 rcsw.message.sAddress.number_mode,
1201 rcsw.message.sAddress.number_type);
Wink Savillef4c4d362009-04-02 01:37:03 -07001202 closeRequest;
1203
1204 printRequest(pRI->token, pRI->pCI->requestNumber);
1205
1206 s_callbacks.onRequest(pRI->pCI->requestNumber, &rcsw, sizeof(rcsw),pRI);
1207
1208#ifdef MEMSET_FREED
1209 memset(&rcsw, 0, sizeof(rcsw));
1210#endif
1211
1212 return;
1213
1214invalid:
1215 invalidCommandBlock(pRI);
1216 return;
1217
1218}
1219
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -07001220// For backwards compatibility in RIL_REQUEST_SETUP_DATA_CALL.
1221// Version 4 of the RIL interface adds a new PDP type parameter to support
1222// IPv6 and dual-stack PDP contexts. When dealing with a previous version of
1223// RIL, remove the parameter from the request.
1224static void dispatchDataCall(Parcel& p, RequestInfo *pRI) {
1225 // In RIL v3, REQUEST_SETUP_DATA_CALL takes 6 parameters.
1226 const int numParamsRilV3 = 6;
1227
1228 // The first bytes of the RIL parcel contain the request number and the
1229 // serial number - see processCommandBuffer(). Copy them over too.
1230 int pos = p.dataPosition();
1231
1232 int numParams = p.readInt32();
1233 if (s_callbacks.version < 4 && numParams > numParamsRilV3) {
1234 Parcel p2;
1235 p2.appendFrom(&p, 0, pos);
1236 p2.writeInt32(numParamsRilV3);
1237 for(int i = 0; i < numParamsRilV3; i++) {
1238 p2.writeString16(p.readString16());
1239 }
1240 p2.setDataPosition(pos);
1241 dispatchStrings(p2, pRI);
1242 } else {
Lorenzo Colitti57ce1f22010-09-13 12:23:50 -07001243 p.setDataPosition(pos);
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -07001244 dispatchStrings(p, pRI);
1245 }
1246}
1247
Naveen Kalla2bc78d62011-12-07 16:22:53 -08001248// For backwards compatibility with RILs that dont support RIL_REQUEST_VOICE_RADIO_TECH.
1249// When all RILs handle this request, this function can be removed and
1250// the request can be sent directly to the RIL using dispatchVoid.
1251static void dispatchVoiceRadioTech(Parcel& p, RequestInfo *pRI) {
1252 RIL_RadioState state = s_callbacks.onStateRequest();
1253
1254 if ((RADIO_STATE_UNAVAILABLE == state) || (RADIO_STATE_OFF == state)) {
1255 RIL_onRequestComplete(pRI, RIL_E_RADIO_NOT_AVAILABLE, NULL, 0);
1256 }
1257
1258 // RILs that support RADIO_STATE_ON should support this request.
1259 if (RADIO_STATE_ON == state) {
1260 dispatchVoid(p, pRI);
1261 return;
1262 }
1263
1264 // For Older RILs, that do not support RADIO_STATE_ON, assume that they
1265 // will not support this new request either and decode Voice Radio Technology
1266 // from Radio State
1267 voiceRadioTech = decodeVoiceRadioTechnology(state);
1268
1269 if (voiceRadioTech < 0)
1270 RIL_onRequestComplete(pRI, RIL_E_GENERIC_FAILURE, NULL, 0);
1271 else
1272 RIL_onRequestComplete(pRI, RIL_E_SUCCESS, &voiceRadioTech, sizeof(int));
1273}
1274
1275// For backwards compatibility in RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE:.
1276// When all RILs handle this request, this function can be removed and
1277// the request can be sent directly to the RIL using dispatchVoid.
1278static void dispatchCdmaSubscriptionSource(Parcel& p, RequestInfo *pRI) {
1279 RIL_RadioState state = s_callbacks.onStateRequest();
1280
1281 if ((RADIO_STATE_UNAVAILABLE == state) || (RADIO_STATE_OFF == state)) {
1282 RIL_onRequestComplete(pRI, RIL_E_RADIO_NOT_AVAILABLE, NULL, 0);
1283 }
1284
1285 // RILs that support RADIO_STATE_ON should support this request.
1286 if (RADIO_STATE_ON == state) {
1287 dispatchVoid(p, pRI);
1288 return;
1289 }
1290
1291 // For Older RILs, that do not support RADIO_STATE_ON, assume that they
1292 // will not support this new request either and decode CDMA Subscription Source
1293 // from Radio State
1294 cdmaSubscriptionSource = decodeCdmaSubscriptionSource(state);
1295
1296 if (cdmaSubscriptionSource < 0)
1297 RIL_onRequestComplete(pRI, RIL_E_GENERIC_FAILURE, NULL, 0);
1298 else
1299 RIL_onRequestComplete(pRI, RIL_E_SUCCESS, &cdmaSubscriptionSource, sizeof(int));
1300}
1301
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001302static int
Wink Savillef4c4d362009-04-02 01:37:03 -07001303blockingWrite(int fd, const void *buffer, size_t len) {
Wink Saville7f856802009-06-09 10:23:37 -07001304 size_t writeOffset = 0;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001305 const uint8_t *toWrite;
1306
1307 toWrite = (const uint8_t *)buffer;
1308
1309 while (writeOffset < len) {
1310 ssize_t written;
1311 do {
1312 written = write (fd, toWrite + writeOffset,
1313 len - writeOffset);
1314 } while (written < 0 && errno == EINTR);
1315
1316 if (written >= 0) {
1317 writeOffset += written;
1318 } else { // written < 0
Steve Blockf423cde2012-01-08 13:48:26 +00001319 ALOGE ("RIL Response: unexpected error on write errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001320 close(fd);
1321 return -1;
1322 }
1323 }
1324
1325 return 0;
1326}
1327
1328static int
Wink Savillef4c4d362009-04-02 01:37:03 -07001329sendResponseRaw (const void *data, size_t dataSize) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001330 int fd = s_fdCommand;
1331 int ret;
1332 uint32_t header;
1333
1334 if (s_fdCommand < 0) {
1335 return -1;
1336 }
1337
1338 if (dataSize > MAX_COMMAND_BYTES) {
Steve Blockf423cde2012-01-08 13:48:26 +00001339 ALOGE("RIL: packet larger than %u (%u)",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001340 MAX_COMMAND_BYTES, (unsigned int )dataSize);
1341
1342 return -1;
1343 }
Wink Saville7f856802009-06-09 10:23:37 -07001344
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001345 pthread_mutex_lock(&s_writeMutex);
1346
1347 header = htonl(dataSize);
1348
1349 ret = blockingWrite(fd, (void *)&header, sizeof(header));
1350
1351 if (ret < 0) {
Jaikumar Ganesh084f6702009-08-18 16:40:29 -07001352 pthread_mutex_unlock(&s_writeMutex);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001353 return ret;
1354 }
1355
Kennyee1fadc2009-08-13 00:45:53 +08001356 ret = blockingWrite(fd, data, dataSize);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001357
1358 if (ret < 0) {
Jaikumar Ganesh084f6702009-08-18 16:40:29 -07001359 pthread_mutex_unlock(&s_writeMutex);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001360 return ret;
1361 }
1362
1363 pthread_mutex_unlock(&s_writeMutex);
1364
1365 return 0;
1366}
1367
1368static int
Wink Savillef4c4d362009-04-02 01:37:03 -07001369sendResponse (Parcel &p) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001370 printResponse;
1371 return sendResponseRaw(p.data(), p.dataSize());
1372}
1373
1374/** response is an int* pointing to an array of ints*/
Wink Saville7f856802009-06-09 10:23:37 -07001375
1376static int
Wink Savillef4c4d362009-04-02 01:37:03 -07001377responseInts(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001378 int numInts;
1379
1380 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001381 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001382 return RIL_ERRNO_INVALID_RESPONSE;
1383 }
1384 if (responselen % sizeof(int) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001385 ALOGE("invalid response length %d expected multiple of %d\n",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001386 (int)responselen, (int)sizeof(int));
1387 return RIL_ERRNO_INVALID_RESPONSE;
1388 }
1389
1390 int *p_int = (int *) response;
1391
1392 numInts = responselen / sizeof(int *);
1393 p.writeInt32 (numInts);
1394
1395 /* each int*/
1396 startResponse;
1397 for (int i = 0 ; i < numInts ; i++) {
1398 appendPrintBuf("%s%d,", printBuf, p_int[i]);
1399 p.writeInt32(p_int[i]);
1400 }
1401 removeLastChar;
1402 closeResponse;
1403
1404 return 0;
1405}
1406
Wink Saville43808972011-01-13 17:39:51 -08001407/** response is a char **, pointing to an array of char *'s
1408 The parcel will begin with the version */
1409static int responseStringsWithVersion(int version, Parcel &p, void *response, size_t responselen) {
1410 p.writeInt32(version);
1411 return responseStrings(p, response, responselen);
1412}
1413
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001414/** response is a char **, pointing to an array of char *'s */
Wink Savillef4c4d362009-04-02 01:37:03 -07001415static int responseStrings(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001416 int numStrings;
Wink Saville7f856802009-06-09 10:23:37 -07001417
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001418 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001419 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001420 return RIL_ERRNO_INVALID_RESPONSE;
1421 }
1422 if (responselen % sizeof(char *) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001423 ALOGE("invalid response length %d expected multiple of %d\n",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001424 (int)responselen, (int)sizeof(char *));
1425 return RIL_ERRNO_INVALID_RESPONSE;
1426 }
1427
1428 if (response == NULL) {
1429 p.writeInt32 (0);
1430 } else {
1431 char **p_cur = (char **) response;
1432
1433 numStrings = responselen / sizeof(char *);
1434 p.writeInt32 (numStrings);
1435
1436 /* each string*/
1437 startResponse;
1438 for (int i = 0 ; i < numStrings ; i++) {
1439 appendPrintBuf("%s%s,", printBuf, (char*)p_cur[i]);
1440 writeStringToParcel (p, p_cur[i]);
1441 }
1442 removeLastChar;
1443 closeResponse;
1444 }
1445 return 0;
1446}
1447
1448
1449/**
Wink Saville7f856802009-06-09 10:23:37 -07001450 * NULL strings are accepted
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001451 * FIXME currently ignores responselen
1452 */
Wink Savillef4c4d362009-04-02 01:37:03 -07001453static int responseString(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001454 /* one string only */
1455 startResponse;
1456 appendPrintBuf("%s%s", printBuf, (char*)response);
1457 closeResponse;
1458
1459 writeStringToParcel(p, (const char *)response);
1460
1461 return 0;
1462}
1463
Wink Savillef4c4d362009-04-02 01:37:03 -07001464static int responseVoid(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001465 startResponse;
1466 removeLastChar;
1467 return 0;
1468}
1469
Wink Savillef4c4d362009-04-02 01:37:03 -07001470static int responseCallList(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001471 int num;
1472
1473 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001474 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001475 return RIL_ERRNO_INVALID_RESPONSE;
1476 }
1477
1478 if (responselen % sizeof (RIL_Call *) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001479 ALOGE("invalid response length %d expected multiple of %d\n",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001480 (int)responselen, (int)sizeof (RIL_Call *));
1481 return RIL_ERRNO_INVALID_RESPONSE;
1482 }
1483
1484 startResponse;
1485 /* number of call info's */
1486 num = responselen / sizeof(RIL_Call *);
1487 p.writeInt32(num);
1488
1489 for (int i = 0 ; i < num ; i++) {
1490 RIL_Call *p_cur = ((RIL_Call **) response)[i];
1491 /* each call info */
1492 p.writeInt32(p_cur->state);
1493 p.writeInt32(p_cur->index);
1494 p.writeInt32(p_cur->toa);
1495 p.writeInt32(p_cur->isMpty);
1496 p.writeInt32(p_cur->isMT);
1497 p.writeInt32(p_cur->als);
1498 p.writeInt32(p_cur->isVoice);
Wink Saville1b5fd232009-04-22 14:50:00 -07001499 p.writeInt32(p_cur->isVoicePrivacy);
1500 writeStringToParcel(p, p_cur->number);
John Wangff368742009-03-24 17:56:29 -07001501 p.writeInt32(p_cur->numberPresentation);
Wink Saville1b5fd232009-04-22 14:50:00 -07001502 writeStringToParcel(p, p_cur->name);
1503 p.writeInt32(p_cur->namePresentation);
Wink Saville3a4840b2010-04-07 13:29:58 -07001504 // Remove when partners upgrade to version 3
Wink Saville74fa3882009-12-22 15:35:41 -08001505 if ((s_callbacks.version < 3) || (p_cur->uusInfo == NULL || p_cur->uusInfo->uusData == NULL)) {
1506 p.writeInt32(0); /* UUS Information is absent */
1507 } else {
1508 RIL_UUS_Info *uusInfo = p_cur->uusInfo;
1509 p.writeInt32(1); /* UUS Information is present */
1510 p.writeInt32(uusInfo->uusType);
1511 p.writeInt32(uusInfo->uusDcs);
1512 p.writeInt32(uusInfo->uusLength);
1513 p.write(uusInfo->uusData, uusInfo->uusLength);
1514 }
Wink Saville3d54e742009-05-18 18:00:44 -07001515 appendPrintBuf("%s[id=%d,%s,toa=%d,",
John Wangff368742009-03-24 17:56:29 -07001516 printBuf,
Wink Saville1b5fd232009-04-22 14:50:00 -07001517 p_cur->index,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001518 callStateToString(p_cur->state),
Wink Saville3d54e742009-05-18 18:00:44 -07001519 p_cur->toa);
1520 appendPrintBuf("%s%s,%s,als=%d,%s,%s,",
1521 printBuf,
Wink Saville1b5fd232009-04-22 14:50:00 -07001522 (p_cur->isMpty)?"conf":"norm",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001523 (p_cur->isMT)?"mt":"mo",
1524 p_cur->als,
1525 (p_cur->isVoice)?"voc":"nonvoc",
Wink Saville3d54e742009-05-18 18:00:44 -07001526 (p_cur->isVoicePrivacy)?"evp":"noevp");
1527 appendPrintBuf("%s%s,cli=%d,name='%s',%d]",
1528 printBuf,
Wink Saville1b5fd232009-04-22 14:50:00 -07001529 p_cur->number,
1530 p_cur->numberPresentation,
1531 p_cur->name,
1532 p_cur->namePresentation);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001533 }
1534 removeLastChar;
1535 closeResponse;
1536
1537 return 0;
1538}
1539
Wink Savillef4c4d362009-04-02 01:37:03 -07001540static int responseSMS(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001541 if (response == NULL) {
Steve Blockf423cde2012-01-08 13:48:26 +00001542 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001543 return RIL_ERRNO_INVALID_RESPONSE;
1544 }
1545
1546 if (responselen != sizeof (RIL_SMS_Response) ) {
Steve Blockf423cde2012-01-08 13:48:26 +00001547 ALOGE("invalid response length %d expected %d",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001548 (int)responselen, (int)sizeof (RIL_SMS_Response));
1549 return RIL_ERRNO_INVALID_RESPONSE;
1550 }
1551
1552 RIL_SMS_Response *p_cur = (RIL_SMS_Response *) response;
1553
1554 p.writeInt32(p_cur->messageRef);
1555 writeStringToParcel(p, p_cur->ackPDU);
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -07001556 p.writeInt32(p_cur->errorCode);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001557
1558 startResponse;
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -07001559 appendPrintBuf("%s%d,%s,%d", printBuf, p_cur->messageRef,
1560 (char*)p_cur->ackPDU, p_cur->errorCode);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001561 closeResponse;
1562
1563 return 0;
1564}
1565
Wink Savillec0114b32011-02-18 10:14:07 -08001566static int responseDataCallListV4(Parcel &p, void *response, size_t responselen)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001567{
1568 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001569 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001570 return RIL_ERRNO_INVALID_RESPONSE;
1571 }
1572
Wink Savillec0114b32011-02-18 10:14:07 -08001573 if (responselen % sizeof(RIL_Data_Call_Response_v4) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001574 ALOGE("invalid response length %d expected multiple of %d",
Wink Savillec0114b32011-02-18 10:14:07 -08001575 (int)responselen, (int)sizeof(RIL_Data_Call_Response_v4));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001576 return RIL_ERRNO_INVALID_RESPONSE;
1577 }
1578
Wink Savillec0114b32011-02-18 10:14:07 -08001579 int num = responselen / sizeof(RIL_Data_Call_Response_v4);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001580 p.writeInt32(num);
1581
Wink Savillec0114b32011-02-18 10:14:07 -08001582 RIL_Data_Call_Response_v4 *p_cur = (RIL_Data_Call_Response_v4 *) response;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001583 startResponse;
1584 int i;
1585 for (i = 0; i < num; i++) {
1586 p.writeInt32(p_cur[i].cid);
1587 p.writeInt32(p_cur[i].active);
1588 writeStringToParcel(p, p_cur[i].type);
Wink Savillec0114b32011-02-18 10:14:07 -08001589 // apn is not used, so don't send.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001590 writeStringToParcel(p, p_cur[i].address);
Wink Savillec0114b32011-02-18 10:14:07 -08001591 appendPrintBuf("%s[cid=%d,%s,%s,%s],", printBuf,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001592 p_cur[i].cid,
1593 (p_cur[i].active==0)?"down":"up",
1594 (char*)p_cur[i].type,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001595 (char*)p_cur[i].address);
1596 }
1597 removeLastChar;
1598 closeResponse;
1599
1600 return 0;
1601}
1602
Wink Saville43808972011-01-13 17:39:51 -08001603static int responseDataCallList(Parcel &p, void *response, size_t responselen)
1604{
1605 // Write version
1606 p.writeInt32(s_callbacks.version);
1607
1608 if (s_callbacks.version < 5) {
Wink Savillec0114b32011-02-18 10:14:07 -08001609 return responseDataCallListV4(p, response, responselen);
Wink Saville43808972011-01-13 17:39:51 -08001610 } else {
1611 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001612 ALOGE("invalid response: NULL");
Wink Saville43808972011-01-13 17:39:51 -08001613 return RIL_ERRNO_INVALID_RESPONSE;
1614 }
1615
Wink Savillec0114b32011-02-18 10:14:07 -08001616 if (responselen % sizeof(RIL_Data_Call_Response_v6) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001617 ALOGE("invalid response length %d expected multiple of %d",
Wink Savillec0114b32011-02-18 10:14:07 -08001618 (int)responselen, (int)sizeof(RIL_Data_Call_Response_v6));
Wink Saville43808972011-01-13 17:39:51 -08001619 return RIL_ERRNO_INVALID_RESPONSE;
1620 }
1621
Wink Savillec0114b32011-02-18 10:14:07 -08001622 int num = responselen / sizeof(RIL_Data_Call_Response_v6);
Wink Saville43808972011-01-13 17:39:51 -08001623 p.writeInt32(num);
1624
Wink Savillec0114b32011-02-18 10:14:07 -08001625 RIL_Data_Call_Response_v6 *p_cur = (RIL_Data_Call_Response_v6 *) response;
Wink Saville43808972011-01-13 17:39:51 -08001626 startResponse;
1627 int i;
1628 for (i = 0; i < num; i++) {
1629 p.writeInt32((int)p_cur[i].status);
Kazuhiro Ondobeb25b52011-06-17 16:26:45 -05001630 p.writeInt32(p_cur[i].suggestedRetryTime);
Wink Saville43808972011-01-13 17:39:51 -08001631 p.writeInt32(p_cur[i].cid);
1632 p.writeInt32(p_cur[i].active);
David 'Digit' Turneraf1298d2011-02-04 13:36:47 +01001633 writeStringToParcel(p, p_cur[i].type);
Wink Saville43808972011-01-13 17:39:51 -08001634 writeStringToParcel(p, p_cur[i].ifname);
1635 writeStringToParcel(p, p_cur[i].addresses);
1636 writeStringToParcel(p, p_cur[i].dnses);
Wink Savillec0114b32011-02-18 10:14:07 -08001637 writeStringToParcel(p, p_cur[i].gateways);
Kazuhiro Ondobeb25b52011-06-17 16:26:45 -05001638 appendPrintBuf("%s[status=%d,retry=%d,cid=%d,%s,%d,%s,%s,%s],", printBuf,
Wink Saville43808972011-01-13 17:39:51 -08001639 p_cur[i].status,
Kazuhiro Ondobeb25b52011-06-17 16:26:45 -05001640 p_cur[i].suggestedRetryTime,
Wink Saville43808972011-01-13 17:39:51 -08001641 p_cur[i].cid,
1642 (p_cur[i].active==0)?"down":"up",
1643 (char*)p_cur[i].ifname,
1644 (char*)p_cur[i].addresses,
Wink Savillec0114b32011-02-18 10:14:07 -08001645 (char*)p_cur[i].dnses,
1646 (char*)p_cur[i].gateways);
Wink Saville43808972011-01-13 17:39:51 -08001647 }
1648 removeLastChar;
1649 closeResponse;
1650 }
1651
1652 return 0;
1653}
1654
1655static int responseSetupDataCall(Parcel &p, void *response, size_t responselen)
1656{
1657 if (s_callbacks.version < 5) {
1658 return responseStringsWithVersion(s_callbacks.version, p, response, responselen);
1659 } else {
1660 return responseDataCallList(p, response, responselen);
1661 }
1662}
1663
Wink Savillef4c4d362009-04-02 01:37:03 -07001664static int responseRaw(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001665 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001666 ALOGE("invalid response: NULL with responselen != 0");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001667 return RIL_ERRNO_INVALID_RESPONSE;
1668 }
1669
1670 // The java code reads -1 size as null byte array
1671 if (response == NULL) {
Wink Saville7f856802009-06-09 10:23:37 -07001672 p.writeInt32(-1);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001673 } else {
1674 p.writeInt32(responselen);
1675 p.write(response, responselen);
1676 }
1677
1678 return 0;
1679}
1680
1681
Wink Savillef4c4d362009-04-02 01:37:03 -07001682static int responseSIM_IO(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001683 if (response == NULL) {
Steve Blockf423cde2012-01-08 13:48:26 +00001684 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001685 return RIL_ERRNO_INVALID_RESPONSE;
1686 }
1687
1688 if (responselen != sizeof (RIL_SIM_IO_Response) ) {
Steve Blockf423cde2012-01-08 13:48:26 +00001689 ALOGE("invalid response length was %d expected %d",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001690 (int)responselen, (int)sizeof (RIL_SIM_IO_Response));
1691 return RIL_ERRNO_INVALID_RESPONSE;
1692 }
1693
1694 RIL_SIM_IO_Response *p_cur = (RIL_SIM_IO_Response *) response;
1695 p.writeInt32(p_cur->sw1);
1696 p.writeInt32(p_cur->sw2);
1697 writeStringToParcel(p, p_cur->simResponse);
1698
1699 startResponse;
1700 appendPrintBuf("%ssw1=0x%X,sw2=0x%X,%s", printBuf, p_cur->sw1, p_cur->sw2,
1701 (char*)p_cur->simResponse);
1702 closeResponse;
1703
1704
1705 return 0;
1706}
1707
Wink Savillef4c4d362009-04-02 01:37:03 -07001708static int responseCallForwards(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001709 int num;
Wink Saville7f856802009-06-09 10:23:37 -07001710
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001711 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001712 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001713 return RIL_ERRNO_INVALID_RESPONSE;
1714 }
1715
1716 if (responselen % sizeof(RIL_CallForwardInfo *) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001717 ALOGE("invalid response length %d expected multiple of %d",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001718 (int)responselen, (int)sizeof(RIL_CallForwardInfo *));
1719 return RIL_ERRNO_INVALID_RESPONSE;
1720 }
1721
1722 /* number of call info's */
1723 num = responselen / sizeof(RIL_CallForwardInfo *);
1724 p.writeInt32(num);
1725
1726 startResponse;
1727 for (int i = 0 ; i < num ; i++) {
1728 RIL_CallForwardInfo *p_cur = ((RIL_CallForwardInfo **) response)[i];
1729
1730 p.writeInt32(p_cur->status);
1731 p.writeInt32(p_cur->reason);
1732 p.writeInt32(p_cur->serviceClass);
1733 p.writeInt32(p_cur->toa);
1734 writeStringToParcel(p, p_cur->number);
1735 p.writeInt32(p_cur->timeSeconds);
1736 appendPrintBuf("%s[%s,reason=%d,cls=%d,toa=%d,%s,tout=%d],", printBuf,
1737 (p_cur->status==1)?"enable":"disable",
1738 p_cur->reason, p_cur->serviceClass, p_cur->toa,
1739 (char*)p_cur->number,
1740 p_cur->timeSeconds);
1741 }
1742 removeLastChar;
1743 closeResponse;
Wink Saville7f856802009-06-09 10:23:37 -07001744
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001745 return 0;
1746}
1747
Wink Savillef4c4d362009-04-02 01:37:03 -07001748static int responseSsn(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001749 if (response == NULL) {
Steve Blockf423cde2012-01-08 13:48:26 +00001750 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001751 return RIL_ERRNO_INVALID_RESPONSE;
1752 }
1753
1754 if (responselen != sizeof(RIL_SuppSvcNotification)) {
Steve Blockf423cde2012-01-08 13:48:26 +00001755 ALOGE("invalid response length was %d expected %d",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001756 (int)responselen, (int)sizeof (RIL_SuppSvcNotification));
1757 return RIL_ERRNO_INVALID_RESPONSE;
1758 }
1759
1760 RIL_SuppSvcNotification *p_cur = (RIL_SuppSvcNotification *) response;
1761 p.writeInt32(p_cur->notificationType);
1762 p.writeInt32(p_cur->code);
1763 p.writeInt32(p_cur->index);
1764 p.writeInt32(p_cur->type);
1765 writeStringToParcel(p, p_cur->number);
1766
1767 startResponse;
1768 appendPrintBuf("%s%s,code=%d,id=%d,type=%d,%s", printBuf,
1769 (p_cur->notificationType==0)?"mo":"mt",
1770 p_cur->code, p_cur->index, p_cur->type,
1771 (char*)p_cur->number);
1772 closeResponse;
1773
1774 return 0;
1775}
1776
Wink Saville3d54e742009-05-18 18:00:44 -07001777static int responseCellList(Parcel &p, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001778 int num;
1779
1780 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001781 ALOGE("invalid response: NULL");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001782 return RIL_ERRNO_INVALID_RESPONSE;
1783 }
1784
1785 if (responselen % sizeof (RIL_NeighboringCell *) != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001786 ALOGE("invalid response length %d expected multiple of %d\n",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001787 (int)responselen, (int)sizeof (RIL_NeighboringCell *));
1788 return RIL_ERRNO_INVALID_RESPONSE;
1789 }
1790
1791 startResponse;
Wink Saville3d54e742009-05-18 18:00:44 -07001792 /* number of records */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001793 num = responselen / sizeof(RIL_NeighboringCell *);
1794 p.writeInt32(num);
1795
1796 for (int i = 0 ; i < num ; i++) {
1797 RIL_NeighboringCell *p_cur = ((RIL_NeighboringCell **) response)[i];
1798
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001799 p.writeInt32(p_cur->rssi);
1800 writeStringToParcel (p, p_cur->cid);
1801
1802 appendPrintBuf("%s[cid=%s,rssi=%d],", printBuf,
1803 p_cur->cid, p_cur->rssi);
1804 }
1805 removeLastChar;
1806 closeResponse;
1807
1808 return 0;
1809}
1810
Wink Saville3d54e742009-05-18 18:00:44 -07001811/**
1812 * Marshall the signalInfoRecord into the parcel if it exists.
1813 */
Wink Savillea592eeb2009-05-22 13:26:36 -07001814static void marshallSignalInfoRecord(Parcel &p,
1815 RIL_CDMA_SignalInfoRecord &p_signalInfoRecord) {
Wink Saville3d54e742009-05-18 18:00:44 -07001816 p.writeInt32(p_signalInfoRecord.isPresent);
1817 p.writeInt32(p_signalInfoRecord.signalType);
1818 p.writeInt32(p_signalInfoRecord.alertPitch);
1819 p.writeInt32(p_signalInfoRecord.signal);
1820}
1821
Wink Savillea592eeb2009-05-22 13:26:36 -07001822static int responseCdmaInformationRecords(Parcel &p,
1823 void *response, size_t responselen) {
Wink Saville3d54e742009-05-18 18:00:44 -07001824 int num;
Wink Savillea592eeb2009-05-22 13:26:36 -07001825 char* string8 = NULL;
1826 int buffer_lenght;
1827 RIL_CDMA_InformationRecord *infoRec;
Wink Saville3d54e742009-05-18 18:00:44 -07001828
1829 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001830 ALOGE("invalid response: NULL");
Wink Saville3d54e742009-05-18 18:00:44 -07001831 return RIL_ERRNO_INVALID_RESPONSE;
1832 }
1833
Wink Savillea592eeb2009-05-22 13:26:36 -07001834 if (responselen != sizeof (RIL_CDMA_InformationRecords)) {
Steve Blockf423cde2012-01-08 13:48:26 +00001835 ALOGE("invalid response length %d expected multiple of %d\n",
Wink Savillea592eeb2009-05-22 13:26:36 -07001836 (int)responselen, (int)sizeof (RIL_CDMA_InformationRecords *));
Wink Saville3d54e742009-05-18 18:00:44 -07001837 return RIL_ERRNO_INVALID_RESPONSE;
1838 }
1839
Wink Savillea592eeb2009-05-22 13:26:36 -07001840 RIL_CDMA_InformationRecords *p_cur =
1841 (RIL_CDMA_InformationRecords *) response;
1842 num = MIN(p_cur->numberOfInfoRecs, RIL_CDMA_MAX_NUMBER_OF_INFO_RECS);
Wink Saville3d54e742009-05-18 18:00:44 -07001843
1844 startResponse;
Wink Savillea592eeb2009-05-22 13:26:36 -07001845 p.writeInt32(num);
Wink Saville3d54e742009-05-18 18:00:44 -07001846
Wink Savillea592eeb2009-05-22 13:26:36 -07001847 for (int i = 0 ; i < num ; i++) {
1848 infoRec = &p_cur->infoRec[i];
1849 p.writeInt32(infoRec->name);
1850 switch (infoRec->name) {
Wink Saville3d54e742009-05-18 18:00:44 -07001851 case RIL_CDMA_DISPLAY_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001852 case RIL_CDMA_EXTENDED_DISPLAY_INFO_REC:
1853 if (infoRec->rec.display.alpha_len >
1854 CDMA_ALPHA_INFO_BUFFER_LENGTH) {
Steve Blockf423cde2012-01-08 13:48:26 +00001855 ALOGE("invalid display info response length %d \
Wink Savillea592eeb2009-05-22 13:26:36 -07001856 expected not more than %d\n",
1857 (int)infoRec->rec.display.alpha_len,
1858 CDMA_ALPHA_INFO_BUFFER_LENGTH);
1859 return RIL_ERRNO_INVALID_RESPONSE;
Wink Saville3d54e742009-05-18 18:00:44 -07001860 }
Wink Savillea592eeb2009-05-22 13:26:36 -07001861 string8 = (char*) malloc((infoRec->rec.display.alpha_len + 1)
1862 * sizeof(char) );
1863 for (int i = 0 ; i < infoRec->rec.display.alpha_len ; i++) {
1864 string8[i] = infoRec->rec.display.alpha_buf[i];
1865 }
Wink Saville43808972011-01-13 17:39:51 -08001866 string8[(int)infoRec->rec.display.alpha_len] = '\0';
Wink Savillea592eeb2009-05-22 13:26:36 -07001867 writeStringToParcel(p, (const char*)string8);
1868 free(string8);
1869 string8 = NULL;
Wink Saville3d54e742009-05-18 18:00:44 -07001870 break;
1871 case RIL_CDMA_CALLED_PARTY_NUMBER_INFO_REC:
Wink Saville3d54e742009-05-18 18:00:44 -07001872 case RIL_CDMA_CALLING_PARTY_NUMBER_INFO_REC:
Wink Saville3d54e742009-05-18 18:00:44 -07001873 case RIL_CDMA_CONNECTED_NUMBER_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001874 if (infoRec->rec.number.len > CDMA_NUMBER_INFO_BUFFER_LENGTH) {
Steve Blockf423cde2012-01-08 13:48:26 +00001875 ALOGE("invalid display info response length %d \
Wink Savillea592eeb2009-05-22 13:26:36 -07001876 expected not more than %d\n",
1877 (int)infoRec->rec.number.len,
1878 CDMA_NUMBER_INFO_BUFFER_LENGTH);
1879 return RIL_ERRNO_INVALID_RESPONSE;
Wink Saville3d54e742009-05-18 18:00:44 -07001880 }
Wink Savillea592eeb2009-05-22 13:26:36 -07001881 string8 = (char*) malloc((infoRec->rec.number.len + 1)
1882 * sizeof(char) );
1883 for (int i = 0 ; i < infoRec->rec.number.len; i++) {
1884 string8[i] = infoRec->rec.number.buf[i];
1885 }
Wink Saville43808972011-01-13 17:39:51 -08001886 string8[(int)infoRec->rec.number.len] = '\0';
Wink Savillea592eeb2009-05-22 13:26:36 -07001887 writeStringToParcel(p, (const char*)string8);
1888 free(string8);
1889 string8 = NULL;
1890 p.writeInt32(infoRec->rec.number.number_type);
1891 p.writeInt32(infoRec->rec.number.number_plan);
1892 p.writeInt32(infoRec->rec.number.pi);
1893 p.writeInt32(infoRec->rec.number.si);
Wink Saville3d54e742009-05-18 18:00:44 -07001894 break;
1895 case RIL_CDMA_SIGNAL_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001896 p.writeInt32(infoRec->rec.signal.isPresent);
1897 p.writeInt32(infoRec->rec.signal.signalType);
1898 p.writeInt32(infoRec->rec.signal.alertPitch);
1899 p.writeInt32(infoRec->rec.signal.signal);
1900
1901 appendPrintBuf("%sisPresent=%X, signalType=%X, \
1902 alertPitch=%X, signal=%X, ",
1903 printBuf, (int)infoRec->rec.signal.isPresent,
1904 (int)infoRec->rec.signal.signalType,
1905 (int)infoRec->rec.signal.alertPitch,
1906 (int)infoRec->rec.signal.signal);
1907 removeLastChar;
Wink Saville3d54e742009-05-18 18:00:44 -07001908 break;
1909 case RIL_CDMA_REDIRECTING_NUMBER_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001910 if (infoRec->rec.redir.redirectingNumber.len >
1911 CDMA_NUMBER_INFO_BUFFER_LENGTH) {
Steve Blockf423cde2012-01-08 13:48:26 +00001912 ALOGE("invalid display info response length %d \
Wink Savillea592eeb2009-05-22 13:26:36 -07001913 expected not more than %d\n",
1914 (int)infoRec->rec.redir.redirectingNumber.len,
1915 CDMA_NUMBER_INFO_BUFFER_LENGTH);
1916 return RIL_ERRNO_INVALID_RESPONSE;
Wink Saville3d54e742009-05-18 18:00:44 -07001917 }
Wink Savillea592eeb2009-05-22 13:26:36 -07001918 string8 = (char*) malloc((infoRec->rec.redir.redirectingNumber
1919 .len + 1) * sizeof(char) );
1920 for (int i = 0;
1921 i < infoRec->rec.redir.redirectingNumber.len;
1922 i++) {
1923 string8[i] = infoRec->rec.redir.redirectingNumber.buf[i];
1924 }
Wink Saville43808972011-01-13 17:39:51 -08001925 string8[(int)infoRec->rec.redir.redirectingNumber.len] = '\0';
Wink Savillea592eeb2009-05-22 13:26:36 -07001926 writeStringToParcel(p, (const char*)string8);
1927 free(string8);
1928 string8 = NULL;
1929 p.writeInt32(infoRec->rec.redir.redirectingNumber.number_type);
1930 p.writeInt32(infoRec->rec.redir.redirectingNumber.number_plan);
1931 p.writeInt32(infoRec->rec.redir.redirectingNumber.pi);
1932 p.writeInt32(infoRec->rec.redir.redirectingNumber.si);
1933 p.writeInt32(infoRec->rec.redir.redirectingReason);
Wink Saville3d54e742009-05-18 18:00:44 -07001934 break;
1935 case RIL_CDMA_LINE_CONTROL_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001936 p.writeInt32(infoRec->rec.lineCtrl.lineCtrlPolarityIncluded);
1937 p.writeInt32(infoRec->rec.lineCtrl.lineCtrlToggle);
1938 p.writeInt32(infoRec->rec.lineCtrl.lineCtrlReverse);
1939 p.writeInt32(infoRec->rec.lineCtrl.lineCtrlPowerDenial);
1940
1941 appendPrintBuf("%slineCtrlPolarityIncluded=%d, \
1942 lineCtrlToggle=%d, lineCtrlReverse=%d, \
1943 lineCtrlPowerDenial=%d, ", printBuf,
1944 (int)infoRec->rec.lineCtrl.lineCtrlPolarityIncluded,
1945 (int)infoRec->rec.lineCtrl.lineCtrlToggle,
1946 (int)infoRec->rec.lineCtrl.lineCtrlReverse,
1947 (int)infoRec->rec.lineCtrl.lineCtrlPowerDenial);
1948 removeLastChar;
Wink Saville3d54e742009-05-18 18:00:44 -07001949 break;
1950 case RIL_CDMA_T53_CLIR_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001951 p.writeInt32((int)(infoRec->rec.clir.cause));
Wink Saville3d54e742009-05-18 18:00:44 -07001952
Wink Savillea592eeb2009-05-22 13:26:36 -07001953 appendPrintBuf("%scause%d", printBuf, infoRec->rec.clir.cause);
1954 removeLastChar;
Wink Saville3d54e742009-05-18 18:00:44 -07001955 break;
1956 case RIL_CDMA_T53_AUDIO_CONTROL_INFO_REC:
Wink Savillea592eeb2009-05-22 13:26:36 -07001957 p.writeInt32(infoRec->rec.audioCtrl.upLink);
1958 p.writeInt32(infoRec->rec.audioCtrl.downLink);
1959
1960 appendPrintBuf("%supLink=%d, downLink=%d, ", printBuf,
1961 infoRec->rec.audioCtrl.upLink,
1962 infoRec->rec.audioCtrl.downLink);
1963 removeLastChar;
Wink Saville3d54e742009-05-18 18:00:44 -07001964 break;
Wink Savillea592eeb2009-05-22 13:26:36 -07001965 case RIL_CDMA_T53_RELEASE_INFO_REC:
1966 // TODO(Moto): See David Krause, he has the answer:)
Steve Blockf423cde2012-01-08 13:48:26 +00001967 ALOGE("RIL_CDMA_T53_RELEASE_INFO_REC: return INVALID_RESPONSE");
Wink Savillea592eeb2009-05-22 13:26:36 -07001968 return RIL_ERRNO_INVALID_RESPONSE;
1969 default:
Steve Blockf423cde2012-01-08 13:48:26 +00001970 ALOGE("Incorrect name value");
Wink Savillea592eeb2009-05-22 13:26:36 -07001971 return RIL_ERRNO_INVALID_RESPONSE;
Wink Saville3d54e742009-05-18 18:00:44 -07001972 }
1973 }
Wink Savillea592eeb2009-05-22 13:26:36 -07001974 closeResponse;
Wink Saville3d54e742009-05-18 18:00:44 -07001975
Wink Savillea592eeb2009-05-22 13:26:36 -07001976 return 0;
Wink Saville3d54e742009-05-18 18:00:44 -07001977}
1978
Wink Savillea592eeb2009-05-22 13:26:36 -07001979static int responseRilSignalStrength(Parcel &p,
1980 void *response, size_t responselen) {
1981 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00001982 ALOGE("invalid response: NULL");
Wink Saville3d54e742009-05-18 18:00:44 -07001983 return RIL_ERRNO_INVALID_RESPONSE;
1984 }
1985
Wink Savillec0114b32011-02-18 10:14:07 -08001986 if (responselen >= sizeof (RIL_SignalStrength_v5)) {
1987 RIL_SignalStrength_v6 *p_cur = ((RIL_SignalStrength_v6 *) response);
Wink Saville3d54e742009-05-18 18:00:44 -07001988
Wink Saville3d54e742009-05-18 18:00:44 -07001989 p.writeInt32(p_cur->GW_SignalStrength.signalStrength);
1990 p.writeInt32(p_cur->GW_SignalStrength.bitErrorRate);
1991 p.writeInt32(p_cur->CDMA_SignalStrength.dbm);
1992 p.writeInt32(p_cur->CDMA_SignalStrength.ecio);
1993 p.writeInt32(p_cur->EVDO_SignalStrength.dbm);
1994 p.writeInt32(p_cur->EVDO_SignalStrength.ecio);
1995 p.writeInt32(p_cur->EVDO_SignalStrength.signalNoiseRatio);
Wink Savillec0114b32011-02-18 10:14:07 -08001996 if (responselen >= sizeof (RIL_SignalStrength_v6)) {
1997 p.writeInt32(p_cur->LTE_SignalStrength.signalStrength);
Uma Maheswari Ramalingam9efcac52012-08-09 11:59:17 -07001998
1999 /*
2000 * ril version <=6 receives negative values for rsrp
2001 * workaround for backward compatibility
2002 */
2003 p_cur->LTE_SignalStrength.rsrp =
2004 ((s_callbacks.version <= 6) && (p_cur->LTE_SignalStrength.rsrp < 0 )) ?
2005 -(p_cur->LTE_SignalStrength.rsrp) : p_cur->LTE_SignalStrength.rsrp;
2006
Wink Savillec0114b32011-02-18 10:14:07 -08002007 p.writeInt32(p_cur->LTE_SignalStrength.rsrp);
2008 p.writeInt32(p_cur->LTE_SignalStrength.rsrq);
2009 p.writeInt32(p_cur->LTE_SignalStrength.rssnr);
2010 p.writeInt32(p_cur->LTE_SignalStrength.cqi);
2011 } else {
2012 memset(&p_cur->LTE_SignalStrength, sizeof (RIL_LTE_SignalStrength), 0);
2013 }
johnwangfdf825f2009-05-22 15:50:34 -07002014
2015 startResponse;
Wink Savillea592eeb2009-05-22 13:26:36 -07002016 appendPrintBuf("%s[signalStrength=%d,bitErrorRate=%d,\
Wink Savillec0114b32011-02-18 10:14:07 -08002017 CDMA_SS.dbm=%d,CDMA_SSecio=%d,\
2018 EVDO_SS.dbm=%d,EVDO_SS.ecio=%d,\
2019 EVDO_SS.signalNoiseRatio=%d,\
2020 LTE_SS.signalStrength=%d,LTE_SS.rsrp=%d,LTE_SS.rsrq=%d,\
2021 LTE_SS.rssnr=%d,LTE_SS.cqi=%d]",
Wink Savillea592eeb2009-05-22 13:26:36 -07002022 printBuf,
2023 p_cur->GW_SignalStrength.signalStrength,
2024 p_cur->GW_SignalStrength.bitErrorRate,
2025 p_cur->CDMA_SignalStrength.dbm,
2026 p_cur->CDMA_SignalStrength.ecio,
2027 p_cur->EVDO_SignalStrength.dbm,
2028 p_cur->EVDO_SignalStrength.ecio,
Wink Savillec0114b32011-02-18 10:14:07 -08002029 p_cur->EVDO_SignalStrength.signalNoiseRatio,
2030 p_cur->LTE_SignalStrength.signalStrength,
2031 p_cur->LTE_SignalStrength.rsrp,
2032 p_cur->LTE_SignalStrength.rsrq,
2033 p_cur->LTE_SignalStrength.rssnr,
2034 p_cur->LTE_SignalStrength.cqi);
Wink Savillea592eeb2009-05-22 13:26:36 -07002035 closeResponse;
2036
Wink Saville3d54e742009-05-18 18:00:44 -07002037 } else {
Steve Blockf423cde2012-01-08 13:48:26 +00002038 ALOGE("invalid response length");
Wink Saville3d54e742009-05-18 18:00:44 -07002039 return RIL_ERRNO_INVALID_RESPONSE;
2040 }
2041
Wink Saville3d54e742009-05-18 18:00:44 -07002042 return 0;
2043}
2044
2045static int responseCallRing(Parcel &p, void *response, size_t responselen) {
2046 if ((response == NULL) || (responselen == 0)) {
2047 return responseVoid(p, response, responselen);
2048 } else {
2049 return responseCdmaSignalInfoRecord(p, response, responselen);
2050 }
2051}
2052
2053static int responseCdmaSignalInfoRecord(Parcel &p, void *response, size_t responselen) {
2054 if (response == NULL || responselen == 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002055 ALOGE("invalid response: NULL");
Wink Saville3d54e742009-05-18 18:00:44 -07002056 return RIL_ERRNO_INVALID_RESPONSE;
2057 }
2058
2059 if (responselen != sizeof (RIL_CDMA_SignalInfoRecord)) {
Steve Blockf423cde2012-01-08 13:48:26 +00002060 ALOGE("invalid response length %d expected sizeof (RIL_CDMA_SignalInfoRecord) of %d\n",
Wink Saville3d54e742009-05-18 18:00:44 -07002061 (int)responselen, (int)sizeof (RIL_CDMA_SignalInfoRecord));
2062 return RIL_ERRNO_INVALID_RESPONSE;
2063 }
2064
2065 startResponse;
2066
2067 RIL_CDMA_SignalInfoRecord *p_cur = ((RIL_CDMA_SignalInfoRecord *) response);
2068 marshallSignalInfoRecord(p, *p_cur);
2069
2070 appendPrintBuf("%s[isPresent=%d,signalType=%d,alertPitch=%d\
2071 signal=%d]",
2072 printBuf,
2073 p_cur->isPresent,
2074 p_cur->signalType,
2075 p_cur->alertPitch,
2076 p_cur->signal);
2077
2078 closeResponse;
2079 return 0;
2080}
2081
Wink Savillea592eeb2009-05-22 13:26:36 -07002082static int responseCdmaCallWaiting(Parcel &p, void *response,
2083 size_t responselen) {
Wink Saville3d54e742009-05-18 18:00:44 -07002084 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002085 ALOGE("invalid response: NULL");
Wink Saville3d54e742009-05-18 18:00:44 -07002086 return RIL_ERRNO_INVALID_RESPONSE;
2087 }
2088
Wink Savillec0114b32011-02-18 10:14:07 -08002089 if (responselen < sizeof(RIL_CDMA_CallWaiting_v6)) {
Steve Block43b9c522012-01-06 10:14:35 +00002090 ALOGW("Upgrade to ril version %d\n", RIL_VERSION);
Wink Savillec0114b32011-02-18 10:14:07 -08002091 }
2092
2093 RIL_CDMA_CallWaiting_v6 *p_cur = ((RIL_CDMA_CallWaiting_v6 *) response);
2094
2095 writeStringToParcel(p, p_cur->number);
2096 p.writeInt32(p_cur->numberPresentation);
2097 writeStringToParcel(p, p_cur->name);
2098 marshallSignalInfoRecord(p, p_cur->signalInfoRecord);
2099
2100 if (responselen >= sizeof(RIL_CDMA_CallWaiting_v6)) {
2101 p.writeInt32(p_cur->number_type);
2102 p.writeInt32(p_cur->number_plan);
2103 } else {
2104 p.writeInt32(0);
2105 p.writeInt32(0);
Wink Saville3d54e742009-05-18 18:00:44 -07002106 }
2107
2108 startResponse;
Wink Saville3d54e742009-05-18 18:00:44 -07002109 appendPrintBuf("%snumber=%s,numberPresentation=%d, name=%s,\
2110 signalInfoRecord[isPresent=%d,signalType=%d,alertPitch=%d\
Wink Savillec0114b32011-02-18 10:14:07 -08002111 signal=%d,number_type=%d,number_plan=%d]",
Wink Saville3d54e742009-05-18 18:00:44 -07002112 printBuf,
2113 p_cur->number,
2114 p_cur->numberPresentation,
2115 p_cur->name,
2116 p_cur->signalInfoRecord.isPresent,
2117 p_cur->signalInfoRecord.signalType,
2118 p_cur->signalInfoRecord.alertPitch,
Wink Savillec0114b32011-02-18 10:14:07 -08002119 p_cur->signalInfoRecord.signal,
2120 p_cur->number_type,
2121 p_cur->number_plan);
Wink Saville3d54e742009-05-18 18:00:44 -07002122 closeResponse;
2123
2124 return 0;
2125}
2126
Alex Yakavenka45e740e2012-01-31 11:48:27 -08002127static int responseSimRefresh(Parcel &p, void *response, size_t responselen) {
2128 if (response == NULL && responselen != 0) {
2129 ALOGE("responseSimRefresh: invalid response: NULL");
2130 return RIL_ERRNO_INVALID_RESPONSE;
2131 }
2132
2133 startResponse;
2134 if (s_callbacks.version == 7) {
2135 RIL_SimRefreshResponse_v7 *p_cur = ((RIL_SimRefreshResponse_v7 *) response);
2136 p.writeInt32(p_cur->result);
2137 p.writeInt32(p_cur->ef_id);
2138 writeStringToParcel(p, p_cur->aid);
2139
2140 appendPrintBuf("%sresult=%d, ef_id=%d, aid=%s",
2141 printBuf,
2142 p_cur->result,
2143 p_cur->ef_id,
2144 p_cur->aid);
2145 } else {
2146 int *p_cur = ((int *) response);
2147 p.writeInt32(p_cur[0]);
2148 p.writeInt32(p_cur[1]);
2149 writeStringToParcel(p, NULL);
2150
2151 appendPrintBuf("%sresult=%d, ef_id=%d",
2152 printBuf,
2153 p_cur[0],
2154 p_cur[1]);
2155 }
2156 closeResponse;
2157
2158 return 0;
2159}
2160
Wink Saville3d54e742009-05-18 18:00:44 -07002161static void triggerEvLoop() {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002162 int ret;
2163 if (!pthread_equal(pthread_self(), s_tid_dispatch)) {
2164 /* trigger event loop to wakeup. No reason to do this,
2165 * if we're in the event loop thread */
2166 do {
2167 ret = write (s_fdWakeupWrite, " ", 1);
2168 } while (ret < 0 && errno == EINTR);
2169 }
2170}
2171
Wink Saville3d54e742009-05-18 18:00:44 -07002172static void rilEventAddWakeup(struct ril_event *ev) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002173 ril_event_add(ev);
2174 triggerEvLoop();
2175}
2176
Wink Savillefd729372011-02-22 16:19:39 -08002177static void sendSimStatusAppInfo(Parcel &p, int num_apps, RIL_AppStatus appStatus[]) {
2178 p.writeInt32(num_apps);
2179 startResponse;
2180 for (int i = 0; i < num_apps; i++) {
2181 p.writeInt32(appStatus[i].app_type);
2182 p.writeInt32(appStatus[i].app_state);
2183 p.writeInt32(appStatus[i].perso_substate);
2184 writeStringToParcel(p, (const char*)(appStatus[i].aid_ptr));
2185 writeStringToParcel(p, (const char*)
2186 (appStatus[i].app_label_ptr));
2187 p.writeInt32(appStatus[i].pin1_replaced);
2188 p.writeInt32(appStatus[i].pin1);
2189 p.writeInt32(appStatus[i].pin2);
2190 appendPrintBuf("%s[app_type=%d,app_state=%d,perso_substate=%d,\
2191 aid_ptr=%s,app_label_ptr=%s,pin1_replaced=%d,pin1=%d,pin2=%d],",
2192 printBuf,
2193 appStatus[i].app_type,
2194 appStatus[i].app_state,
2195 appStatus[i].perso_substate,
2196 appStatus[i].aid_ptr,
2197 appStatus[i].app_label_ptr,
2198 appStatus[i].pin1_replaced,
2199 appStatus[i].pin1,
2200 appStatus[i].pin2);
2201 }
2202 closeResponse;
2203}
2204
Wink Savillef4c4d362009-04-02 01:37:03 -07002205static int responseSimStatus(Parcel &p, void *response, size_t responselen) {
2206 int i;
2207
2208 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002209 ALOGE("invalid response: NULL");
Wink Savillef4c4d362009-04-02 01:37:03 -07002210 return RIL_ERRNO_INVALID_RESPONSE;
2211 }
2212
Wink Saville2c1fb3a2011-03-19 13:42:45 -07002213 if (responselen == sizeof (RIL_CardStatus_v6)) {
Wink Savillefd729372011-02-22 16:19:39 -08002214 RIL_CardStatus_v6 *p_cur = ((RIL_CardStatus_v6 *) response);
Wink Savillef4c4d362009-04-02 01:37:03 -07002215
Wink Savillefd729372011-02-22 16:19:39 -08002216 p.writeInt32(p_cur->card_state);
2217 p.writeInt32(p_cur->universal_pin_state);
2218 p.writeInt32(p_cur->gsm_umts_subscription_app_index);
2219 p.writeInt32(p_cur->cdma_subscription_app_index);
2220 p.writeInt32(p_cur->ims_subscription_app_index);
2221
2222 sendSimStatusAppInfo(p, p_cur->num_applications, p_cur->applications);
Wink Saville2c1fb3a2011-03-19 13:42:45 -07002223 } else if (responselen == sizeof (RIL_CardStatus_v5)) {
Wink Savillefd729372011-02-22 16:19:39 -08002224 RIL_CardStatus_v5 *p_cur = ((RIL_CardStatus_v5 *) response);
2225
2226 p.writeInt32(p_cur->card_state);
2227 p.writeInt32(p_cur->universal_pin_state);
2228 p.writeInt32(p_cur->gsm_umts_subscription_app_index);
2229 p.writeInt32(p_cur->cdma_subscription_app_index);
2230 p.writeInt32(-1);
2231
2232 sendSimStatusAppInfo(p, p_cur->num_applications, p_cur->applications);
Wink Saville2c1fb3a2011-03-19 13:42:45 -07002233 } else {
Steve Blockf423cde2012-01-08 13:48:26 +00002234 ALOGE("responseSimStatus: A RilCardStatus_v6 or _v5 expected\n");
Wink Saville2c1fb3a2011-03-19 13:42:45 -07002235 return RIL_ERRNO_INVALID_RESPONSE;
Wink Savillef4c4d362009-04-02 01:37:03 -07002236 }
Wink Savillef4c4d362009-04-02 01:37:03 -07002237
2238 return 0;
Wink Saville3d54e742009-05-18 18:00:44 -07002239}
Wink Savillef4c4d362009-04-02 01:37:03 -07002240
Wink Savillea592eeb2009-05-22 13:26:36 -07002241static int responseGsmBrSmsCnf(Parcel &p, void *response, size_t responselen) {
2242 int num = responselen / sizeof(RIL_GSM_BroadcastSmsConfigInfo *);
Wink Savillef4c4d362009-04-02 01:37:03 -07002243 p.writeInt32(num);
2244
Wink Savillef4c4d362009-04-02 01:37:03 -07002245 startResponse;
Wink Savillea592eeb2009-05-22 13:26:36 -07002246 RIL_GSM_BroadcastSmsConfigInfo **p_cur =
2247 (RIL_GSM_BroadcastSmsConfigInfo **) response;
2248 for (int i = 0; i < num; i++) {
2249 p.writeInt32(p_cur[i]->fromServiceId);
2250 p.writeInt32(p_cur[i]->toServiceId);
2251 p.writeInt32(p_cur[i]->fromCodeScheme);
2252 p.writeInt32(p_cur[i]->toCodeScheme);
2253 p.writeInt32(p_cur[i]->selected);
2254
2255 appendPrintBuf("%s [%d: fromServiceId=%d, toServiceId=%d, \
2256 fromCodeScheme=%d, toCodeScheme=%d, selected =%d]",
2257 printBuf, i, p_cur[i]->fromServiceId, p_cur[i]->toServiceId,
2258 p_cur[i]->fromCodeScheme, p_cur[i]->toCodeScheme,
2259 p_cur[i]->selected);
2260 }
Wink Savillef4c4d362009-04-02 01:37:03 -07002261 closeResponse;
2262
2263 return 0;
2264}
2265
Wink Savillea592eeb2009-05-22 13:26:36 -07002266static int responseCdmaBrSmsCnf(Parcel &p, void *response, size_t responselen) {
2267 RIL_CDMA_BroadcastSmsConfigInfo **p_cur =
2268 (RIL_CDMA_BroadcastSmsConfigInfo **) response;
Wink Savillef4c4d362009-04-02 01:37:03 -07002269
Wink Savillea592eeb2009-05-22 13:26:36 -07002270 int num = responselen / sizeof (RIL_CDMA_BroadcastSmsConfigInfo *);
2271 p.writeInt32(num);
Wink Savillef4c4d362009-04-02 01:37:03 -07002272
2273 startResponse;
Wink Savillea592eeb2009-05-22 13:26:36 -07002274 for (int i = 0 ; i < num ; i++ ) {
2275 p.writeInt32(p_cur[i]->service_category);
2276 p.writeInt32(p_cur[i]->language);
2277 p.writeInt32(p_cur[i]->selected);
Wink Savillef4c4d362009-04-02 01:37:03 -07002278
Wink Savillea592eeb2009-05-22 13:26:36 -07002279 appendPrintBuf("%s [%d: srvice_category=%d, language =%d, \
2280 selected =%d], ",
2281 printBuf, i, p_cur[i]->service_category, p_cur[i]->language,
2282 p_cur[i]->selected);
Wink Savillef5903df2009-04-24 11:54:14 -07002283 }
Wink Savillea592eeb2009-05-22 13:26:36 -07002284 closeResponse;
Wink Savillef5903df2009-04-24 11:54:14 -07002285
Wink Savillef4c4d362009-04-02 01:37:03 -07002286 return 0;
2287}
2288
2289static int responseCdmaSms(Parcel &p, void *response, size_t responselen) {
2290 int num;
2291 int digitCount;
2292 int digitLimit;
2293 uint8_t uct;
2294 void* dest;
2295
Steve Block64640682011-12-20 20:47:51 +00002296 ALOGD("Inside responseCdmaSms");
Wink Savillef5903df2009-04-24 11:54:14 -07002297
Wink Savillef4c4d362009-04-02 01:37:03 -07002298 if (response == NULL && responselen != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002299 ALOGE("invalid response: NULL");
Wink Savillef4c4d362009-04-02 01:37:03 -07002300 return RIL_ERRNO_INVALID_RESPONSE;
2301 }
2302
Wink Savillef5903df2009-04-24 11:54:14 -07002303 if (responselen != sizeof(RIL_CDMA_SMS_Message)) {
Steve Blockf423cde2012-01-08 13:48:26 +00002304 ALOGE("invalid response length was %d expected %d",
Wink Savillef5903df2009-04-24 11:54:14 -07002305 (int)responselen, (int)sizeof(RIL_CDMA_SMS_Message));
Wink Savillef4c4d362009-04-02 01:37:03 -07002306 return RIL_ERRNO_INVALID_RESPONSE;
2307 }
2308
2309 RIL_CDMA_SMS_Message *p_cur = (RIL_CDMA_SMS_Message *) response;
2310 p.writeInt32(p_cur->uTeleserviceID);
2311 p.write(&(p_cur->bIsServicePresent),sizeof(uct));
2312 p.writeInt32(p_cur->uServicecategory);
2313 p.writeInt32(p_cur->sAddress.digit_mode);
2314 p.writeInt32(p_cur->sAddress.number_mode);
2315 p.writeInt32(p_cur->sAddress.number_type);
2316 p.writeInt32(p_cur->sAddress.number_plan);
2317 p.write(&(p_cur->sAddress.number_of_digits), sizeof(uct));
2318 digitLimit= MIN((p_cur->sAddress.number_of_digits), RIL_CDMA_SMS_ADDRESS_MAX);
2319 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
2320 p.write(&(p_cur->sAddress.digits[digitCount]),sizeof(uct));
2321 }
2322
2323 p.writeInt32(p_cur->sSubAddress.subaddressType);
2324 p.write(&(p_cur->sSubAddress.odd),sizeof(uct));
2325 p.write(&(p_cur->sSubAddress.number_of_digits),sizeof(uct));
2326 digitLimit= MIN((p_cur->sSubAddress.number_of_digits), RIL_CDMA_SMS_SUBADDRESS_MAX);
2327 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
2328 p.write(&(p_cur->sSubAddress.digits[digitCount]),sizeof(uct));
2329 }
2330
2331 digitLimit= MIN((p_cur->uBearerDataLen), RIL_CDMA_SMS_BEARER_DATA_MAX);
2332 p.writeInt32(p_cur->uBearerDataLen);
2333 for(digitCount =0 ; digitCount < digitLimit; digitCount ++) {
2334 p.write(&(p_cur->aBearerData[digitCount]), sizeof(uct));
2335 }
2336
2337 startResponse;
2338 appendPrintBuf("%suTeleserviceID=%d, bIsServicePresent=%d, uServicecategory=%d, \
Wink Saville1b5fd232009-04-22 14:50:00 -07002339 sAddress.digit_mode=%d, sAddress.number_mode=%d, sAddress.number_type=%d, ",
Wink Savillef4c4d362009-04-02 01:37:03 -07002340 printBuf, p_cur->uTeleserviceID,p_cur->bIsServicePresent,p_cur->uServicecategory,
2341 p_cur->sAddress.digit_mode, p_cur->sAddress.number_mode,p_cur->sAddress.number_type);
2342 closeResponse;
2343
2344 return 0;
2345}
2346
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002347/**
2348 * A write on the wakeup fd is done just to pop us out of select()
2349 * We empty the buffer here and then ril_event will reset the timers on the
2350 * way back down
2351 */
Wink Savillef4c4d362009-04-02 01:37:03 -07002352static void processWakeupCallback(int fd, short flags, void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002353 char buff[16];
2354 int ret;
2355
Steve Blockeb902b82011-10-26 11:02:56 +01002356 ALOGV("processWakeupCallback");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002357
2358 /* empty our wakeup socket out */
2359 do {
2360 ret = read(s_fdWakeupRead, &buff, sizeof(buff));
Wink Saville7f856802009-06-09 10:23:37 -07002361 } while (ret > 0 || (ret < 0 && errno == EINTR));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002362}
2363
Wink Savillef4c4d362009-04-02 01:37:03 -07002364static void onCommandsSocketClosed() {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002365 int ret;
2366 RequestInfo *p_cur;
2367
2368 /* mark pending requests as "cancelled" so we dont report responses */
2369
2370 ret = pthread_mutex_lock(&s_pendingRequestsMutex);
2371 assert (ret == 0);
2372
2373 p_cur = s_pendingRequests;
2374
Wink Saville7f856802009-06-09 10:23:37 -07002375 for (p_cur = s_pendingRequests
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002376 ; p_cur != NULL
2377 ; p_cur = p_cur->p_next
2378 ) {
2379 p_cur->cancelled = 1;
2380 }
2381
2382 ret = pthread_mutex_unlock(&s_pendingRequestsMutex);
2383 assert (ret == 0);
2384}
2385
Wink Savillef4c4d362009-04-02 01:37:03 -07002386static void processCommandsCallback(int fd, short flags, void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002387 RecordStream *p_rs;
2388 void *p_record;
2389 size_t recordlen;
2390 int ret;
2391
2392 assert(fd == s_fdCommand);
2393
2394 p_rs = (RecordStream *)param;
2395
2396 for (;;) {
2397 /* loop until EAGAIN/EINTR, end of stream, or other error */
2398 ret = record_stream_get_next(p_rs, &p_record, &recordlen);
2399
2400 if (ret == 0 && p_record == NULL) {
2401 /* end-of-stream */
2402 break;
2403 } else if (ret < 0) {
2404 break;
2405 } else if (ret == 0) { /* && p_record != NULL */
2406 processCommandBuffer(p_record, recordlen);
2407 }
2408 }
2409
2410 if (ret == 0 || !(errno == EAGAIN || errno == EINTR)) {
2411 /* fatal error or end-of-stream */
2412 if (ret != 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002413 ALOGE("error on reading command socket errno:%d\n", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002414 } else {
Steve Block43b9c522012-01-06 10:14:35 +00002415 ALOGW("EOS. Closing command socket.");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002416 }
Wink Saville7f856802009-06-09 10:23:37 -07002417
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002418 close(s_fdCommand);
2419 s_fdCommand = -1;
2420
2421 ril_event_del(&s_commands_event);
2422
2423 record_stream_free(p_rs);
2424
2425 /* start listening for new connections again */
2426 rilEventAddWakeup(&s_listen_event);
2427
2428 onCommandsSocketClosed();
2429 }
2430}
2431
2432
Wink Savillef4c4d362009-04-02 01:37:03 -07002433static void onNewCommandConnect() {
Wink Saville5b9df332011-04-06 16:24:21 -07002434 // Inform we are connected and the ril version
Jake Hambya9c18d12011-04-12 23:32:08 -07002435 int rilVer = s_callbacks.version;
Wink Saville5b9df332011-04-06 16:24:21 -07002436 RIL_onUnsolicitedResponse(RIL_UNSOL_RIL_CONNECTED,
2437 &rilVer, sizeof(rilVer));
2438
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002439 // implicit radio state changed
2440 RIL_onUnsolicitedResponse(RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED,
2441 NULL, 0);
2442
2443 // Send last NITZ time data, in case it was missed
2444 if (s_lastNITZTimeData != NULL) {
2445 sendResponseRaw(s_lastNITZTimeData, s_lastNITZTimeDataSize);
2446
2447 free(s_lastNITZTimeData);
2448 s_lastNITZTimeData = NULL;
2449 }
2450
2451 // Get version string
2452 if (s_callbacks.getVersion != NULL) {
2453 const char *version;
2454 version = s_callbacks.getVersion();
Steve Block9139bfb2012-01-05 00:10:31 +00002455 ALOGI("RIL Daemon version: %s\n", version);
Wink Saville7f856802009-06-09 10:23:37 -07002456
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002457 property_set(PROPERTY_RIL_IMPL, version);
2458 } else {
Steve Block9139bfb2012-01-05 00:10:31 +00002459 ALOGI("RIL Daemon version: unavailable\n");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002460 property_set(PROPERTY_RIL_IMPL, "unavailable");
2461 }
2462
2463}
2464
Wink Savillef4c4d362009-04-02 01:37:03 -07002465static void listenCallback (int fd, short flags, void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002466 int ret;
2467 int err;
2468 int is_phone_socket;
2469 RecordStream *p_rs;
2470
2471 struct sockaddr_un peeraddr;
2472 socklen_t socklen = sizeof (peeraddr);
2473
2474 struct ucred creds;
2475 socklen_t szCreds = sizeof(creds);
2476
2477 struct passwd *pwd = NULL;
2478
2479 assert (s_fdCommand < 0);
2480 assert (fd == s_fdListen);
Wink Saville7f856802009-06-09 10:23:37 -07002481
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002482 s_fdCommand = accept(s_fdListen, (sockaddr *) &peeraddr, &socklen);
2483
2484 if (s_fdCommand < 0 ) {
Steve Blockf423cde2012-01-08 13:48:26 +00002485 ALOGE("Error on accept() errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002486 /* start listening for new connections again */
2487 rilEventAddWakeup(&s_listen_event);
Wink Savillef4c4d362009-04-02 01:37:03 -07002488 return;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002489 }
2490
2491 /* check the credential of the other side and only accept socket from
2492 * phone process
Wink Saville7f856802009-06-09 10:23:37 -07002493 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002494 errno = 0;
2495 is_phone_socket = 0;
Wink Savillef4c4d362009-04-02 01:37:03 -07002496
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002497 err = getsockopt(s_fdCommand, SOL_SOCKET, SO_PEERCRED, &creds, &szCreds);
Wink Savillef4c4d362009-04-02 01:37:03 -07002498
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002499 if (err == 0 && szCreds > 0) {
Wink Savillef4c4d362009-04-02 01:37:03 -07002500 errno = 0;
2501 pwd = getpwuid(creds.uid);
2502 if (pwd != NULL) {
2503 if (strcmp(pwd->pw_name, PHONE_PROCESS) == 0) {
2504 is_phone_socket = 1;
2505 } else {
Steve Blockf423cde2012-01-08 13:48:26 +00002506 ALOGE("RILD can't accept socket from process %s", pwd->pw_name);
Wink Savillef4c4d362009-04-02 01:37:03 -07002507 }
2508 } else {
Steve Blockf423cde2012-01-08 13:48:26 +00002509 ALOGE("Error on getpwuid() errno: %d", errno);
Wink Savillef4c4d362009-04-02 01:37:03 -07002510 }
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002511 } else {
Steve Block64640682011-12-20 20:47:51 +00002512 ALOGD("Error on getsockopt() errno: %d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002513 }
2514
2515 if ( !is_phone_socket ) {
Steve Blockf423cde2012-01-08 13:48:26 +00002516 ALOGE("RILD must accept socket from %s", PHONE_PROCESS);
Wink Saville7f856802009-06-09 10:23:37 -07002517
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002518 close(s_fdCommand);
2519 s_fdCommand = -1;
2520
2521 onCommandsSocketClosed();
2522
2523 /* start listening for new connections again */
2524 rilEventAddWakeup(&s_listen_event);
2525
2526 return;
2527 }
2528
2529 ret = fcntl(s_fdCommand, F_SETFL, O_NONBLOCK);
2530
2531 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002532 ALOGE ("Error setting O_NONBLOCK errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002533 }
2534
Steve Block9139bfb2012-01-05 00:10:31 +00002535 ALOGI("libril: new connection");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002536
2537 p_rs = record_stream_new(s_fdCommand, MAX_COMMAND_BYTES);
2538
Wink Saville7f856802009-06-09 10:23:37 -07002539 ril_event_set (&s_commands_event, s_fdCommand, 1,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002540 processCommandsCallback, p_rs);
2541
2542 rilEventAddWakeup (&s_commands_event);
2543
2544 onNewCommandConnect();
2545}
2546
2547static void freeDebugCallbackArgs(int number, char **args) {
2548 for (int i = 0; i < number; i++) {
2549 if (args[i] != NULL) {
2550 free(args[i]);
2551 }
2552 }
2553 free(args);
2554}
2555
Wink Savillef4c4d362009-04-02 01:37:03 -07002556static void debugCallback (int fd, short flags, void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002557 int acceptFD, option;
2558 struct sockaddr_un peeraddr;
2559 socklen_t socklen = sizeof (peeraddr);
2560 int data;
2561 unsigned int qxdm_data[6];
2562 const char *deactData[1] = {"1"};
2563 char *actData[1];
2564 RIL_Dial dialData;
2565 int hangupData[1] = {1};
2566 int number;
2567 char **args;
2568
2569 acceptFD = accept (fd, (sockaddr *) &peeraddr, &socklen);
2570
2571 if (acceptFD < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002572 ALOGE ("error accepting on debug port: %d\n", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002573 return;
2574 }
2575
2576 if (recv(acceptFD, &number, sizeof(int), 0) != sizeof(int)) {
Steve Blockf423cde2012-01-08 13:48:26 +00002577 ALOGE ("error reading on socket: number of Args: \n");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002578 return;
2579 }
2580 args = (char **) malloc(sizeof(char*) * number);
2581
2582 for (int i = 0; i < number; i++) {
2583 int len;
2584 if (recv(acceptFD, &len, sizeof(int), 0) != sizeof(int)) {
Steve Blockf423cde2012-01-08 13:48:26 +00002585 ALOGE ("error reading on socket: Len of Args: \n");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002586 freeDebugCallbackArgs(i, args);
2587 return;
2588 }
2589 // +1 for null-term
2590 args[i] = (char *) malloc((sizeof(char) * len) + 1);
Wink Saville7f856802009-06-09 10:23:37 -07002591 if (recv(acceptFD, args[i], sizeof(char) * len, 0)
Wink Saville1b5fd232009-04-22 14:50:00 -07002592 != (int)sizeof(char) * len) {
Steve Blockf423cde2012-01-08 13:48:26 +00002593 ALOGE ("error reading on socket: Args[%d] \n", i);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002594 freeDebugCallbackArgs(i, args);
2595 return;
2596 }
2597 char * buf = args[i];
2598 buf[len] = 0;
2599 }
2600
2601 switch (atoi(args[0])) {
2602 case 0:
Steve Block9139bfb2012-01-05 00:10:31 +00002603 ALOGI ("Connection on debug port: issuing reset.");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002604 issueLocalRequest(RIL_REQUEST_RESET_RADIO, NULL, 0);
2605 break;
2606 case 1:
Steve Block9139bfb2012-01-05 00:10:31 +00002607 ALOGI ("Connection on debug port: issuing radio power off.");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002608 data = 0;
2609 issueLocalRequest(RIL_REQUEST_RADIO_POWER, &data, sizeof(int));
2610 // Close the socket
2611 close(s_fdCommand);
2612 s_fdCommand = -1;
2613 break;
2614 case 2:
Steve Block9139bfb2012-01-05 00:10:31 +00002615 ALOGI ("Debug port: issuing unsolicited voice network change.");
Wink Savillec0114b32011-02-18 10:14:07 -08002616 RIL_onUnsolicitedResponse(RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002617 NULL, 0);
2618 break;
2619 case 3:
Steve Block9139bfb2012-01-05 00:10:31 +00002620 ALOGI ("Debug port: QXDM log enable.");
Xia Wangd855ef42010-07-27 17:26:55 -07002621 qxdm_data[0] = 65536; // head.func_tag
2622 qxdm_data[1] = 16; // head.len
2623 qxdm_data[2] = 1; // mode: 1 for 'start logging'
2624 qxdm_data[3] = 32; // log_file_size: 32megabytes
2625 qxdm_data[4] = 0; // log_mask
2626 qxdm_data[5] = 8; // log_max_fileindex
Wink Saville7f856802009-06-09 10:23:37 -07002627 issueLocalRequest(RIL_REQUEST_OEM_HOOK_RAW, qxdm_data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002628 6 * sizeof(int));
2629 break;
2630 case 4:
Steve Block9139bfb2012-01-05 00:10:31 +00002631 ALOGI ("Debug port: QXDM log disable.");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002632 qxdm_data[0] = 65536;
2633 qxdm_data[1] = 16;
Xia Wangd855ef42010-07-27 17:26:55 -07002634 qxdm_data[2] = 0; // mode: 0 for 'stop logging'
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002635 qxdm_data[3] = 32;
2636 qxdm_data[4] = 0;
Xia Wangd855ef42010-07-27 17:26:55 -07002637 qxdm_data[5] = 8;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002638 issueLocalRequest(RIL_REQUEST_OEM_HOOK_RAW, qxdm_data,
2639 6 * sizeof(int));
2640 break;
2641 case 5:
Steve Block9139bfb2012-01-05 00:10:31 +00002642 ALOGI("Debug port: Radio On");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002643 data = 1;
2644 issueLocalRequest(RIL_REQUEST_RADIO_POWER, &data, sizeof(int));
2645 sleep(2);
2646 // Set network selection automatic.
2647 issueLocalRequest(RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC, NULL, 0);
2648 break;
2649 case 6:
Steve Block9139bfb2012-01-05 00:10:31 +00002650 ALOGI("Debug port: Setup Data Call, Apn :%s\n", args[1]);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002651 actData[0] = args[1];
Wink Saville7f856802009-06-09 10:23:37 -07002652 issueLocalRequest(RIL_REQUEST_SETUP_DATA_CALL, &actData,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002653 sizeof(actData));
2654 break;
2655 case 7:
Steve Block9139bfb2012-01-05 00:10:31 +00002656 ALOGI("Debug port: Deactivate Data Call");
Wink Saville7f856802009-06-09 10:23:37 -07002657 issueLocalRequest(RIL_REQUEST_DEACTIVATE_DATA_CALL, &deactData,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002658 sizeof(deactData));
2659 break;
2660 case 8:
Steve Block9139bfb2012-01-05 00:10:31 +00002661 ALOGI("Debug port: Dial Call");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002662 dialData.clir = 0;
2663 dialData.address = args[1];
2664 issueLocalRequest(RIL_REQUEST_DIAL, &dialData, sizeof(dialData));
2665 break;
2666 case 9:
Steve Block9139bfb2012-01-05 00:10:31 +00002667 ALOGI("Debug port: Answer Call");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002668 issueLocalRequest(RIL_REQUEST_ANSWER, NULL, 0);
2669 break;
2670 case 10:
Steve Block9139bfb2012-01-05 00:10:31 +00002671 ALOGI("Debug port: End Call");
Wink Saville7f856802009-06-09 10:23:37 -07002672 issueLocalRequest(RIL_REQUEST_HANGUP, &hangupData,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002673 sizeof(hangupData));
2674 break;
2675 default:
Steve Blockf423cde2012-01-08 13:48:26 +00002676 ALOGE ("Invalid request");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002677 break;
2678 }
2679 freeDebugCallbackArgs(number, args);
2680 close(acceptFD);
2681}
2682
2683
Wink Savillef4c4d362009-04-02 01:37:03 -07002684static void userTimerCallback (int fd, short flags, void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002685 UserCallbackInfo *p_info;
2686
2687 p_info = (UserCallbackInfo *)param;
2688
2689 p_info->p_callback(p_info->userParam);
2690
2691
2692 // FIXME generalize this...there should be a cancel mechanism
2693 if (s_last_wake_timeout_info != NULL && s_last_wake_timeout_info == p_info) {
2694 s_last_wake_timeout_info = NULL;
2695 }
2696
2697 free(p_info);
2698}
2699
2700
2701static void *
Wink Savillef4c4d362009-04-02 01:37:03 -07002702eventLoop(void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002703 int ret;
2704 int filedes[2];
2705
2706 ril_event_init();
2707
2708 pthread_mutex_lock(&s_startupMutex);
2709
2710 s_started = 1;
2711 pthread_cond_broadcast(&s_startupCond);
2712
2713 pthread_mutex_unlock(&s_startupMutex);
2714
2715 ret = pipe(filedes);
2716
2717 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002718 ALOGE("Error in pipe() errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002719 return NULL;
2720 }
2721
2722 s_fdWakeupRead = filedes[0];
2723 s_fdWakeupWrite = filedes[1];
2724
2725 fcntl(s_fdWakeupRead, F_SETFL, O_NONBLOCK);
2726
2727 ril_event_set (&s_wakeupfd_event, s_fdWakeupRead, true,
2728 processWakeupCallback, NULL);
2729
2730 rilEventAddWakeup (&s_wakeupfd_event);
2731
2732 // Only returns on error
2733 ril_event_loop();
Steve Blockf423cde2012-01-08 13:48:26 +00002734 ALOGE ("error in event_loop_base errno:%d", errno);
Kazuhiro Ondo5cdc1352011-10-14 17:50:58 -05002735 // kill self to restart on error
2736 kill(0, SIGKILL);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002737
2738 return NULL;
2739}
2740
Wink Saville7f856802009-06-09 10:23:37 -07002741extern "C" void
Wink Savillef4c4d362009-04-02 01:37:03 -07002742RIL_startEventLoop(void) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002743 int ret;
2744 pthread_attr_t attr;
Wink Saville7f856802009-06-09 10:23:37 -07002745
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002746 /* spin up eventLoop thread and wait for it to get started */
2747 s_started = 0;
2748 pthread_mutex_lock(&s_startupMutex);
2749
2750 pthread_attr_init (&attr);
Wink Saville7f856802009-06-09 10:23:37 -07002751 pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002752 ret = pthread_create(&s_tid_dispatch, &attr, eventLoop, NULL);
2753
2754 while (s_started == 0) {
2755 pthread_cond_wait(&s_startupCond, &s_startupMutex);
2756 }
2757
2758 pthread_mutex_unlock(&s_startupMutex);
2759
2760 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002761 ALOGE("Failed to create dispatch thread errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002762 return;
2763 }
2764}
2765
2766// Used for testing purpose only.
2767extern "C" void RIL_setcallbacks (const RIL_RadioFunctions *callbacks) {
2768 memcpy(&s_callbacks, callbacks, sizeof (RIL_RadioFunctions));
2769}
2770
Wink Saville7f856802009-06-09 10:23:37 -07002771extern "C" void
Wink Savillef4c4d362009-04-02 01:37:03 -07002772RIL_register (const RIL_RadioFunctions *callbacks) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002773 int ret;
2774 int flags;
2775
Wink Saville43808972011-01-13 17:39:51 -08002776 if (callbacks == NULL) {
Steve Blockf423cde2012-01-08 13:48:26 +00002777 ALOGE("RIL_register: RIL_RadioFunctions * null");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002778 return;
2779 }
Wink Saville43808972011-01-13 17:39:51 -08002780 if (callbacks->version < RIL_VERSION_MIN) {
Steve Blockf423cde2012-01-08 13:48:26 +00002781 ALOGE("RIL_register: version %d is to old, min version is %d",
Wink Saville43808972011-01-13 17:39:51 -08002782 callbacks->version, RIL_VERSION_MIN);
2783 return;
Wink Saville3a4840b2010-04-07 13:29:58 -07002784 }
Wink Saville43808972011-01-13 17:39:51 -08002785 if (callbacks->version > RIL_VERSION) {
Steve Blockf423cde2012-01-08 13:48:26 +00002786 ALOGE("RIL_register: version %d is too new, max version is %d",
Wink Saville43808972011-01-13 17:39:51 -08002787 callbacks->version, RIL_VERSION);
2788 return;
2789 }
Steve Blockf423cde2012-01-08 13:48:26 +00002790 ALOGE("RIL_register: RIL version %d", callbacks->version);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002791
2792 if (s_registerCalled > 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002793 ALOGE("RIL_register has been called more than once. "
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002794 "Subsequent call ignored");
2795 return;
2796 }
2797
2798 memcpy(&s_callbacks, callbacks, sizeof (RIL_RadioFunctions));
2799
2800 s_registerCalled = 1;
2801
2802 // Little self-check
2803
Wink Savillef4c4d362009-04-02 01:37:03 -07002804 for (int i = 0; i < (int)NUM_ELEMS(s_commands); i++) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002805 assert(i == s_commands[i].requestNumber);
2806 }
2807
Wink Savillef4c4d362009-04-02 01:37:03 -07002808 for (int i = 0; i < (int)NUM_ELEMS(s_unsolResponses); i++) {
Wink Saville7f856802009-06-09 10:23:37 -07002809 assert(i + RIL_UNSOL_RESPONSE_BASE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002810 == s_unsolResponses[i].requestNumber);
2811 }
2812
2813 // New rild impl calls RIL_startEventLoop() first
2814 // old standalone impl wants it here.
2815
2816 if (s_started == 0) {
2817 RIL_startEventLoop();
2818 }
2819
2820 // start listen socket
2821
2822#if 0
Wink Saville7f856802009-06-09 10:23:37 -07002823 ret = socket_local_server (SOCKET_NAME_RIL,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002824 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
2825
2826 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002827 ALOGE("Unable to bind socket errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002828 exit (-1);
2829 }
2830 s_fdListen = ret;
2831
2832#else
2833 s_fdListen = android_get_control_socket(SOCKET_NAME_RIL);
2834 if (s_fdListen < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002835 ALOGE("Failed to get socket '" SOCKET_NAME_RIL "'");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002836 exit(-1);
2837 }
2838
2839 ret = listen(s_fdListen, 4);
2840
2841 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002842 ALOGE("Failed to listen on control socket '%d': %s",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002843 s_fdListen, strerror(errno));
2844 exit(-1);
2845 }
2846#endif
2847
2848
2849 /* note: non-persistent so we can accept only one connection at a time */
Wink Saville7f856802009-06-09 10:23:37 -07002850 ril_event_set (&s_listen_event, s_fdListen, false,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002851 listenCallback, NULL);
2852
2853 rilEventAddWakeup (&s_listen_event);
2854
2855#if 1
2856 // start debug interface socket
2857
2858 s_fdDebug = android_get_control_socket(SOCKET_NAME_RIL_DEBUG);
2859 if (s_fdDebug < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002860 ALOGE("Failed to get socket '" SOCKET_NAME_RIL_DEBUG "' errno:%d", errno);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002861 exit(-1);
2862 }
2863
2864 ret = listen(s_fdDebug, 4);
2865
2866 if (ret < 0) {
Steve Blockf423cde2012-01-08 13:48:26 +00002867 ALOGE("Failed to listen on ril debug socket '%d': %s",
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002868 s_fdDebug, strerror(errno));
2869 exit(-1);
2870 }
2871
2872 ril_event_set (&s_debug_event, s_fdDebug, true,
2873 debugCallback, NULL);
2874
2875 rilEventAddWakeup (&s_debug_event);
2876#endif
2877
2878}
2879
2880static int
Wink Savillef4c4d362009-04-02 01:37:03 -07002881checkAndDequeueRequestInfo(struct RequestInfo *pRI) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002882 int ret = 0;
Wink Saville7f856802009-06-09 10:23:37 -07002883
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002884 if (pRI == NULL) {
2885 return 0;
2886 }
2887
2888 pthread_mutex_lock(&s_pendingRequestsMutex);
2889
Wink Saville7f856802009-06-09 10:23:37 -07002890 for(RequestInfo **ppCur = &s_pendingRequests
2891 ; *ppCur != NULL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002892 ; ppCur = &((*ppCur)->p_next)
2893 ) {
2894 if (pRI == *ppCur) {
2895 ret = 1;
2896
2897 *ppCur = (*ppCur)->p_next;
2898 break;
2899 }
2900 }
2901
2902 pthread_mutex_unlock(&s_pendingRequestsMutex);
2903
2904 return ret;
2905}
2906
2907
2908extern "C" void
Wink Savillef4c4d362009-04-02 01:37:03 -07002909RIL_onRequestComplete(RIL_Token t, RIL_Errno e, void *response, size_t responselen) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002910 RequestInfo *pRI;
2911 int ret;
2912 size_t errorOffset;
2913
2914 pRI = (RequestInfo *)t;
2915
2916 if (!checkAndDequeueRequestInfo(pRI)) {
Steve Blockf423cde2012-01-08 13:48:26 +00002917 ALOGE ("RIL_onRequestComplete: invalid RIL_Token");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002918 return;
2919 }
2920
2921 if (pRI->local > 0) {
2922 // Locally issued command...void only!
2923 // response does not go back up the command socket
Steve Block64640682011-12-20 20:47:51 +00002924 ALOGD("C[locl]< %s", requestToString(pRI->pCI->requestNumber));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002925
2926 goto done;
2927 }
2928
2929 appendPrintBuf("[%04d]< %s",
2930 pRI->token, requestToString(pRI->pCI->requestNumber));
2931
2932 if (pRI->cancelled == 0) {
2933 Parcel p;
2934
2935 p.writeInt32 (RESPONSE_SOLICITED);
2936 p.writeInt32 (pRI->token);
2937 errorOffset = p.dataPosition();
2938
2939 p.writeInt32 (e);
2940
johnwangb2a61842009-06-02 14:55:45 -07002941 if (response != NULL) {
2942 // there is a response payload, no matter success or not.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002943 ret = pRI->pCI->responseFunction(p, response, responselen);
2944
2945 /* if an error occurred, rewind and mark it */
2946 if (ret != 0) {
2947 p.setDataPosition(errorOffset);
2948 p.writeInt32 (ret);
2949 }
johnwangb2a61842009-06-02 14:55:45 -07002950 }
2951
2952 if (e != RIL_E_SUCCESS) {
2953 appendPrintBuf("%s fails by %s", printBuf, failCauseToString(e));
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002954 }
2955
2956 if (s_fdCommand < 0) {
Steve Block64640682011-12-20 20:47:51 +00002957 ALOGD ("RIL onRequestComplete: Command channel closed");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002958 }
2959 sendResponse(p);
2960 }
2961
2962done:
2963 free(pRI);
2964}
2965
2966
2967static void
Wink Savillef4c4d362009-04-02 01:37:03 -07002968grabPartialWakeLock() {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002969 acquire_wake_lock(PARTIAL_WAKE_LOCK, ANDROID_WAKE_LOCK_NAME);
2970}
2971
2972static void
Wink Savillef4c4d362009-04-02 01:37:03 -07002973releaseWakeLock() {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002974 release_wake_lock(ANDROID_WAKE_LOCK_NAME);
2975}
2976
2977/**
2978 * Timer callback to put us back to sleep before the default timeout
2979 */
2980static void
Wink Savillef4c4d362009-04-02 01:37:03 -07002981wakeTimeoutCallback (void *param) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002982 // We're using "param != NULL" as a cancellation mechanism
2983 if (param == NULL) {
Steve Block64640682011-12-20 20:47:51 +00002984 //ALOGD("wakeTimeout: releasing wake lock");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002985
2986 releaseWakeLock();
2987 } else {
Steve Block64640682011-12-20 20:47:51 +00002988 //ALOGD("wakeTimeout: releasing wake lock CANCELLED");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002989 }
2990}
2991
Naveen Kalla2bc78d62011-12-07 16:22:53 -08002992static int
2993decodeVoiceRadioTechnology (RIL_RadioState radioState) {
2994 switch (radioState) {
2995 case RADIO_STATE_SIM_NOT_READY:
2996 case RADIO_STATE_SIM_LOCKED_OR_ABSENT:
2997 case RADIO_STATE_SIM_READY:
2998 return RADIO_TECH_UMTS;
2999
3000 case RADIO_STATE_RUIM_NOT_READY:
3001 case RADIO_STATE_RUIM_READY:
3002 case RADIO_STATE_RUIM_LOCKED_OR_ABSENT:
3003 case RADIO_STATE_NV_NOT_READY:
3004 case RADIO_STATE_NV_READY:
3005 return RADIO_TECH_1xRTT;
3006
3007 default:
Steve Block64640682011-12-20 20:47:51 +00003008 ALOGD("decodeVoiceRadioTechnology: Invoked with incorrect RadioState");
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003009 return -1;
3010 }
3011}
3012
3013static int
3014decodeCdmaSubscriptionSource (RIL_RadioState radioState) {
3015 switch (radioState) {
3016 case RADIO_STATE_SIM_NOT_READY:
3017 case RADIO_STATE_SIM_LOCKED_OR_ABSENT:
3018 case RADIO_STATE_SIM_READY:
3019 case RADIO_STATE_RUIM_NOT_READY:
3020 case RADIO_STATE_RUIM_READY:
3021 case RADIO_STATE_RUIM_LOCKED_OR_ABSENT:
3022 return CDMA_SUBSCRIPTION_SOURCE_RUIM_SIM;
3023
3024 case RADIO_STATE_NV_NOT_READY:
3025 case RADIO_STATE_NV_READY:
3026 return CDMA_SUBSCRIPTION_SOURCE_NV;
3027
3028 default:
Steve Block64640682011-12-20 20:47:51 +00003029 ALOGD("decodeCdmaSubscriptionSource: Invoked with incorrect RadioState");
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003030 return -1;
3031 }
3032}
3033
3034static int
3035decodeSimStatus (RIL_RadioState radioState) {
3036 switch (radioState) {
3037 case RADIO_STATE_SIM_NOT_READY:
3038 case RADIO_STATE_RUIM_NOT_READY:
3039 case RADIO_STATE_NV_NOT_READY:
3040 case RADIO_STATE_NV_READY:
3041 return -1;
3042 case RADIO_STATE_SIM_LOCKED_OR_ABSENT:
3043 case RADIO_STATE_SIM_READY:
3044 case RADIO_STATE_RUIM_READY:
3045 case RADIO_STATE_RUIM_LOCKED_OR_ABSENT:
3046 return radioState;
3047 default:
Steve Block64640682011-12-20 20:47:51 +00003048 ALOGD("decodeSimStatus: Invoked with incorrect RadioState");
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003049 return -1;
3050 }
3051}
3052
3053static bool is3gpp2(int radioTech) {
3054 switch (radioTech) {
3055 case RADIO_TECH_IS95A:
3056 case RADIO_TECH_IS95B:
3057 case RADIO_TECH_1xRTT:
3058 case RADIO_TECH_EVDO_0:
3059 case RADIO_TECH_EVDO_A:
3060 case RADIO_TECH_EVDO_B:
3061 case RADIO_TECH_EHRPD:
3062 return true;
3063 default:
3064 return false;
3065 }
3066}
3067
3068/* If RIL sends SIM states or RUIM states, store the voice radio
3069 * technology and subscription source information so that they can be
3070 * returned when telephony framework requests them
3071 */
3072static RIL_RadioState
3073processRadioState(RIL_RadioState newRadioState) {
3074
3075 if((newRadioState > RADIO_STATE_UNAVAILABLE) && (newRadioState < RADIO_STATE_ON)) {
3076 int newVoiceRadioTech;
3077 int newCdmaSubscriptionSource;
3078 int newSimStatus;
3079
3080 /* This is old RIL. Decode Subscription source and Voice Radio Technology
3081 from Radio State and send change notifications if there has been a change */
3082 newVoiceRadioTech = decodeVoiceRadioTechnology(newRadioState);
3083 if(newVoiceRadioTech != voiceRadioTech) {
3084 voiceRadioTech = newVoiceRadioTech;
3085 RIL_onUnsolicitedResponse (RIL_UNSOL_VOICE_RADIO_TECH_CHANGED,
3086 &voiceRadioTech, sizeof(voiceRadioTech));
3087 }
3088 if(is3gpp2(newVoiceRadioTech)) {
3089 newCdmaSubscriptionSource = decodeCdmaSubscriptionSource(newRadioState);
3090 if(newCdmaSubscriptionSource != cdmaSubscriptionSource) {
3091 cdmaSubscriptionSource = newCdmaSubscriptionSource;
3092 RIL_onUnsolicitedResponse (RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED,
3093 &cdmaSubscriptionSource, sizeof(cdmaSubscriptionSource));
3094 }
3095 }
3096 newSimStatus = decodeSimStatus(newRadioState);
3097 if(newSimStatus != simRuimStatus) {
3098 simRuimStatus = newSimStatus;
3099 RIL_onUnsolicitedResponse(RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED, NULL, 0);
3100 }
3101
3102 /* Send RADIO_ON to telephony */
3103 newRadioState = RADIO_STATE_ON;
3104 }
3105
3106 return newRadioState;
3107}
3108
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003109extern "C"
3110void RIL_onUnsolicitedResponse(int unsolResponse, void *data,
3111 size_t datalen)
3112{
3113 int unsolResponseIndex;
3114 int ret;
3115 int64_t timeReceived = 0;
3116 bool shouldScheduleTimeout = false;
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003117 RIL_RadioState newState;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003118
3119 if (s_registerCalled == 0) {
3120 // Ignore RIL_onUnsolicitedResponse before RIL_register
Steve Block43b9c522012-01-06 10:14:35 +00003121 ALOGW("RIL_onUnsolicitedResponse called before RIL_register");
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003122 return;
3123 }
Wink Saville7f856802009-06-09 10:23:37 -07003124
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003125 unsolResponseIndex = unsolResponse - RIL_UNSOL_RESPONSE_BASE;
3126
3127 if ((unsolResponseIndex < 0)
3128 || (unsolResponseIndex >= (int32_t)NUM_ELEMS(s_unsolResponses))) {
Steve Blockf423cde2012-01-08 13:48:26 +00003129 ALOGE("unsupported unsolicited response code %d", unsolResponse);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003130 return;
3131 }
3132
3133 // Grab a wake lock if needed for this reponse,
3134 // as we exit we'll either release it immediately
3135 // or set a timer to release it later.
3136 switch (s_unsolResponses[unsolResponseIndex].wakeType) {
3137 case WAKE_PARTIAL:
3138 grabPartialWakeLock();
3139 shouldScheduleTimeout = true;
3140 break;
3141
3142 case DONT_WAKE:
3143 default:
3144 // No wake lock is grabed so don't set timeout
3145 shouldScheduleTimeout = false;
3146 break;
3147 }
3148
3149 // Mark the time this was received, doing this
3150 // after grabing the wakelock incase getting
3151 // the elapsedRealTime might cause us to goto
3152 // sleep.
3153 if (unsolResponse == RIL_UNSOL_NITZ_TIME_RECEIVED) {
3154 timeReceived = elapsedRealtime();
3155 }
3156
3157 appendPrintBuf("[UNSL]< %s", requestToString(unsolResponse));
3158
3159 Parcel p;
3160
3161 p.writeInt32 (RESPONSE_UNSOLICITED);
3162 p.writeInt32 (unsolResponse);
3163
3164 ret = s_unsolResponses[unsolResponseIndex]
3165 .responseFunction(p, data, datalen);
3166 if (ret != 0) {
3167 // Problem with the response. Don't continue;
3168 goto error_exit;
3169 }
3170
3171 // some things get more payload
3172 switch(unsolResponse) {
3173 case RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED:
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003174 newState = processRadioState(s_callbacks.onStateRequest());
3175 p.writeInt32(newState);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003176 appendPrintBuf("%s {%s}", printBuf,
3177 radioStateToString(s_callbacks.onStateRequest()));
3178 break;
3179
3180
3181 case RIL_UNSOL_NITZ_TIME_RECEIVED:
3182 // Store the time that this was received so the
3183 // handler of this message can account for
3184 // the time it takes to arrive and process. In
3185 // particular the system has been known to sleep
3186 // before this message can be processed.
3187 p.writeInt64(timeReceived);
3188 break;
3189 }
3190
3191 ret = sendResponse(p);
3192 if (ret != 0 && unsolResponse == RIL_UNSOL_NITZ_TIME_RECEIVED) {
3193
3194 // Unfortunately, NITZ time is not poll/update like everything
3195 // else in the system. So, if the upstream client isn't connected,
3196 // keep a copy of the last NITZ response (with receive time noted
3197 // above) around so we can deliver it when it is connected
3198
3199 if (s_lastNITZTimeData != NULL) {
3200 free (s_lastNITZTimeData);
3201 s_lastNITZTimeData = NULL;
3202 }
3203
3204 s_lastNITZTimeData = malloc(p.dataSize());
3205 s_lastNITZTimeDataSize = p.dataSize();
3206 memcpy(s_lastNITZTimeData, p.data(), p.dataSize());
3207 }
3208
3209 // For now, we automatically go back to sleep after TIMEVAL_WAKE_TIMEOUT
3210 // FIXME The java code should handshake here to release wake lock
3211
3212 if (shouldScheduleTimeout) {
3213 // Cancel the previous request
3214 if (s_last_wake_timeout_info != NULL) {
3215 s_last_wake_timeout_info->userParam = (void *)1;
3216 }
3217
3218 s_last_wake_timeout_info
3219 = internalRequestTimedCallback(wakeTimeoutCallback, NULL,
3220 &TIMEVAL_WAKE_TIMEOUT);
3221 }
3222
3223 // Normal exit
3224 return;
3225
3226error_exit:
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003227 if (shouldScheduleTimeout) {
3228 releaseWakeLock();
3229 }
3230}
3231
Wink Saville7f856802009-06-09 10:23:37 -07003232/** FIXME generalize this if you track UserCAllbackInfo, clear it
3233 when the callback occurs
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003234*/
3235static UserCallbackInfo *
Wink Saville7f856802009-06-09 10:23:37 -07003236internalRequestTimedCallback (RIL_TimedCallback callback, void *param,
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07003237 const struct timeval *relativeTime)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003238{
3239 struct timeval myRelativeTime;
3240 UserCallbackInfo *p_info;
3241
3242 p_info = (UserCallbackInfo *) malloc (sizeof(UserCallbackInfo));
3243
Wink Saville7f856802009-06-09 10:23:37 -07003244 p_info->p_callback = callback;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003245 p_info->userParam = param;
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07003246
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003247 if (relativeTime == NULL) {
3248 /* treat null parameter as a 0 relative time */
3249 memset (&myRelativeTime, 0, sizeof(myRelativeTime));
3250 } else {
3251 /* FIXME I think event_add's tv param is really const anyway */
3252 memcpy (&myRelativeTime, relativeTime, sizeof(myRelativeTime));
3253 }
3254
3255 ril_event_set(&(p_info->event), -1, false, userTimerCallback, p_info);
3256
3257 ril_timer_add(&(p_info->event), &myRelativeTime);
3258
3259 triggerEvLoop();
3260 return p_info;
3261}
3262
Naveen Kalla7edd07c2010-06-21 18:54:47 -07003263
3264extern "C" void
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07003265RIL_requestTimedCallback (RIL_TimedCallback callback, void *param,
3266 const struct timeval *relativeTime) {
3267 internalRequestTimedCallback (callback, param, relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003268}
3269
3270const char *
Wink Savillef4c4d362009-04-02 01:37:03 -07003271failCauseToString(RIL_Errno e) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003272 switch(e) {
3273 case RIL_E_SUCCESS: return "E_SUCCESS";
3274 case RIL_E_RADIO_NOT_AVAILABLE: return "E_RAIDO_NOT_AVAILABLE";
3275 case RIL_E_GENERIC_FAILURE: return "E_GENERIC_FAILURE";
3276 case RIL_E_PASSWORD_INCORRECT: return "E_PASSWORD_INCORRECT";
3277 case RIL_E_SIM_PIN2: return "E_SIM_PIN2";
3278 case RIL_E_SIM_PUK2: return "E_SIM_PUK2";
3279 case RIL_E_REQUEST_NOT_SUPPORTED: return "E_REQUEST_NOT_SUPPORTED";
3280 case RIL_E_CANCELLED: return "E_CANCELLED";
3281 case RIL_E_OP_NOT_ALLOWED_DURING_VOICE_CALL: return "E_OP_NOT_ALLOWED_DURING_VOICE_CALL";
3282 case RIL_E_OP_NOT_ALLOWED_BEFORE_REG_TO_NW: return "E_OP_NOT_ALLOWED_BEFORE_REG_TO_NW";
3283 case RIL_E_SMS_SEND_FAIL_RETRY: return "E_SMS_SEND_FAIL_RETRY";
Wink Savillef4c4d362009-04-02 01:37:03 -07003284 case RIL_E_SIM_ABSENT:return "E_SIM_ABSENT";
John Wang75534472010-04-20 15:11:42 -07003285 case RIL_E_ILLEGAL_SIM_OR_ME:return "E_ILLEGAL_SIM_OR_ME";
Wink Saville7f856802009-06-09 10:23:37 -07003286#ifdef FEATURE_MULTIMODE_ANDROID
Wink Savillef4c4d362009-04-02 01:37:03 -07003287 case RIL_E_SUBSCRIPTION_NOT_AVAILABLE:return "E_SUBSCRIPTION_NOT_AVAILABLE";
3288 case RIL_E_MODE_NOT_SUPPORTED:return "E_MODE_NOT_SUPPORTED";
3289#endif
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003290 default: return "<unknown error>";
3291 }
3292}
3293
3294const char *
Wink Savillef4c4d362009-04-02 01:37:03 -07003295radioStateToString(RIL_RadioState s) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003296 switch(s) {
3297 case RADIO_STATE_OFF: return "RADIO_OFF";
3298 case RADIO_STATE_UNAVAILABLE: return "RADIO_UNAVAILABLE";
3299 case RADIO_STATE_SIM_NOT_READY: return "RADIO_SIM_NOT_READY";
3300 case RADIO_STATE_SIM_LOCKED_OR_ABSENT: return "RADIO_SIM_LOCKED_OR_ABSENT";
3301 case RADIO_STATE_SIM_READY: return "RADIO_SIM_READY";
Wink Savillef4c4d362009-04-02 01:37:03 -07003302 case RADIO_STATE_RUIM_NOT_READY:return"RADIO_RUIM_NOT_READY";
3303 case RADIO_STATE_RUIM_READY:return"RADIO_RUIM_READY";
3304 case RADIO_STATE_RUIM_LOCKED_OR_ABSENT:return"RADIO_RUIM_LOCKED_OR_ABSENT";
3305 case RADIO_STATE_NV_NOT_READY:return"RADIO_NV_NOT_READY";
3306 case RADIO_STATE_NV_READY:return"RADIO_NV_READY";
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003307 case RADIO_STATE_ON:return"RADIO_ON";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003308 default: return "<unknown state>";
3309 }
3310}
3311
3312const char *
Wink Savillef4c4d362009-04-02 01:37:03 -07003313callStateToString(RIL_CallState s) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003314 switch(s) {
3315 case RIL_CALL_ACTIVE : return "ACTIVE";
3316 case RIL_CALL_HOLDING: return "HOLDING";
3317 case RIL_CALL_DIALING: return "DIALING";
3318 case RIL_CALL_ALERTING: return "ALERTING";
3319 case RIL_CALL_INCOMING: return "INCOMING";
3320 case RIL_CALL_WAITING: return "WAITING";
3321 default: return "<unknown state>";
3322 }
3323}
3324
3325const char *
Wink Savillef4c4d362009-04-02 01:37:03 -07003326requestToString(int request) {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003327/*
3328 cat libs/telephony/ril_commands.h \
3329 | egrep "^ *{RIL_" \
3330 | sed -re 's/\{RIL_([^,]+),[^,]+,([^}]+).+/case RIL_\1: return "\1";/'
3331
3332
3333 cat libs/telephony/ril_unsol_commands.h \
3334 | egrep "^ *{RIL_" \
3335 | sed -re 's/\{RIL_([^,]+),([^}]+).+/case RIL_\1: return "\1";/'
3336
3337*/
3338 switch(request) {
3339 case RIL_REQUEST_GET_SIM_STATUS: return "GET_SIM_STATUS";
3340 case RIL_REQUEST_ENTER_SIM_PIN: return "ENTER_SIM_PIN";
3341 case RIL_REQUEST_ENTER_SIM_PUK: return "ENTER_SIM_PUK";
3342 case RIL_REQUEST_ENTER_SIM_PIN2: return "ENTER_SIM_PIN2";
3343 case RIL_REQUEST_ENTER_SIM_PUK2: return "ENTER_SIM_PUK2";
3344 case RIL_REQUEST_CHANGE_SIM_PIN: return "CHANGE_SIM_PIN";
3345 case RIL_REQUEST_CHANGE_SIM_PIN2: return "CHANGE_SIM_PIN2";
3346 case RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION: return "ENTER_NETWORK_DEPERSONALIZATION";
3347 case RIL_REQUEST_GET_CURRENT_CALLS: return "GET_CURRENT_CALLS";
3348 case RIL_REQUEST_DIAL: return "DIAL";
3349 case RIL_REQUEST_GET_IMSI: return "GET_IMSI";
3350 case RIL_REQUEST_HANGUP: return "HANGUP";
3351 case RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND: return "HANGUP_WAITING_OR_BACKGROUND";
3352 case RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND: return "HANGUP_FOREGROUND_RESUME_BACKGROUND";
3353 case RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE: return "SWITCH_WAITING_OR_HOLDING_AND_ACTIVE";
3354 case RIL_REQUEST_CONFERENCE: return "CONFERENCE";
3355 case RIL_REQUEST_UDUB: return "UDUB";
3356 case RIL_REQUEST_LAST_CALL_FAIL_CAUSE: return "LAST_CALL_FAIL_CAUSE";
3357 case RIL_REQUEST_SIGNAL_STRENGTH: return "SIGNAL_STRENGTH";
Wink Savillec0114b32011-02-18 10:14:07 -08003358 case RIL_REQUEST_VOICE_REGISTRATION_STATE: return "VOICE_REGISTRATION_STATE";
3359 case RIL_REQUEST_DATA_REGISTRATION_STATE: return "DATA_REGISTRATION_STATE";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003360 case RIL_REQUEST_OPERATOR: return "OPERATOR";
3361 case RIL_REQUEST_RADIO_POWER: return "RADIO_POWER";
3362 case RIL_REQUEST_DTMF: return "DTMF";
3363 case RIL_REQUEST_SEND_SMS: return "SEND_SMS";
3364 case RIL_REQUEST_SEND_SMS_EXPECT_MORE: return "SEND_SMS_EXPECT_MORE";
Wink Savillef4c4d362009-04-02 01:37:03 -07003365 case RIL_REQUEST_SETUP_DATA_CALL: return "SETUP_DATA_CALL";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003366 case RIL_REQUEST_SIM_IO: return "SIM_IO";
3367 case RIL_REQUEST_SEND_USSD: return "SEND_USSD";
3368 case RIL_REQUEST_CANCEL_USSD: return "CANCEL_USSD";
3369 case RIL_REQUEST_GET_CLIR: return "GET_CLIR";
3370 case RIL_REQUEST_SET_CLIR: return "SET_CLIR";
3371 case RIL_REQUEST_QUERY_CALL_FORWARD_STATUS: return "QUERY_CALL_FORWARD_STATUS";
3372 case RIL_REQUEST_SET_CALL_FORWARD: return "SET_CALL_FORWARD";
3373 case RIL_REQUEST_QUERY_CALL_WAITING: return "QUERY_CALL_WAITING";
3374 case RIL_REQUEST_SET_CALL_WAITING: return "SET_CALL_WAITING";
3375 case RIL_REQUEST_SMS_ACKNOWLEDGE: return "SMS_ACKNOWLEDGE";
3376 case RIL_REQUEST_GET_IMEI: return "GET_IMEI";
3377 case RIL_REQUEST_GET_IMEISV: return "GET_IMEISV";
3378 case RIL_REQUEST_ANSWER: return "ANSWER";
Wink Savillef4c4d362009-04-02 01:37:03 -07003379 case RIL_REQUEST_DEACTIVATE_DATA_CALL: return "DEACTIVATE_DATA_CALL";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003380 case RIL_REQUEST_QUERY_FACILITY_LOCK: return "QUERY_FACILITY_LOCK";
3381 case RIL_REQUEST_SET_FACILITY_LOCK: return "SET_FACILITY_LOCK";
3382 case RIL_REQUEST_CHANGE_BARRING_PASSWORD: return "CHANGE_BARRING_PASSWORD";
3383 case RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE: return "QUERY_NETWORK_SELECTION_MODE";
3384 case RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC: return "SET_NETWORK_SELECTION_AUTOMATIC";
3385 case RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL: return "SET_NETWORK_SELECTION_MANUAL";
3386 case RIL_REQUEST_QUERY_AVAILABLE_NETWORKS : return "QUERY_AVAILABLE_NETWORKS ";
3387 case RIL_REQUEST_DTMF_START: return "DTMF_START";
3388 case RIL_REQUEST_DTMF_STOP: return "DTMF_STOP";
3389 case RIL_REQUEST_BASEBAND_VERSION: return "BASEBAND_VERSION";
3390 case RIL_REQUEST_SEPARATE_CONNECTION: return "SEPARATE_CONNECTION";
3391 case RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE: return "SET_PREFERRED_NETWORK_TYPE";
3392 case RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE: return "GET_PREFERRED_NETWORK_TYPE";
3393 case RIL_REQUEST_GET_NEIGHBORING_CELL_IDS: return "GET_NEIGHBORING_CELL_IDS";
3394 case RIL_REQUEST_SET_MUTE: return "SET_MUTE";
3395 case RIL_REQUEST_GET_MUTE: return "GET_MUTE";
3396 case RIL_REQUEST_QUERY_CLIP: return "QUERY_CLIP";
Wink Savillef4c4d362009-04-02 01:37:03 -07003397 case RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE: return "LAST_DATA_CALL_FAIL_CAUSE";
3398 case RIL_REQUEST_DATA_CALL_LIST: return "DATA_CALL_LIST";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003399 case RIL_REQUEST_RESET_RADIO: return "RESET_RADIO";
3400 case RIL_REQUEST_OEM_HOOK_RAW: return "OEM_HOOK_RAW";
3401 case RIL_REQUEST_OEM_HOOK_STRINGS: return "OEM_HOOK_STRINGS";
Wink Savillef4c4d362009-04-02 01:37:03 -07003402 case RIL_REQUEST_SET_BAND_MODE: return "SET_BAND_MODE";
3403 case RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE: return "QUERY_AVAILABLE_BAND_MODE";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003404 case RIL_REQUEST_STK_GET_PROFILE: return "STK_GET_PROFILE";
3405 case RIL_REQUEST_STK_SET_PROFILE: return "STK_SET_PROFILE";
3406 case RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND: return "STK_SEND_ENVELOPE_COMMAND";
3407 case RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE: return "STK_SEND_TERMINAL_RESPONSE";
3408 case RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM: return "STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM";
3409 case RIL_REQUEST_SCREEN_STATE: return "SCREEN_STATE";
3410 case RIL_REQUEST_EXPLICIT_CALL_TRANSFER: return "EXPLICIT_CALL_TRANSFER";
3411 case RIL_REQUEST_SET_LOCATION_UPDATES: return "SET_LOCATION_UPDATES";
Wink Savillec0114b32011-02-18 10:14:07 -08003412 case RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE:return"CDMA_SET_SUBSCRIPTION_SOURCE";
Wink Savillef4c4d362009-04-02 01:37:03 -07003413 case RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE:return"CDMA_SET_ROAMING_PREFERENCE";
3414 case RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE:return"CDMA_QUERY_ROAMING_PREFERENCE";
3415 case RIL_REQUEST_SET_TTY_MODE:return"SET_TTY_MODE";
3416 case RIL_REQUEST_QUERY_TTY_MODE:return"QUERY_TTY_MODE";
3417 case RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE:return"CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE";
3418 case RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE:return"CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE";
3419 case RIL_REQUEST_CDMA_FLASH:return"CDMA_FLASH";
3420 case RIL_REQUEST_CDMA_BURST_DTMF:return"CDMA_BURST_DTMF";
3421 case RIL_REQUEST_CDMA_SEND_SMS:return"CDMA_SEND_SMS";
3422 case RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE:return"CDMA_SMS_ACKNOWLEDGE";
Wink Savillea592eeb2009-05-22 13:26:36 -07003423 case RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG:return"GSM_GET_BROADCAST_SMS_CONFIG";
3424 case RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG:return"GSM_SET_BROADCAST_SMS_CONFIG";
3425 case RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG:return "CDMA_GET_BROADCAST_SMS_CONFIG";
3426 case RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG:return "CDMA_SET_BROADCAST_SMS_CONFIG";
3427 case RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION:return "CDMA_SMS_BROADCAST_ACTIVATION";
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003428 case RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY: return"CDMA_VALIDATE_AND_WRITE_AKEY";
Wink Savillef4c4d362009-04-02 01:37:03 -07003429 case RIL_REQUEST_CDMA_SUBSCRIPTION: return"CDMA_SUBSCRIPTION";
3430 case RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM: return "CDMA_WRITE_SMS_TO_RUIM";
3431 case RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM: return "CDMA_DELETE_SMS_ON_RUIM";
3432 case RIL_REQUEST_DEVICE_IDENTITY: return "DEVICE_IDENTITY";
jsh000a9fe2009-05-11 14:52:35 -07003433 case RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE: return "EXIT_EMERGENCY_CALLBACK_MODE";
3434 case RIL_REQUEST_GET_SMSC_ADDRESS: return "GET_SMSC_ADDRESS";
3435 case RIL_REQUEST_SET_SMSC_ADDRESS: return "SET_SMSC_ADDRESS";
jsh09a68ba2009-06-10 11:56:38 -07003436 case RIL_REQUEST_REPORT_SMS_MEMORY_STATUS: return "REPORT_SMS_MEMORY_STATUS";
jsh563fd722010-06-08 16:52:24 -07003437 case RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING: return "REPORT_STK_SERVICE_IS_RUNNING";
Wink Savillec0114b32011-02-18 10:14:07 -08003438 case RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE: return "CDMA_GET_SUBSCRIPTION_SOURCE";
Jake Hambyfa8d5842011-08-19 16:22:18 -07003439 case RIL_REQUEST_ISIM_AUTHENTICATION: return "ISIM_AUTHENTICATION";
Jake Hamby300105d2011-09-26 01:01:44 -07003440 case RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU: return "RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU";
3441 case RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS: return "RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS";
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003442 case RIL_REQUEST_VOICE_RADIO_TECH: return "VOICE_RADIO_TECH";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003443 case RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED: return "UNSOL_RESPONSE_RADIO_STATE_CHANGED";
3444 case RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED: return "UNSOL_RESPONSE_CALL_STATE_CHANGED";
Wink Savillec0114b32011-02-18 10:14:07 -08003445 case RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED: return "UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003446 case RIL_UNSOL_RESPONSE_NEW_SMS: return "UNSOL_RESPONSE_NEW_SMS";
3447 case RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT: return "UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT";
3448 case RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM: return "UNSOL_RESPONSE_NEW_SMS_ON_SIM";
3449 case RIL_UNSOL_ON_USSD: return "UNSOL_ON_USSD";
3450 case RIL_UNSOL_ON_USSD_REQUEST: return "UNSOL_ON_USSD_REQUEST(obsolete)";
3451 case RIL_UNSOL_NITZ_TIME_RECEIVED: return "UNSOL_NITZ_TIME_RECEIVED";
3452 case RIL_UNSOL_SIGNAL_STRENGTH: return "UNSOL_SIGNAL_STRENGTH";
3453 case RIL_UNSOL_STK_SESSION_END: return "UNSOL_STK_SESSION_END";
3454 case RIL_UNSOL_STK_PROACTIVE_COMMAND: return "UNSOL_STK_PROACTIVE_COMMAND";
3455 case RIL_UNSOL_STK_EVENT_NOTIFY: return "UNSOL_STK_EVENT_NOTIFY";
3456 case RIL_UNSOL_STK_CALL_SETUP: return "UNSOL_STK_CALL_SETUP";
3457 case RIL_UNSOL_SIM_SMS_STORAGE_FULL: return "UNSOL_SIM_SMS_STORAGE_FUL";
3458 case RIL_UNSOL_SIM_REFRESH: return "UNSOL_SIM_REFRESH";
Wink Savillef4c4d362009-04-02 01:37:03 -07003459 case RIL_UNSOL_DATA_CALL_LIST_CHANGED: return "UNSOL_DATA_CALL_LIST_CHANGED";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003460 case RIL_UNSOL_CALL_RING: return "UNSOL_CALL_RING";
Wink Savillef4c4d362009-04-02 01:37:03 -07003461 case RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED: return "UNSOL_RESPONSE_SIM_STATUS_CHANGED";
3462 case RIL_UNSOL_RESPONSE_CDMA_NEW_SMS: return "UNSOL_NEW_CDMA_SMS";
3463 case RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS: return "UNSOL_NEW_BROADCAST_SMS";
3464 case RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL: return "UNSOL_CDMA_RUIM_SMS_STORAGE_FULL";
Wink Saville3d54e742009-05-18 18:00:44 -07003465 case RIL_UNSOL_RESTRICTED_STATE_CHANGED: return "UNSOL_RESTRICTED_STATE_CHANGED";
3466 case RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE: return "UNSOL_ENTER_EMERGENCY_CALLBACK_MODE";
3467 case RIL_UNSOL_CDMA_CALL_WAITING: return "UNSOL_CDMA_CALL_WAITING";
3468 case RIL_UNSOL_CDMA_OTA_PROVISION_STATUS: return "UNSOL_CDMA_OTA_PROVISION_STATUS";
3469 case RIL_UNSOL_CDMA_INFO_REC: return "UNSOL_CDMA_INFO_REC";
Jaikumar Ganeshaf6ecbf2009-04-29 13:27:51 -07003470 case RIL_UNSOL_OEM_HOOK_RAW: return "UNSOL_OEM_HOOK_RAW";
John Wang5d621da2009-09-18 17:17:48 -07003471 case RIL_UNSOL_RINGBACK_TONE: return "UNSOL_RINGBACK_TONE";
John Wang5909cf82010-01-29 00:18:54 -08003472 case RIL_UNSOL_RESEND_INCALL_MUTE: return "UNSOL_RESEND_INCALL_MUTE";
Wink Savilleee274582011-04-16 15:05:49 -07003473 case RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED: return "UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED";
Wink Savillec0114b32011-02-18 10:14:07 -08003474 case RIL_UNSOL_CDMA_PRL_CHANGED: return "UNSOL_CDMA_PRL_CHANGED";
3475 case RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE: return "UNSOL_EXIT_EMERGENCY_CALLBACK_MODE";
Wink Saville5b9df332011-04-06 16:24:21 -07003476 case RIL_UNSOL_RIL_CONNECTED: return "UNSOL_RIL_CONNECTED";
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003477 case RIL_UNSOL_VOICE_RADIO_TECH_CHANGED: return "UNSOL_VOICE_RADIO_TECH_CHANGED";
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003478 default: return "<unknown request>";
3479 }
3480}
3481
3482} /* namespace android */