summaryrefslogtreecommitdiffstats
path: root/client/x11/named_pipe.cpp
blob: ad6b2e5ce2d9734dc279742bb3fa85f7198eeaa0 (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
/*
   Copyright (C) 2009 Red Hat, Inc.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, see <http://www.gnu.org/licenses/>.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <sys/types.h>
#include <sys/socket.h>
#include <sys/un.h>
#include "named_pipe.h"
#include "utils.h"
#include "debug.h"

Session::Session(int fd, ProcessLoop& events_loop)
    : _fd_client(fd)
    , _events_loop(events_loop)
{
}

void Session::on_event()
{
    _conn_interface->on_data();
}

void Session::bind(NamedPipe::ConnectionInterface* conn_interface)
{
    _conn_interface = conn_interface;
    _events_loop.add_socket(*this);
}

Session::~Session()
{
    _events_loop.remove_socket(*this);
    close(_fd_client);
}

int32_t Session::write(const uint8_t *buf, int32_t size)
{
    const uint8_t *pos = buf;

    while (size) {
        int now;
        if ((now = send(_fd_client, (char *)pos, size, 0)) == -1) {
            if (errno == EAGAIN) {
                break;
            }
            if (errno == EINTR) {
                continue;
            }
            DBG(0, "send error errno=%d, %s", errno, strerror(errno));
            return -1;
        }
        size -= now;
        pos += now;
    }
    return (pos - buf);
}

int32_t Session::read(uint8_t *buf, int32_t size)
{
    uint8_t *pos = buf;
    while (size) {
        int now;
        if ((now = recv(_fd_client, (char *)pos, size, 0)) <= 0) {
            if (now == 0) {
                DBG(0, "read error, connection shutdown");
                return -1;
            }
            if (errno == EAGAIN) {
                break;
            }
            if (errno == EINTR) {
                continue;
            }
            DBG(0, "read error errno=%d, %s", errno, strerror(errno));
            return -1;
        }
        size -= now;
        pos += now;
    }
    return (pos - buf);
}

int LinuxListener::create_socket(const char *socket_name)
{
    int listen_socket;
    struct sockaddr_un local;

    if ((listen_socket = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
        DBG(0, "create socket error, errno=%d, %s", errno, strerror(errno));
        return -1;
    }

    _name = socket_name;

    local.sun_family = AF_UNIX;
    strcpy(local.sun_path, socket_name);
    unlink(local.sun_path);
    if (bind(listen_socket, (struct sockaddr *)&local,
             strlen(local.sun_path) + sizeof(local.sun_family)) == -1) {
        DBG(0, "bind error, errno=%d, %s", errno, strerror(errno));
        return -1;
    }
    if (listen(listen_socket, 10) == -1) {
        DBG(0, "listen error, errno=%d, %s", errno, strerror(errno));
        return -1;
    }
    return listen_socket;
}

LinuxListener::LinuxListener(const char *name, NamedPipe::ListenerInterface &listener_interface,
                             ProcessLoop& events_loop)
    : _listener_interface (listener_interface)
    , _events_loop (events_loop)
{
    _listen_socket = create_socket(name);
    if (_listen_socket <= 0) {
        THROW("Listener creation failed %d", _listen_socket);
    }
    _events_loop.add_socket(*this);

    DBG(0, "listening socket - %s, added to events_loop", name);
}

LinuxListener::~LinuxListener()
{
    _events_loop.remove_socket(*this);
    close(_listen_socket);
    unlink(_name.c_str());
}

void LinuxListener::on_event()
{
    for (;;) {
        int fd_client;
        Session *conn;
        struct sockaddr_un remote;
        socklen_t len = sizeof(remote);

        if ((fd_client = accept(_listen_socket, (struct sockaddr *)&remote, &len)) == -1) {
            if (errno == EAGAIN) {
                break;
            }
            if (errno == EINTR) {
                continue;
            }
            THROW("errno=%d, %s", errno, strerror(errno));
        }

        conn = new Session(fd_client, _events_loop);
        DBG(0, "New connection created, fd: %d", fd_client);
        NamedPipe::ConnectionInterface &conn_interface = _listener_interface.create();
        conn->bind(&conn_interface);
        conn_interface.bind((NamedPipe::ConnectionRef)conn);
    }
}