1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
|
/*
* Copyright (c) 2011-2013 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <glib.h>
#include <stdio.h>
#include <string.h>
#include <vconf/vconf.h>
#include "net_connection_private.h"
static __thread GSList *conn_handle_list = NULL;
static int __connection_convert_net_state(int status)
{
switch (status) {
case VCONFKEY_NETWORK_CELLULAR:
return CONNECTION_TYPE_CELLULAR;
case VCONFKEY_NETWORK_WIFI:
return CONNECTION_TYPE_WIFI;
case VCONFKEY_NETWORK_ETHERNET:
return CONNECTION_TYPE_ETHERNET;
case VCONFKEY_NETWORK_BLUETOOTH:
return CONNECTION_TYPE_BT;
default:
return CONNECTION_TYPE_DISCONNECTED;
}
}
static int __connection_convert_cellular_state(int status)
{
switch (status) {
case VCONFKEY_NETWORK_CELLULAR_ON:
return CONNECTION_CELLULAR_STATE_AVAILABLE;
case VCONFKEY_NETWORK_CELLULAR_3G_OPTION_OFF:
return CONNECTION_CELLULAR_STATE_CALL_ONLY_AVAILABLE;
case VCONFKEY_NETWORK_CELLULAR_ROAMING_OFF:
return CONNECTION_CELLULAR_STATE_ROAMING_OFF;
case VCONFKEY_NETWORK_CELLULAR_FLIGHT_MODE:
return CONNECTION_CELLULAR_STATE_FLIGHT_MODE;
default:
return CONNECTION_CELLULAR_STATE_OUT_OF_SERVICE;
}
}
static bool __connection_check_handle_validity(connection_h connection)
{
bool ret = false;
if (connection == NULL)
return false;
if (g_slist_find(conn_handle_list, connection) != NULL)
ret = true;
return ret;
}
static connection_type_changed_cb
__connection_get_type_changed_callback(connection_handle_s *local_handle)
{
return local_handle->type_changed_callback;
}
static void *__connection_get_type_changed_userdata(
connection_handle_s *local_handle)
{
return local_handle->type_changed_user_data;
}
static gboolean __connection_cb_type_changed_cb_idle(gpointer user_data)
{
int state, status;
void *data;
connection_type_changed_cb callback;
connection_handle_s *local_handle = (connection_handle_s *)user_data;
if (__connection_check_handle_validity((connection_h)local_handle) != true)
return FALSE;
if (vconf_get_int(VCONFKEY_NETWORK_STATUS, &status) != 0)
return FALSE;
state = __connection_convert_net_state(status);
callback = __connection_get_type_changed_callback(local_handle);
data = __connection_get_type_changed_userdata(local_handle);
if (callback)
callback(state, data);
return FALSE;
}
static void __connection_cb_type_change_cb(keynode_t *node, void *user_data)
{
GSList *list;
connection_h handle;
if (_connection_is_created() != true) {
CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
"If multi-threaded, thread integrity be broken.");
return;
}
for (list = conn_handle_list; list; list = list->next) {
handle = (connection_h)list->data;
_connection_callback_add(__connection_cb_type_changed_cb_idle, (gpointer)handle);
}
}
static void __connection_cb_ethernet_cable_state_changed_cb(connection_ethernet_cable_state_e state)
{
CONNECTION_LOG(CONNECTION_INFO, "Ethernet Cable state Indication");
GSList *list;
for (list = conn_handle_list; list; list = list->next) {
connection_handle_s *local_handle = (connection_handle_s *)list->data;
if (local_handle->ethernet_cable_state_changed_callback)
local_handle->ethernet_cable_state_changed_callback(state,
local_handle->ethernet_cable_state_changed_user_data);
}
}
static int __connection_get_ethernet_cable_state_changed_callback_count(void)
{
GSList *list;
int count = 0;
for (list = conn_handle_list; list; list = list->next) {
connection_handle_s *local_handle = (connection_handle_s *)list->data;
if (local_handle->ethernet_cable_state_changed_callback) count++;
}
return count;
}
static int __connection_set_type_changed_callback(connection_h connection,
void *callback, void *user_data)
{
static __thread gint refcount = 0;
connection_handle_s *local_handle;
local_handle = (connection_handle_s *)connection;
if (callback) {
if (refcount == 0)
vconf_notify_key_changed(VCONFKEY_NETWORK_STATUS,
__connection_cb_type_change_cb, NULL);
refcount++;
CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
} else {
if (refcount > 0 &&
__connection_get_type_changed_callback(local_handle) != NULL) {
if (--refcount == 0) {
if (vconf_ignore_key_changed(VCONFKEY_NETWORK_STATUS,
__connection_cb_type_change_cb) < 0) {
CONNECTION_LOG(CONNECTION_ERROR,
"Error to de-register vconf callback(%d)", refcount);
} else {
CONNECTION_LOG(CONNECTION_INFO,
"Successfully de-registered(%d)", refcount);
}
}
}
}
local_handle->type_changed_user_data = user_data;
local_handle->type_changed_callback = callback;
return CONNECTION_ERROR_NONE;
}
static connection_address_changed_cb
__connection_get_ip_changed_callback(connection_handle_s *local_handle)
{
return local_handle->ip_changed_callback;
}
static void *__connection_get_ip_changed_userdata(
connection_handle_s *local_handle)
{
return local_handle->ip_changed_user_data;
}
static gboolean __connection_cb_ip_changed_cb_idle(gpointer user_data)
{
char *ip_addr;
void *data;
connection_address_changed_cb callback;
connection_handle_s *local_handle = (connection_handle_s *)user_data;
if (__connection_check_handle_validity((connection_h)local_handle) != true)
return FALSE;
ip_addr = vconf_get_str(VCONFKEY_NETWORK_IP);
callback = __connection_get_ip_changed_callback(local_handle);
data = __connection_get_ip_changed_userdata(local_handle);
/* TODO: IPv6 should be supported */
if (callback)
callback(ip_addr, NULL, data);
return FALSE;
}
static void __connection_cb_ip_change_cb(keynode_t *node, void *user_data)
{
GSList *list;
connection_h handle;
if (_connection_is_created() != true) {
CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
"If multi-threaded, thread integrity be broken.");
return;
}
for (list = conn_handle_list; list; list = list->next) {
handle = (connection_h)list->data;
_connection_callback_add(__connection_cb_ip_changed_cb_idle, (gpointer)handle);
}
}
static int __connection_set_ip_changed_callback(connection_h connection,
void *callback, void *user_data)
{
static __thread gint refcount = 0;
connection_handle_s *local_handle;
local_handle = (connection_handle_s *)connection;
if (callback) {
if (refcount == 0)
vconf_notify_key_changed(VCONFKEY_NETWORK_IP,
__connection_cb_ip_change_cb, NULL);
refcount++;
CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
} else {
if (refcount > 0 &&
__connection_get_ip_changed_callback(local_handle) != NULL) {
if (--refcount == 0) {
if (vconf_ignore_key_changed(VCONFKEY_NETWORK_IP,
__connection_cb_ip_change_cb) < 0) {
CONNECTION_LOG(CONNECTION_ERROR,
"Error to de-register vconf callback(%d)", refcount);
} else {
CONNECTION_LOG(CONNECTION_INFO,
"Successfully de-registered(%d)", refcount);
}
}
}
}
local_handle->ip_changed_user_data = user_data;
local_handle->ip_changed_callback = callback;
return CONNECTION_ERROR_NONE;
}
static connection_address_changed_cb
__connection_get_proxy_changed_callback(connection_handle_s *local_handle)
{
return local_handle->proxy_changed_callback;
}
static void *__connection_get_proxy_changed_userdata(
connection_handle_s *local_handle)
{
return local_handle->proxy_changed_user_data;
}
static gboolean __connection_cb_proxy_changed_cb_idle(gpointer user_data)
{
char *proxy;
void *data;
connection_address_changed_cb callback;
connection_handle_s *local_handle = (connection_handle_s *)user_data;
if (__connection_check_handle_validity((connection_h)local_handle) != true)
return FALSE;
proxy = vconf_get_str(VCONFKEY_NETWORK_PROXY);
callback = __connection_get_proxy_changed_callback(local_handle);
data = __connection_get_proxy_changed_userdata(local_handle);
/* TODO: IPv6 should be supported */
if (callback)
callback(proxy, NULL, data);
return FALSE;
}
static void __connection_cb_proxy_change_cb(keynode_t *node, void *user_data)
{
GSList *list;
connection_h handle;
if (_connection_is_created() != true) {
CONNECTION_LOG(CONNECTION_ERROR, "Application is not registered"
"If multi-threaded, thread integrity be broken.");
return;
}
for (list = conn_handle_list; list; list = list->next) {
handle = (connection_h)list->data;
_connection_callback_add(__connection_cb_proxy_changed_cb_idle, (gpointer)handle);
}
}
static int __connection_set_proxy_changed_callback(connection_h connection,
void *callback, void *user_data)
{
static __thread gint refcount = 0;
connection_handle_s *local_handle;
local_handle = (connection_handle_s *)connection;
if (callback) {
if (refcount == 0)
vconf_notify_key_changed(VCONFKEY_NETWORK_PROXY,
__connection_cb_proxy_change_cb, NULL);
refcount++;
CONNECTION_LOG(CONNECTION_INFO, "Successfully registered(%d)", refcount);
} else {
if (refcount > 0 &&
__connection_get_proxy_changed_callback(local_handle) != NULL) {
if (--refcount == 0) {
if (vconf_ignore_key_changed(VCONFKEY_NETWORK_PROXY,
__connection_cb_proxy_change_cb) < 0) {
CONNECTION_LOG(CONNECTION_ERROR,
"Error to de-register vconf callback(%d)", refcount);
} else {
CONNECTION_LOG(CONNECTION_INFO,
"Successfully de-registered(%d)", refcount);
}
}
}
}
local_handle->proxy_changed_user_data = user_data;
local_handle->proxy_changed_callback = callback;
return CONNECTION_ERROR_NONE;
}
static int __connection_set_ethernet_cable_state_changed_cb(connection_h connection,
connection_ethernet_cable_state_chaged_cb callback, void *user_data)
{
connection_handle_s *local_handle = (connection_handle_s *)connection;
if (callback) {
if (__connection_get_ethernet_cable_state_changed_callback_count() == 0)
_connection_libnet_set_ethernet_cable_state_changed_cb(
__connection_cb_ethernet_cable_state_changed_cb);
} else {
if (__connection_get_ethernet_cable_state_changed_callback_count() == 1)
_connection_libnet_set_ethernet_cable_state_changed_cb(NULL);
}
local_handle->ethernet_cable_state_changed_callback = callback;
local_handle->ethernet_cable_state_changed_user_data = user_data;
return CONNECTION_ERROR_NONE;
}
static int __connection_get_handle_count(void)
{
return ((int)g_slist_length(conn_handle_list));
}
/* Connection Manager ********************************************************/
EXPORT_API int connection_create(connection_h *connection)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (connection == NULL || __connection_check_handle_validity(*connection)) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
int rv = _connection_libnet_init();
if (rv == NET_ERR_ACCESS_DENIED) {
CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
return CONNECTION_ERROR_PERMISSION_DENIED;
}
else if (rv != NET_ERR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to create connection[%d]", rv);
return CONNECTION_ERROR_OPERATION_FAILED;
}
*connection = g_try_malloc0(sizeof(connection_handle_s));
if (*connection != NULL)
CONNECTION_LOG(CONNECTION_INFO, "New handle created[%p]", *connection);
else
return CONNECTION_ERROR_OUT_OF_MEMORY;
conn_handle_list = g_slist_prepend(conn_handle_list, *connection);
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_destroy(connection_h connection)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
CONNECTION_LOG(CONNECTION_INFO, "Destroy handle: %p", connection);
__connection_set_type_changed_callback(connection, NULL, NULL);
__connection_set_ip_changed_callback(connection, NULL, NULL);
__connection_set_proxy_changed_callback(connection, NULL, NULL);
__connection_set_ethernet_cable_state_changed_cb(connection, NULL, NULL);
conn_handle_list = g_slist_remove(conn_handle_list, connection);
g_free(connection);
connection = NULL;
if (__connection_get_handle_count() == 0) {
_connection_libnet_deinit();
_connection_callback_cleanup();
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_type(connection_h connection, connection_type_e* type)
{
int rv = 0;
int status = 0;
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (type == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = vconf_get_int(VCONFKEY_NETWORK_STATUS, &status);
if (rv != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_int Failed = %d", status);
return CONNECTION_ERROR_OPERATION_FAILED;
}
CONNECTION_LOG(CONNECTION_INFO, "Connected Network = %d", status);
*type = __connection_convert_net_state(status);
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_ip_address(connection_h connection,
connection_address_family_e address_family, char** ip_address)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (ip_address == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
switch (address_family) {
case CONNECTION_ADDRESS_FAMILY_IPV4:
case CONNECTION_ADDRESS_FAMILY_IPV6:
*ip_address = vconf_get_str(VCONFKEY_NETWORK_IP);
break;
default:
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if (*ip_address == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed");
return CONNECTION_ERROR_OPERATION_FAILED;
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_proxy(connection_h connection,
connection_address_family_e address_family, char** proxy)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (proxy == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
switch (address_family) {
case CONNECTION_ADDRESS_FAMILY_IPV4:
case CONNECTION_ADDRESS_FAMILY_IPV6:
*proxy = vconf_get_str(VCONFKEY_NETWORK_PROXY);
break;
default:
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if (*proxy == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "vconf_get_str Failed");
return CONNECTION_ERROR_OPERATION_FAILED;
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_mac_address(connection_h connection, connection_type_e type, char** mac_addr)
{
FILE *fp;
char buf[CONNECTION_MAC_INFO_LENGTH + 1];
CHECK_FEATURE_SUPPORTED(WIFI_FEATURE, ETHERNET_FEATURE);
if(type == CONNECTION_TYPE_WIFI)
CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
else if(type == CONNECTION_TYPE_ETHERNET)
CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
if (mac_addr == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
switch (type) {
case CONNECTION_TYPE_WIFI:
#if defined TIZEN_TV
fp = fopen(WIFI_MAC_INFO_FILE, "r");
if (fp == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to open file %s", WIFI_MAC_INFO_FILE);
return CONNECTION_ERROR_OUT_OF_MEMORY;
}
if (fgets(buf, sizeof(buf), fp) == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get MAC info from %s", WIFI_MAC_INFO_FILE);
fclose(fp);
return CONNECTION_ERROR_OPERATION_FAILED;
}
CONNECTION_LOG(CONNECTION_INFO, "%s : %s", WIFI_MAC_INFO_FILE, buf);
*mac_addr = (char *)malloc(CONNECTION_MAC_INFO_LENGTH + 1);
if (*mac_addr == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "malloc() failed");
fclose(fp);
return CONNECTION_ERROR_OUT_OF_MEMORY;
}
g_strlcpy(*mac_addr, buf, CONNECTION_MAC_INFO_LENGTH + 1);
fclose(fp);
#else
*mac_addr = vconf_get_str(VCONFKEY_WIFI_BSSID_ADDRESS);
if(*mac_addr == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get vconf from %s", VCONFKEY_WIFI_BSSID_ADDRESS);
return CONNECTION_ERROR_OPERATION_FAILED;
}
#endif
break;
case CONNECTION_TYPE_ETHERNET:
fp = fopen(ETHERNET_MAC_INFO_FILE, "r");
if (fp == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to open file %s", ETHERNET_MAC_INFO_FILE);
return CONNECTION_ERROR_OUT_OF_MEMORY;
}
if (fgets(buf, sizeof(buf), fp) == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get MAC info from %s", ETHERNET_MAC_INFO_FILE);
fclose(fp);
return CONNECTION_ERROR_OPERATION_FAILED;
}
CONNECTION_LOG(CONNECTION_INFO, "%s : %s", ETHERNET_MAC_INFO_FILE, buf);
*mac_addr = (char *)malloc(CONNECTION_MAC_INFO_LENGTH + 1);
if (*mac_addr == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "malloc() failed");
fclose(fp);
return CONNECTION_ERROR_OUT_OF_MEMORY;
}
g_strlcpy(*mac_addr, buf,CONNECTION_MAC_INFO_LENGTH + 1);
fclose(fp);
break;
default:
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
/* Checking Invalid MAC Address */
if((strcmp(*mac_addr, "00:00:00:00:00:00") == 0) ||
(strcmp(*mac_addr, "ff:ff:ff:ff:ff:ff") == 0)) {
CONNECTION_LOG(CONNECTION_ERROR, "MAC Address(%s) is invalid", *mac_addr);
return CONNECTION_ERROR_INVALID_OPERATION;
}
CONNECTION_LOG(CONNECTION_INFO, "MAC Address %s", *mac_addr);
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_cellular_state(connection_h connection, connection_cellular_state_e* state)
{
int rv = 0;
int status = 0;
int cellular_state = 0;
#if defined TIZEN_DUALSIM_ENABLE
int sim_id = 0;
#endif
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (state == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_STATE, &status);
if (rv != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state");
return CONNECTION_ERROR_OPERATION_FAILED;
}
CONNECTION_LOG(CONNECTION_INFO, "Cellular: %d", status);
*state = __connection_convert_cellular_state(status);
if (*state == CONNECTION_CELLULAR_STATE_AVAILABLE) {
#if defined TIZEN_DUALSIM_ENABLE
rv = vconf_get_int(VCONF_TELEPHONY_DEFAULT_DATA_SERVICE, &sim_id);
if (rv != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR,
"Failed to get default subscriber id", sim_id);
return CONNECTION_ERROR_OPERATION_FAILED;
}
switch (sim_id) {
case CONNECTION_CELLULAR_SUBSCRIBER_1:
#endif
rv = vconf_get_int(VCONFKEY_DNET_STATE, &cellular_state);
#if defined TIZEN_DUALSIM_ENABLE
break;
case CONNECTION_CELLULAR_SUBSCRIBER_2:
rv = vconf_get_int(VCONFKEY_DNET_STATE2, &cellular_state);
break;
default:
CONNECTION_LOG(CONNECTION_ERROR, "Invalid subscriber id:%d", sim_id);
return CONNECTION_ERROR_OPERATION_FAILED;
}
#endif
if (rv != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular state");
return CONNECTION_ERROR_OPERATION_FAILED;
}
}
CONNECTION_LOG(CONNECTION_INFO, "Cellular state: %d", cellular_state);
if (cellular_state == VCONFKEY_DNET_NORMAL_CONNECTED ||
cellular_state == VCONFKEY_DNET_SECURE_CONNECTED ||
cellular_state == VCONFKEY_DNET_TRANSFER)
*state = CONNECTION_CELLULAR_STATE_CONNECTED;
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_wifi_state(connection_h connection, connection_wifi_state_e* state)
{
CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
if (state == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
int rv = _connection_libnet_get_wifi_state(state);
if (rv != CONNECTION_ERROR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Fail to get Wi-Fi state[%d]", rv);
return rv;
}
CONNECTION_LOG(CONNECTION_INFO, "Wi-Fi state: %d", *state);
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_ethernet_state(connection_h connection, connection_ethernet_state_e* state)
{
CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
if (state == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_ethernet_state(state);
}
EXPORT_API int connection_get_ethernet_cable_state(connection_h connection, connection_ethernet_cable_state_e *state)
{
CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
if (state == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_ethernet_cable_state(state);
}
EXPORT_API int connection_set_ethernet_cable_state_chaged_cb(connection_h connection,
connection_ethernet_cable_state_chaged_cb callback, void *user_data)
{
CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
if (callback == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_ethernet_cable_state_changed_cb(connection,
callback, user_data);
}
EXPORT_API int connection_unset_ethernet_cable_state_chaged_cb(connection_h connection)
{
CHECK_FEATURE_SUPPORTED(ETHERNET_FEATURE);
if ( !(__connection_check_handle_validity(connection)) ) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_ethernet_cable_state_changed_cb(connection,
NULL, NULL);
}
EXPORT_API int connection_get_bt_state(connection_h connection, connection_bt_state_e* state)
{
CHECK_FEATURE_SUPPORTED(TETHERING_BLUETOOTH_FEATURE);
if (state == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_bluetooth_state(state);
}
EXPORT_API int connection_set_type_changed_cb(connection_h connection,
connection_type_changed_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (callback == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_type_changed_callback(connection, callback, user_data);
}
EXPORT_API int connection_unset_type_changed_cb(connection_h connection)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_type_changed_callback(connection, NULL, NULL);
}
EXPORT_API int connection_set_ip_address_changed_cb(connection_h connection,
connection_address_changed_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (callback == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_ip_changed_callback(connection, callback, user_data);
}
EXPORT_API int connection_unset_ip_address_changed_cb(connection_h connection)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_ip_changed_callback(connection, NULL, NULL);
}
EXPORT_API int connection_set_proxy_address_changed_cb(connection_h connection,
connection_address_changed_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (callback == NULL || !(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_proxy_changed_callback(connection, callback, user_data);
}
EXPORT_API int connection_unset_proxy_address_changed_cb(connection_h connection)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __connection_set_proxy_changed_callback(connection, NULL, NULL);
}
EXPORT_API int connection_add_profile(connection_h connection, connection_profile_h profile)
{
int rv = 0;
net_profile_info_t *profile_info = profile;
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
!(_connection_libnet_check_profile_validity(profile))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if (profile_info->profile_type != NET_DEVICE_CELLULAR) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if (profile_info->ProfileInfo.Pdp.PSModemPath[0] != '/' ||
strlen(profile_info->ProfileInfo.Pdp.PSModemPath) < 2) {
CONNECTION_LOG(CONNECTION_ERROR, "Modem object path is NULL");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = net_add_profile(profile_info->ProfileInfo.Pdp.ServiceType,
(net_profile_info_t*)profile);
if (rv == NET_ERR_ACCESS_DENIED) {
CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
return CONNECTION_ERROR_PERMISSION_DENIED;
} else if (rv != NET_ERR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to add profile[%d]", rv);
return CONNECTION_ERROR_OPERATION_FAILED;
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_remove_profile(connection_h connection, connection_profile_h profile)
{
int rv = 0;
net_profile_info_t *profile_info = profile;
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
!(_connection_libnet_check_profile_validity(profile))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if (profile_info->profile_type != NET_DEVICE_CELLULAR &&
profile_info->profile_type != NET_DEVICE_WIFI) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = net_delete_profile(profile_info->ProfileName);
if (rv == NET_ERR_ACCESS_DENIED) {
CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
return CONNECTION_ERROR_PERMISSION_DENIED;
} else if (rv != NET_ERR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to delete profile[%d]", rv);
return CONNECTION_ERROR_OPERATION_FAILED;
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_update_profile(connection_h connection, connection_profile_h profile)
{
int rv = 0;
net_profile_info_t *profile_info = profile;
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
!(_connection_libnet_check_profile_validity(profile))) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = net_modify_profile(profile_info->ProfileName, (net_profile_info_t*)profile);
if (rv == NET_ERR_ACCESS_DENIED) {
CONNECTION_LOG(CONNECTION_ERROR, "Access denied");
return CONNECTION_ERROR_PERMISSION_DENIED;
} else if (rv != NET_ERR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to modify profile[%d]", rv);
return CONNECTION_ERROR_OPERATION_FAILED;
}
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_profile_iterator(connection_h connection,
connection_iterator_type_e type, connection_profile_iterator_h* profile_iterator)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
(type != CONNECTION_ITERATOR_TYPE_REGISTERED &&
type != CONNECTION_ITERATOR_TYPE_CONNECTED &&
type != CONNECTION_ITERATOR_TYPE_DEFAULT)) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_profile_iterator(type, profile_iterator);
}
EXPORT_API int connection_profile_iterator_next(connection_profile_iterator_h profile_iterator,
connection_profile_h* profile)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
return _connection_libnet_get_iterator_next(profile_iterator, profile);
}
EXPORT_API bool connection_profile_iterator_has_next(connection_profile_iterator_h profile_iterator)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
return _connection_libnet_iterator_has_next(profile_iterator);
}
EXPORT_API int connection_destroy_profile_iterator(connection_profile_iterator_h profile_iterator)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
return _connection_libnet_destroy_iterator(profile_iterator);
}
EXPORT_API int connection_get_current_profile(connection_h connection, connection_profile_h* profile)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) || profile == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_current_profile(profile);
}
EXPORT_API int connection_get_default_cellular_service_profile(
connection_h connection, connection_cellular_service_type_e type,
connection_profile_h *profile)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (!(__connection_check_handle_validity(connection)) || profile == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_get_cellular_service_profile(type, profile);
}
EXPORT_API int connection_set_default_cellular_service_profile(connection_h connection,
connection_cellular_service_type_e type, connection_profile_h profile)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (!(__connection_check_handle_validity(connection)) || profile == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_set_cellular_service_profile_sync(type, profile);
}
EXPORT_API int connection_set_default_cellular_service_profile_async(connection_h connection,
connection_cellular_service_type_e type, connection_profile_h profile,
connection_set_default_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
profile == NULL || callback == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_set_cellular_service_profile_async(type, profile, callback, user_data);
}
EXPORT_API int connection_open_profile(connection_h connection, connection_profile_h profile,
connection_opened_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
profile == NULL || callback == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_open_profile(profile, callback, user_data);
}
EXPORT_API int connection_close_profile(connection_h connection, connection_profile_h profile,
connection_closed_cb callback, void* user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
profile == NULL || callback == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_close_profile(profile, callback, user_data);
}
EXPORT_API int connection_reset_profile(connection_h connection,
connection_reset_option_e type, int id, connection_reset_cb callback, void *user_data)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
if (!(__connection_check_handle_validity(connection))) {
CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
if(id < 0 || id > 1) {
CONNECTION_LOG(CONNECTION_ERROR, "Wrong Parameter Passed");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_reset_profile(type, id, callback, user_data);
}
EXPORT_API int connection_add_route(connection_h connection, const char* interface_name, const char* host_address)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
interface_name == NULL || host_address == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_add_route(interface_name, host_address);
}
EXPORT_API int connection_remove_route(connection_h connection, const char* interface_name, const char* host_address)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, TETHERING_BLUETOOTH_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
interface_name == NULL || host_address == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_remove_route(interface_name, host_address);
}
EXPORT_API int connection_add_route_ipv6(connection_h connection, const char *interface_name, const char *host_address, const char * gateway)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
interface_name == NULL || host_address == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_add_route_ipv6(interface_name, host_address, gateway);
}
EXPORT_API int connection_remove_route_ipv6(connection_h connection, const char *interface_name, const char *host_address, const char * gateway)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE, ETHERNET_FEATURE);
if (!(__connection_check_handle_validity(connection)) ||
interface_name == NULL || host_address == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return _connection_libnet_remove_route_ipv6(interface_name, host_address, gateway);
}
static int __get_cellular_statistic(connection_statistics_type_e statistics_type, long long *llsize)
{
int rv = VCONF_OK, rv1 = VCONF_OK;
int last_size = 0, size = 0;
#if defined TIZEN_DUALSIM_ENABLE
int sim_id = 0;
#endif
if (llsize == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
switch (statistics_type) {
case CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA:
case CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA:
case CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA:
case CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA:
break;
default:
return CONNECTION_ERROR_INVALID_PARAMETER;
}
#if defined TIZEN_DUALSIM_ENABLE
rv = vconf_get_int(VCONF_TELEPHONY_DEFAULT_DATA_SERVICE, &sim_id);
if (rv != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get default subscriber id");
*llsize = 0;
return CONNECTION_ERROR_OPERATION_FAILED;
}
switch (sim_id) {
case 0:
#endif
switch (statistics_type) {
case CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_SNT, &last_size);
break;
case CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_RCV, &last_size);
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_SNT, &last_size);
rv1 = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_TOTAL_SNT, &size);
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_RCV, &last_size);
rv1 = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_TOTAL_RCV, &size);
break;
}
#if defined TIZEN_DUALSIM_ENABLE
break;
case 1:
switch (statistics_type) {
case CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_SNT2, &last_size);
break;
case CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_RCV2, &last_size);
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_SNT2, &last_size);
rv1 = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_TOTAL_SNT2, &size);
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA:
rv = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_LAST_RCV2, &last_size);
rv1 = vconf_get_int(VCONFKEY_NETWORK_CELLULAR_PKT_TOTAL_RCV2, &size);
break;
}
break;
default:
*llsize = 0;
CONNECTION_LOG(CONNECTION_ERROR, "Invalid subscriber id:%d", sim_id);
return CONNECTION_ERROR_OPERATION_FAILED;
}
#endif
if (rv != VCONF_OK || rv1 != VCONF_OK) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get cellular statistics");
return CONNECTION_ERROR_OPERATION_FAILED;
}
*llsize = (long long)(last_size * 1000 + size * 1000);
CONNECTION_LOG(CONNECTION_INFO,"%lld bytes", *llsize);
return CONNECTION_ERROR_NONE;
}
static int __get_statistic(connection_type_e connection_type,
connection_statistics_type_e statistics_type, long long *llsize)
{
int rv, stat_type;
unsigned long long ull_size;
if (llsize == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = _connection_libnet_check_get_privilege();
if (rv == CONNECTION_ERROR_PERMISSION_DENIED)
return rv;
else if (rv != CONNECTION_ERROR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get statistics");
return CONNECTION_ERROR_OPERATION_FAILED;
}
if (connection_type == CONNECTION_TYPE_CELLULAR)
return __get_cellular_statistic(statistics_type, llsize);
else if (connection_type == CONNECTION_TYPE_WIFI) {
switch (statistics_type) {
case CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA:
stat_type = NET_STATISTICS_TYPE_LAST_SENT_DATA;
break;
case CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA:
stat_type = NET_STATISTICS_TYPE_LAST_RECEIVED_DATA;
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA:
stat_type = NET_STATISTICS_TYPE_TOTAL_SENT_DATA;
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA:
stat_type = NET_STATISTICS_TYPE_TOTAL_RECEIVED_DATA;
break;
default:
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = _connection_libnet_get_statistics(stat_type, &ull_size);
if (rv == CONNECTION_ERROR_PERMISSION_DENIED)
return rv;
else if (rv != CONNECTION_ERROR_NONE) {
CONNECTION_LOG(CONNECTION_ERROR, "Failed to get Wi-Fi statistics");
*llsize = 0;
return CONNECTION_ERROR_OPERATION_FAILED;
}
CONNECTION_LOG(CONNECTION_INFO,"%lld bytes", ull_size);
*llsize = (long long)ull_size;
} else
return CONNECTION_ERROR_INVALID_PARAMETER;
return CONNECTION_ERROR_NONE;
}
static int __reset_statistic(connection_type_e connection_type,
connection_statistics_type_e statistics_type)
{
int conn_type;
int stat_type;
int rv;
if (connection_type == CONNECTION_TYPE_CELLULAR)
conn_type = NET_DEVICE_CELLULAR;
else if (connection_type == CONNECTION_TYPE_WIFI)
conn_type = NET_DEVICE_WIFI;
else
return CONNECTION_ERROR_INVALID_PARAMETER;
switch (statistics_type) {
case CONNECTION_STATISTICS_TYPE_LAST_SENT_DATA:
stat_type = NET_STATISTICS_TYPE_LAST_SENT_DATA;
break;
case CONNECTION_STATISTICS_TYPE_LAST_RECEIVED_DATA:
stat_type = NET_STATISTICS_TYPE_LAST_RECEIVED_DATA;
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_SENT_DATA:
stat_type = NET_STATISTICS_TYPE_TOTAL_SENT_DATA;
break;
case CONNECTION_STATISTICS_TYPE_TOTAL_RECEIVED_DATA:
stat_type = NET_STATISTICS_TYPE_TOTAL_RECEIVED_DATA;
break;
default:
return CONNECTION_ERROR_INVALID_PARAMETER;
}
rv = _connection_libnet_set_statistics(conn_type, stat_type);
if (rv != CONNECTION_ERROR_NONE)
return rv;
CONNECTION_LOG(CONNECTION_INFO,"connection_reset_statistics success");
return CONNECTION_ERROR_NONE;
}
EXPORT_API int connection_get_statistics(connection_h connection,
connection_type_e connection_type,
connection_statistics_type_e statistics_type, long long* size)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
if(connection_type == CONNECTION_TYPE_CELLULAR )
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
else if(connection_type == CONNECTION_TYPE_WIFI)
CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
if (!(__connection_check_handle_validity(connection)) || size == NULL) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __get_statistic(connection_type, statistics_type, size);
}
EXPORT_API int connection_reset_statistics(connection_h connection,
connection_type_e connection_type,
connection_statistics_type_e statistics_type)
{
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE, WIFI_FEATURE);
if(connection_type == CONNECTION_TYPE_CELLULAR )
CHECK_FEATURE_SUPPORTED(TELEPHONY_FEATURE);
else if(connection_type == CONNECTION_TYPE_WIFI)
CHECK_FEATURE_SUPPORTED(WIFI_FEATURE);
if (!__connection_check_handle_validity(connection)) {
CONNECTION_LOG(CONNECTION_ERROR, "Invalid parameter");
return CONNECTION_ERROR_INVALID_PARAMETER;
}
return __reset_statistic(connection_type, statistics_type);
}
|