Get the pid info from the socket fd
[platform/framework/native/channel-service.git] / src / IpcServer.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // 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
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // 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
15 // limitations under the License.
16 //
17
18 /**
19  * @file  FIo_IpcServer.cpp
20  * @brief This is the implementation file for the IpcServer class.
21  *
22  */
23
24 #include <cstdio>
25 #include <cstdlib>
26 #include <cstring>
27 #include <cerrno>
28 #include <iostream>
29 #include <new>
30
31 #include <unistd.h>
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <sys/stat.h>
35 #include <sys/un.h>
36
37 #include <sys/smack.h>
38
39 #include <ipc/ipc_message.h>
40
41 #include <app_manager.h>
42
43 #include <FBaseRtMutex.h>
44 #include <FBaseSysLog.h>
45 #include <FBase_StringConverter.h>
46 #include <FBaseRt_EventDispatcher.h>
47
48 #include "IIpcServerEventListener.h"
49 #include "IpcServer.h"
50
51 using namespace std;
52 using namespace IPC;
53
54 using namespace Tizen::Base;
55 using namespace Tizen::Base::Runtime;
56 using namespace Tizen::App;
57
58 IpcServer::_ChannelInfo::_ChannelInfo(void)
59         : pClientInfo(null)
60         , pGIOChannel(null)
61         , pGSource(null)
62         , destroySource(true)
63 {
64
65 }
66
67 IpcServer::_ChannelInfo::~_ChannelInfo(void)
68 {
69         if (pGIOChannel != null)
70         {
71                 g_io_channel_unref(pGIOChannel);
72         }
73
74         if (pGSource != null)
75         {
76                 if (destroySource)
77                 {
78                         g_source_destroy(pGSource);
79                 }
80
81                 g_source_unref(pGSource);
82         }
83 }
84
85 IpcServer::_ClientInfo::_ClientInfo(void)
86         : clientId(-1)
87         , pIpcServer(null)
88         , pReverseChannel(null)
89 {
90
91 }
92
93 IpcServer::_ClientInfo::~_ClientInfo(void)
94 {
95         if (pReverseChannel != null)
96         {
97                 g_io_channel_unref(pReverseChannel);
98         }
99
100         channels.clear();
101 }
102
103 IpcServer::IpcServer(void)
104         : __runOnCallerThread(false)
105         , __pEventDispatcher(null)
106         , __pListener(null)
107         , __handlerThread(0)
108         , __pHandlerGMainContext(null)
109         , __pHandlerGMainLoop(null)
110         , __pConnectGSource(null)
111         , __pCurrentChannel(null)
112         , __pCurrentClientInfo(null)
113 {
114         __messageBuffer[0] = '\0';
115 }
116
117
118 IpcServer::~IpcServer(void)
119 {
120         if (__pConnectGSource != null)
121         {
122                 g_source_destroy(__pConnectGSource);
123                 g_source_unref(__pConnectGSource);
124                 __pConnectGSource = null;
125         }
126
127         if (!__runOnCallerThread)
128         {
129                 if (__pEventDispatcher)
130                 {
131                         delete __pEventDispatcher;
132                         __pEventDispatcher = null;
133                 }
134
135                 if (__pHandlerGMainLoop)
136                 {
137                         g_main_loop_unref(__pHandlerGMainLoop);
138                         __pHandlerGMainLoop = null;
139                 }
140
141                 if (__pHandlerGMainContext)
142                 {
143                         g_main_context_unref(__pHandlerGMainContext);
144                         __pHandlerGMainContext = null;
145                 }
146         }
147
148         // clean-up clients
149         __clients.clear();
150 }
151
152 result
153 IpcServer::Construct(const String& name, const IIpcServerEventListener& listener, bool runOnCallerThread)
154 {
155         result r = E_SUCCESS;
156
157         GIOChannel* pGIOChannel = null;
158         GSource* pGSource = null;
159
160         struct sockaddr_un serverAddress;
161         int serverSocket = -1;
162         int serverLen = 0;
163         int ret = 0;
164         std::string socketName;
165         char* pName = null;
166         size_t socketNameLength = 0;
167
168         __name = name;
169         __pListener = const_cast <IIpcServerEventListener*>(&listener);
170         __runOnCallerThread = runOnCallerThread;
171
172         pName = _StringConverter::CopyToCharArrayN(name);
173         SysTryReturnResult(NID_IO, pName != null, E_OUT_OF_MEMORY, "Not enough memory");
174
175         socketName.append("/tmp/");
176         socketName.append(pName);
177
178         delete[] pName;
179
180         socketNameLength = socketName.size() + 1;
181         SysTryReturnResult(NID_IO, socketNameLength < 108, E_INVALID_ARG, "Server name is too long");
182
183         if (!__runOnCallerThread)
184         {
185                 __pHandlerGMainContext = g_main_context_new();
186                 __pHandlerGMainLoop = g_main_loop_new(__pHandlerGMainContext, FALSE);
187
188         }
189         else
190         {
191                 __pHandlerGMainContext = g_main_context_get_thread_default();
192                 if (__pHandlerGMainContext == null) // is global?
193                 {
194                         __pHandlerGMainContext = g_main_context_default();
195                         if (__pHandlerGMainContext == null)
196                         {
197                                 return E_SYSTEM;
198                         }
199                 }
200         }
201
202         ret = unlink(socketName.c_str());
203         SysTryLog(NID_IO, ret == 0, "Unlink a socket has failed.. but it is not a problem.");
204
205         serverSocket = socket(AF_UNIX, SOCK_STREAM, 0);
206         SysTryReturnResult(NID_IO, serverSocket != -1, E_SYSTEM, "Failed to create a socket.");
207
208         // SMACK (Add a * label to socket)
209         if(smack_fsetlabel(serverSocket, "@", SMACK_LABEL_IPOUT) != 0)
210         {
211                 SysTryCatch(NID_IO, errno == EOPNOTSUPP, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] SMACK labeling failed");
212                 SysLog(NID_IO, "Kernel doesn't have Smack.");
213         }
214
215         if(smack_fsetlabel(serverSocket, "*", SMACK_LABEL_IPIN) != 0)
216         {
217                 SysTryCatch(NID_IO, errno == EOPNOTSUPP, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] SMACK labeling failed");
218                 SysLog(NID_IO, "Kernel doesn't have Smack.");
219         }
220
221         bzero(&serverAddress, sizeof(serverAddress));
222         serverAddress.sun_family = AF_UNIX;
223         strncpy(serverAddress.sun_path, socketName.c_str(), socketNameLength);
224         serverLen = sizeof(serverAddress);
225
226         ret = bind(serverSocket, (const struct sockaddr*) &serverAddress, serverLen);
227         SysTryCatch(NID_IO, ret != -1, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Failed to bind a socket(%d, %s): %s", serverSocket,
228                            socketName.c_str(), strerror(errno));
229
230         ret = chmod(socketName.c_str(), 0666);
231         SysTryCatch(NID_IO, ret == 0, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Failed to change permission of a socket(%d, %s): %s", serverSocket,
232                            socketName.c_str(), strerror(errno));
233
234         ret = listen(serverSocket, 128);
235         SysTryCatch(NID_IO, ret == 0, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Failed to listen a socket(%d, %s): %s", serverSocket,
236                            socketName.c_str(), strerror(errno));
237
238         pGIOChannel = g_io_channel_unix_new(serverSocket);
239         SysTryCatch(NID_IO, pGIOChannel != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Not enough memory.");
240
241         // socket will be closed when pGIOChannel is deleted.
242         g_io_channel_set_close_on_unref(pGIOChannel, TRUE);
243         serverSocket = -1;
244
245         pGSource = g_io_create_watch(pGIOChannel, (GIOCondition) (G_IO_IN | G_IO_ERR | G_IO_NVAL | G_IO_HUP));
246         SysTryCatch(NID_IO, pGSource != null, r = E_OUT_OF_MEMORY, E_OUT_OF_MEMORY,
247                            "[E_OUT_OF_MEMORY] Failed to create watch for socket.");
248
249         // channel will be delete when pGSource is deleted.
250         g_io_channel_unref(pGIOChannel);
251         pGIOChannel = null;
252
253         g_source_set_callback(pGSource, (GSourceFunc) OnConnectionRequest, this, NULL);
254         g_source_attach(pGSource, __pHandlerGMainContext);
255
256         if (__runOnCallerThread)
257         {
258                 __pListener->OnIpcServerStarted(*this);
259         }
260         else
261         {
262                 ret = pthread_create(&__handlerThread, null, &ThreadProc, (void*) this);
263                 SysTryCatch(NID_IO, ret == 0, r = E_SYSTEM, E_SYSTEM, "[E_SYSTEM] Failed to an IPC thread");
264         }
265
266         __pConnectGSource = pGSource;
267
268         return E_SUCCESS;
269
270 CATCH:
271         if (pGIOChannel != null)
272         {
273                 g_io_channel_unref(pGIOChannel);
274         }
275
276         if (serverSocket != -1)
277         {
278                 close(serverSocket);
279         }
280
281         if (runOnCallerThread && __pHandlerGMainContext)
282         {
283                 g_main_context_unref(__pHandlerGMainContext);
284                 __pHandlerGMainContext = null;
285         }
286
287         return r;
288 }
289
290 struct HelloMessage
291 {
292         int reverse;  // if the connection is for reverse message
293 };
294
295 gboolean
296 IpcServer::OnConnectionRequest(GIOChannel* source, GIOCondition condition, gpointer data)
297 {
298         IpcServer* pIpcServer = (IpcServer*) data;
299         GError* pGError = null;
300         HelloMessage helloMessage;
301         _ClientInfo* pClientInfo = null;
302         _ChannelInfo* pChannelInfo = null;
303         GSource* pGSource = null;
304         GIOChannel* pChannel = null;
305         ssize_t readBytes = 0;
306         int ret = 0;
307
308         int server = -1;
309         int client = -1;
310         struct sockaddr_un clientAddress;
311         socklen_t clientLen = sizeof(clientAddress);
312
313         struct ucred cr;
314         socklen_t ucredLen = sizeof(cr);
315
316         SysAssertf(pIpcServer != null, "Not yet constructed. Construct() should be called before use.\n");
317         SysAssertf(pIpcServer->__pListener != null, "Listener is null.\n");
318
319         server = g_io_channel_unix_get_fd(source);
320
321         client = accept(server, (struct sockaddr*) &clientAddress, &clientLen);
322         SysTryCatch(NID_IO, client != -1, , E_SYSTEM, "[E_SYSTEM] Accept failed.");
323
324         readBytes = read(client, &helloMessage, sizeof(helloMessage));
325         SysTryCatch(NID_IO, readBytes >= 0, , E_SYSTEM, "[E_SYSTEM] Failed to receive hello message (%d, %s).",
326                         errno, strerror(errno));
327
328         pChannel = g_io_channel_unix_new(client);
329         SysTryCatch(NID_IO, pChannel != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Not enough memory.");
330
331         g_io_channel_set_encoding(pChannel, NULL, &pGError);
332         g_io_channel_set_flags(pChannel, G_IO_FLAG_NONBLOCK, &pGError);
333
334         g_io_channel_set_close_on_unref(pChannel, TRUE);
335
336         ret = getsockopt(client, SOL_SOCKET, SO_PEERCRED, &cr, &ucredLen);
337         SysTryCatch(NID_IO, ret >= 0, , E_SYSTEM, "[E_SYSTEM] Failed to get peercred information: %s", strerror(errno));
338
339         client = -1;
340
341         pClientInfo = pIpcServer->__clients[cr.pid];
342         if (pClientInfo == null) // first connection request from this client
343         {
344                 pClientInfo = new (std::nothrow) _ClientInfo;
345                 SysTryCatch(NID_IO, pClientInfo != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Not enough memory.");
346
347                 pClientInfo->pIpcServer = pIpcServer;
348                 pClientInfo->clientId = cr.pid;
349
350                 char* pAppId = NULL;
351                 ret = app_manager_get_app_id(cr.pid, &pAppId);
352                 SysTryCatch(NID_IO, ret >= 0, delete pClientInfo, E_SYSTEM, "[E_SYSTEM] Failed to get_app_id: %d", ret);
353
354                 pClientInfo->appId = pAppId;
355                 free(pAppId);
356
357                 pClientInfo->pReverseChannel = null;
358
359                 pIpcServer->__clients[cr.pid] = pClientInfo;
360                 pIpcServer->__pCurrentClientInfo = pClientInfo;
361                 pIpcServer->__pListener->OnIpcClientConnected(*pIpcServer, cr.pid);
362                 pIpcServer->__pCurrentClientInfo = null;
363         }
364
365         if (helloMessage.reverse != 0)
366         {
367                 pClientInfo->pReverseChannel = pChannel;
368         }
369         else
370         {
371                 pChannelInfo = new (std::nothrow) _ChannelInfo;
372                 SysTryCatch(NID_IO, pChannelInfo != null, , E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] Not enough memory.");
373
374                 pGSource = g_io_create_watch(pChannel, (GIOCondition) (G_IO_IN | G_IO_ERR | G_IO_NVAL | G_IO_HUP));
375                 g_source_set_callback(pGSource, (GSourceFunc) OnReadMessage, pChannelInfo, NULL);
376                 g_source_attach(pGSource, pIpcServer->__pHandlerGMainContext);
377
378                 pChannelInfo->pClientInfo = pClientInfo;
379                 pChannelInfo->pGIOChannel = pChannel;
380                 pChannelInfo->pGSource = pGSource;
381
382                 pClientInfo->channels.push_back(pChannelInfo);
383         }
384
385         return true;
386
387 CATCH:
388         if (pChannel != null)
389         {
390                 g_io_channel_unref(pChannel);
391         }
392
393         if (client != -1)
394         {
395                 close(client);
396         }
397
398         return true;
399 }
400
401 int
402 IpcServer::GetClientId(void) const
403 {
404         if (__pCurrentClientInfo)
405         {
406                 return __pCurrentClientInfo->clientId;
407         }
408
409         return -1;
410 }
411
412 AppId
413 IpcServer::GetClientApplicationId(void) const
414 {
415         static String nullString;
416
417         if (__pCurrentClientInfo)
418         {
419                 return __pCurrentClientInfo->appId;
420         }
421
422         return nullString;
423 }
424
425 gboolean
426 IpcServer::HandleReceivedMessage(GIOChannel* source, GIOCondition condition, gpointer data)
427 {
428         GError* pGError = NULL;
429         GIOStatus status;
430         IPC::Message* pMessage = NULL;
431         _ChannelInfo* pChannelInfo = (_ChannelInfo*) data;
432         _ClientInfo* pClientInfo = pChannelInfo->pClientInfo;
433
434         if (condition & G_IO_HUP)
435         {
436                 SysLog(NID_IO, "Connection closed");
437                 int clientId = pClientInfo->clientId;
438
439                 g_io_channel_shutdown(source, FALSE, &pGError);
440
441                 for (unsigned int i = 0; i < pClientInfo->channels.size(); i++)
442                 {
443                         if (pChannelInfo == pClientInfo->channels[i])
444                         {
445                                 pClientInfo->channels.erase(pClientInfo->channels.begin() + i);
446
447                                 // Do not destroy a source in a dispatch callback
448                                 // because main loop will do it if the callback return FALSE.
449                                 pChannelInfo->destroySource = false;
450                                 delete pChannelInfo;
451
452                                 break;
453                         }
454                 }
455
456                 if (pClientInfo->channels.size() == 0)
457                 {
458                         SysLog(NID_IO, "All connections of client(%d) are closed. delete client info", clientId);
459
460                         __pListener->OnIpcClientDisconnected(*this, clientId);
461
462                         __clients[clientId] = null;
463
464                         delete pClientInfo;
465                 }
466
467                 return FALSE;
468         }
469         else if (condition & G_IO_IN)
470         {
471                 gsize readSize = 0;
472                 const char* pStart = NULL;
473                 const char* pEnd = NULL;
474                 const char* pEndOfMessage = NULL;
475
476                 while (true)
477                 {
478                         pGError = null;
479                         status = g_io_channel_read_chars(source, (char*) __messageBuffer, __MAX_MESSAGE_BUFFER_SIZE, &readSize, &pGError);
480                         if (status != G_IO_STATUS_NORMAL)
481                         {
482                                 if (status == G_IO_STATUS_EOF || status == G_IO_STATUS_ERROR)
483                                 {
484                                         if (status == G_IO_STATUS_EOF)
485                                         {
486                                                 SysLog(NID_IO, "G_IO_STATUS_EOF, the connection is closed.");
487                                         }
488                                         else
489                                         {
490                                                 SysLog(NID_IO, "G_IO_STATUS_ERROR, the connection is closed. ");
491                                         }
492
493                                         pGError = null;
494                                         g_io_channel_shutdown(source, FALSE, &pGError);
495
496                                         int clientId = pClientInfo->clientId;
497
498                                         for (unsigned int i = 0; i < pClientInfo->channels.size(); i++)
499                                         {
500                                                 if (pChannelInfo == pClientInfo->channels[i])
501                                                 {
502                                                         pClientInfo->channels.erase(pClientInfo->channels.begin() + i);
503
504                                                         pChannelInfo->destroySource = false;
505                                                         delete pChannelInfo;
506                                                         break;
507                                                 }
508                                         }
509
510                                         if (pClientInfo->channels.size() == 0)
511                                         {
512                                                 SysLog(NID_IO, "All connections of client(%d) are closed normally by the client.", clientId);
513
514                                                 if (__pListener)
515                                                 {
516                                                         __pListener->OnIpcClientDisconnected(*this, clientId);
517                                                 }
518
519                                                 __clients[clientId] = null;
520
521                                                 delete pClientInfo;
522                                         }
523
524                                         return FALSE;
525                                 }
526                         }
527
528                         if (readSize == 0)
529                         {
530                                 break;
531                         }
532
533                         if (__pending.empty())
534                         {
535                                 pStart = __messageBuffer;
536                                 pEnd = pStart + readSize;
537                         }
538                         else
539                         {
540                                 __pending.append(__messageBuffer, readSize);
541                                 pStart = __pending.data();
542                                 pEnd = pStart + __pending.size();
543                         }
544
545                         while (true)
546                         {
547                                 pEndOfMessage = IPC::Message::FindNext(pStart, pEnd);
548                                 if (pEndOfMessage == NULL)
549                                 {
550                                         __pending.assign(pStart, pEnd - pStart);
551                                         break;
552                                 }
553
554                                 pMessage = new (std::nothrow) IPC::Message(pStart, pEndOfMessage - pStart);
555                                 SysTryReturn(NID_IO, pMessage != null, FALSE, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] The memory is insufficient.");
556
557                                 __pCurrentChannel = source;
558
559                                 if (__pListener)
560                                 {
561                                         __pListener->OnIpcRequestReceived(*this, *pMessage);
562                                 }
563
564                                 delete pMessage;
565
566                                 __pCurrentChannel = NULL;
567
568                                 pStart = pEndOfMessage;
569                         }
570                 }
571         }
572         else
573         {
574                 // empty statement
575         }
576
577         return TRUE;
578 }
579
580 gboolean
581 IpcServer::OnReadMessage(GIOChannel* source, GIOCondition condition, gpointer data)
582 {
583         gboolean ret = FALSE;
584         _ChannelInfo* pChannelInfo = (_ChannelInfo*) data;
585         _ClientInfo* pClientInfo = pChannelInfo->pClientInfo;
586         IpcServer* pIpcServer = (IpcServer*) pClientInfo->pIpcServer;
587
588         pIpcServer->__pCurrentClientInfo = pClientInfo;
589         ret = pIpcServer->HandleReceivedMessage(source, condition, data);
590         pIpcServer->__pCurrentClientInfo = null;
591
592         return ret;
593 }
594
595 void*
596 IpcServer::ThreadProc(void* pParam)
597 {
598         IpcServer* pIpcServer = (IpcServer*) pParam;
599         if (pIpcServer != NULL)
600         {
601                 pIpcServer->Run(NULL);
602         }
603
604         return NULL;
605 }
606
607 void
608 IpcServer::Run(void* pParam)
609 {
610         result r = E_SUCCESS;
611
612         if (__pListener == null)
613         {
614                 return;
615         }
616
617         __pEventDispatcher = new (std::nothrow) _EventDispatcher;
618         SysTryReturnVoidResult(NID_IO, __pEventDispatcher != null, E_OUT_OF_MEMORY, "[E_OUT_OF_MEMORY] The memory is insufficient.");
619
620         r = __pEventDispatcher->Construct(__pHandlerGMainContext);
621         if (IsFailed(r))
622         {
623                 delete __pEventDispatcher;
624                 __pEventDispatcher = null;
625         }
626
627         __pListener->OnIpcServerStarted(*this);
628
629         g_main_loop_run(__pHandlerGMainLoop);
630
631         __pListener->OnIpcServerStopped(*this);
632 }
633
634 result
635 IpcServer::Start(void)
636 {
637         return E_SUCCESS;
638 }
639
640 String
641 IpcServer::GetName(void) const
642 {
643         return __name;
644 }
645
646 result
647 IpcServer::Stop(void)
648 {
649         result r = E_SUCCESS;
650         int ret = 0;
651
652         SysTryReturnResult(NID_IO, __pListener != null, E_SYSTEM, "Listener is null.");
653
654         if (!__runOnCallerThread)
655         {
656                 pthread_t self = pthread_self();
657
658                 if (__pHandlerGMainLoop)
659                 {
660                         g_main_loop_quit(__pHandlerGMainLoop);
661                 }
662
663                 if (__handlerThread != self)
664                 {
665                         ret = pthread_join(__handlerThread, null);
666                         SysTryLog(NID_IO, ret == 0, "Join an IPC thread returns an error");
667                 }
668         }
669         else
670         {
671                 __pListener->OnIpcServerStopped(*this);
672         }
673
674         return r;
675 }
676
677 bool
678 IpcServer::Send(IPC::Message* msg)
679 {
680         gsize remain = 0;
681         gsize written = 0;
682         char* pData = NULL;
683         GError* pGError = NULL;
684
685
686         pData = (char*) msg->data();
687         remain = msg->size();
688
689         if (msg->is_reply())
690         {
691                 while (remain > 0)
692                 {
693                         pGError = NULL;
694                         g_io_channel_write_chars(__pCurrentChannel, (char*) pData, remain, &written, &pGError);
695
696                         remain -= written;
697                         pData += written;
698                 }
699
700                 g_io_channel_flush(__pCurrentChannel, &pGError);
701         }
702         else
703         {
704                 // empty statement;
705         }
706
707         delete msg;
708
709         return true;
710 }
711
712 result
713 IpcServer::SendResponse(int client, IPC::Message* pMessage)
714 {
715         result r = E_SUCCESS;
716         gsize remain = 0;
717         gsize written = 0;
718         char* pData = null;
719         GError* pGError = null;
720         _ClientInfo* pClientInfo = null;
721         int ret = 0;
722
723         SysTryReturn(NID_IO, client >= 0 && pMessage != null, false, E_INVALID_ARG,
724                                 "[E_INVALID_ARG] pMessage(0x%x) is null or clinet(%d) < 0", pMessage,
725                                 client);
726         SysTryCatch(NID_IO, !pMessage->is_sync(), r = E_INVALID_ARG, E_INVALID_ARG, "[E_INVALID_ARG] Can't send sync. messagee.");
727
728         pClientInfo = __clients[client];
729         SysTryCatch(NID_IO, pClientInfo != null, r = E_INVALID_ARG, E_INVALID_ARG,
730                            "[E_INVALID_ARG] client(%d) has not been registered.",
731                            client);
732
733         pData = (char*) pMessage->data();
734         remain = pMessage->size();
735
736         while (remain > 0)
737         {
738                 pGError = NULL;
739                 ret = g_io_channel_write_chars(pClientInfo->pReverseChannel, (char*) pData, remain, &written, &pGError);
740                 if (ret != G_IO_STATUS_NORMAL)
741                 {
742                         SysLog(NID_IO, "Failed to send a response: %d", ret);
743                         SysTryCatch(NID_IO, ret != G_IO_STATUS_ERROR, , E_SYSTEM, "[E_SYSTEM] Error occurred during writing message to socket.");
744                 }
745
746                 remain -= written;
747                 pData += written;
748         }
749
750         g_io_channel_flush(pClientInfo->pReverseChannel, &pGError);
751
752         delete pMessage;
753
754         return E_SUCCESS;
755
756 CATCH:
757         delete pMessage;
758         return r;
759 }
760
761 result
762 IpcServer::SendResponse(int client, const IPC::Message& message)
763 {
764         result r = E_SUCCESS;
765         gsize remain = 0;
766         gsize written = 0;
767         char* pData = null;
768         GError* pGError = null;
769         _ClientInfo* pClientInfo = null;
770         int ret = 0;
771
772         SysTryReturn(NID_IO, client >= 0, false, E_INVALID_ARG, "[E_INVALID_ARG] clinet(%d) < 0", client);
773         SysTryCatch(NID_IO, !message.is_sync(), r = E_INVALID_ARG, E_INVALID_ARG, "[E_INVALID_ARG] Can't send sync. messagee.");
774
775         pClientInfo = __clients[client];
776         SysTryCatch(NID_IO, pClientInfo != null, r = E_INVALID_ARG, E_INVALID_ARG,
777                            "[E_INVALID_ARG] client(%d) has not been registered.",
778                            client);
779
780         pData = (char*) message.data();
781         remain = message.size();
782
783         while (remain > 0)
784         {
785                 pGError = NULL;
786                 ret = g_io_channel_write_chars(pClientInfo->pReverseChannel, (char*) pData, remain, &written, &pGError);
787                 if (ret != G_IO_STATUS_NORMAL)
788                 {
789                         SysLog(NID_IO, "Failed to send a response: %d", ret);
790                         SysTryCatch(NID_IO, ret != G_IO_STATUS_ERROR, , E_SYSTEM, "[E_SYSTEM] Error occurred during writing message to socket.");
791                 }
792
793                 remain -= written;
794                 pData += written;
795         }
796
797         g_io_channel_flush(pClientInfo->pReverseChannel, &pGError);
798
799         return E_SUCCESS;
800
801 CATCH:
802         return r;
803 }