blob: 3fcae6ef282d60246a146123fc837643418e6861 [file] [log] [blame]
Harald Weltee08da972017-11-13 01:00:26 +09001/* (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
2 * (C) 2010 by Sylvain Munaut <tnt@246tNt.com>
Harald Welte3fb0b6f2010-05-19 19:02:52 +02003 * All Rights Reserved
4 *
Harald Weltee08da972017-11-13 01:00:26 +09005 * SPDX-License-Identifier: GPL-2.0+
6 *
Harald Welte3fb0b6f2010-05-19 19:02:52 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
Harald Welte3fb0b6f2010-05-19 19:02:52 +020017 */
18
19#include <sys/socket.h>
20#include <netinet/in.h>
Sylvain Munauta9efc122012-03-01 20:41:40 +010021#include <errno.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020022#include <stdlib.h>
23#include <stdio.h>
24#include <string.h>
25#include <unistd.h>
26
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010027#include <osmocom/core/msgb.h>
Sylvain Munauta9efc122012-03-01 20:41:40 +010028#include <osmocom/core/socket.h>
Pablo Neira Ayuso83419342011-03-22 16:36:13 +010029#include <osmocom/core/talloc.h>
30#include <osmocom/core/logging.h>
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +020031#include <osmocom/core/signal.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020032
33#include <osmocom/vty/telnet_interface.h>
34#include <osmocom/vty/buffer.h>
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +080035#include <osmocom/vty/command.h>
Harald Welte3fb0b6f2010-05-19 19:02:52 +020036
Harald Welte8c648252017-10-16 15:17:03 +020037/*! \file telnet_interface.c
Neels Hofmeyr87e45502017-06-20 00:17:59 +020038 * Telnet interface towards Osmocom VTY
Harald Welte96e2a002017-06-12 21:44:18 +020039 *
40 * This module contains the code implementing a telnet server for VTY
41 * access. This telnet server gets linked into each libosmovty-using
42 * process in order to enable interactive command-line introspection,
43 * interaction and configuration.
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020044 *
Harald Welte8c648252017-10-16 15:17:03 +020045 * You typically call \ref telnet_init or \ref telnet_init_dynif once
46 * from your application code to enable this.
47 */
Harald Welte7acb30c2011-08-17 17:13:48 +020048
Harald Welte3fb0b6f2010-05-19 19:02:52 +020049/* per connection data */
50LLIST_HEAD(active_connections);
51
52static void *tall_telnet_ctx;
53
54/* per network data */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +020055static int telnet_new_connection(struct osmo_fd *fd, unsigned int what);
Harald Welte3fb0b6f2010-05-19 19:02:52 +020056
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +020057static struct osmo_fd server_socket = {
Harald Welte16886992019-03-20 10:26:39 +010058 .when = OSMO_FD_READ,
Harald Welte3fb0b6f2010-05-19 19:02:52 +020059 .cb = telnet_new_connection,
60 .priv_nr = 0,
61};
62
Neels Hofmeyr87e45502017-06-20 00:17:59 +020063/*! Initialize telnet based VTY interface listening to 127.0.0.1
Harald Welte7acb30c2011-08-17 17:13:48 +020064 * \param[in] tall_ctx \ref talloc context
65 * \param[in] priv private data to be passed to callback
Holger Hans Peter Freytherd8d0ef62018-12-22 03:23:43 +000066 * \param[in] port TCP port number to bind to
Harald Welte7acb30c2011-08-17 17:13:48 +020067 */
Harald Welte3fb0b6f2010-05-19 19:02:52 +020068int telnet_init(void *tall_ctx, void *priv, int port)
69{
Sylvain Munauta9efc122012-03-01 20:41:40 +010070 return telnet_init_dynif(tall_ctx, priv, "127.0.0.1", port);
71}
72
Neels Hofmeyr87e45502017-06-20 00:17:59 +020073/*! Initialize telnet based VTY interface
Sylvain Munauta9efc122012-03-01 20:41:40 +010074 * \param[in] tall_ctx \ref talloc context
75 * \param[in] priv private data to be passed to callback
76 * \param[in] ip IP to listen to ('::1' for localhost, '::0' for all, ...)
Holger Hans Peter Freytherd8d0ef62018-12-22 03:23:43 +000077 * \param[in] port TCP port number to bind to
Sylvain Munauta9efc122012-03-01 20:41:40 +010078 */
79int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port)
80{
81 int rc;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020082
Maxaf35eb22022-12-03 17:10:42 +030083 if (port < 0)
84 return -EINVAL;
85
Harald Welte3fb0b6f2010-05-19 19:02:52 +020086 tall_telnet_ctx = talloc_named_const(tall_ctx, 1,
Sylvain Munauta9efc122012-03-01 20:41:40 +010087 "telnet_connection");
Harald Welte3fb0b6f2010-05-19 19:02:52 +020088
Sylvain Munauta9efc122012-03-01 20:41:40 +010089 rc = osmo_sock_init_ofd(
90 &server_socket,
91 AF_UNSPEC, SOCK_STREAM, IPPROTO_TCP,
92 ip, port, OSMO_SOCK_F_BIND
93 );
Harald Welte3fb0b6f2010-05-19 19:02:52 +020094
95 server_socket.data = priv;
Harald Welte3fb0b6f2010-05-19 19:02:52 +020096
Neels Hofmeyr55dc2ed2016-09-19 14:10:25 +020097 if (rc < 0) {
98 LOGP(DLGLOBAL, LOGL_ERROR, "Cannot bind telnet at %s %d\n",
99 ip, port);
Max6d261342022-12-03 17:06:51 +0300100 return rc;
Neels Hofmeyr55dc2ed2016-09-19 14:10:25 +0200101 }
102
Max7a2ec6e2018-10-24 11:29:31 +0200103 LOGP(DLGLOBAL, LOGL_NOTICE, "Available via telnet %s %d\n", ip, port);
Neels Hofmeyr55dc2ed2016-09-19 14:10:25 +0200104 return 0;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200105}
106
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000107/*! Initializes telnet based VTY interface using the configured bind addr/port.
108 * \param[in] tall_ctx \ref talloc context
109 * \param[in] priv private data to be passed to callback
Max5b376422022-12-03 20:22:08 +0300110 * \param[in] default_port TCP port number to bind to if not explicitly configured
Holger Hans Peter Freyther99ae4012018-12-15 17:36:41 +0000111 */
112int telnet_init_default(void *tall_ctx, void *priv, int default_port)
113{
114 return telnet_init_dynif(tall_ctx, priv, vty_get_bind_addr(),
115 vty_get_bind_port(default_port));
116}
117
118
Holger Hans Peter Freyther2e228fc2010-09-11 13:41:41 +0800119extern struct host host;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200120
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200121/*! close a telnet connection */
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200122int telnet_close_client(struct osmo_fd *fd)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200123{
124 struct telnet_connection *conn = (struct telnet_connection*)fd->data;
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700125 char sock_name_buf[OSMO_SOCK_NAME_MAXLEN];
126 int rc;
127
128 /* FIXME: getsockname() always fails: "Bad file descriptor" */
129 rc = osmo_sock_get_name_buf(sock_name_buf, OSMO_SOCK_NAME_MAXLEN, fd->fd);
130 LOGP(DLGLOBAL, LOGL_INFO, "Closing telnet connection %s\n",
131 (rc <= 0) ? "r=NULL<->l=NULL" : sock_name_buf);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200132
133 close(fd->fd);
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200134 osmo_fd_unregister(fd);
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200135
136 if (conn->dbg) {
137 log_del_target(conn->dbg);
138 talloc_free(conn->dbg);
139 }
140
141 llist_del(&conn->entry);
142 talloc_free(conn);
143 return 0;
144}
145
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200146static int client_data(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200147{
148 struct telnet_connection *conn = fd->data;
149 int rc = 0;
150
Harald Welte16886992019-03-20 10:26:39 +0100151 if (what & OSMO_FD_READ) {
152 conn->fd.when &= ~OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200153 rc = vty_read(conn->vty);
154 }
155
156 /* vty might have been closed from vithin vty_read() */
Holger Hans Peter Freythereb55e6a2014-07-01 19:39:26 +0200157 if (rc == -EBADF)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200158 return rc;
159
Harald Welte16886992019-03-20 10:26:39 +0100160 if (what & OSMO_FD_WRITE) {
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200161 rc = buffer_flush_all(conn->vty->obuf, fd->fd);
162 if (rc == BUFFER_EMPTY)
Harald Welte16886992019-03-20 10:26:39 +0100163 conn->fd.when &= ~OSMO_FD_WRITE;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200164 }
165
166 return rc;
167}
168
Pablo Neira Ayusof7f89d02011-05-07 12:42:40 +0200169static int telnet_new_connection(struct osmo_fd *fd, unsigned int what)
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200170{
171 struct telnet_connection *connection;
172 struct sockaddr_in sockaddr;
173 socklen_t len = sizeof(sockaddr);
174 int new_connection = accept(fd->fd, (struct sockaddr*)&sockaddr, &len);
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700175 char sock_name_buf[OSMO_SOCK_NAME_MAXLEN];
Harald Welte4a1cb092016-11-26 00:11:53 +0100176 int rc;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200177
178 if (new_connection < 0) {
Vadim Yanitskiy0ba35732019-07-27 21:47:59 +0700179 LOGP(DLGLOBAL, LOGL_ERROR, "telnet accept failed\n");
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200180 return new_connection;
181 }
182
Vadim Yanitskiy74b6ff02019-07-28 00:28:36 +0700183 rc = osmo_sock_get_name_buf(sock_name_buf, OSMO_SOCK_NAME_MAXLEN, new_connection);
184 LOGP(DLGLOBAL, LOGL_INFO, "Accept()ed new telnet connection %s\n",
185 (rc <= 0) ? "r=NULL<->l=NULL" : sock_name_buf);
186
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200187 connection = talloc_zero(tall_telnet_ctx, struct telnet_connection);
188 connection->priv = fd->data;
189 connection->fd.data = connection;
190 connection->fd.fd = new_connection;
Harald Welte16886992019-03-20 10:26:39 +0100191 connection->fd.when = OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200192 connection->fd.cb = client_data;
Harald Welte4a1cb092016-11-26 00:11:53 +0100193 rc = osmo_fd_register(&connection->fd);
194 if (rc < 0) {
195 talloc_free(connection);
196 return rc;
197 }
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200198 llist_add_tail(&connection->entry, &active_connections);
199
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200200 connection->vty = vty_create(new_connection, connection);
201 if (!connection->vty) {
Vadim Yanitskiy0ba35732019-07-27 21:47:59 +0700202 LOGP(DLGLOBAL, LOGL_ERROR, "couldn't create VTY\n");
Harald Weltee8e43222018-10-21 13:22:31 +0200203 /* vty_create() is already closing the fd if it returns NULL */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200204 talloc_free(connection);
205 return -1;
206 }
207
208 return 0;
209}
210
Neels Hofmeyr63053002019-04-10 02:41:53 +0200211bool vty_is_active(struct vty *vty)
212{
213 struct telnet_connection *connection;
214 llist_for_each_entry(connection, &active_connections, entry) {
215 if (connection->vty == vty)
216 return true;
217 }
218 return false;
219}
220
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200221/*! callback from core VTY code about VTY related events */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200222void vty_event(enum event event, int sock, struct vty *vty)
223{
Vadim Yanitskiya9a8ea52019-07-27 21:58:44 +0700224 struct vty_signal_data sig_data;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200225 struct telnet_connection *connection = vty->priv;
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200226 struct osmo_fd *bfd;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200227
228 if (vty->type != VTY_TERM)
229 return;
230
Holger Hans Peter Freyther2c9168c2013-10-10 20:21:33 +0200231 sig_data.event = event;
232 sig_data.sock = sock;
233 sig_data.vty = vty;
234 osmo_signal_dispatch(SS_L_VTY, S_VTY_EVENT, &sig_data);
235
236 if (!connection)
237 return;
238
239 bfd = &connection->fd;
240
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200241 switch (event) {
242 case VTY_READ:
Harald Welte16886992019-03-20 10:26:39 +0100243 bfd->when |= OSMO_FD_READ;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200244 break;
245 case VTY_WRITE:
Harald Welte16886992019-03-20 10:26:39 +0100246 bfd->when |= OSMO_FD_WRITE;
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200247 break;
248 case VTY_CLOSED:
249 /* vty layer is about to free() vty */
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200250 telnet_close_client(bfd);
251 break;
252 default:
253 break;
254 }
255}
256
Harald Welte8c648252017-10-16 15:17:03 +0200257/*! Close all telnet connections and release the telnet socket */
Pau Espin Pedrol5bc9f382020-10-12 15:40:36 +0200258void telnet_exit(void)
Andreas.Eversbergdc3be0a2011-11-06 20:09:28 +0100259{
260 struct telnet_connection *tc, *tc2;
261
262 llist_for_each_entry_safe(tc, tc2, &active_connections, entry)
263 telnet_close_client(&tc->fd);
264
265 osmo_fd_unregister(&server_socket);
266 close(server_socket.fd);
267 talloc_free(tall_telnet_ctx);
268}