summaryrefslogtreecommitdiff
path: root/mobicore/MobiCoreDriverLib/Daemon/Server/Server.cpp
blob: 418d8b09450da5b8e8fb380259677b8565ab6e7d (plain)
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
/*
 * Copyright (c) 2013 TRUSTONIC LIMITED
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * 3. Neither the name of the TRUSTONIC LIMITED nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
/**
 * Connection server.
 *
 * Handles incoming socket connections from clients using the MobiCore driver.
 */
#include "public/Server.h"
#include <unistd.h>
#include <string.h>
#include <errno.h>

//#define LOG_VERBOSE
#include "log.h"
#include "FSD.h"

//------------------------------------------------------------------------------
Server::Server(
    ConnectionHandler *connectionHandler,
    const char *localAddr
) : socketAddr(localAddr)
{
    this->connectionHandler = connectionHandler;
    this->serverSock = -1;
}


//------------------------------------------------------------------------------
void Server::run(
    void
)
{
    bool isFSDStarted=false;
    FSD *FileStorageDaemon=NULL;

    do {

        LOG_I("Server: start listening on socket %s", socketAddr.c_str());

        // Open a socket (a UNIX domain stream socket)
        serverSock = socket(AF_UNIX, SOCK_STREAM, 0);
        if (serverSock < 0) {
            LOG_ERRNO("Can't open stream socket, because socket");
            break;
        }

        // Fill in address structure and bind to socket
        struct sockaddr_un  serverAddr;
        serverAddr.sun_family = AF_UNIX;
        strncpy(serverAddr.sun_path, socketAddr.c_str(), sizeof(serverAddr.sun_path) - 1);

        uint32_t len = strlen(serverAddr.sun_path) + sizeof(serverAddr.sun_family);
        // Make the socket in the Abstract Domain(no path but everyone can connect)
        serverAddr.sun_path[0] = 0;
        if (bind(serverSock, (struct sockaddr *) &serverAddr, len) < 0) {
            LOG_ERRNO("Binding to server socket failed, because bind");
        }

        // Start listening on the socket
        if (listen(serverSock, LISTEN_QUEUE_LEN) < 0) {
            LOG_ERRNO("listen");
            break;
        }

        LOG_I("\n********* successfully initialized Daemon *********\n");



        for (;;) {
            fd_set fdReadSockets;

            // Clear FD for select()
            FD_ZERO(&fdReadSockets);

            // Select server socket descriptor
            FD_SET(serverSock, &fdReadSockets);
            int maxSocketDescriptor = serverSock;

            // Select socket descriptor of all connections
            for (connectionIterator_t iterator = peerConnections.begin();
                    iterator != peerConnections.end();
                    ++iterator) {
                Connection *connection = (*iterator);
                int peerSocket = connection->socketDescriptor;
                FD_SET(peerSocket, &fdReadSockets);
                if (peerSocket > maxSocketDescriptor) {
                    maxSocketDescriptor = peerSocket;
                }
            }

            if (!isFSDStarted) {
                // Create the <t-base File Storage Daemon
                FileStorageDaemon = new FSD();
                // Start File Storage Daemon
                FileStorageDaemon->start("McDaemon.FSD");

                isFSDStarted=true;
            }

            // Wait for activities, select() returns the number of sockets
            // which require processing
            LOG_V(" Server: waiting on sockets");
            int numSockets = select(
                                 maxSocketDescriptor + 1,
                                 &fdReadSockets,
                                 NULL, NULL, NULL);

            // Check if select failed
            if (numSockets < 0) {
                LOG_ERRNO("select");
                break;
            }

            // actually, this should not happen.
            if (0 == numSockets) {
                LOG_W(" Server: select() returned 0, spurious event?.");
                continue;
            }

            LOG_V(" Server: events on %d socket(s).", numSockets);

            // Check if a new client connected to the server socket
            if (FD_ISSET(serverSock, &fdReadSockets)) {
                do {
                    LOG_V(" Server: new connection attempt.");
                    numSockets--;

                    struct sockaddr_un clientAddr;
                    socklen_t clientSockLen = sizeof(clientAddr);
                    int clientSock = accept(
                                         serverSock,
                                         (struct sockaddr *) &clientAddr,
                                         &clientSockLen);

                    if (clientSock <= 0) {
                        LOG_ERRNO("accept");
                        break;
                    }

                    Connection *connection = new Connection(clientSock, &clientAddr);
                    peerConnections.push_back(connection);
                    LOG_I(" Server: new socket connection established and start listening.");
                } while (false);

                // we can ignore any errors from accepting a new connection.
                // If this fail, the client has to deal with it, we are done
                // and nothing has changed.
            }

            // Handle traffic on existing client connections
            connectionIterator_t iterator = peerConnections.begin();
            while ( (iterator != peerConnections.end())
                    && (numSockets > 0) ) {
                Connection *connection = (*iterator);
                int peerSocket = connection->socketDescriptor;

                if (!FD_ISSET(peerSocket, &fdReadSockets)) {
                    ++iterator;
                    continue;
                }

                numSockets--;

                // the connection will be terminated if command processing
                // fails
                if (!connectionHandler->handleConnection(connection)) {
                    LOG_I(" Server: dropping connection.");

                    //Inform the driver
                    connectionHandler->dropConnection(connection);

                    // Remove connection from list
                    delete connection;
                    iterator = peerConnections.erase(iterator);
                    continue;
                }

                ++iterator;
            }
        }

    } while (false);

    //Wait for File Storage Daemon to exit
    if (FileStorageDaemon) {
    	FileStorageDaemon->join();
	    delete FileStorageDaemon;
    }

    LOG_ERRNO("Exiting Server, because");
}


//------------------------------------------------------------------------------
void Server::detachConnection(
    Connection *connection
)
{
    LOG_V(" Stopping to listen on notification socket.");

    for (connectionIterator_t iterator = peerConnections.begin();
            iterator != peerConnections.end();
            ++iterator) {
        Connection *tmpConnection = (*iterator);
        if (tmpConnection == connection) {
            peerConnections.erase(iterator);
            LOG_I(" Stopped listening on notification socket.");
            break;
        }
    }
}


//------------------------------------------------------------------------------
Server::~Server(
    void
)
{
    // Shut down the server socket
    if(serverSock != -1) {
        close(serverSock);
        serverSock = -1;
    }

    // Destroy all client connections
    connectionIterator_t iterator = peerConnections.begin();
    while (iterator != peerConnections.end()) {
        Connection *tmpConnection = (*iterator);
        delete tmpConnection;
        iterator = peerConnections.erase(iterator);
    }
}