summaryrefslogtreecommitdiff
path: root/implementation/endpoints/src/udp_server_endpoint_impl.cpp
blob: 4593c1f538a6c1f6495df5a894d92c1899209a69 (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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
// Copyright (C) 2014-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <iomanip>
#include <sstream>

#include <boost/asio/ip/multicast.hpp>

#include "../include/endpoint_definition.hpp"
#include "../include/endpoint_host.hpp"
#include "../include/udp_server_endpoint_impl.hpp"
#include "../../logging/include/logger.hpp"
#include "../../utility/include/byteorder.hpp"
#include "../../utility/include/utility.hpp"
#include "../../service_discovery/include/defines.hpp"

namespace ip = boost::asio::ip;

namespace vsomeip {

udp_server_endpoint_impl::udp_server_endpoint_impl(
        std::shared_ptr< endpoint_host > _host,
        endpoint_type _local,
        boost::asio::io_service &_io)
    : server_endpoint_impl<
          ip::udp, VSOMEIP_MAX_UDP_MESSAGE_SIZE
      >(_host, _local, _io, VSOMEIP_MAX_UDP_MESSAGE_SIZE),
      socket_(_io, _local.protocol()),
      recv_buffer_(VSOMEIP_MAX_UDP_MESSAGE_SIZE, 0),
      recv_buffer_size_(0) {
    boost::system::error_code ec;

    boost::asio::socket_base::reuse_address optionReuseAddress(true);
    socket_.set_option(optionReuseAddress);

    socket_.bind(_local, ec);
    boost::asio::detail::throw_error(ec, "bind");

    boost::asio::socket_base::broadcast option(true);
    socket_.set_option(option);
}

udp_server_endpoint_impl::~udp_server_endpoint_impl() {
}

bool udp_server_endpoint_impl::is_local() const {
    return false;
}

void udp_server_endpoint_impl::start() {
    receive();
}

void udp_server_endpoint_impl::stop() {
    std::lock_guard<std::mutex> its_lock(stop_mutex_);
    if (socket_.is_open()) {
        socket_.close();
    }
}

void udp_server_endpoint_impl::receive() {
    if (recv_buffer_size_ == max_message_size_) {
        // Overrun -> Reset buffer
        recv_buffer_size_ = 0;
    }
    std::lock_guard<std::mutex> its_lock(stop_mutex_);
    if(socket_.is_open()) {
        size_t buffer_size = max_message_size_ - recv_buffer_size_;
        socket_.async_receive_from(
                boost::asio::buffer(&recv_buffer_[recv_buffer_size_], buffer_size),
            remote_,
            std::bind(
                &udp_server_endpoint_impl::receive_cbk,
                std::dynamic_pointer_cast<
                    udp_server_endpoint_impl >(shared_from_this()),
                std::placeholders::_1,
                std::placeholders::_2
            )
        );
    }
}

void udp_server_endpoint_impl::restart() {
    receive();
}

bool udp_server_endpoint_impl::send_to(
    const std::shared_ptr<endpoint_definition> _target,
    const byte_t *_data, uint32_t _size, bool _flush) {
  endpoint_type its_target(_target->get_address(), _target->get_port());
  return send_intern(its_target, _data, _size, _flush);
}

void udp_server_endpoint_impl::send_queued(
        queue_iterator_type _queue_iterator) {
    message_buffer_ptr_t its_buffer = _queue_iterator->second.front();
#if 0
        std::stringstream msg;
        msg << "usei::sq(" << _queue_iterator->first.address().to_string() << ":"
            << _queue_iterator->first.port() << "): ";
        for (std::size_t i = 0; i < its_buffer->size(); ++i)
            msg << std::hex << std::setw(2) << std::setfill('0')
                << (int)(*its_buffer)[i] << " ";
        VSOMEIP_DEBUG << msg.str();
#endif
     socket_.async_send_to(
        boost::asio::buffer(*its_buffer),
        _queue_iterator->first,
        std::bind(
            &udp_server_endpoint_base_impl::send_cbk,
            shared_from_this(),
            _queue_iterator,
            std::placeholders::_1,
            std::placeholders::_2
        )
    );
}

udp_server_endpoint_impl::endpoint_type
udp_server_endpoint_impl::get_remote() const {
    return remote_;
}

bool udp_server_endpoint_impl::get_remote_address(
        boost::asio::ip::address &_address) const {
    boost::asio::ip::address its_address = remote_.address();
    if (its_address.is_unspecified()) {
        return false;
    } else {
        _address = its_address;
    }
    return true;
}

bool udp_server_endpoint_impl::get_multicast(service_t _service, event_t _event,
        udp_server_endpoint_impl::endpoint_type &_target) const {
    bool is_valid(false);
    auto find_service = multicasts_.find(_service);
    if (find_service != multicasts_.end()) {
        auto find_event = find_service->second.find(_event);
        if (find_event != find_service->second.end()) {
            _target = find_event->second;
            is_valid = true;
        }
    }
    return is_valid;
}

void udp_server_endpoint_impl::join(const std::string &_address) {
    try {
        if (local_.address().is_v4()) {
            socket_.set_option(
                boost::asio::ip::udp::socket::reuse_address(true));
            socket_.set_option(
                boost::asio::ip::multicast::enable_loopback(false));
            socket_.set_option(boost::asio::ip::multicast::join_group(
                boost::asio::ip::address::from_string(_address).to_v4()));
        } else if (local_.address().is_v6()) {
            socket_.set_option(
                boost::asio::ip::udp::socket::reuse_address(true));
            socket_.set_option(
                boost::asio::ip::multicast::enable_loopback(false));
            socket_.set_option(boost::asio::ip::multicast::join_group(
                boost::asio::ip::address::from_string(_address).to_v6()));
        }
    }
    catch (const std::exception &e) {
        VSOMEIP_ERROR << e.what();
    }
}

void udp_server_endpoint_impl::leave(const std::string &_address) {
    try {
        if (local_.address().is_v4()) {
            socket_.set_option(boost::asio::ip::multicast::leave_group(
                boost::asio::ip::address::from_string(_address)));
        } else if (local_.address().is_v6()) {
            socket_.set_option(boost::asio::ip::multicast::leave_group(
                boost::asio::ip::address::from_string(_address)));
        }
    }
    catch (const std::exception &e) {
        VSOMEIP_ERROR << e.what();
    }
}

void udp_server_endpoint_impl::add_multicast(
        service_t _service, instance_t _instance,
        const std::string &_address, uint16_t _port) {
    endpoint_type its_endpoint(
        boost::asio::ip::address::from_string(_address), _port);
    multicasts_[_service][_instance] = its_endpoint;
}

void udp_server_endpoint_impl::remove_multicast(
        service_t _service, instance_t _instance) {
    auto found_service = multicasts_.find(_service);
    if (found_service != multicasts_.end()) {
        auto found_instance = found_service->second.find(_instance);
        if (found_instance != found_service->second.end()) {
            found_service->second.erase(_instance);
        }
    }
}

unsigned short udp_server_endpoint_impl::get_local_port() const {
    return socket_.local_endpoint().port();
}

// TODO: find a better way to structure the receive functions
void udp_server_endpoint_impl::receive_cbk(
        boost::system::error_code const &_error, std::size_t _bytes) {
#if 0
    std::stringstream msg;
    msg << "usei::rcb(" << _error.message() << "): ";
    for (std::size_t i = 0; i < _bytes + recv_buffer_size_; ++i)
        msg << std::hex << std::setw(2) << std::setfill('0')
            << (int) recv_buffer_[i] << " ";
    VSOMEIP_DEBUG << msg.str();
#endif
    std::shared_ptr<endpoint_host> its_host = this->host_.lock();
    if (its_host) {
        if (!_error && 0 < _bytes) {
            recv_buffer_size_ += _bytes;
            uint32_t current_message_size
                = utility::get_message_size(&this->recv_buffer_[0],
                        (uint32_t) recv_buffer_size_);
            if (current_message_size > VSOMEIP_SOMEIP_HEADER_SIZE &&
                    current_message_size <= _bytes) {
                if (utility::is_request(
                        recv_buffer_[VSOMEIP_MESSAGE_TYPE_POS])) {
                    client_t its_client;
                    std::memcpy(&its_client,
                        &recv_buffer_[VSOMEIP_CLIENT_POS_MIN],
                        sizeof(client_t));
                    session_t its_session;
                    std::memcpy(&its_session,
                        &recv_buffer_[VSOMEIP_SESSION_POS_MIN],
                        sizeof(session_t));
                    clients_[its_client][its_session] = remote_;
                }
                its_host->on_message(&recv_buffer_[0], current_message_size, this);
            } else {
                VSOMEIP_ERROR << "Received a unreliable vSomeIP message with bad length field";
                service_t its_service = VSOMEIP_BYTES_TO_WORD(recv_buffer_[VSOMEIP_SERVICE_POS_MIN],
                        recv_buffer_[VSOMEIP_SERVICE_POS_MAX]);
                if (its_service != VSOMEIP_SD_SERVICE) {
                    its_host->on_error(&recv_buffer_[0], (uint32_t)_bytes, this);
                }
            }
            recv_buffer_size_ = 0;
            restart();
        } else {
            receive();
        }
    }
}

client_t udp_server_endpoint_impl::get_client(std::shared_ptr<endpoint_definition> _endpoint) {
    endpoint_type endpoint(_endpoint->get_address(), _endpoint->get_port());
    for (auto its_client : clients_) {
        for (auto its_session : clients_[its_client.first]) {
            if (endpoint == its_session.second) {
                // TODO: Check system byte order before convert!
                client_t client = client_t(its_client.first << 8 | its_client.first >> 8);
                return client;
            }
        }
    }
    return 0;
}

} // namespace vsomeip