4 * Copyright (c) 2010 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
26 #include <pims-ipc-data.h>
29 #include "ctsvc_client_ipc.h"
30 #include "ctsvc_client_utils.h"
31 #include "ctsvc_client_service_helper.h"
33 #include "ctsvc_internal.h"
34 #include "ctsvc_list.h"
35 #include "ctsvc_record.h"
36 #include "ctsvc_inotify.h"
38 #include "ctsvc_ipc_define.h"
39 #include "ctsvc_ipc_marshal.h"
40 #include "ctsvc_view.h"
41 #include "ctsvc_mutex.h"
42 #include "ctsvc_handle.h"
49 static pthread_mutex_t _ctsvc_mutex_disconnected = PTHREAD_MUTEX_INITIALIZER;
50 static GHashTable *_ctsvc_ipc_table = NULL;
51 static bool _ctsvc_ipc_disconnected = false;
53 static pims_ipc_h _ctsvc_get_ipc_handle()
55 struct ctsvc_ipc_s *ipc_data = NULL;
56 char ipc_key[CTSVC_STR_SHORT_LEN] = {0};
57 RETVM_IF(NULL == _ctsvc_ipc_table, NULL, "contacts not connected");
59 snprintf(ipc_key, sizeof(ipc_key), "%u", ctsvc_client_get_tid());
60 ipc_data = g_hash_table_lookup(_ctsvc_ipc_table, ipc_key);
62 if (NULL == ipc_data) {
63 snprintf(ipc_key, sizeof(ipc_key), "%u", ctsvc_client_get_pid());
64 ipc_data = g_hash_table_lookup(_ctsvc_ipc_table, ipc_key);
67 RETVM_IF(NULL == ipc_data, NULL, "g_hash_table_lookup(%s) Fail", ipc_key);
72 bool ctsvc_ipc_is_busy()
76 pims_ipc_h ipc = _ctsvc_get_ipc_handle();
78 CTS_ERR("_ctsvc_get_ipc_handle() return NULL");
82 ret = pims_ipc_is_call_in_progress(ipc);
84 CTS_ERR("global ipc channel is busy.");
89 static int _ctsvc_ipc_create(pims_ipc_h *p_ipc)
91 char sock_file[CTSVC_PATH_MAX_LEN] = {0};
92 snprintf(sock_file, sizeof(sock_file), CTSVC_SOCK_PATH"/.%s", getuid(), CTSVC_IPC_SERVICE);
93 pims_ipc_h ipc = pims_ipc_create(sock_file);
95 if (errno == EACCES) {
96 CTS_ERR("pims_ipc_create() Failed(%d)", CONTACTS_ERROR_PERMISSION_DENIED);
97 return CONTACTS_ERROR_PERMISSION_DENIED;
100 CTS_ERR("pims_ipc_create() Failed(%d)", CONTACTS_ERROR_IPC_NOT_AVALIABLE);
101 return CONTACTS_ERROR_IPC_NOT_AVALIABLE;
106 return CONTACTS_ERROR_NONE;
109 static void _ctsvc_ipc_data_free(gpointer p)
111 struct ctsvc_ipc_s *ipc_data = p;
112 if (NULL == ipc_data)
116 ctsvc_ipc_unset_disconnected_cb(ipc_data->ipc);
117 pims_ipc_destroy(ipc_data->ipc);
120 g_list_free(ipc_data->list_handle);
125 static int _ctsvc_ipc_connect(contacts_h contact, pims_ipc_h ipc)
128 pims_ipc_data_h outdata = NULL;
129 pims_ipc_data_h indata = NULL;
131 /* Access control : put cookie to indata */
132 indata = pims_ipc_data_create(0);
133 if (indata == NULL) {
134 CTS_ERR("pims_ipc_data_create() return NULL");
135 return CONTACTS_ERROR_OUT_OF_MEMORY;
138 ret = ctsvc_ipc_marshal_handle(contact, indata);
139 if (CONTACTS_ERROR_NONE != ret) {
140 CTS_ERR("ctsvc_ipc_marshal_handle Fail(%d)", ret);
141 pims_ipc_data_destroy(indata);
146 if (pims_ipc_call(ipc, CTSVC_IPC_MODULE, CTSVC_IPC_SERVER_CONNECT, indata, &outdata) != 0) {
147 CTS_ERR("[GLOBAL_IPC_CHANNEL] pims_ipc_call failed");
148 pims_ipc_data_destroy(indata);
149 return CONTACTS_ERROR_IPC;
151 pims_ipc_data_destroy(indata);
154 ctsvc_ipc_unmarshal_int(outdata, &ret);
155 pims_ipc_data_destroy(outdata);
156 RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_ipc_server_connect return(%d)", ret);
161 static void _ctsvc_ipc_disconnected_cb(void *user_data)
163 ctsvc_ipc_set_disconnected(true);
166 int ctsvc_ipc_connect(contacts_h contact, unsigned int handle_id)
168 int ret = CONTACTS_ERROR_NONE;
169 struct ctsvc_ipc_s *ipc_data = NULL;
170 char ipc_key[CTSVC_STR_SHORT_LEN] = {0};
172 snprintf(ipc_key, sizeof(ipc_key), "%u", handle_id);
174 if (NULL == _ctsvc_ipc_table)
175 _ctsvc_ipc_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, _ctsvc_ipc_data_free);
177 ipc_data = g_hash_table_lookup(_ctsvc_ipc_table, ipc_key);
179 if (NULL == ipc_data) {
180 ipc_data = calloc(1, sizeof(struct ctsvc_ipc_s));
181 if (NULL == ipc_data)
183 CTS_ERR("calloc() Fail");
184 return CONTACTS_ERROR_OUT_OF_MEMORY;
186 ret = _ctsvc_ipc_create(&(ipc_data->ipc));
187 if (CONTACTS_ERROR_NONE != ret) {
188 _ctsvc_ipc_data_free(ipc_data);
191 g_hash_table_insert(_ctsvc_ipc_table, strdup(ipc_key), ipc_data);
192 ctsvc_ipc_set_disconnected_cb(ipc_data->ipc, _ctsvc_ipc_disconnected_cb, NULL);
194 _ctsvc_ipc_connect(contact, ipc_data->ipc);
195 ipc_data->list_handle = g_list_append(ipc_data->list_handle, contact);
197 return CONTACTS_ERROR_NONE;
201 int ctsvc_ipc_disconnect(contacts_h contact, unsigned int handle_id, int connection_count)
203 int ret = CONTACTS_ERROR_NONE;
204 struct ctsvc_ipc_s *ipc_data = NULL;
205 pims_ipc_data_h outdata = NULL;
206 pims_ipc_data_h indata = NULL;
207 char ipc_key[CTSVC_STR_SHORT_LEN] = {0};
209 RETVM_IF(NULL == _ctsvc_ipc_table, CONTACTS_ERROR_IPC, "contacts not connected");
210 snprintf(ipc_key, sizeof(ipc_key), "%u", handle_id);
212 ipc_data = g_hash_table_lookup(_ctsvc_ipc_table, ipc_key);
213 RETVM_IF(ipc_data == NULL, CONTACTS_ERROR_IPC, "contacts not connected");
215 indata = pims_ipc_data_create(0);
216 if (indata == NULL) {
217 CTS_ERR("ipc data created fail!");
218 return CONTACTS_ERROR_OUT_OF_MEMORY;
221 ret = ctsvc_ipc_marshal_handle(contact, indata);
222 RETVM_IF(CONTACTS_ERROR_NONE != ret, ret, "ctsvc_ipc_marshal_handle() Fail(%d)", ret);
224 if (pims_ipc_call(ipc_data->ipc, CTSVC_IPC_MODULE, CTSVC_IPC_SERVER_DISCONNECT, indata, &outdata) != 0) {
225 pims_ipc_data_destroy(indata);
226 CTS_ERR("[GLOBAL_IPC_CHANNEL] pims_ipc_call failed");
227 return CONTACTS_ERROR_IPC;
231 ctsvc_ipc_unmarshal_int(outdata, &ret);
232 pims_ipc_data_destroy(outdata);
234 if (ret != CONTACTS_ERROR_NONE) {
235 CTS_ERR("[GLOBAL_IPC_CHANNEL] pims_ipc didn't destroyed!!!(%d)", ret);
239 if (1 == connection_count) {
240 g_hash_table_remove(_ctsvc_ipc_table, ipc_key);
244 CTS_ERR("pims_ipc_call out data is NULL");
245 return CONTACTS_ERROR_IPC;
251 static void __ctsvc_ipc_lock()
253 if (0 == ctsvc_client_get_thread_connection_count())
254 ctsvc_mutex_lock(CTS_MUTEX_PIMS_IPC_CALL);
257 static void __ctsvc_ipc_unlock(void)
259 if (0 == ctsvc_client_get_thread_connection_count())
260 ctsvc_mutex_unlock(CTS_MUTEX_PIMS_IPC_CALL);
263 int ctsvc_ipc_call(char *module, char *function, pims_ipc_h data_in, pims_ipc_data_h *data_out)
265 pims_ipc_h ipc_handle;
267 if (true == ctsvc_ipc_get_disconnected()) {
268 ctsvc_ipc_set_disconnected(false);
269 ctsvc_ipc_recovery();
270 ctsvc_ipc_recover_for_change_subscription();
273 ipc_handle = _ctsvc_get_ipc_handle();
276 int ret = pims_ipc_call(ipc_handle, module, function, data_in, data_out);
277 __ctsvc_ipc_unlock();
282 void ctsvc_client_ipc_set_change_version(contacts_h contact, int version)
284 RETM_IF(NULL == contact, "contact is NULL");
285 ctsvc_base_s *base = (ctsvc_base_s *)contact;
286 base->version = version;
289 int ctsvc_client_ipc_get_change_version(contacts_h contact)
291 RETVM_IF(NULL == contact, -1, "contact is NULL");
292 ctsvc_base_s *base = (ctsvc_base_s *)contact;
293 return base->version;
296 int ctsvc_ipc_client_check_permission(int permission, bool *result)
298 pims_ipc_data_h indata = NULL;
299 pims_ipc_data_h outdata = NULL;
305 indata = pims_ipc_data_create(0);
306 if (indata == NULL) {
307 CTS_ERR("ipc data created fail !");
308 return CONTACTS_ERROR_OUT_OF_MEMORY;
311 ret = ctsvc_ipc_marshal_int(permission, indata);
312 if (ret != CONTACTS_ERROR_NONE) {
313 CTS_ERR("marshal fail");
314 pims_ipc_data_destroy(indata);
318 if (ctsvc_ipc_call(CTSVC_IPC_MODULE, CTSVC_IPC_SERVER_CHECK_PERMISSION, indata, &outdata) != 0) {
319 CTS_ERR("ctsvc_ipc_call Fail");
320 pims_ipc_data_destroy(indata);
321 return CONTACTS_ERROR_IPC;
324 pims_ipc_data_destroy(indata);
327 if (CONTACTS_ERROR_NONE != ctsvc_ipc_unmarshal_int(outdata, &ret)) {
328 CTS_ERR("ctsvc_ipc_unmarshal_int() Fail");
329 pims_ipc_data_destroy(outdata);
330 return CONTACTS_ERROR_IPC;
333 if (CONTACTS_ERROR_NONE == ret && result) {
334 if (CONTACTS_ERROR_NONE != ctsvc_ipc_unmarshal_bool(outdata, result)) {
335 CTS_ERR("ctsvc_ipc_unmarshal_bool() Fail");
336 pims_ipc_data_destroy(outdata);
337 return CONTACTS_ERROR_IPC;
340 pims_ipc_data_destroy(outdata);
346 int ctsvc_ipc_set_disconnected_cb(pims_ipc_h ipc, void (*cb)(void *), void *user_data)
348 return pims_ipc_add_server_disconnected_cb(ipc, cb, user_data);
351 int ctsvc_ipc_unset_disconnected_cb(pims_ipc_h ipc)
353 return pims_ipc_remove_server_disconnected_cb(ipc);
356 void ctsvc_ipc_set_disconnected(bool is_disconnected)
358 pthread_mutex_lock(&_ctsvc_mutex_disconnected);
359 _ctsvc_ipc_disconnected = is_disconnected;
360 pthread_mutex_unlock(&_ctsvc_mutex_disconnected);
363 int ctsvc_ipc_get_disconnected()
365 pthread_mutex_lock(&_ctsvc_mutex_disconnected);
366 CTS_DBG("_ctsvc_ipc_disconnected=%d", _ctsvc_ipc_disconnected);
367 pthread_mutex_unlock(&_ctsvc_mutex_disconnected);
368 return _ctsvc_ipc_disconnected;
371 static void _ctsvc_ipc_recovery_foreach_cb(gpointer key, gpointer value, gpointer user_data)
374 struct ctsvc_ipc_s *ipc_data = value;
376 ctsvc_ipc_unset_disconnected_cb(ipc_data->ipc);
377 int ret = _ctsvc_ipc_create(&(ipc_data->ipc));
378 RETM_IF(CONTACTS_ERROR_NONE != ret, "_ctsvc_ipc_create() Fail(%d)", ret);
379 ctsvc_ipc_set_disconnected_cb(ipc_data->ipc, _ctsvc_ipc_disconnected_cb, NULL);
381 for (c=ipc_data->list_handle;c;c=c->next) {
382 contacts_h contact = c->data;
383 ret = _ctsvc_ipc_connect(contact, ipc_data->ipc);
384 WARN_IF(CONTACTS_ERROR_NONE != ret, "_ctsvc_ipc_connect() Fail(%d)", ret);
388 void ctsvc_ipc_recovery()
391 g_hash_table_foreach(_ctsvc_ipc_table, _ctsvc_ipc_recovery_foreach_cb, NULL);