Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 1 | /* |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 2 | Copyright (C) 2018 Open Networking Foundation |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 3 | |
| 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by |
| 6 | the Free Software Foundation, either version 3 of the License, or |
| 7 | (at your option) any later version. |
| 8 | |
| 9 | This program is distributed in the hope that it will be useful, |
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | GNU General Public License for more details. |
| 13 | |
| 14 | You should have received a copy of the GNU General Public License |
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ |
| 17 | |
| 18 | #include <iostream> |
| 19 | #include <memory> |
| 20 | #include <string> |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 21 | #include <time.h> |
Nicolas Palpacuer | 0f19b1a | 2018-06-07 17:29:31 -0400 | [diff] [blame] | 22 | #include <pthread.h> |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 23 | |
| 24 | #include "Queue.h" |
| 25 | #include <iostream> |
| 26 | #include <sstream> |
| 27 | |
| 28 | #include "server.h" |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 29 | #include "core.h" |
Nicolas Palpacuer | 3cad49d | 2018-07-02 14:03:24 -0400 | [diff] [blame] | 30 | #include "state.h" |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 31 | |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 32 | #include <grpc++/grpc++.h> |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 33 | #include <openolt.grpc.pb.h> |
| 34 | |
| 35 | using grpc::Server; |
| 36 | using grpc::ServerBuilder; |
| 37 | using grpc::ServerContext; |
| 38 | using grpc::ServerWriter; |
Shad Ansari | b7b0ced | 2018-05-11 21:53:32 +0000 | [diff] [blame] | 39 | using grpc::Status; |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 40 | |
| 41 | const char *serverPort = "0.0.0.0:9191"; |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 42 | int signature; |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 43 | |
Shad Ansari | 627b578 | 2018-08-13 22:49:32 +0000 | [diff] [blame] | 44 | Queue<openolt::Indication> oltIndQ; |
| 45 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 46 | class OpenoltService final : public openolt::Openolt::Service { |
| 47 | |
Nicolas Palpacuer | e3fc0d2 | 2018-08-02 16:51:05 -0400 | [diff] [blame] | 48 | Status DisableOlt( |
| 49 | ServerContext* context, |
| 50 | const openolt::Empty* request, |
| 51 | openolt::Empty* response) override { |
| 52 | return Disable_(); |
| 53 | } |
| 54 | |
| 55 | Status ReenableOlt( |
| 56 | ServerContext* context, |
| 57 | const openolt::Empty* request, |
| 58 | openolt::Empty* response) override { |
| 59 | return Reenable_(); |
| 60 | } |
| 61 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 62 | Status ActivateOnu( |
| 63 | ServerContext* context, |
| 64 | const openolt::Onu* request, |
| 65 | openolt::Empty* response) override { |
| 66 | return ActivateOnu_( |
| 67 | request->intf_id(), |
| 68 | request->onu_id(), |
| 69 | ((request->serial_number()).vendor_id()).c_str(), |
Shad Ansari | 0610195 | 2018-07-25 00:22:09 +0000 | [diff] [blame] | 70 | ((request->serial_number()).vendor_specific()).c_str(), |
| 71 | request->pir()); |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Jonathan Davis | 70c2181 | 2018-07-19 15:32:10 -0400 | [diff] [blame] | 74 | Status DeactivateOnu( |
| 75 | ServerContext* context, |
| 76 | const openolt::Onu* request, |
| 77 | openolt::Empty* response) override { |
| 78 | return DeactivateOnu_( |
| 79 | request->intf_id(), |
| 80 | request->onu_id(), |
| 81 | ((request->serial_number()).vendor_id()).c_str(), |
| 82 | ((request->serial_number()).vendor_specific()).c_str()); |
| 83 | } |
| 84 | |
| 85 | Status DeleteOnu( |
| 86 | ServerContext* context, |
| 87 | const openolt::Onu* request, |
| 88 | openolt::Empty* response) override { |
| 89 | return DeleteOnu_( |
| 90 | request->intf_id(), |
| 91 | request->onu_id(), |
| 92 | ((request->serial_number()).vendor_id()).c_str(), |
| 93 | ((request->serial_number()).vendor_specific()).c_str()); |
| 94 | } |
| 95 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 96 | Status OmciMsgOut( |
| 97 | ServerContext* context, |
| 98 | const openolt::OmciMsg* request, |
| 99 | openolt::Empty* response) override { |
| 100 | return OmciMsgOut_( |
| 101 | request->intf_id(), |
| 102 | request->onu_id(), |
| 103 | request->pkt()); |
| 104 | } |
| 105 | |
Shad Ansari | f2e27a4 | 2018-04-26 22:37:38 +0000 | [diff] [blame] | 106 | Status OnuPacketOut( |
| 107 | ServerContext* context, |
| 108 | const openolt::OnuPacket* request, |
| 109 | openolt::Empty* response) override { |
| 110 | return OnuPacketOut_( |
| 111 | request->intf_id(), |
| 112 | request->onu_id(), |
| 113 | request->pkt()); |
| 114 | } |
| 115 | |
Nicolas Palpacuer | b78def4 | 2018-06-07 12:55:26 -0400 | [diff] [blame] | 116 | Status UplinkPacketOut( |
| 117 | ServerContext* context, |
| 118 | const openolt::UplinkPacket* request, |
| 119 | openolt::Empty* response) override { |
| 120 | return UplinkPacketOut_( |
| 121 | request->intf_id(), |
| 122 | request->pkt()); |
| 123 | } |
| 124 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 125 | Status FlowAdd( |
| 126 | ServerContext* context, |
| 127 | const openolt::Flow* request, |
| 128 | openolt::Empty* response) override { |
| 129 | return FlowAdd_( |
| 130 | request->onu_id(), |
| 131 | request->flow_id(), |
| 132 | request->flow_type(), |
| 133 | request->access_intf_id(), |
| 134 | request->network_intf_id(), |
| 135 | request->gemport_id(), |
Nicolas Palpacuer | d6cf5aa | 2018-07-16 15:14:39 -0400 | [diff] [blame] | 136 | request->priority(), |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 137 | request->classifier(), |
| 138 | request->action()); |
| 139 | } |
| 140 | |
Nicolas Palpacuer | edfaa0c | 2018-07-05 15:05:27 -0400 | [diff] [blame] | 141 | Status FlowRemove( |
| 142 | ServerContext* context, |
| 143 | const openolt::Flow* request, |
| 144 | openolt::Empty* response) override { |
| 145 | return FlowRemove_( |
| 146 | request->flow_id(), |
| 147 | request->flow_type()); |
| 148 | } |
| 149 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 150 | Status EnableIndication( |
| 151 | ServerContext* context, |
| 152 | const ::openolt::Empty* request, |
| 153 | ServerWriter<openolt::Indication>* writer) override { |
Shad Ansari | edef213 | 2018-08-10 22:14:50 +0000 | [diff] [blame] | 154 | |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 155 | std::cout << "Connection to Voltha established. Indications enabled" |
| 156 | << std::endl; |
Nicolas Palpacuer | 3cad49d | 2018-07-02 14:03:24 -0400 | [diff] [blame] | 157 | |
Nicolas Palpacuer | fbc0d7d | 2018-08-23 14:46:42 -0400 | [diff] [blame^] | 158 | if (state.previsouly_connected()) { |
| 159 | // Reconciliation / recovery case |
| 160 | if (state.is_activated()){ |
| 161 | // Adding extra olt indication of current state |
| 162 | openolt::Indication ind; |
| 163 | openolt::OltIndication* oltInd = new openolt::OltIndication(); |
| 164 | if (state.is_activated()) { |
| 165 | oltInd->set_oper_state("up"); |
| 166 | } else { |
| 167 | oltInd->set_oper_state("down"); |
| 168 | } |
| 169 | ind.set_allocated_olt_ind(oltInd); |
| 170 | oltIndQ.push(ind); |
| 171 | } |
| 172 | } |
| 173 | |
Shad Ansari | edef213 | 2018-08-10 22:14:50 +0000 | [diff] [blame] | 174 | state.connect(); |
| 175 | |
| 176 | while (state.is_connected()) { |
| 177 | std::pair<openolt::Indication, bool> ind = oltIndQ.pop(COLLECTION_PERIOD); |
| 178 | if (ind.second == false) { |
| 179 | /* timeout - do lower priority periodic stuff like stats */ |
| 180 | stats_collection(); |
| 181 | continue; |
| 182 | } |
| 183 | openolt::Indication oltInd = ind.first; |
Nicolas Palpacuer | 3cad49d | 2018-07-02 14:03:24 -0400 | [diff] [blame] | 184 | bool isConnected = writer->Write(oltInd); |
Nicolas Palpacuer | 58d252c | 2018-06-06 11:19:04 -0400 | [diff] [blame] | 185 | if (!isConnected) { |
| 186 | //Lost connectivity to this Voltha instance |
| 187 | //Put the indication back in the queue for next connecting instance |
| 188 | oltIndQ.push(oltInd); |
Shad Ansari | edef213 | 2018-08-10 22:14:50 +0000 | [diff] [blame] | 189 | state.disconnect(); |
Nicolas Palpacuer | 58d252c | 2018-06-06 11:19:04 -0400 | [diff] [blame] | 190 | } |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 191 | //oltInd.release_olt_ind() |
| 192 | } |
Nicolas Palpacuer | 3cad49d | 2018-07-02 14:03:24 -0400 | [diff] [blame] | 193 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 194 | return Status::OK; |
| 195 | } |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 196 | |
| 197 | Status HeartbeatCheck( |
| 198 | ServerContext* context, |
| 199 | const openolt::Empty* request, |
| 200 | openolt::Heartbeat* response) override { |
| 201 | response->set_heartbeat_signature(signature); |
| 202 | |
| 203 | return Status::OK; |
| 204 | } |
Nicolas Palpacuer | 0f19b1a | 2018-06-07 17:29:31 -0400 | [diff] [blame] | 205 | |
Nicolas Palpacuer | 05ea0ea | 2018-07-06 11:47:21 -0400 | [diff] [blame] | 206 | Status EnablePonIf( |
| 207 | ServerContext* context, |
| 208 | const openolt::Interface* request, |
| 209 | openolt::Empty* response) override { |
| 210 | |
| 211 | return EnablePonIf_(request->intf_id()); |
| 212 | } |
| 213 | |
| 214 | Status DisablePonIf( |
| 215 | ServerContext* context, |
| 216 | const openolt::Interface* request, |
| 217 | openolt::Empty* response) override { |
| 218 | |
| 219 | return DisablePonIf_(request->intf_id()); |
| 220 | } |
Nicolas Palpacuer | 0f19b1a | 2018-06-07 17:29:31 -0400 | [diff] [blame] | 221 | |
Nicolas Palpacuer | 4518066 | 2018-08-02 14:01:51 -0400 | [diff] [blame] | 222 | Status Reboot( |
| 223 | ServerContext* context, |
| 224 | const openolt::Empty* request, |
| 225 | openolt::Empty* response) override { |
| 226 | |
| 227 | system("shutdown -r now"); |
| 228 | |
| 229 | return Status::OK; |
| 230 | |
| 231 | } |
| 232 | |
| 233 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | void RunServer() { |
| 237 | OpenoltService service; |
| 238 | std::string server_address(serverPort); |
| 239 | ServerBuilder builder; |
| 240 | |
| 241 | builder.AddListeningPort(server_address, grpc::InsecureServerCredentials()); |
| 242 | builder.RegisterService(&service); |
| 243 | |
| 244 | std::unique_ptr<Server> server(builder.BuildAndStart()); |
| 245 | |
nick | 7be062f | 2018-05-25 17:52:56 -0400 | [diff] [blame] | 246 | time_t now; |
| 247 | time(&now); |
| 248 | signature = (int)now; |
| 249 | |
| 250 | std::cout << "Server listening on " << server_address |
| 251 | << ", connection signature : " << signature << std::endl; |
| 252 | |
Shad Ansari | 01b0e65 | 2018-04-05 21:02:53 +0000 | [diff] [blame] | 253 | |
| 254 | server->Wait(); |
| 255 | } |